/* ============================================================
   WISPERO — Light · Premium Apple-style minimalism
   Clean white · glassmorphism · soft shadows · warm accent
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* surfaces — warm Apple base (#faf9f5) */
  --bg:        #FAF9F5;
  --bg-2:      #F1EFE8;   /* warm alt band */
  --bg-3:      #F6F4EE;
  --surface:   #FFFFFF;
  --glass:     rgba(255,255,255,0.7);
  --glass-brd: rgba(255,255,255,0.75);
  --line:      rgba(40,33,20,0.12);
  --line-2:    rgba(40,33,20,0.07);
  --hair:      rgba(40,33,20,0.15);

  /* text — Apple ink, lifted contrast for legible facts */
  --fg:        #1A1A1C;
  --fg-dim:    #43434A;
  --fg-mute:   #6E6E73;

  /* warm accent (tunable via [data-accent]) — SALES COACH / "what to say" */
  --accent:    #D97316;
  --accent-2:  #A8530B;
  --accent-soft: color-mix(in oklab, var(--accent) 14%, white);
  --accent-tint: color-mix(in oklab, var(--accent) 8%, white);

  /* muted-red register — COMPLIANCE GUARDRAIL / "what NOT to say" */
  --warn:      #B23A2E;
  --warn-2:    #8C2A20;
  --warn-soft: color-mix(in oklab, var(--warn) 16%, white);
  --warn-tint: color-mix(in oklab, var(--warn) 8%, white);

  --shadow-sm: 0 1px 2px rgba(40,33,20,0.05), 0 8px 24px -12px rgba(40,33,20,0.12);
  --shadow-md: 0 2px 6px rgba(40,33,20,0.05), 0 24px 60px -24px rgba(40,33,20,0.16);
  --shadow-lg: 0 4px 10px rgba(40,33,20,0.05), 0 50px 110px -40px rgba(40,33,20,0.22);

  --radius:    20px;
  --radius-sm: 13px;
  --maxw:      1180px;

  --font:      'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

/* warm accent presets */
body[data-accent="coral"]      { --accent:#E0633F; --accent-2:#C24E2E; }
body[data-accent="terracotta"] { --accent:#C2410C; --accent-2:#9A3412; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--accent-soft); color: var(--accent-2); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.eyebrow.coral { color: var(--fg-mute); }
.eyebrow.coral::before { background: var(--fg-mute); }

h1, h2, h3 { font-weight: 600; line-height: 1.04; letter-spacing: -0.028em; color: var(--fg); text-wrap: balance; }
h1 { font-weight: 500; }
h2 { font-size: clamp(32px, 4.6vw, 58px); font-weight: 500; }
h3 { font-size: clamp(20px, 2.4vw, 27px); font-weight: 600; letter-spacing: -0.02em; }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--fg-dim); line-height: 1.5; max-width: 60ch; font-weight: 400; text-wrap: pretty; }

.mono-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--fg-mute);
  text-transform: uppercase;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font);
  font-weight: 600; font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), background .2s, box-shadow .25s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--fg); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 34px -12px rgba(0,0,0,0.4); }
.btn-ghost { background: rgba(255,255,255,0.6); color: var(--fg); border-color: var(--hair); backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--fg); transform: translateY(-1px); }
.btn svg { width: 15px; height: 15px; }

