/* ╔════════════════════════════════════════════════════════════════╗
   ║  ConvoScale - styles.css                                       ║
   ║  ────────────────────────────────────────────────────────────  ║
   ║  ✱ EDIT COLORS / TYPE / SPACING  →  :root block (just below).  ║
   ║  ✱ SECTIONS are clearly marked   →  search for "════"          ║
   ╚════════════════════════════════════════════════════════════════╝ */

:root {
  /* ── Palette ───────────────────────────────────────────────── */
  --bg:           #0a0a14;             /* Cinematic Black              */
  --bg-2:         #1a1a2e;             /* Deep Navy (raised section)   */
  --surface:      #161629;             /* cards, hud                   */
  --surface-2:    #23233f;             /* hover / featured             */
  --line:         rgba(255,255,255,.06);
  --line-2:       rgba(255,255,255,.12);

  --text:         #fafafe;             /* Soft White                   */
  --text-muted:   #9094a3;
  --text-dim:     #5a5e6e;

  /*  ConvoScale brand palette
      Brand gradient = #9B30FF -> #FF2FD6 at 135deg
      (variable names amber/green kept for legacy references) */
  --amber:        #9b30ff;             /* Primary Purple  (was amber)  */
  --amber-deep:   #7a1fd4;             /* Purple deep                  */
  --green:        #ff2fd6;             /* Accent Pink     (was green)  */
  --green-deep:   #d61fb4;             /* Pink deep                    */
  --red:          #ff5d5d;
  --glow-amber:   rgba(155, 48, 255, .42);
  --glow-green:   rgba(255, 47, 214, .32);

  /* ── Type ──────────────────────────────────────────────────── */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  /* ── Layout ────────────────────────────────────────────────── */
  --container:    1240px;
  --pad-section:  clamp(64px, 7.5vw, 120px);    /* tightened: page felt too long */
  --radius:       20px;
  --radius-sm:    12px;

  /* ── Motion ────────────────────────────────────────────────── */
  --ease:         cubic-bezier(.2, .7, .2, 1);
  --ease-out:     cubic-bezier(.16, 1, .3, 1);
  --ease-soft:    cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(900px 600px at 78% -8%, rgba(155,48,255,.05), transparent 60%),
    radial-gradient(900px 700px at -10% 18%, rgba(255,47,214,.04), transparent 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--amber); color: #0a0a14; }

/* hide cursor visual on touch */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, summary, .qa, .tile, .plan { cursor: none; }
}

/* ── Ambient overlays ───────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'>\
<filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/>\
<feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter>\
<rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35), transparent 16%, transparent 84%, rgba(0,0,0,.4));
}

/* ── Custom cursor ──────────────────────────────────────────── */
.cursor {
  position: fixed; left: 0; top: 0;
  width: 28px; height: 28px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: transform .18s var(--ease), width .25s var(--ease), height .25s var(--ease);
  display: none;
}
.cursor span {
  position: absolute; inset: 0;
  border: 1px solid #fff;
  border-radius: 50%;
}
.cursor::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.is-hover { width: 56px; height: 56px; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}

/* ════════════════════════════════════════════════════════════════
   COMMON  -  buttons, kickers, headings
   ═══════════════════════════════════════════════════════════════ */

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
  margin-bottom: 22px;
}
.kicker::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--text-dim);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(38px, 5.4vw, 80px);
  line-height: .98;
  letter-spacing: -.025em;
  color: var(--text);
  max-width: 18ch;
}
.h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(95deg, var(--amber) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  max-width: 60ch;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s, box-shadow .35s;
  white-space: nowrap;
  position: relative;
}
.btn--sm  { padding: 9px 16px; font-size: 13.5px; }
.btn--big { padding: 17px 26px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary {
  color: #1a1a2e;
  background: linear-gradient(96deg, #fff 0%, #f4d9aa 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 0 0 1px rgba(255,255,255,.18),
    0 18px 50px -22px var(--glow-amber),
    0 0 60px -22px var(--glow-amber);
}
.btn--primary:hover { transform: translateY(-1px); }

.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,.03);
  border-color: var(--line-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
}

.dotpulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(255,47,214,.55);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,47,214,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,47,214,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,47,214,0); }
}

/* ════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; left: 50%; top: 18px;
  transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 9px 9px 9px 20px;
  border-radius: 999px;
  background: rgba(10,11,19,.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 30px 60px -36px rgba(0,0,0,.85);
  max-width: calc(100vw - 32px);
}
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; letter-spacing: -.01em;
}
.brand__mark { display: block; flex-shrink: 0; }
.brand__name {
  background: linear-gradient(135deg, #9b30ff 0%, #ff2fd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.nav-links {
  display: flex; gap: 22px;
  font-size: 13.5px; color: var(--text-muted);
}
.nav-links a {
  transition: color .2s;
  white-space: nowrap;     /* never wrap "How it works", "Case study" */
}
.nav-links a:hover { color: var(--text); }
@media (max-width: 1100px) { .nav-links { gap: 18px; font-size: 13px; } }
@media (max-width: 920px)  { .nav-links { display: none; } }