/* ============================================================
   NAV — frosted glass
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 20px; letter-spacing: -0.03em; }
.brand-mark {
  width: 29px; height: 29px; border-radius: 9px;
  background: var(--fg);
  display: grid; place-items: center; flex: none;
}
.brand-mark span { display: flex; gap: 2.5px; align-items: center; }
.brand-mark i { width: 2.5px; border-radius: 2px; background: #fff; display: block; }
.brand-mark i:nth-child(1){ height: 7px; } .brand-mark i:nth-child(2){ height: 14px; }
.brand-mark i:nth-child(3){ height: 9px; } .brand-mark i:nth-child(4){ height: 16px; }
.brand-mark i:nth-child(5){ height: 6px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14.5px; color: var(--fg-dim); transition: color .15s; font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--fg); }
@media (max-width: 880px){ .nav-links { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(22px, 3.4vw, 44px) 0 74px; position: relative; }
.hero-glow {
  position: absolute; inset: -8% 0 auto 0; height: 620px; z-index: 0; pointer-events: none;
  background: radial-gradient(720px 420px at 26% 4%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 68%),
              radial-gradient(560px 380px at 96% 0%, color-mix(in oklab, var(--accent) 8%, transparent), transparent 70%);
  opacity: 0.8;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: start; }
@media (max-width: 980px){ .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero h1 { font-size: clamp(42px, 6vw, 78px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.02; }
.hero h1 .hl { color: var(--accent-2); font-weight: 600; }
.hero .lead { margin-top: 26px; }
.hero-cta { margin-top: 34px; display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: 40px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-meta .stat { display: flex; flex-direction: column; gap: 3px; }
.hero-meta .stat b { font-size: 27px; font-weight: 600; letter-spacing: -0.03em; color: var(--fg); }
.hero-meta .stat span { font-size: 13.5px; color: var(--fg-mute); font-weight: 400; }

/* ---- live session panel · glass ---- */
.session {
  background: var(--glass);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  border: 1px solid var(--glass-brd);
  border-radius: 26px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.session::after { content:""; position:absolute; inset:0; border-radius:26px; border:1px solid var(--line-2); pointer-events:none; }
.session-head { display: flex; align-items: center; justify-content: space-between; padding: 5px 6px 16px; border-bottom: 1px solid var(--line-2); }
.session-live { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff3b30; box-shadow: 0 0 0 0 rgba(255,59,48,0.5); animation: pulse 1.7s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(255,59,48,0.45);} 70%{ box-shadow: 0 0 0 7px rgba(255,59,48,0);} 100%{ box-shadow: 0 0 0 0 rgba(255,59,48,0);} }
.session-where { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); }

.transcript { min-height: 222px; padding: 16px 4px 4px; display: flex; flex-direction: column; gap: 11px; }
.bubble { max-width: 86%; padding: 11px 15px; border-radius: 15px; font-size: 15px; line-height: 1.42; opacity: 0; transform: translateY(8px); animation: rise .42s forwards; }
.bubble .who { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 3px; }
.bubble.client { align-self: flex-start; background: var(--bg-2); border-bottom-left-radius: 4px; color: var(--fg); }
.bubble.client .who { color: var(--accent-2); }
.bubble.seller { align-self: flex-end; background: #fff; border: 1px solid var(--line); border-bottom-right-radius: 4px; color: var(--fg-dim); }
.bubble.seller .who { color: var(--fg-mute); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* whisper prompt — warm accent card */
.whisper {
  margin: 5px 4px 4px;
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  padding: 13px 15px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: 0 16px 40px -16px var(--accent);
  opacity: 0; transform: translateY(10px) scale(0.985);
  animation: fire .5s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes fire { to { opacity: 1; transform: none; } }
.whisper .ear {
  width: 37px; height: 37px; border-radius: 11px; background: rgba(255,255,255,0.18); flex: none;
  display: grid; place-items: center;
}
.whisper .ear svg { width: 18px; height: 18px; stroke: #fff; }
.whisper .w-body { flex: 1; min-width: 0; }
.whisper .w-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
.whisper .w-text { font-weight: 700; font-size: 16.5px; line-height: 1.18; margin-top: 2px; letter-spacing: -0.01em; }
.whisper .w-time, .intercept-prompt .w-time { font-family: var(--font-mono); font-size: 10.5px; opacity: 0.92; flex: none; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; text-align: right; }
.logged { display: inline-flex; align-items: center; gap: 4px; font-size: 8.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 7px; border-radius: 100px; background: rgba(255,255,255,0.22); }
.logged::before { content:""; width: 4px; height: 4px; border-radius: 50%; background: #fff; }
.wave { display: flex; align-items: center; gap: 2.5px; height: 22px; }
.wave i { width: 3px; border-radius: 2px; background: #fff; opacity: 0.9; animation: eq 0.9s ease-in-out infinite; }
.wave i:nth-child(1){ animation-delay: 0s;} .wave i:nth-child(2){ animation-delay: .12s;}
.wave i:nth-child(3){ animation-delay: .24s;} .wave i:nth-child(4){ animation-delay: .36s;}
.wave i:nth-child(5){ animation-delay: .48s;}
@keyframes eq { 0%,100%{ height: 6px;} 50%{ height: 19px;} }

/* ============================================================
   SECTIONS
   ============================================================ */
.band { padding: clamp(42px, 5.2vw, 74px) 0 clamp(70px, 8.4vw, 116px); }
.band.alt { background: var(--bg-2); }
.sec-head { max-width: 740px; }
.sec-head h2 { margin-top: 18px; }
.sec-head .lead { margin-top: 22px; }

/* mentor intro — photo + heading */
.mentor-top { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
@media (max-width: 900px){ .mentor-top { grid-template-columns: 1fr; gap: 32px; } }
.photo-slot {
  position: relative; min-height: 400px; border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow-sm);
}
.photo-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.photo-slot::after { content:""; position:absolute; inset:0; border-radius:inherit; border:1px solid var(--line-2); pointer-events:none; }
@media (max-width: 900px){ .photo-slot { min-height: 280px; } }

/* problem */
.problem-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: end; margin-top: 60px; }
@media (max-width: 900px){ .problem-grid { grid-template-columns: 1fr; gap: 40px; } }
.decay { display: flex; flex-direction: column; gap: 16px; }
.decay-row { display: grid; grid-template-columns: 130px 1fr 56px; align-items: center; gap: 16px; }
.decay-row .d-when { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-mute); }
.decay-bar { height: 10px; border-radius: 6px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.decay-bar span { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); }
.decay-row .d-val { font-size: 16px; font-weight: 700; text-align: right; color: var(--fg); letter-spacing: -0.01em; }

/* ============================================================
   PIPELINE
   ============================================================ */
.pipe { margin-top: 64px; display: flex; flex-direction: column; }
.pipe-step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); position: relative; }
.pipe-step:last-child { border-bottom: 1px solid var(--line); }
.pipe-num { font-family: var(--font-mono); font-size: 13px; color: var(--accent-2); padding-top: 5px; }
.pipe-step h3 { font-size: 22px; }
.pipe-step p { color: var(--fg-dim); margin-top: 9px; max-width: 64ch; font-size: 16.5px; }
.pipe-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { font-family: var(--font-mono); font-size: 11px; padding: 5px 11px; border-radius: 100px; border: 1px solid var(--line); color: var(--fg-dim); background: #fff; }
.tag.lime { color: var(--accent-2); border-color: var(--accent-soft); background: var(--accent-tint); }

/* ============================================================
   CARDS
   ============================================================ */
.cards { display: grid; gap: 18px; margin-top: 56px; }
.cards.c3 { grid-template-columns: repeat(3, 1fr); }
.cards.c4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .cards.c3, .cards.c4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px){ .cards.c3, .cards.c4 { grid-template-columns: 1fr; } }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-2); }
.card .c-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-tint); display: grid; place-items: center; margin-bottom: 18px; }
.card .c-ico svg { width: 20px; height: 20px; stroke: var(--accent-2); }
.card h3 { font-size: 19px; }
.card p { color: var(--fg-dim); font-size: 15px; margin-top: 9px; line-height: 1.5; }
.card .c-num { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-mute); margin-bottom: 16px; }