/* ════════════════════════════════════════════════════════════════
   HERO  -  full-bleed dot globe + editorial lockup
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

#globe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 22% 50%, rgba(6,7,13,.85) 0%, rgba(6,7,13,.55) 35%, transparent 70%),
    linear-gradient(180deg, rgba(6,7,13,.6) 0%, transparent 18%, transparent 70%, rgba(6,7,13,.95) 100%);
}

.hero__type {
  position: relative; z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 200px 28px 160px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.eyebrow b { color: var(--text); font-weight: 500; }
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 0 0 rgba(255,47,214,.6);
  animation: pulse 1.6s infinite;
}

/* big editorial display type, three lines stacked */
.display {
  font-family: var(--font-display);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(80px, 14vw, 220px);
  line-height: .86;
  letter-spacing: -.045em;
  color: var(--text);
  max-width: 13ch;
}
.display .line { display: block; }
.display .italic {
  font-style: italic;
  font-weight: 360;
  background: linear-gradient(95deg, var(--amber) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(155,48,255,.25));
}

.lead {
  margin-top: 36px;
  max-width: 56ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
}

.hero__ctas {
  margin-top: 44px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

@media (max-width: 700px) {
  .hero__type { padding: 140px 22px 110px; }
  .display { font-size: clamp(64px, 18vw, 96px); letter-spacing: -.04em; }
  .lead    { font-size: 15.5px; }
  .ticker  { padding: 10px 0; }
  .ticker__track { font-size: 11.5px; gap: 24px; }
  .nav     { padding: 7px 7px 7px 16px; gap: 12px; top: 12px; }
}

/* HUD panel anchored top-right of hero */
.hud {
  position: absolute;
  top: 130px; right: clamp(20px, 4vw, 60px);
  z-index: 3;
  width: 290px;
  padding: 16px 18px 14px;
  background: rgba(17,19,28,.7);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,.8),
    inset 0 1px 0 rgba(255,255,255,.04);
  font-size: 13px;
}
.hud__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.hud__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}
.hud__live i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 60%, 100% { opacity: 1; }
  30% { opacity: .35; }
}
.hud__title {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}
.hud__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 142px;            /* fixed height so HUD never overflows */
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
}
.hud__row {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  opacity: 0;
  animation: hudIn .5s var(--ease-out) forwards;
}
.hud__row b {
  color: var(--text);
  font-weight: 500;
  flex: 1;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: -.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hud__row .tag {
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,47,214,.1);
  border: 1px solid rgba(255,47,214,.18);
}
.hud__row .tag.in { color: var(--amber); background: rgba(155,48,255,.08); border-color: rgba(155,48,255,.18); }
@keyframes hudIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: none; }
}
.hud__foot {
  display: flex; gap: 10px; align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
}
.hud__foot span:nth-child(2) { color: var(--text-dim); }

@media (max-width: 1100px) {
  .hud { display: none; }
}