.case-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-tint); border: 1px solid var(--accent-soft); color: var(--accent-2); font-family: var(--font-mono); font-size: 12px; padding: 7px 13px; border-radius: 100px; margin: 5px 5px 0 0; }
.case-chip::before { content: "›"; font-weight: 700; }

/* principle */
.principle { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px){ .principle { grid-template-columns: 1fr; } }
.principle .p-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.principle .p-box .big { font-weight: 600; font-size: clamp(24px,3vw,33px); line-height: 1.08; letter-spacing: -0.025em; }
.principle .p-box .big em { font-style: normal; color: var(--accent-2); }
.principle .p-box p { color: var(--fg-dim); margin-top: 14px; font-size: 15.5px; line-height: 1.5; }

/* ============================================================
   SHIFT TIMELINE
   ============================================================ */
.shift { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
@media (max-width: 820px){ .shift { grid-template-columns: 1fr 1fr; gap: 32px 0; } }
.shift-step { padding: 0 24px; position: relative; }
.shift-step:not(:last-child)::after { content:""; position:absolute; right:0; top: 8px; bottom: 14px; width:1px; background: var(--line); }
@media (max-width: 820px){ .shift-step::after { display: none; } }
.shift-step .dot { width: 13px; height: 13px; border-radius: 50%; background: var(--bg); border: 3px solid var(--accent); margin-bottom: 18px; }
.shift-step .t-time { font-family: var(--font-mono); font-size: 11.5px; color: var(--accent-2); }
.shift-step h3 { font-size: 18px; margin-top: 9px; }
.shift-step p { color: var(--fg-dim); font-size: 14.5px; margin-top: 8px; line-height: 1.5; }
.shift-track { position: absolute; left: 24px; right: 24px; top: 6px; height: 3px; background: var(--line); z-index: -1; }
@media (max-width: 820px){ .shift-track { display: none; } }

/* ============================================================
   ANALYTICS DASHBOARD · glass
   ============================================================ */
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
@media (max-width: 940px){ .dash-grid { grid-template-columns: 1fr; gap: 44px; } }
.dash {
  background: var(--glass);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border: 1px solid var(--glass-brd);
  border-radius: 22px; padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.dash::after { content:""; position:absolute; inset:0; border-radius:22px; border:1px solid var(--line-2); pointer-events:none; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-head .d-t { font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.dash-head .d-tag { font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-mute); border: 1px solid var(--line); padding: 4px 10px; border-radius: 100px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.compare .col { background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 17px; }
.compare .col .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--fg-mute); }
.compare .col .v { font-weight: 700; font-size: 38px; margin-top: 7px; line-height: 1; letter-spacing: -0.03em; color: var(--fg); }
.compare .col.win { border-color: var(--accent-soft); background: var(--accent-tint); }
.compare .col.win .v { color: var(--accent-2); }
.compare .col .delta { font-family: var(--font-mono); font-size: 12px; font-weight: 500; margin-top: 9px; color: var(--accent-2); }
.compare .col.base .v { color: var(--fg); }
.bars { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 120px 1fr 40px; align-items: center; gap: 13px; }
.bar-row .bl { font-size: 13px; color: var(--fg-dim); }
.bar-track { height: 9px; border-radius: 5px; background: var(--bg-2); border: 1px solid var(--line-2); overflow: hidden; }
.bar-track span { display: block; height: 100%; border-radius: 5px; background: var(--accent); width: 0; transition: width 1.1s cubic-bezier(.2,.7,.3,1); }
.bar-row .bv { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-dim); text-align: right; }

/* business outcomes */
.outcomes { display: flex; flex-direction: column; gap: 6px; }
.outcome { display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: start; padding: 24px 0; border-top: 1px solid var(--line); }
.outcome:last-child { border-bottom: 1px solid var(--line); }
.outcome .o-n { font-weight: 600; font-size: 27px; color: var(--accent-2); line-height: 1; }
.outcome h3 { font-size: 18px; }
.outcome p { color: var(--fg-dim); font-size: 15px; margin-top: 7px; line-height: 1.5; }

/* ============================================================
   MARKETS
   ============================================================ */
.markets { margin-top: 52px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.market-pill {
  font-weight: 600; font-size: clamp(15px, 1.7vw, 19px);
  padding: 12px 22px; border-radius: 100px; border: 1px solid var(--line);
  color: var(--fg-dim); background: #fff; transition: all .2s; letter-spacing: -0.01em;
}
.market-pill.now { background: var(--fg); color: #fff; border-color: var(--fg); }
.market-pill.now::after { content: " · сейчас"; font-family: var(--font-mono); font-weight: 400; font-size: 11px; opacity: 0.7; }
.market-arrow { color: var(--fg-mute); font-size: 22px; }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta { text-align: center; padding: clamp(90px,12vw,150px) 0; position: relative; overflow: hidden; }
.cta-glow { position:absolute; inset:0; pointer-events:none; background: radial-gradient(640px 320px at 50% 116%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 68%); }
.cta h2 { font-size: clamp(38px, 6vw, 72px); font-weight: 500; letter-spacing: -0.035em; position: relative; line-height: 1.04; }
.cta h2 .hl { color: var(--accent-2); font-weight: 600; }
.cta .lead { margin: 24px auto 40px; text-align: center; }
.cta-row { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; position: relative; }

.footer { border-top: 1px solid var(--line); padding: 50px 0 64px; background: var(--bg-2); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer .brand { margin-bottom: 15px; }
.footer p { color: var(--fg-mute); font-size: 14px; max-width: 40ch; line-height: 1.55; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 15px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--fg-dim); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--accent-2); }

/* ============================================================
   ACCENT SWITCHER (glass pill, fixed)
   ============================================================ */
.accent-switch {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 80;
  display: flex; align-items: center; gap: 12px;
  padding: 9px 9px 9px 18px;
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--glass-brd);
  border-radius: 100px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.6);
}
.accent-switch .as-label { font-size: 12.5px; color: var(--fg-dim); font-weight: 500; }
.accent-switch .as-dots { display: flex; gap: 7px; }
.accent-switch button {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid transparent;
  cursor: pointer; padding: 0; transition: transform .18s, border-color .18s;
  outline: none;
}
.accent-switch button:hover { transform: scale(1.12); }
.accent-switch button[aria-pressed="true"] { border-color: var(--fg); }
.accent-switch button.amber { background: #D97316; }
.accent-switch button.coral { background: #E0633F; }
.accent-switch button.terracotta { background: #C2410C; }
@media (max-width: 540px){ .accent-switch .as-label { display: none; } }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .live-dot, .wave i { animation: none; }
}

/* ============================================================
   CASES — vertical tab selector
   ============================================================ */
.case-tabs { margin-top: 52px; display: grid; grid-template-columns: 300px 1fr; gap: 26px; align-items: start; }
@media (max-width: 860px){ .case-tabs { grid-template-columns: 1fr; gap: 18px; } }
.case-tab-list { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 860px){ .case-tab-list { flex-direction: row; flex-wrap: wrap; } }
.case-tab {
  display: flex; align-items: center; gap: 13px; text-align: left;
  font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--fg-dim);
  background: var(--surface); border: 1px solid var(--line); border-radius: 15px;
  padding: 17px 19px; cursor: pointer; letter-spacing: -0.01em;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}
.case-tab .ct-ico { width: 30px; height: 30px; border-radius: 9px; background: var(--bg-2); display: grid; place-items: center; flex: none; transition: background .2s; }
.case-tab .ct-ico svg { width: 16px; height: 16px; stroke: var(--fg-mute); fill: none; stroke-width: 2; transition: stroke .2s; }
.case-tab:hover { color: var(--fg); border-color: var(--hair); }
.case-tab.is-active { color: var(--fg); border-color: var(--accent); background: var(--accent-tint); box-shadow: var(--shadow-sm); }
.case-tab.is-active .ct-ico { background: var(--accent); }
.case-tab.is-active .ct-ico svg { stroke: #fff; }
.case-tab-more { font-family: var(--font-mono); font-size: 12px; color: var(--fg-mute); padding: 14px 19px; }
.case-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 32px; box-shadow: var(--shadow-sm); min-height: 230px;
}
.case-panel .cp-label { display: flex; align-items: center; gap: 9px; }
.case-panel h3 { margin-top: 13px; font-size: clamp(22px, 2.6vw, 28px); }
.case-panel p { margin-top: 12px; max-width: 64ch; color: var(--fg-dim); font-size: 16.5px; line-height: 1.5; }
.case-panel .case-chips { margin-top: 20px; }
.cp-anim { opacity: 0; transform: translateY(8px); animation: rise .4s forwards; }

/* ============================================================
   BUSINESS — value cards (grid of 5, last = compliance)
   ============================================================ */
.value-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px){ .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px){ .value-grid { grid-template-columns: 1fr; } }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s, border-color .2s; }
.value:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value .v-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); display: grid; place-items: center; margin-bottom: 18px; }
.value .v-ico svg { width: 21px; height: 21px; stroke: var(--accent-2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value h3 { font-size: 19px; }
.value p { color: var(--fg-dim); font-size: 15px; margin-top: 10px; line-height: 1.5; }
/* the 5th, compliance-flavored card uses the muted-red register */
.value.guard { border-color: var(--warn-soft); background: var(--warn-tint); }
.value.guard .v-ico { background: color-mix(in oklab, var(--warn) 16%, white); }
.value.guard .v-ico svg { stroke: var(--warn-2); }

/* ============================================================
   COMPLIANCE — muted-red register + live intercept demo
   ============================================================ */
.band.guard-band { background: var(--bg-2); }
.eyebrow.guard { color: var(--warn-2); }
.eyebrow.guard::before { background: var(--warn); }
.guard-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; margin-top: 56px; }
@media (max-width: 960px){ .guard-grid { grid-template-columns: 1fr; gap: 40px; } }
.guard-note { margin-top: 18px; font-size: 14px; color: var(--fg-mute); max-width: 56ch; line-height: 1.5; }

/* tabs for the intercept scenarios */
.guard-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.guard-tab {
  font-family: var(--font); font-size: 13.5px; font-weight: 600; color: var(--fg-dim);
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 16px; cursor: pointer; transition: all .2s; letter-spacing: -0.01em;
}
.guard-tab:hover { color: var(--fg); border-color: var(--hair); }
.guard-tab.is-active { color: #fff; background: var(--warn); border-color: var(--warn); }

/* the intercept session panel (muted-red sibling of .session) */
.intercept {
  background: var(--glass);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  border: 1px solid var(--glass-brd);
  border-radius: 26px; padding: 20px; box-shadow: var(--shadow-lg); position: relative;
}
.intercept::after { content:""; position:absolute; inset:0; border-radius:26px; border:1px solid var(--line-2); pointer-events:none; }
.intercept-head { display: flex; align-items: center; justify-content: space-between; padding: 5px 6px 16px; border-bottom: 1px solid var(--line-2); }
.intercept-live { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg); }
.intercept-live .live-dot { background: var(--warn); box-shadow: 0 0 0 0 color-mix(in oklab, var(--warn) 50%, transparent); animation: pulse-warn 1.7s infinite; }
@keyframes pulse-warn { 0%{ box-shadow: 0 0 0 0 color-mix(in oklab, var(--warn) 45%, transparent);} 70%{ box-shadow: 0 0 0 7px transparent;} 100%{ box-shadow: 0 0 0 0 transparent;} }
.intercept-where { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); }
.intercept-body { min-height: 280px; padding: 16px 4px 4px; display: flex; flex-direction: column; gap: 11px; }