/* bottom marquee */
.ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(6,7,13,.8) 30%);
  padding: 14px 0;
}
.ticker__track {
  display: flex; gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.ticker__track span { display: inline-flex; align-items: center; gap: 6px; }
.ticker__track b {
  color: var(--green);
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,47,214,.1);
  border: 1px solid rgba(255,47,214,.18);
  margin-right: 4px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════ */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  background: rgba(10,11,19,.5);
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
.trust__lede {
  font-family: var(--font-display);
  font-weight: 360;
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.3;
  color: var(--text);
}
.trust__lede b { font-style: normal; font-weight: 500; }
.trust__r {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust__cell {
  background: var(--bg-2);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.trust__cell b {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: 30px;
  letter-spacing: -.02em;
  color: var(--text);
}
.trust__cell span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .trust__inner { grid-template-columns: 1fr; }
  .trust__r { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════════════════════════ */
.problem {
  padding: var(--pad-section) 0;
  position: relative;
}
.problem__head {
  max-width: var(--container);
  margin: 0 auto 80px;
  padding: 0 28px;
}
.problem__head .h2 { max-width: 22ch; }

.problem__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem__big {
  position: relative;
  padding: 40px 36px 44px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(155,48,255,.06), transparent 60%),
    var(--surface);
  overflow: hidden;
}
.problem__big::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 90% 100%, rgba(255,93,93,.08), transparent 70%);
  pointer-events: none;
}
.big-stat {
  display: flex; align-items: flex-start;
  font-family: var(--font-display);
  font-weight: 320;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: .85;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.big-stat__num {
  font-size: clamp(160px, 22vw, 280px);
  background: linear-gradient(180deg, #fff 0%, #c0c4d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.big-stat__sym {
  font-size: clamp(80px, 11vw, 140px);
  margin-top: .12em;
  margin-left: .04em;
  color: var(--amber);
  -webkit-text-fill-color: var(--amber);
}
.big-stat__caption {
  font-family: var(--font-display);
  font-weight: 360;
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 38ch;
  position: relative;
  z-index: 1;
}

.problem__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.problem__list li {
  display: flex; gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.problem__list .bullet {
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 18px;
  line-height: 1;
  margin-top: 4px;
  flex-shrink: 0;
}
.problem__list p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
}
.problem__list b { color: var(--text); font-weight: 500; }

@media (max-width: 980px) {
  .problem__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ════════════════════════════════════════════════════════════════
   SOLUTION  -  pin-scrolled stage
   ═══════════════════════════════════════════════════════════════ */
.solution {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
  position: relative;
}
.solution__sticky {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.solution__head { margin-bottom: 64px; max-width: 760px; }

.stage {
  position: relative;
  height: clamp(380px, 56vw, 560px);
  border-radius: var(--radius);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(255,47,214,.07), transparent 60%),
    var(--surface);
  border: 1px solid var(--line-2);
  overflow: hidden;
  margin-bottom: 28px;
}
.stage__pane {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  pointer-events: none;
  padding: 28px;
}
.stage__pane.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* --- pane 1: phone ringing --- */
.phone {
  width: min(440px, 90%);
  padding: 24px 26px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.phone::before {
  content: ""; position: absolute; inset: -50% -10%;
  background: radial-gradient(40% 60% at 50% 50%, rgba(155,48,255,.18), transparent 60%);
  filter: blur(20px);
  animation: ringGlow 1.4s infinite;
  pointer-events: none;
}
@keyframes ringGlow {
  0%, 100% { opacity: .7; }
  50%      { opacity: 1; }
}
.phone__top { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.phone__ring {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(155,48,255,.6), 0 0 16px var(--amber);
  animation: pulseRing 1.2s infinite;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(155,48,255,.6), 0 0 16px var(--amber); }
  70%  { box-shadow: 0 0 0 16px rgba(155,48,255,0), 0 0 16px var(--amber); }
  100% { box-shadow: 0 0 0 0 rgba(155,48,255,0),  0 0 16px var(--amber); }
}
.phone__name { font-weight: 500; font-size: 14px; color: var(--text); }
.phone__num {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--text-muted);
  margin-top: 2px;
}
.phone__hint {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  position: relative; z-index: 1;
}

/* --- pane 2: conversation --- */
.convo {
  width: min(540px, 90%);
  display: flex; flex-direction: column; gap: 10px;
}
.msg {
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  max-width: 80%;
}
.msg b {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.msg--in { align-self: flex-start; border-bottom-left-radius: 4px; }
.msg--out {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: linear-gradient(135deg, rgba(155,48,255,.10), rgba(255,47,214,.06));
  border-color: rgba(155,48,255,.22);
}
.msg--out b { color: var(--green); }

/* --- pane 3: receipt / sync --- */
.receipt {
  width: min(540px, 90%);
  padding: 22px 24px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
}
.receipt__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.receipt__row:last-child { border-bottom: 0; }
.receipt__row span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.receipt__row b { color: var(--text); font-weight: 500; }
.receipt__row b.ok { color: var(--green); }
.receipt__row--sync b {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  text-align: right;
  max-width: 60%;
}

/* rail */
.rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.rail__item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .25s, background .25s;
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.rail__item:last-child { border-right: 0; }
.rail__item b {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--text-dim);
  font-weight: 500;
}
.rail__item.is-on {
  color: var(--text);
  background: linear-gradient(180deg, rgba(155,48,255,.05), transparent);
}
.rail__item.is-on::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--green));
}
.rail__item.is-on b { color: var(--amber); }
.rail__item.is-on::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--amber), var(--green));
  transform-origin: left center;
  animation: railProgress 4.2s linear forwards;
}
@keyframes railProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@media (max-width: 760px) {
  .rail { grid-template-columns: 1fr; }
  .rail__item { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ════════════════════════════════════════════════════════════════
   FEATURES  -  bento grid
   ═══════════════════════════════════════════════════════════════ */
.features {
  padding: var(--pad-section) 0;
}
.features__head {
  max-width: var(--container);
  margin: 0 auto 64px;
  padding: 0 28px;
}

.bento {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  grid-auto-flow: dense;
  gap: 14px;
}

.tile {
  position: relative;
  padding: 26px 26px 28px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
  display: flex; flex-direction: column;
}
.tile:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  background: var(--surface-2);
}

/* sizing: bento layout */
.tile--lead { grid-column: span 4; grid-row: span 2; }
.tile--lang { grid-column: span 2; grid-row: span 2; }
.tile--wide { grid-column: span 4; }
/* the four small tiles auto-flow into the remaining cells */
.tile:not(.tile--lead):not(.tile--lang):not(.tile--wide) { grid-column: span 2; }

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--lead, .tile--lang, .tile--wide { grid-column: span 2; grid-row: auto; }
  .tile:not(.tile--lead):not(.tile--lang):not(.tile--wide) { grid-column: span 1; }
}
@media (max-width: 580px) {
  .bento { grid-template-columns: 1fr; }
  .tile, .tile--lead, .tile--lang, .tile--wide,
  .tile:not(.tile--lead):not(.tile--lang):not(.tile--wide) { grid-column: span 1; }
}