/* a rep line that is being corrected gets struck through */
.bubble.flag { border-color: var(--warn-soft); }
.bubble .strike { text-decoration: line-through; text-decoration-color: color-mix(in oklab, var(--warn) 60%, transparent); color: var(--fg-mute); }

/* the muted-red intercept prompt */
.intercept-prompt {
  margin: 5px 4px 4px; background: var(--warn); color: #fff; border-radius: 16px;
  padding: 13px 15px; display: flex; align-items: flex-start; gap: 13px;
  box-shadow: 0 16px 40px -16px var(--warn);
  opacity: 0; transform: translateY(10px) scale(0.985);
  animation: fire .5s cubic-bezier(.2,.8,.2,1) forwards;
}
.intercept-prompt .shield { width: 37px; height: 37px; border-radius: 11px; background: rgba(255,255,255,0.2); flex: none; display: grid; place-items: center; }
.intercept-prompt .shield svg { width: 19px; height: 19px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.intercept-prompt .ip-body { flex: 1; min-width: 0; }
.intercept-prompt .ip-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.82; }
.intercept-prompt .ip-text { font-weight: 700; font-size: 16px; line-height: 1.22; margin-top: 3px; letter-spacing: -0.01em; }
.intercept-prompt .ip-text b { font-weight: 700; }
.bubble.fixed { border-color: var(--accent-soft); background: var(--accent-tint); color: var(--fg); }