.tile--accent {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(155,48,255,.08), transparent 50%),
    radial-gradient(120% 100% at 100% 100%, rgba(255,47,214,.06), transparent 50%),
    var(--surface);
  border-color: rgba(155,48,255,.18);
}
.tile__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(155,48,255,.08);
  border: 1px solid rgba(155,48,255,.18);
  color: var(--amber);
  margin-bottom: 18px;
}
.tile h3 {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--text);
}
.tile p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* lead-tile waveform decoration */
.tile__viz {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 70px;
}
.tile__viz .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--amber), var(--green));
  border-radius: 2px;
  height: 14px;
  opacity: .8;
  animation: barWave 1.6s ease-in-out infinite;
}
.tile__viz .bar:nth-child(odd) { animation-delay: -.4s; }
.tile__viz .bar:nth-child(3n)  { animation-delay: -.8s; }
.tile__viz .bar:nth-child(4n)  { animation-delay: -1.1s; }
.tile__viz .bar:nth-child(5n)  { animation-delay: -1.4s; }
@keyframes barWave {
  0%, 100% { height: 8px; }
  50%      { height: 56px; }
}

/* lang chips */
.lang-chips {
  margin-top: auto;
  padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.lang-chips span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 5px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
}
.lang-chips span:nth-child(1) { color: var(--amber); border-color: rgba(155,48,255,.3); }

/* dialer bars */
.dialer {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.dialer__bar {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.dialer__bar i {
  display: block;
  height: 6px;
  width: 220px;
  max-width: 50%;
  background: rgba(255,255,255,.05);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.dialer__bar i::after {
  content: "";
  position: absolute; inset: 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--amber), var(--green));
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(155,48,255,.3);
}

/* ════════════════════════════════════════════════════════════════
   DEMO  -  split screen call dock
   ═══════════════════════════════════════════════════════════════ */
.demo {
  padding: var(--pad-section) 0;
}
.demo__head {
  max-width: var(--container);
  margin: 0 auto 56px;
  padding: 0 28px;
}

.dock {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.dock::before {
  content: "";
  position: absolute; inset: -6% -2% -6% -2%;
  background:
    radial-gradient(50% 50% at 25% 50%, rgba(155,48,255,.10), transparent 60%),
    radial-gradient(50% 50% at 75% 50%, rgba(255,47,214,.08), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.dock__play {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  background: linear-gradient(96deg, var(--amber), var(--green));
  color: #1a1a2e;
  font-weight: 500;
  font-size: 14.5px;
  margin-bottom: 22px;
  box-shadow: 0 0 30px var(--glow-amber);
  transition: transform .25s var(--ease);
}
.dock__play:hover { transform: translateY(-1px); }
.dock__playIcon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #1a1a2e;
  display: grid; place-items: center;
  position: relative;
}
.dock__playIcon::before {
  content: "";
  width: 0; height: 0;
  border-left: 9px solid var(--amber);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}
.dock.is-playing .dock__playIcon::before {
  content: "";
  width: 8px; height: 10px;
  border: none;
  margin: 0;
  background:
    linear-gradient(90deg, var(--amber) 0 3px, transparent 3px 5px, var(--amber) 5px 8px);
}

.dock__split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.dock__left {
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.dock__right {
  background: var(--bg-2);
  display: flex; flex-direction: column;
  padding: 22px 24px 24px;
}
.dock__top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.dock__id { display: flex; gap: 12px; align-items: center; }
.dock__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--amber) 0%, var(--green) 60%, var(--green-deep) 100%);
  box-shadow: 0 0 16px var(--glow-amber);
  position: relative;
}
.dock__avatar::after {
  content: ""; position: absolute; inset: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 60%);
}
.dock__name { font-weight: 500; font-size: 14.5px; }
.dock__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 2px;
  letter-spacing: .04em;
}
.dock__status {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.dock.is-playing .dock__status {
  color: var(--green);
  border-color: rgba(255,47,214,.3);
  background: rgba(255,47,214,.05);
}

.dock__wave {
  height: 56px;
  display: flex; align-items: center; gap: 2px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.dock__wave i {
  flex: 1;
  display: block;
  height: 6px;
  background: linear-gradient(180deg, var(--amber), var(--green));
  border-radius: 1px;
  opacity: .35;
  transition: height .15s, opacity .15s;
}

.dock__transcript {
  padding: 22px 24px 24px;
  flex: 1;
  overflow: auto;
  max-height: 380px;
}
.dock__transcript li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 12px;
  opacity: .25;
  transition: opacity .4s, color .4s;
}
.dock__transcript li.is-on { opacity: 1; color: var(--text); }
.dock__transcript li b {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-right: 10px;
  color: var(--amber);
}
.dock__transcript li:nth-child(even) b { color: var(--green); }

.dock__panelTitle {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.dock__panelTitle span { color: var(--green); font-size: 10px; }

.extract {
  display: flex; flex-direction: column;
  gap: 0;
  margin-bottom: 22px;
}
.extract li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--text-muted);
  opacity: .35;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  transform: translateX(6px);
}
.extract li.is-on { opacity: 1; transform: none; }
.extract li:last-child { border-bottom: 0; }
.extract li span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.extract li b {
  font-weight: 500;
  font-size: 13.5px;
  color: var(--text);
  text-align: right;
}
.extract li b.ok { color: var(--green); }

.metric {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.metric__row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
}
.metric__row span { width: 130px; flex-shrink: 0; }
.metric__bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.05);
  border-radius: 3px;
  overflow: hidden;
}
.metric__bar i {
  display: block;
  height: 100%;
  width: var(--v, 50%);
  background: linear-gradient(90deg, var(--amber), var(--green));
  border-radius: 3px;
  transition: width .6s var(--ease-out);
}
.metric__bar--alt i { background: linear-gradient(90deg, var(--green), var(--amber)); }

@media (max-width: 880px) {
  .dock__split { grid-template-columns: 1fr; }
  .dock__left { border-right: 0; border-bottom: 1px solid var(--line); }
  .dock__transcript { max-height: 280px; }
}

/* ════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.pricing {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
}
.pricing__head {
  max-width: var(--container);
  margin: 0 auto 64px;
  padding: 0 28px;
  text-align: center;
}
.pricing__head .h2 { margin-inline: auto; }
.pricing__head .lede { margin-inline: auto; }
.pricing__head .kicker { display: inline-block; }

.plans {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s;
}
.plan:hover { transform: translateY(-4px); border-color: var(--line-2); }
.plan--featured {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(155,48,255,.10), transparent 60%),
    var(--surface-2);
  border-color: rgba(155,48,255,.32);
  box-shadow:
    0 30px 80px -30px rgba(155,48,255,.18),
    inset 0 0 0 1px rgba(155,48,255,.08);
}
.plan__badge {
  position: absolute; top: -1px; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: linear-gradient(95deg, var(--amber), var(--green));
  color: #1a1a2e;
  border-radius: 999px;
  font-weight: 500;
}
.plan__top { margin-bottom: 18px; }
.plan__name {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}
.plan__for { font-size: 13px; color: var(--text-dim); }
.plan__price {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.plan__price sup {
  font-size: 22px;
  color: var(--text-muted);
  margin-right: 4px;
  vertical-align: super;
}
.plan__price span {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}
.plan__setup {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.plan__list { flex: 1; margin-bottom: 26px; }
.plan__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 14px;
}
.plan__list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 8px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(-45deg);
}

@media (max-width: 1000px) {
  .plans { grid-template-columns: 1fr; max-width: 480px; }
}

/* ════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq {
  padding: var(--pad-section) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.faq__head { max-width: var(--container); margin: 0 0 48px; padding: 0 28px; }

.faq__list {
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
}
.qa {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.qa[open] { background: linear-gradient(180deg, transparent, rgba(155,48,255,.025)); }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 360;
  letter-spacing: -.005em;
  color: var(--text);
  transition: color .25s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--amber); }
.qa summary::after {
  content: "";
  width: 12px; height: 12px;
  flex-shrink: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
  margin-bottom: 4px;
}
.qa[open] summary::after { transform: rotate(-135deg); margin-bottom: -2px; }
.qa__body {
  padding: 0 4px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}
@media (max-width: 880px) {
  .faq__list { grid-template-columns: 1fr; gap: 0; }
}

/* ════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.cta {
  padding: var(--pad-section) 0;
  position: relative;
  overflow: hidden;
}
#ctaGlobe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: .6;
}
.cta::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(155,48,255,.18) 0%, transparent 55%),
    radial-gradient(50% 60% at 30% 80%, rgba(255,47,214,.14) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6,7,13,.55), rgba(6,7,13,.85));
  z-index: 1;
  pointer-events: none;
}
.cta__inner {
  position: relative; z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(46px, 7.5vw, 110px);
  line-height: .95;
  letter-spacing: -.035em;
  color: var(--text);
}
.cta__title em {
  font-style: italic;
  font-weight: 360;
  background: linear-gradient(95deg, var(--amber) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta__sub {
  margin: 28px auto 36px;
  max-width: 60ch;
  color: var(--text-muted);
  font-size: 17px;
}
.cta__row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 22px;
}
.cta__fp {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.foot {
  border-top: 1px solid var(--line);
  padding: 44px 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  position: relative; z-index: 3;
}
.foot__l { display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap; }
.foot__brand { font-weight: 600; }
.foot__tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
}
.foot__r { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--text-dim); }
.foot__r a { transition: color .2s; }
.foot__r a:hover { color: var(--text); }

/* ════════════════════════════════════════════════════════════════
   Reveal-on-scroll utility (toggled by GSAP / IntersectionObserver)
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════
   Reduced motion
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  html { scroll-behavior: auto; }
  .cursor { display: none; }
  body { cursor: auto; }
}

/* ════════════════════════════════════════════════════════════════
   LISTEN  ·  tap-to-hear orb + tagline
   ═══════════════════════════════════════════════════════════════ */