/* ============================================================
   AUDIT MOTIF — "logged / verifiable" trust language
   ============================================================ */
.audit-strip {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.01em;
}
.audit-strip .a-tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 100px; border: 1px solid var(--line); background: var(--bg-3); color: var(--fg-dim); }
.audit-strip .a-tag svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.audit-strip .a-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-mute); }
.intercept .audit-strip { margin-top: 14px; padding: 14px 6px 2px; }

/* multi-language chip in markets */
.market-lang {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 22px;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--fg-dim);
  padding: 9px 16px; border-radius: 100px; border: 1px dashed var(--hair); background: var(--bg-3);
}
.market-lang b { font-weight: 600; color: var(--fg); }
.market-lang svg { width: 15px; height: 15px; stroke: var(--accent-2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   DEMO REQUEST MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(26,26,28,0.34);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  position: relative;
  width: 100%; max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 38px 38px 34px;
  transform: translateY(14px) scale(.98);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 100px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); border: 1px solid var(--line-2);
  color: var(--fg-mute); cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover { background: var(--bg-3); color: var(--fg); }
.modal-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }

.modal .eyebrow { color: var(--accent-2); }
.modal h3 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
  margin: 12px 0 6px; line-height: 1.18;
}
.modal .modal-sub { color: var(--fg-mute); font-size: 15px; line-height: 1.5; margin-bottom: 24px; }

.demo-form { display: flex; flex-direction: column; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 460px) { .field.row2 { grid-template-columns: 1fr; } }
.field label {
  font-size: 12.5px; font-weight: 600; color: var(--fg-dim);
  letter-spacing: 0.01em;
}
.field label .req { color: var(--accent-2); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 15px; color: var(--fg);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 78px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-mute); opacity: .7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.demo-form .btn-primary { justify-content: center; margin-top: 6px; padding: 14px 22px; font-size: 15px; }
.demo-form .btn-primary[disabled] { opacity: .6; cursor: default; }
.form-note { font-size: 12px; color: var(--fg-mute); text-align: center; line-height: 1.5; }
.form-error { font-size: 13px; color: var(--warn-2); display: none; }
.form-error.show { display: block; }

/* success state */
.modal-success { display: none; text-align: center; padding: 12px 0 4px; }
.modal-success.show { display: block; }
.modal-success .check {
  width: 60px; height: 60px; border-radius: 100px; margin: 4px auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-tint); border: 1px solid var(--accent-soft);
}
.modal-success .check svg { width: 28px; height: 28px; stroke: var(--accent-2); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.modal-success h3 { margin-top: 0; }
.demo-form.hide { display: none; }