.listen {
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
}
.listen__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.listen__copy { max-width: 560px; }
.listen__h {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 18px 0 22px;
  color: var(--text);
}
.listen__h em {
  font-style: italic;
  font-weight: 360;
  background: linear-gradient(95deg, var(--amber) 0%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.listen__sub {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 50ch;
}

/* Marketing pitch box */
.pitchbox {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(155,48,255,.06), transparent 50%),
    radial-gradient(120% 100% at 100% 100%, rgba(255,47,214,.04), transparent 50%),
    var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 24px 26px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pitchbox__row {
  border-right: 1px solid var(--line);
  padding-right: 18px;
}
.pitchbox__row:last-of-type { border-right: 0; padding-right: 0; }
.pitchbox__num {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--text);
}
.pitchbox__num span { color: var(--amber); margin-left: 2px; }
.pitchbox__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.pitchbox__line {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* The interactive voice orb */
.listen__orb {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0;
}

/* Big circular click target with the canvas inside.
   No square card - the canvas is transparent, blending into the section bg. */
.orb-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .35s var(--ease);
}
.orb-stage:hover  { transform: scale(1.015); }
.orb-stage:active { transform: scale(.985); }
.orb-stage:focus-visible {
  box-shadow: 0 0 0 3px rgba(155,48,255,.4);
}

#voiceOrb {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  background: transparent;
  pointer-events: none;
  /* Soft circular mask: orb is the only thing visible. Edge feathers gently
     so the halo glow blends into the page bg instead of clipping at a square. */
  -webkit-mask-image: radial-gradient(circle at center, #000 50%, transparent 72%);
          mask-image: radial-gradient(circle at center, #000 50%, transparent 72%);
}

/* Center hint pill - only visible when idle. */
.orb-stage__hint {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  background: rgba(10, 10, 20, .35);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 9px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.orb-stage__hint::before {
  content: "";
  width: 0; height: 0;
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-right: 1px;
}
.orb-stage.is-playing .orb-stage__hint {
  opacity: 0;
  transform: scale(.92);
}

/* Language toggle (EN / AR) */
.lang-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(10, 10, 20, .55);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 5;
}
.lang-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  transition: background .25s var(--ease), color .25s, transform .25s, box-shadow .25s;
  border: 0;
  cursor: pointer;
  position: relative;
}
.lang-toggle__btn:hover { color: var(--text); }
.lang-toggle__btn.is-active {
  background: linear-gradient(135deg, #9b30ff 0%, #ff2fd6 100%);
  color: #fff;
  box-shadow: 0 4px 18px -4px var(--glow-amber);
}
.lang-toggle__flag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  font-weight: 600;
  padding: 2px 7px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
}
.lang-toggle__btn.is-active .lang-toggle__flag {
  background: rgba(255,255,255,.22);
}
.lang-toggle__btn[data-lang="ar"] .lang-toggle__label {
  font-size: 14px;
  direction: rtl;
}

.orb-caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 8px;
  justify-content: center;
}
.orb-caption__dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.4s infinite;
}

@media (max-width: 880px) {
  .listen__inner { grid-template-columns: 1fr; }
  .listen__orb { margin: 32px auto 40px; max-width: 360px; gap: 20px; }
  .pitchbox { grid-template-columns: 1fr 1fr; }
  .pitchbox__row:nth-child(2) { border-right: 0; padding-right: 0; }
}
/* ════════════════════════════════════════════════════════════════
   CASE STUDY  ·  Jacobs Real Estate
   ═══════════════════════════════════════════════════════════════ */
.case {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 25%, var(--bg-2) 75%, transparent);
  position: relative;
}
.case__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.case__head { max-width: 90ch; margin-bottom: 32px; }
.case-title {
  /* Flow as a sentence (override default max-width on .h2) */
  max-width: 22ch !important;     /* short max so it wraps a couple times naturally, not word-by-word */
  font-size: clamp(34px, 4.5vw, 60px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.02em !important;
}
.case-title .hi {
  display: inline;
  background: linear-gradient(135deg, #9b30ff 0%, #ff2fd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 460;
  filter: drop-shadow(0 0 18px rgba(155,48,255,.35));
}

/* Dubai skyline image strip behind client header */
.case__skyline {
  position: relative;
  margin: 0 -28px 18px;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background:
    /* brand backdrop sits below the photo so it bleeds through */
    radial-gradient(80% 100% at 30% 100%, #9b30ff, transparent 70%),
    radial-gradient(80% 100% at 75% 100%, #ff2fd6, transparent 65%),
    linear-gradient(180deg, #1a0a2a 0%, #2d0e44 100%);
}
.case__skylineImg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  /* Original is high-key B&W; tone it to the brand by removing color first,
     then mix-blending the photo against the colored backdrop. */
  filter: brightness(.85) contrast(1.18) saturate(0);
  mix-blend-mode: screen;
  opacity: .85;
}
.case__skylineFade {
  position: absolute; inset: 0;
  background:
    /* edge fade so the skyline blends with the page bg */
    linear-gradient(90deg, var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%),
    /* punchier brand wash on the bottom half */
    radial-gradient(60% 80% at 25% 100%, rgba(155,48,255,.55), transparent 70%),
    radial-gradient(60% 80% at 75% 100%, rgba(255,47,214,.45), transparent 70%),
    /* darken bottom so client header reads cleanly */
    linear-gradient(180deg, transparent 30%, rgba(10,10,20,.55) 85%, var(--bg) 100%);
  pointer-events: none;
}

/* Jacobs Real Estate text-based logo block (placeholder until real logo lands) */
.case__logoMark--text {
  width: auto !important;
  background: transparent !important;
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: var(--font-display);
  letter-spacing: .02em;
}
.case__logoTxt {
  font-weight: 380;
  font-size: 22px;
  letter-spacing: .12em;
  color: var(--text);
  font-feature-settings: "ss01";
}
.case__logoBar {
  width: 1px;
  height: 26px;
  background: var(--line-2);
}
.case__logoSub {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: .18em;
  line-height: 1.15;
  color: var(--text-muted);
  text-transform: uppercase;
}

.case__logoMark {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #9b30ff 0%, #ff2fd6 100%);
  color: #fafafe;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.02em;
}

.case__client {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.case__logo { display: flex; align-items: center; gap: 14px; }
.case__logoName {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
}
.case__logoMeta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: .04em;
  margin-top: 2px;
}
.case__product {
  display: flex; flex-direction: column; gap: 2px;
  text-align: right;
}
.case__product span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.case__product b {
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
}

.case__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 56px;
}
.case__stat {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(155,48,255,.04), transparent 50%),
    var(--bg-2);
  padding: 36px 32px 32px;
}
.case__num {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 10px;
}
.case__num span {
  color: var(--amber);
  margin-left: 2px;
}
.case__lbl {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 32ch;
}
.case__lbl i {
  font-style: normal;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
}

.case__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.case__col h3 { margin-bottom: 14px; }
.case__sub {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--text);
}
.case__col p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.case__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.case__results {
  padding: 32px 36px;
  border-left: 2px solid var(--amber);
  background: linear-gradient(90deg, rgba(155,48,255,.06), transparent 70%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.case__results p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text);
}

@media (max-width: 900px) {
  .case__stats { grid-template-columns: 1fr; }
  .case__body  { grid-template-columns: 1fr; gap: 36px; }
  .case__product { text-align: left; }
}

/* ════════════════════════════════════════════════════════════════
   RECOGNITIONS
   ═══════════════════════════════════════════════════════════════ */
.recognitions {
  padding: clamp(56px, 7vw, 96px) 0;
}
.recognitions__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.recognitions__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
  max-width: 100%;
}
.recognitions__head .kicker { grid-column: 1 / -1; margin-bottom: 4px; }
.recognitions__h {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--text);
  max-width: 22ch;
}
.recognitions__sub {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 50ch;
  /* nudge it down to baseline-align with the title nicely */
  padding-bottom: 6px;
}
.recognitions__h em {
  font-style: italic;
  font-weight: 360;
  background: linear-gradient(95deg, var(--amber), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

@media (max-width: 880px) {
  .recognitions__head { grid-template-columns: 1fr; gap: 18px; }
  .recognitions__sub { padding-bottom: 0; }
}

.recog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.recog-card {
  display: flex; flex-direction: column;
  padding: 28px 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
  min-height: 200px;
}
.recog-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  background: var(--surface-2);
}
.recog-card--nv {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(118,185,0,.10), transparent 60%),
    var(--surface);
  border-color: rgba(118,185,0,.22);
}

/* image holder for each recognition logo */
.recog-img {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 4px 8px 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.recog-img img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* The DCAI and DFF logos contain blue accents; on dark they look great as-is.
   The white-stroke wordmark portion is already on transparent.                  */
.recog-img--dcai img,
.recog-img--dff  img { max-height: 96px; }
.recog-img--nv   img { max-height: 110px; }   /* NVIDIA needs a touch more room */

.recog-text {
  display: flex; flex-direction: column; gap: 0;
  padding: 0 4px;
}
.recog-text em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .recog-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   COMPLIANCE  ·  Trusted by Industry Leaders
   ═══════════════════════════════════════════════════════════════ */
.compliance {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
}
.compliance__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.compliance__l { max-width: 640px; }
.compliance__l .h2 { max-width: 16ch; margin-bottom: 22px; }
.compliance__l .lede { margin-bottom: 32px; }

.compliance__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 580px;
}
.badge {
  display: grid;
  place-items: center;
  padding: 22px 18px;
  height: 110px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .25s, background .25s, transform .25s;
}
.badge:hover {
  border-color: var(--line-2);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.badge img {
  max-height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  /* the source logos are white linework on transparent; keep them lightly muted
     so they don't shout against the dark surface */
  opacity: .92;
  transition: opacity .25s;
}
.badge:hover img { opacity: 1; }

/* lock card on the right */
.compliance__r {
  position: relative;
  display: grid; place-items: center;
}
.lockcard {
  position: relative;
  width: clamp(220px, 26vw, 300px);
  aspect-ratio: 1;
  border-radius: var(--radius);
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(155,48,255,.45) 0%, rgba(122,31,212,.18) 50%, transparent 75%),
    linear-gradient(135deg, #7a1fd4 0%, #9b30ff 50%, #ff2fd6 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,.95);
  box-shadow:
    0 30px 80px -30px rgba(155,48,255,.45),
    inset 0 0 0 1px rgba(255,255,255,.12);
  overflow: hidden;
}
.lockcard__glow {
  position: absolute; inset: -20%;
  background: radial-gradient(40% 40% at 50% 30%, rgba(255,255,255,.4), transparent 60%);
  filter: blur(20px);
  animation: lockGlow 3s ease-in-out infinite;
}
@keyframes lockGlow {
  0%, 100% { opacity: .55; }
  50%      { opacity: .85; }
}
.lockcard svg { position: relative; z-index: 1; }
.lockcard__lines {
  position: absolute;
  inset: auto 0 16% 0;
  display: flex; gap: 6px; justify-content: center;
}
.lockcard__lines span {
  width: 14%;
  height: 4px;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
}
.lockcard__lines span:nth-child(1) { width: 22%; }
.lockcard__lines span:nth-child(2) { width: 12%; }
.lockcard__lines span:nth-child(3) { width: 18%; }
.lockcard__lines span:nth-child(4) { width: 10%; }

@media (max-width: 980px) {
  .compliance__inner { grid-template-columns: 1fr; }
  .compliance__r { display: none; }
  .compliance__badges { grid-template-columns: 1fr; max-width: 320px; }
}

/* ════════════════════════════════════════════════════════════════
   PRICING SOLO  ·  single-plan layout
   ═══════════════════════════════════════════════════════════════ */
.plans--single {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}
.plan--solo {
  text-align: left;
  padding: 44px 44px 36px;
}
.plan__pitch {
  font-family: var(--font-display);
  font-weight: 380;
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  color: var(--text-muted);
  margin: 18px 0 26px;
  padding: 18px 22px;
  border-left: 2px solid var(--amber);
  background: rgba(155,48,255,.04);
  border-radius: 0 8px 8px 0;
}
.plan__small {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--text-dim);
}
.plan__ctas {
  display: flex; gap: 10px; flex-direction: column;
}
.plan__setup .aed {
  font-family: var(--font-mono);
  color: var(--green);
  margin-left: 4px;
}
.plan__setup b { color: var(--amber); }

/* ════════════════════════════════════════════════════════════════
   PROCESS  ·  Built for business (4-step engagement)
   ═══════════════════════════════════════════════════════════════ */
.process {
  padding: var(--pad-section) 0;
  position: relative;
}
.process__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.process__head { margin-bottom: 48px; max-width: 64ch; }
.process__head .h2 { max-width: 14ch; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.step-card {
  position: relative;
  padding: 28px 28px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155,48,255,.35);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(155,48,255,.06), transparent 60%),
    var(--surface-2);
}
.step-card__num {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(155,48,255,.18), transparent 60%),
    rgba(155,48,255,.08);
  border: 1px solid rgba(155,48,255,.34);
  margin-bottom: 22px;
  position: relative;
}
.step-card__num::before {
  /* small inset glow corner like the reference */
  content: "";
  position: absolute; top: -1px; left: -1px;
  width: 10px; height: 10px;
  border-top: 2px solid #9b30ff;
  border-left: 2px solid #9b30ff;
  border-top-left-radius: 10px;
}
.step-card__num span {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: 22px;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #9b30ff 0%, #ff2fd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 50ch;
}

@media (max-width: 760px) {
  .process__grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════
   SCALING BUSINESSES  ·  4 big-picture stats
   ═══════════════════════════════════════════════════════════════ */
.scaling {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
}
.scaling__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.scaling__l { position: sticky; top: 120px; }
.scaling__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.scaling__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9b30ff, #ff2fd6);
  box-shadow: 0 0 12px rgba(155,48,255,.6);
}
.scaling__h {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--text);
  max-width: 14ch;
}
.scaling__h em {
  font-style: italic;
  font-weight: 360;
  background: linear-gradient(135deg, #9b30ff, #ff2fd6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scaling__r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.scaling__cell {
  background: var(--bg);
  padding: 32px 30px 30px;
  display: flex; flex-direction: column; gap: 12px;
}
.scaling__lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scaling__num {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--text);
  display: flex; align-items: baseline; gap: 2px;
}
.scaling__num i {
  font-style: normal;
  font-weight: 360;
  font-size: .55em;
  background: linear-gradient(135deg, #9b30ff, #ff2fd6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 2px;
}
.scaling__cell p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 32ch;
}

@media (max-width: 980px) {
  .scaling__inner { grid-template-columns: 1fr; gap: 32px; }
  .scaling__l { position: static; }
}
@media (max-width: 600px) {
  .scaling__r { grid-template-columns: 1fr; }
}
