  :root {
    --bg: #161A22;
    --bg-1: #1C212B;
    --bg-2: #232936;
    --bg-3: #2B3242;
    --line: rgba(255,255,255,.08);
    --line-2: rgba(255,255,255,.14);
    --fg: #ECEFF4;
    --fg-2: rgba(236,239,244,.74);
    --fg-3: rgba(236,239,244,.52);
    --fg-4: rgba(236,239,244,.34);
    --accent: #7CFFB2;        /* electric mint */
    --accent-2: #6AA8FF;      /* cool blue */
    /* VORA — Voice Aura palette */
    --aura-1: #FF6B9D;        /* coral pink */
    --aura-2: #B57BFF;        /* violet */
    --aura-3: #6AE3FF;        /* cyan */
    --aura-4: #FFCB6B;        /* amber */
    --aura-5: #7CFFB2;        /* mint */
    --aura-6: #FF8C5A;        /* sunset */
    --aura-7: #C4B5FD;        /* lilac */
    --warn: #FFB86B;
    --danger: #FF6B8A;

    --sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  }

  html[data-theme="light"] {
    --bg: #F6F7F9;
    --bg-1: #FFFFFF;
    --bg-2: #FFFFFF;
    --bg-3: #F1F2F5;
    --line: rgba(7,9,12,.08);
    --line-2: rgba(7,9,12,.14);
    --fg: #07090C;
    --fg-2: rgba(7,9,12,.72);
    --fg-3: rgba(7,9,12,.50);
    --fg-4: rgba(7,9,12,.32);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { background: var(--bg); color: var(--fg); }
  html, body { overflow-x: hidden; max-width: 100%; }
  body {
    font-family: var(--sans);
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.011em;
  }
  .mono { font-family: var(--mono); font-feature-settings: "tnum" 1; letter-spacing: 0; }

  ::selection { background: var(--accent); color: #000; }

  /* ========== Background grid (the "signal field") ========== */
  .grid-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
      radial-gradient(1200px 600px at 80% -10%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 60%),
      radial-gradient(900px 500px at -10% 20%, color-mix(in oklch, var(--accent-2) 10%, transparent), transparent 60%);
  }
  .grid-bg::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, var(--line) 1px, transparent 1px),
      linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, #000 50%, transparent 100%);
  }

  /* Scanline pulse on the grid */
  .grid-bg::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1px; top: 0;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: .4;
    animation: scan 8s linear infinite;
  }
  @keyframes scan {
    0%   { top: 0%;   opacity: 0; }
    10%  { opacity: .6; }
    90%  { opacity: .6; }
    100% { top: 100%; opacity: 0; }
  }
  html[data-grid="off"] .grid-bg::before,
  html[data-grid="off"] .grid-bg::after { display: none; }

  /* ========== Type ========== */
  .display {
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: .92;
  }
  .display .accent-text {
    background: linear-gradient(180deg, var(--accent) 0%, color-mix(in oklch, var(--accent) 70%, var(--bg)) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-style: normal;
  }
  .h2 { font-weight: 500; letter-spacing: -0.03em; line-height: .98; }
  .h3 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }

  .label {
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--fg-3);
  }
  .label .dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 99px;
    background: var(--accent); margin-right: 8px; vertical-align: 1px;
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 25%, transparent);
  }
  @keyframes blink { 50% { opacity: .25; } }
  .live-dot { animation: blink 1.4s ease-in-out infinite; }

  /* ========== Buttons ========== */
  .btn {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .7rem 1.05rem; font-size: 13.5px; font-weight: 500;
    border-radius: 8px;
    transition: all .18s ease;
    font-family: var(--sans);
  }
  .btn-primary {
    background: var(--accent); color: #06120A;
    box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 8px 24px -8px color-mix(in oklch, var(--accent) 55%, transparent);
  }
  .btn-primary:hover { transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--fg);
    border: 1px solid var(--line-2);
  }
  .btn-ghost:hover { border-color: var(--fg-3); background: var(--bg-2); }

  /* ========== Cards ========== */
  .card {
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: 14px;
    position: relative;
  }
  .card-ridge {
    background:
      linear-gradient(var(--bg-1), var(--bg-1)) padding-box,
      linear-gradient(180deg, var(--line-2), var(--line) 30%, transparent 80%) border-box;
    border: 1px solid transparent;
  }

  .pending::after { content: '●●●'; letter-spacing: 2px; color: var(--fg-4); animation: dots 1.2s steps(4, end) infinite; }
  @keyframes dots { 0%,20%{opacity:.2} 50%{opacity:.7} 100%{opacity:.2} }
  .pending { color: var(--fg-3) !important; }

  /* ========== Field ========== */
  .field {
    width: 100%; background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .75rem .9rem; font: inherit; color: var(--fg);
    outline: none; transition: border-color .15s ease, background .15s ease;
  }
  .field:focus { border-color: var(--accent); background: var(--bg-1); }
  .field::placeholder { color: var(--fg-4); }

  :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

  /* ========== Hero waveform ========== */
  .wave-shell { position: relative; height: 220px; }
  .wave-shell canvas { width: 100%; height: 100%; display: block; }
  .wave-axis {
    position: absolute; inset: 0; pointer-events: none;
    background:
      linear-gradient(to right, var(--line) 1px, transparent 1px) 0 0/ 25% 100%,
      linear-gradient(to bottom, transparent calc(50% - 1px), var(--line-2) 50%, transparent calc(50% + 1px));
  }

  /* ========== Pillar cards ========== */
  .pillar { padding: 28px; min-height: 320px; display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden; }
  .pillar .pillar-num {
    font-family: var(--mono); font-size: 11px; color: var(--fg-3); letter-spacing: .1em;
  }
  .pillar h3 { font-size: 24px; }
  .pillar p { color: var(--fg-2); font-size: 14px; line-height: 1.55; }
  .pillar .glyph {
    position: absolute; right: -10px; bottom: -20px;
    font-family: var(--mono); font-size: 200px; line-height: 1;
    color: color-mix(in oklch, var(--accent) 8%, transparent);
    pointer-events: none; user-select: none;
  }

  /* ========== Stat row ========== */
  .stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
  .stat { background: var(--bg-1); padding: 22px 24px; }
  .stat .num { font-size: 36px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
  .stat .num .accent-text { color: var(--accent); }
  .stat .desc { font-size: 12.5px; color: var(--fg-2); margin-top: 10px; line-height: 1.5; }
  @media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

  /* ========== Transcript player ========== */
  .turn { padding: .8rem 0; transition: opacity .25s ease; opacity: .4; }
  .turn.active { opacity: 1; }
  .turn .who { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
  .turn[data-who="vora"] .who { color: var(--accent); }
  .turn[data-who="caller"] .who { color: var(--fg-3); }
  .said { font-size: 16px; line-height: 1.5; color: var(--fg); }
  .turn:not(.active) .said { color: var(--fg-2); }

  /* ========== Flow ========== */
  .flow-shell { position: relative; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--bg-1); }
  .flow-pulse {
    position: absolute; left: 0; right: 0; top: 0; height: 2px; pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    background-size: 30% 100%; background-repeat: no-repeat;
    animation: flowPulse 8s linear infinite;
    z-index: 3;
    box-shadow: 0 0 18px var(--accent);
  }
  @keyframes flowPulse {
    0%   { background-position: -30% 0; }
    100% { background-position: 130% 0; }
  }
  .flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); position: relative; z-index: 1; }
  .flow-step {
    background: var(--bg-1); padding: 22px; min-height: 280px;
    display: flex; flex-direction: column; gap: 12px;
    position: relative; overflow: hidden;
    transition: background .6s ease;
  }
  .flow-step.is-active { background: color-mix(in oklch, var(--accent) 8%, var(--bg-1)); }
  .flow-step.is-active .stamp { color: var(--accent); text-shadow: 0 0 10px color-mix(in oklch, var(--accent) 60%, transparent); }
  .flow-step .stamp { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: .08em; transition: color .3s ease; }
  .flow-step h4 { font-weight: 500; font-size: 16px; line-height: 1.25; letter-spacing: -.01em; }
  .flow-step p { font-size: 13px; color: var(--fg-2); line-height: 1.5; }
  .flow-step .stage { height: 56px; margin: 4px 0 6px; position: relative; }

  /* Step 1: ring waves */
  .ring-stage { display: flex; align-items: center; justify-content: center; }
  .ring-stage .core { width: 14px; height: 14px; border-radius: 99px; background: var(--accent); position: relative; z-index: 2; }
  .ring-stage .ring { position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; border: 1.5px solid var(--accent); border-radius: 99px; transform: translate(-50%, -50%); opacity: 0; }
  .flow-step.is-active .ring-stage .ring { animation: ringOut 1.6s ease-out infinite; }
  .flow-step.is-active .ring-stage .ring:nth-child(2) { animation-delay: .4s; }
  .flow-step.is-active .ring-stage .ring:nth-child(3) { animation-delay: .8s; }
  @keyframes ringOut {
    0%   { transform: translate(-50%, -50%) scale(1); opacity: .9; border-color: var(--accent); }
    100% { transform: translate(-50%, -50%) scale(4.5); opacity: 0; border-color: var(--accent); }
  }

  /* Step 2: parallel load bars */
  .load-stage { display: flex; flex-direction: column; gap: 5px; justify-content: center; padding: 4px 0; }
  .load-stage .lb { height: 5px; border-radius: 99px; background: color-mix(in oklch, var(--fg) 8%, transparent); overflow: hidden; position: relative; }
  .load-stage .lb::before { content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: var(--accent); border-radius: 99px; transition: width .9s ease; }
  .flow-step.is-active .load-stage .lb::before { width: 100%; }
  .flow-step.is-active .load-stage .lb:nth-child(1)::before { transition-delay: .05s; }
  .flow-step.is-active .load-stage .lb:nth-child(2)::before { transition-delay: .25s; width: 88%; }
  .flow-step.is-active .load-stage .lb:nth-child(3)::before { transition-delay: .15s; width: 70%; }

  /* Step 3: voice waveform */
  .wave-stage { display: flex; align-items: center; justify-content: center; gap: 3px; }
  .wave-stage span { display: inline-block; width: 3px; border-radius: 99px; background: color-mix(in oklch, var(--accent) 50%, transparent); height: 20%; transform-origin: center; }
  .flow-step.is-active .wave-stage span { background: var(--accent); animation: voicePulse 1.1s ease-in-out infinite; }
  .flow-step.is-active .wave-stage span:nth-child(1) { animation-delay: -.6s; }
  .flow-step.is-active .wave-stage span:nth-child(2) { animation-delay: -.4s; }
  .flow-step.is-active .wave-stage span:nth-child(3) { animation-delay: -.2s; }
  .flow-step.is-active .wave-stage span:nth-child(4) { animation-delay: -.5s; }
  .flow-step.is-active .wave-stage span:nth-child(5) { animation-delay: -.1s; }
  .flow-step.is-active .wave-stage span:nth-child(6) { animation-delay: -.3s; }
  .flow-step.is-active .wave-stage span:nth-child(7) { animation-delay: -.45s; }
  .flow-step.is-active .wave-stage span:nth-child(8) { animation-delay: -.15s; }
  .flow-step.is-active .wave-stage span:nth-child(9) { animation-delay: -.35s; }
  @keyframes voicePulse { 0%,100% { height: 18%; } 50% { height: 90%; } }

  /* Step 4: action checklist */
  .act-stage { display: flex; flex-direction: column; gap: 4px; justify-content: center; font-family: var(--mono); font-size: 11px; color: var(--fg-3); }
  .act-stage .it { display: flex; align-items: center; gap: 8px; opacity: .35; transition: opacity .4s ease; }
  .act-stage .it .bx { width: 10px; height: 10px; border: 1px solid var(--fg-3); border-radius: 3px; position: relative; }
  .act-stage .it.done { opacity: 1; color: var(--fg); }
  .act-stage .it.done .bx { background: var(--accent); border-color: var(--accent); }
  .act-stage .it.done .bx::after { content:""; position: absolute; left: 2px; top: -1px; width: 4px; height: 7px; border-right: 1.5px solid #06120A; border-bottom: 1.5px solid #06120A; transform: rotate(40deg); }

  /* Step 5: write-back data flow */
  .write-stage { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
  .write-stage .wb { font-family: var(--mono); font-size: 10px; color: var(--fg-3); padding: 4px 7px; border: 1px solid var(--line-2); border-radius: 5px; background: var(--bg-2); }
  .write-stage .arrow { flex: 1; height: 2px; margin: 0 6px; background: repeating-linear-gradient(90deg, var(--line-2) 0 4px, transparent 4px 8px); position: relative; overflow: hidden; }
  .write-stage .arrow::after { content:""; position: absolute; left: -30%; top: 0; width: 30%; height: 100%; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; }
  .flow-step.is-active .write-stage .arrow::after { animation: writeFlow 1.4s linear infinite; opacity: 1; }
  .flow-step.is-active .write-stage .wb.dst { color: var(--accent); border-color: var(--accent); box-shadow: 0 0 12px color-mix(in oklch, var(--accent) 40%, transparent); }
  @keyframes writeFlow { 0% { transform: translateX(0); } 100% { transform: translateX(450%); } }

  /* Connector dots between steps */
  .flow-step + .flow-step::before {
    content:""; position: absolute; left: -5px; top: 36px; width: 9px; height: 9px; border-radius: 99px;
    background: var(--bg-1); border: 1.5px solid var(--line-2); z-index: 2;
  }
  .flow-step.is-active::before { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 10px var(--accent); }

  @media (max-width: 1100px) { .flow { grid-template-columns: repeat(2, 1fr); } .flow-step + .flow-step::before { display: none; } }
  @media (max-width: 600px)  { .flow { grid-template-columns: 1fr; } }

  /* ========== Chip ========== */
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px; border-radius: 99px;
    background: var(--bg-2); border: 1px solid var(--line);
    font-family: var(--mono); font-size: 11px; color: var(--fg-2); letter-spacing: .04em;
  }
  .chip .d { width: 5px; height: 5px; border-radius: 99px; background: var(--accent); }

  /* ========== Capabilities ========== */
  .cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
  .cap { background: var(--bg-1); padding: 28px; position: relative; overflow: hidden; transition: background .5s ease; }
  .cap::before {
    content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: var(--accent); transform: scaleY(0); transform-origin: top;
    transition: transform .5s ease; opacity: .9;
  }
  .cap.is-active::before { transform: scaleY(1); }
  .cap.is-active { background: color-mix(in oklch, var(--accent) 6%, var(--bg-1)); }
  .cap .id { font-family: var(--mono); font-size: 11px; color: var(--accent); }
  .cap h3 { font-size: 22px; margin-top: 8px; font-weight: 500; letter-spacing: -.02em; }
  .cap p { color: var(--fg-2); font-size: 14px; line-height: 1.55; margin-top: 10px; position: relative; z-index: 2; }
  .cap .anim { height: 84px; margin: 14px 0 6px; position: relative; }

  /* A: Inbound — ringing phone with concentric pulses */
  .anim-inbound { display: flex; align-items: center; gap: 14px; }
  .anim-inbound .ph-ring { position: relative; width: 48px; height: 48px; border-radius: 99px; background: color-mix(in oklch, var(--accent) 14%, var(--bg-2)); display: flex; align-items: center; justify-content: center; flex: none; }
  .anim-inbound .ph-ring svg { width: 22px; height: 22px; color: var(--accent); }
  .cap.is-active .anim-inbound .ph-ring { animation: phShake 1.6s ease-in-out infinite; }
  @keyframes phShake { 0%,100% { transform: rotate(0); } 10%,30% { transform: rotate(-12deg); } 20%,40% { transform: rotate(12deg); } 50% { transform: rotate(0); } }
  .anim-inbound .ph-ring::before, .anim-inbound .ph-ring::after {
    content:""; position: absolute; inset: 0; border-radius: 99px; border: 1.5px solid var(--accent); opacity: 0;
  }
  .cap.is-active .anim-inbound .ph-ring::before { animation: phPulse 1.6s ease-out infinite; }
  .cap.is-active .anim-inbound .ph-ring::after  { animation: phPulse 1.6s ease-out .55s infinite; }
  @keyframes phPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(2.2); opacity: 0; } }
  .anim-inbound .intents { display: flex; flex-direction: column; gap: 4px; font-family: var(--mono); font-size: 10.5px; color: var(--fg-3); }
  .anim-inbound .intents span { padding: 2px 7px; border: 1px solid var(--line-2); border-radius: 99px; background: var(--bg-2); transition: color .3s, border-color .3s, background .3s; }
  .cap.is-active .anim-inbound .intents span:nth-child(2) { color: var(--accent); border-color: var(--accent); background: color-mix(in oklch, var(--accent) 12%, transparent); }

  /* B: Outbound — dialer queue progressing */
  .anim-outbound { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
  .anim-outbound .row { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10.5px; color: var(--fg-3); }
  .anim-outbound .row .num { width: 80px; }
  .anim-outbound .row .bar { flex: 1; height: 4px; background: color-mix(in oklch, var(--fg) 8%, transparent); border-radius: 99px; overflow: hidden; position: relative; }
  .anim-outbound .row .bar::after { content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: var(--accent); border-radius: 99px; }
  .anim-outbound .row .st { width: 36px; text-align: right; }
  .cap.is-active .anim-outbound .row:nth-child(1) .bar::after { animation: dialFill 1.6s ease-out forwards; }
  .cap.is-active .anim-outbound .row:nth-child(2) .bar::after { animation: dialFill 1.6s ease-out .35s forwards; }
  .cap.is-active .anim-outbound .row:nth-child(3) .bar::after { animation: dialFill 1.6s ease-out .7s forwards; }
  .cap.is-active .anim-outbound .row.done .st { color: var(--accent); }
  @keyframes dialFill { 0% { width: 0; } 100% { width: 100%; } }

  /* C: Qualification — funnel */
  .anim-qual { display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
  .anim-qual .layer { height: 10px; border-radius: 3px; background: color-mix(in oklch, var(--fg) 14%, transparent); transition: background .4s, transform .4s; transform-origin: center; }
  .anim-qual .layer:nth-child(1) { width: 100%; }
  .anim-qual .layer:nth-child(2) { width: 78%; }
  .anim-qual .layer:nth-child(3) { width: 56%; }
  .anim-qual .layer:nth-child(4) { width: 30%; background: var(--accent); }
  .cap.is-active .anim-qual .layer:nth-child(4) { box-shadow: 0 0 18px color-mix(in oklch, var(--accent) 60%, transparent); animation: qualPulse 1.6s ease-in-out infinite; }
  @keyframes qualPulse { 0%,100% { transform: scaleX(1); } 50% { transform: scaleX(1.08); } }

  /* D: Escalation — handoff */
  .anim-esc { display: flex; align-items: center; gap: 10px; justify-content: space-between; }
  .anim-esc .node { width: 44px; height: 44px; border-radius: 99px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px; border: 1px solid var(--line-2); background: var(--bg-2); flex: none; }
  .anim-esc .node.ai { color: var(--accent); border-color: var(--accent); }
  .anim-esc .node.hu { color: var(--fg-2); }
  .cap.is-active .anim-esc .node.hu { color: var(--accent); border-color: var(--accent); box-shadow: 0 0 14px color-mix(in oklch, var(--accent) 40%, transparent); transition: all .4s ease .9s; }
  .anim-esc .pipe { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 4px, transparent 4px 8px); position: relative; overflow: hidden; }
  .anim-esc .pkt { position: absolute; left: -10%; top: -3px; height: 8px; width: 22px; background: linear-gradient(90deg, transparent, var(--accent), transparent); border-radius: 99px; }
  .cap.is-active .anim-esc .pkt { animation: escFlow 1.6s ease-in-out infinite; }
  @keyframes escFlow { 0% { left: -10%; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
  .anim-esc .ctx { font-family: var(--mono); font-size: 9.5px; color: var(--fg-3); position: absolute; top: -16px; left: 50%; transform: translateX(-50%); white-space: nowrap; opacity: 0; transition: opacity .3s; }
  .cap.is-active .anim-esc .ctx { opacity: 1; transition-delay: .6s; }

  /* E: Code-switching — language token rotator */
  .anim-cs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; max-width: 720px; }
  .anim-cs .tok { font-family: var(--mono); font-size: 12px; padding: 4px 9px; border-radius: 6px; border: 1px solid var(--line-2); background: var(--bg-2); color: var(--fg-3); position: relative; transition: all .35s ease; }
  .anim-cs .tok.lang-hi.on { color: var(--accent); border-color: var(--accent); background: color-mix(in oklch, var(--accent) 12%, transparent); }
  .anim-cs .tok.lang-en.on { color: #FFB86B; border-color: #FFB86B; background: color-mix(in oklch, #FFB86B 12%, transparent); }
  .anim-cs .tok.lang-mr.on { color: #C5A6FF; border-color: #C5A6FF; background: color-mix(in oklch, #C5A6FF 12%, transparent); }
  .anim-cs .arrow-cs { color: var(--fg-4); font-family: var(--mono); font-size: 12px; }

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

  /* ========== Stack diagram ========== */
  .stack-shell { position: relative; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-1); overflow: hidden; }
  .stack-shell::before {
    content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
    background:
      radial-gradient(800px 200px at 0% 0%, color-mix(in oklch, #7CFFB2 18%, transparent), transparent 60%),
      radial-gradient(700px 200px at 100% 30%, color-mix(in oklch, #6AA8FF 18%, transparent), transparent 60%),
      radial-gradient(700px 200px at 20% 60%, color-mix(in oklch, #C5A6FF 16%, transparent), transparent 60%),
      radial-gradient(700px 200px at 100% 80%, color-mix(in oklch, #FFB86B 16%, transparent), transparent 60%),
      radial-gradient(700px 200px at 0% 100%, color-mix(in oklch, #FF8FB1 14%, transparent), transparent 60%);
  }
  .stack-row { display: grid; grid-template-columns: 180px 1fr 90px; gap: 0; align-items: stretch; border-bottom: 1px solid var(--line); position: relative; --layer: var(--accent); }
  .stack-row:nth-child(1) { --layer: #7CFFB2; }
  .stack-row:nth-child(2) { --layer: #6AA8FF; }
  .stack-row:nth-child(3) { --layer: #C5A6FF; }
  .stack-row:nth-child(4) { --layer: #FFB86B; }
  .stack-row:nth-child(5) { --layer: #FF8FB1; }
  .stack-row:last-child { border-bottom: 0; }
  .stack-row .lab { padding: 22px 22px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; justify-content: center; background: linear-gradient(135deg, color-mix(in oklch, var(--layer) 14%, var(--bg-2)), var(--bg-2) 70%); position: relative; }
  .stack-row .lab::before { content:""; position:absolute; left:0; top:14%; bottom:14%; width:3px; background: var(--layer); border-radius: 0 3px 3px 0; box-shadow: 0 0 12px var(--layer); }
  .stack-row .lab .nm { font-size: 15px; font-weight: 500; color: var(--fg); }
  .stack-row .lab .sb { font-family: var(--mono); font-size: 10.5px; color: var(--layer); letter-spacing: .06em; text-transform: uppercase; }
  .stack-row .nodes { display: flex; align-items: center; gap: 10px; padding: 18px 22px; flex-wrap: wrap; position: relative; z-index: 1; }
  .stack-node { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border: 1px solid color-mix(in oklch, var(--layer) 25%, var(--line-2)); border-radius: 99px; background: color-mix(in oklch, var(--layer) 5%, var(--bg-2)); font-size: 13px; color: var(--fg-2); position: relative; transition: all .35s ease; }
  .stack-node .dt { width: 6px; height: 6px; border-radius: 99px; background: color-mix(in oklch, var(--layer) 50%, var(--fg-4)); transition: all .35s ease; }
  .stack-node.hot { color: var(--fg); border-color: var(--layer); background: color-mix(in oklch, var(--layer) 18%, var(--bg-2)); box-shadow: 0 0 22px color-mix(in oklch, var(--layer) 45%, transparent), inset 0 0 0 1px color-mix(in oklch, var(--layer) 30%, transparent); transform: translateY(-1px); }
  .stack-node.hot .dt { background: var(--layer); box-shadow: 0 0 10px var(--layer); }
  .stack-row .meter { padding: 18px 18px; border-left: 1px solid var(--line); display: flex; align-items: center; justify-content: center; background: color-mix(in oklch, var(--layer) 6%, var(--bg-2)); }
  .stack-row .meter .mt { font-family: var(--mono); font-size: 11px; color: color-mix(in oklch, var(--layer) 50%, var(--fg-3)); transition: color .35s; }
  .stack-row.is-active .meter .mt { color: var(--layer); text-shadow: 0 0 8px var(--layer); }
  .stack-row .pulse { position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: linear-gradient(90deg, color-mix(in oklch, var(--layer) 14%, transparent), transparent); pointer-events: none; transition: width .8s ease; z-index: 0; }
  .stack-row.is-active .pulse { width: 100%; }
  .stack-row .layer-tag { position: absolute; right: -1px; top: -1px; font-family: var(--mono); font-size: 9.5px; padding: 2px 7px; color: var(--layer); border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); border-bottom-left-radius: 8px; background: var(--bg-1); letter-spacing: .08em; z-index: 2; }
  @media (max-width: 800px) {
    .stack-row { grid-template-columns: 1fr; }
    .stack-row .lab { border-right: 0; border-bottom: 1px solid var(--line); }
    .stack-row .meter { border-left: 0; border-top: 1px solid var(--line); }
  }

  /* ========== Integration rows w/ animations ========== */
  .ir { position: relative; overflow: hidden; transition: background .5s ease; }
  .ir::before { content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ir-c, var(--accent)); transform: scaleY(0); transform-origin: top; transition: transform .5s ease; }
  .ir.is-active::before { transform: scaleY(1); }
  .ir.is-active { background: color-mix(in oklch, var(--ir-c, var(--accent)) 7%, transparent); }
  .ir .ir-anim { height: 70px; position: relative; margin-top: 6px; }

  /* Telephony: animated SIP/PRI/WebRTC trunks converging into a phone glyph */
  .ir-tele { display: flex; align-items: center; gap: 14px; }
  .ir-tele .src { display: flex; flex-direction: column; gap: 4px; font-family: var(--mono); font-size: 10.5px; color: var(--fg-3); }
  .ir-tele .src span { padding: 2px 7px; border: 1px solid var(--line-2); border-radius: 99px; background: var(--bg-2); transition: all .3s; }
  .ir.is-active .ir-tele .src span { border-color: #FFB86B; color: #FFB86B; }
  .ir-tele .pipes { flex: 1; height: 50px; position: relative; }
  .ir-tele .pipes svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .ir-tele .pipes path { stroke: var(--line-2); stroke-width: 1.5; fill: none; }
  .ir.is-active .ir-tele .pipes path { stroke: #FFB86B; stroke-dasharray: 6 4; animation: pipeFlow .8s linear infinite; }
  @keyframes pipeFlow { to { stroke-dashoffset: -10; } }
  .ir-tele .phone { width: 38px; height: 38px; border-radius: 99px; background: color-mix(in oklch, #FFB86B 12%, var(--bg-2)); display: flex; align-items: center; justify-content: center; flex: none; border: 1px solid color-mix(in oklch, #FFB86B 40%, transparent); }
  .ir-tele .phone svg { width: 18px; height: 18px; color: #FFB86B; }
  .ir.is-active .ir-tele .phone { box-shadow: 0 0 16px color-mix(in oklch, #FFB86B 60%, transparent); animation: phRing 1.6s ease-in-out infinite; }
  @keyframes phRing { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-10deg); } 50%,75% { transform: rotate(10deg); } }

  /* CRM: read/write data flow */
  .ir-crm { display: flex; align-items: center; gap: 12px; }
  .ir-crm .vora-side { font-family: var(--mono); font-size: 11px; color: var(--accent); padding: 6px 10px; border: 1px solid var(--accent); border-radius: 6px; background: color-mix(in oklch, var(--accent) 10%, transparent); }
  .ir-crm .crm-side { font-family: var(--mono); font-size: 11px; color: var(--accent-2); padding: 6px 10px; border: 1px solid var(--accent-2); border-radius: 6px; background: color-mix(in oklch, var(--accent-2) 10%, transparent); }
  .ir-crm .lanes { flex: 1; display: flex; flex-direction: column; gap: 4px; position: relative; height: 38px; justify-content: center; }
  .ir-crm .lanes .lane-x { height: 2px; background: var(--line-2); position: relative; overflow: hidden; }
  .ir-crm .lanes .lane-x::after { content:""; position: absolute; top: 0; bottom: 0; width: 24%; background: linear-gradient(90deg, transparent, var(--accent-2), transparent); opacity: 0; }
  .ir.is-active .ir-crm .lanes .lane-x:nth-child(1)::after { animation: crmRead 1.6s ease-in-out infinite; opacity: 1; }
  .ir.is-active .ir-crm .lanes .lane-x:nth-child(2)::after { animation: crmWrite 1.6s ease-in-out .8s infinite; opacity: 1; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
  @keyframes crmRead  { 0% { left: 100%; } 100% { left: -25%; } }
  @keyframes crmWrite { 0% { left: -25%; } 100% { left: 100%; } }
  .ir-crm .lab { font-family: var(--mono); font-size: 9px; color: var(--fg-4); position: absolute; }
  .ir-crm .lab.r { left: 50%; top: -2px; transform: translate(-50%,-100%); color: var(--accent-2); }
  .ir-crm .lab.w { left: 50%; bottom: -2px; transform: translate(-50%,100%); color: var(--accent); }

  /* ERP: stock count + invoice ticking */
  .ir-erp { display: flex; align-items: center; gap: 18px; font-family: var(--mono); font-size: 11px; }
  .ir-erp .erp-card { padding: 7px 11px; border: 1px solid var(--line-2); border-radius: 6px; background: var(--bg-2); display: flex; flex-direction: column; gap: 2px; }
  .ir-erp .erp-card .k { font-size: 9px; color: var(--fg-4); letter-spacing: .08em; }
  .ir-erp .erp-card .v { color: var(--fg-2); font-weight: 500; transition: color .3s; }
  .ir.is-active .ir-erp .erp-card { border-color: #C5A6FF; }
  .ir.is-active .ir-erp .erp-card .v { color: #C5A6FF; text-shadow: 0 0 8px color-mix(in oklch, #C5A6FF 50%, transparent); }
  .ir-erp .check { width: 18px; height: 18px; border-radius: 99px; border: 1.5px solid var(--line-2); position: relative; }
  .ir.is-active .ir-erp .check { border-color: #C5A6FF; background: color-mix(in oklch, #C5A6FF 25%, transparent); }
  .ir.is-active .ir-erp .check::after { content:""; position: absolute; left: 4px; top: 1px; width: 5px; height: 9px; border-right: 1.5px solid #C5A6FF; border-bottom: 1.5px solid #C5A6FF; transform: rotate(40deg); }

  /* Webhooks: event packets firing */
  .ir-wh { position: relative; height: 60px; }
  .ir-wh .ev-line { position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 4px, transparent 4px 8px); transform: translateY(-50%); }
  .ir-wh .ev { position: absolute; top: 50%; transform: translate(-50%,-50%); font-family: var(--mono); font-size: 10px; color: #FF6B8A; padding: 3px 8px; border: 1px solid #FF6B8A; border-radius: 99px; background: color-mix(in oklch, #FF6B8A 10%, var(--bg-2)); white-space: nowrap; opacity: 0; }
  .ir.is-active .ir-wh .ev { animation: evShoot 2.4s linear infinite; }
  .ir.is-active .ir-wh .ev:nth-child(2) { animation-delay: 0s; }
  .ir.is-active .ir-wh .ev:nth-child(3) { animation-delay: .8s; }
  .ir.is-active .ir-wh .ev:nth-child(4) { animation-delay: 1.6s; }
  @keyframes evShoot {
    0%   { left: -10%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 110%; opacity: 0; }
  }

  /* ========== Lane / entities ========== */
  .lane { padding: 26px; border-radius: 14px; background: var(--bg-1); border: 1px solid var(--line); position: relative; overflow: hidden; }
  .lane .pin { position: absolute; top: 0; left: 26px; width: 60px; height: 2px; background: var(--accent); }
  .lane.b .pin { background: var(--accent-2); }

  /* ========== Vora orb ========== */
  .vora-logo-orb {
    position: relative; width: 22px; height: 22px; border-radius: 99px;
    background: radial-gradient(circle at 32% 30%, color-mix(in oklch, var(--accent) 90%, white 30%), var(--accent) 40%, color-mix(in oklch, var(--accent) 55%, var(--bg)) 80%);
    box-shadow: 0 0 0 1px color-mix(in oklch, var(--accent) 30%, transparent), 0 0 16px -2px color-mix(in oklch, var(--accent) 60%, transparent);
    animation: orb-breathe 3.4s ease-in-out infinite; flex-shrink: 0;
  }
  .vora-logo-orb::after {
    content:""; position:absolute; inset: 18% 30% 50% 22%; border-radius:99px;
    background: radial-gradient(circle, rgba(255,255,255,.7), rgba(255,255,255,0) 70%); filter: blur(.5px);
  }
  .vora-logo-orb-lg { width: 32px; height: 32px; }
  @keyframes orb-breathe {
    0%,100% { box-shadow: 0 0 0 1px color-mix(in oklch, var(--accent) 30%, transparent), 0 0 14px -2px color-mix(in oklch, var(--accent) 50%, transparent); transform: scale(1); }
    50%     { box-shadow: 0 0 0 2px color-mix(in oklch, var(--accent) 45%, transparent), 0 0 28px 2px color-mix(in oklch, var(--accent) 75%, transparent); transform: scale(1.06); }
  }
  .hero-orb {
    position: relative; width: 100%; aspect-ratio: 1/1; max-width: 360px; margin: 0 auto; border-radius: 99px;
    background: radial-gradient(circle at 35% 30%, color-mix(in oklch, var(--accent) 95%, white 35%), var(--accent) 32%, color-mix(in oklch, var(--accent) 60%, var(--bg)) 75%, color-mix(in oklch, var(--accent) 22%, var(--bg)));
    box-shadow: inset 0 -16px 40px color-mix(in oklch, var(--accent) 0%, var(--bg) 70%), 0 0 80px -10px color-mix(in oklch, var(--accent) 70%, transparent), 0 0 0 1px color-mix(in oklch, var(--accent) 30%, transparent);
    animation: orb-breathe-big 4.6s ease-in-out infinite;
  }
  .hero-orb::before { content:""; position:absolute; inset:-30%; border-radius:99px; background: radial-gradient(circle, color-mix(in oklch, var(--accent) 35%, transparent), transparent 55%); filter: blur(20px); z-index:-1; animation: orb-aura 4.6s ease-in-out infinite; }
  .hero-orb::after { content:""; position:absolute; inset:12% 30% 55% 18%; border-radius:99px; background: radial-gradient(ellipse, rgba(255,255,255,.75), rgba(255,255,255,0) 70%); filter: blur(2px); }
  .hero-orb-rings { position:absolute; inset:0; pointer-events:none; }
  .hero-orb-rings span { position:absolute; inset:0; border-radius:99px; border:1px solid color-mix(in oklch, var(--accent) 50%, transparent); animation: orb-ring 3.6s ease-out infinite; opacity:0; }
  .hero-orb-rings span:nth-child(2) { animation-delay: 1.2s; }
  .hero-orb-rings span:nth-child(3) { animation-delay: 2.4s; }
  @keyframes orb-ring { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }
  @keyframes orb-breathe-big { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
  @keyframes orb-aura { 0%,100% { opacity:.55; transform: scale(1); } 50% { opacity:.85; transform: scale(1.08); } }
  body.speaking .hero-orb, body.speaking .vora-logo-orb { animation-duration: 1.2s; }
  body.speaking .hero-orb-rings span { animation-duration: 1.6s; }
  .talk-orb { display:inline-block; width:10px; height:10px; border-radius:99px; background: radial-gradient(circle at 35% 30%, white, var(--accent) 60%); box-shadow: 0 0 8px color-mix(in oklch, var(--accent) 70%, transparent); animation: orb-breathe 2.4s ease-in-out infinite; vertical-align:-1px; margin-right:2px; }
  @media (prefers-reduced-motion: reduce) { .vora-logo-orb, .hero-orb, .hero-orb::before, .hero-orb-rings span, .talk-orb { animation:none !important; } }

  /* Audio bar visualizer */
  .bars { display: inline-flex; align-items: center; gap: 2px; height: 14px; }
  .bars span {
    display: inline-block; width: 2px; background: var(--accent);
    animation: bar 1.1s ease-in-out infinite;
    transform-origin: bottom;
  }
  .bars span:nth-child(1) { animation-delay: -.6s; height: 30%; }
  .bars span:nth-child(2) { animation-delay: -.3s; height: 70%; }
  .bars span:nth-child(3) { animation-delay: -.5s; height: 50%; }
  .bars span:nth-child(4) { animation-delay: -.1s; height: 90%; }
  .bars span:nth-child(5) { animation-delay: -.4s; height: 40%; }
  @keyframes bar { 0%,100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }

  /* ========== FAQ ========== */
  details > summary { list-style: none; cursor: pointer; }
  details > summary::-webkit-details-marker { display: none; }
  .chev { transition: transform .25s ease; }
  details[open] .chev { transform: rotate(45deg); }

  /* ========== Hello carousel ========== */
  .hello-track { position: relative; display: inline-block; height: 1.1em; overflow: hidden; vertical-align: -3px; min-width: 60px; }
  .hello-track .hword { display: block; transition: transform .5s cubic-bezier(.22,.61,.36,1), opacity .25s ease; }

  /* ========== Tweaks ========== */
  #tweaks {
    position: fixed; right: 16px; bottom: 16px; z-index: 60;
    width: 300px; background: var(--bg-1);
    border: 1px solid var(--line-2);
    box-shadow: 0 24px 60px rgba(0,0,0,.6);
    border-radius: 12px; padding: 14px; font-size: 13px;
    display: none;
    color: var(--fg);
  }
  #tweaks.open { display: block; }
  #tweaks .row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
  #tweaks .row:first-of-type { border-top: 0; }
  #tweaks h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-2); }
  #tweaks .swatches { display: flex; gap: 6px; }
  #tweaks .sw { width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line-2); cursor: pointer; }
  #tweaks .sw[aria-pressed="true"] { outline: 2px solid var(--accent); outline-offset: 2px; }
  #tweaks .seg { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; padding: 2px; background: var(--bg-2); }
  #tweaks .seg button { padding: 4px 10px; border-radius: 6px; font-size: 12px; color: var(--fg-2); }
  #tweaks .seg button[aria-pressed="true"] { background: var(--accent); color: #06120A; }

  @media (prefers-reduced-motion: reduce) {
    .grid-bg::after { animation: none; }
    .live-dot, .bars span { animation: none; }
  }

  /* Layout helpers */
  .container { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
  @media (min-width: 1024px) { .container { padding-left: 40px; padding-right: 40px; } }

  .divide-line > * + * { border-top: 1px solid var(--line); }

  hr.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

  /* Dotted connector for hero status row */
  .ticker-row {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    padding: 10px 16px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: color-mix(in oklch, var(--bg) 55%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 0 1px color-mix(in oklch, var(--accent) 6%, transparent), 0 8px 24px -12px rgba(0,0,0,.4);
  }
  .ticker-row .sep { flex: 1; height: 1px; background:
    repeating-linear-gradient(90deg, color-mix(in oklch, var(--fg) 22%, transparent) 0 6px, transparent 6px 12px); min-width: 30px; }
  .ticker-row > .label { color: var(--fg); }
  .ticker-row .live-dot { animation: tickerPulse 1.6s ease-in-out infinite; }
  @keyframes tickerPulse { 0%, 100% { opacity: .55; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.15); } }

  /* Section number tag */
  .sec-tag { display: inline-flex; align-items: center; gap: 8px; }
  .sec-tag .n { font-family: var(--mono); font-size: 11px; color: var(--accent); padding: 3px 7px; border-radius: 5px; background: color-mix(in oklch, var(--accent) 12%, transparent); }

  /* ========== Build Workflow ========== */
  .bw-rail { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; border-bottom: 1px solid var(--line); background: var(--bg-2); }
  .bw-tab { display: flex; align-items: center; gap: 10px; padding: 14px 18px; text-align: left; border-right: 1px solid var(--line); color: var(--fg-3); font-size: 13px; transition: color .25s ease, background .25s ease; cursor: pointer; }
  .bw-tab:last-child { border-right: 0; }
  .bw-tab:hover { color: var(--fg); background: color-mix(in oklch, var(--accent) 4%, var(--bg-2)); }
  .bw-tab[aria-current="true"] { color: var(--fg); background: var(--bg-1); }
  .bw-tab-n { font-family: var(--mono); font-size: 11px; color: var(--accent); padding: 2px 6px; border-radius: 4px; background: color-mix(in oklch, var(--accent) 14%, transparent); }
  .bw-tab-t { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  @media (max-width: 720px) { .bw-tab-t { display: none; } .bw-tab { justify-content: center; padding: 14px 8px; } }
  .bw-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: transparent; pointer-events: none; }
  .bw-progress-fill { height: 100%; width: 0; background: var(--accent); transition: width .25s linear; }

  .bw-stage { position: relative; min-height: 380px; background: var(--bg-1); }
  .bw-scene { position: absolute; inset: 0; padding: 32px; opacity: 0; visibility: hidden; transition: opacity .5s ease; }
  .bw-scene.bw-active { opacity: 1; visibility: visible; }
  .bw-scene-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; height: 100%; align-items: center; }
  @media (max-width: 880px) { .bw-scene-grid { grid-template-columns: 1fr; } .bw-stage { min-height: 540px; } }
  .bw-scene-copy { max-width: 380px; }
  .bw-h { font-family: var(--display); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; margin-top: 14px; letter-spacing: -.01em; }
  .bw-p { margin-top: 14px; color: var(--fg-2); font-size: 15px; line-height: 1.55; }
  .bw-svg { width: 100%; height: auto; max-height: 320px; display: block; }
  .bw-svg text { font-family: var(--mono); font-size: 11px; fill: var(--fg-2); }

  /* step 0 — telephony */
  .bw-chip { fill: var(--bg-2); stroke: var(--line); }
  .bw-active-scene .bw-chip { animation: bwChipPulse 4s ease-out infinite; }
  .bw-providers g:nth-child(1) .bw-chip { animation-delay: 0s; }
  .bw-providers g:nth-child(2) .bw-chip { animation-delay: .8s; }
  .bw-providers g:nth-child(3) .bw-chip { animation-delay: 1.6s; }
  .bw-providers g:nth-child(4) .bw-chip { animation-delay: 2.4s; }
  .bw-providers g:nth-child(5) .bw-chip { animation-delay: 3.2s; }
  @keyframes bwChipPulse { 0%, 90%, 100% { stroke: var(--line); fill: var(--bg-2); } 5%, 30% { stroke: var(--accent); fill: color-mix(in oklch, var(--accent) 10%, var(--bg-2)); } }
  .bw-chip-t { text-anchor: middle; fill: var(--fg); font-size: 12px; }
  .bw-core { fill: color-mix(in oklch, var(--accent) 12%, var(--bg-1)); stroke: var(--accent); }
  .bw-core-t1 { text-anchor: middle; fill: var(--fg); font-family: var(--display); font-size: 18px; letter-spacing: .06em; }
  .bw-core-t2 { text-anchor: middle; fill: var(--fg-3); font-size: 11px; }
  .bw-panel { fill: var(--bg-2); stroke: var(--line); }
  .bw-panel-l { fill: var(--fg-3); }
  .bw-panel-v { fill: var(--fg); }
  .bw-panel-ok { fill: var(--accent); }
  .bw-panel-line { stroke: var(--line); }
  .bw-bar-bg { fill: var(--line); }
  .bw-bar-fill { fill: var(--accent); }
  .bw-packet { fill: var(--accent); filter: drop-shadow(0 0 6px var(--accent)); }
  .bw-active-scene .bw-pk-1 { animation: bwPkt1 1.4s linear infinite; }
  .bw-active-scene .bw-pk-2 { animation: bwPkt2 1.4s linear infinite .28s; }
  .bw-active-scene .bw-pk-3 { animation: bwPkt3 1.4s linear infinite .56s; }
  .bw-active-scene .bw-pk-4 { animation: bwPkt4 1.4s linear infinite .84s; }
  .bw-active-scene .bw-pk-5 { animation: bwPkt5 1.4s linear infinite 1.12s; }
  @keyframes bwPkt1 { 0% { transform: translate(140px, 59px); opacity: 0; } 15%,85% { opacity: 1; } 100% { transform: translate(310px, 130px); opacity: 0; } }
  @keyframes bwPkt2 { 0% { transform: translate(140px, 109px); opacity: 0; } 15%,85% { opacity: 1; } 100% { transform: translate(310px, 140px); opacity: 0; } }
  @keyframes bwPkt3 { 0% { transform: translate(140px, 159px); opacity: 0; } 15%,85% { opacity: 1; } 100% { transform: translate(310px, 150px); opacity: 0; } }
  @keyframes bwPkt4 { 0% { transform: translate(140px, 209px); opacity: 0; } 15%,85% { opacity: 1; } 100% { transform: translate(310px, 160px); opacity: 0; } }
  @keyframes bwPkt5 { 0% { transform: translate(140px, 259px); opacity: 0; } 15%,85% { opacity: 1; } 100% { transform: translate(310px, 170px); opacity: 0; } }

  /* step 1 — voice */
  .bw-voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .bw-voice-card { padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-2); transition: border-color .3s, background .3s; }
  .bw-voice-card.bw-voice-active { border-color: var(--accent); background: color-mix(in oklch, var(--accent) 7%, var(--bg-2)); }
  .bw-voice-name { font-size: 16px; color: var(--fg); }
  .bw-voice-meta { font-family: var(--mono); font-size: 11px; color: var(--fg-3); margin-top: 4px; }
  .bw-voice-wave { width: 100%; height: 28px; margin-top: 10px; }
  .bw-vw-path { stroke: var(--fg-4); stroke-width: 1.4; fill: none; }
  .bw-voice-active .bw-vw-path { stroke: var(--accent); }
  .bw-lang-strip { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; font-family: var(--mono); font-size: 11px; }
  .bw-lang-strip span { padding: 4px 8px; border: 1px solid var(--line); border-radius: 4px; color: var(--fg-3); transition: color .2s, border-color .2s, background .2s; }
  .bw-lang-strip span.bw-lit { color: var(--accent); border-color: var(--accent); background: color-mix(in oklch, var(--accent) 10%, transparent); }

  /* step 2 — knowledge */
  .bw-know { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 16px; align-items: center; }
  .bw-drop { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .bw-doc { padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-2); display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
  .bw-active-scene .bw-doc { opacity: 1; transform: translateY(0); }
  .bw-active-scene .bw-doc-1 { transition-delay: .1s; }
  .bw-active-scene .bw-doc-2 { transition-delay: .25s; }
  .bw-active-scene .bw-doc-3 { transition-delay: .4s; }
  .bw-active-scene .bw-doc-4 { transition-delay: .55s; }
  .bw-doc-x { width: 18px; height: 22px; background: linear-gradient(180deg, var(--accent), color-mix(in oklch, var(--accent) 50%, var(--bg-1))); border-radius: 2px; flex-shrink: 0; }
  .bw-doc-l { font-family: var(--mono); font-size: 11px; color: var(--fg-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .bw-funnel { width: 60px; height: 80px; background: linear-gradient(90deg, transparent, color-mix(in oklch, var(--accent) 30%, transparent), transparent); clip-path: polygon(0 0, 100% 30%, 100% 70%, 0 100%); }
  .bw-active-scene .bw-funnel { animation: bwFunnel 2s ease-in-out infinite; }
  @keyframes bwFunnel { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
  .bw-index { padding: 14px; border: 1px solid var(--accent); border-radius: 10px; background: color-mix(in oklch, var(--accent) 6%, var(--bg-2)); }
  .bw-index-title { font-family: var(--mono); font-size: 11px; color: var(--accent); }
  .bw-index-bars { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; height: 60px; align-items: end; margin-top: 10px; }
  .bw-ib { height: 100%; display: flex; align-items: end; }
  .bw-ib span { width: 100%; background: var(--accent); border-radius: 2px 2px 0 0; height: 0; transition: height .8s cubic-bezier(.22,.61,.36,1); }
  .bw-active-scene .bw-ib span { height: var(--h, 30%); }
  .bw-active-scene .bw-ib:nth-child(1) span { transition-delay: .1s; --h: 35%; }
  .bw-active-scene .bw-ib:nth-child(2) span { transition-delay: .15s; --h: 60%; }
  .bw-active-scene .bw-ib:nth-child(3) span { transition-delay: .2s; --h: 45%; }
  .bw-active-scene .bw-ib:nth-child(4) span { transition-delay: .25s; --h: 80%; }
  .bw-active-scene .bw-ib:nth-child(5) span { transition-delay: .3s; --h: 55%; }
  .bw-active-scene .bw-ib:nth-child(6) span { transition-delay: .35s; --h: 90%; }
  .bw-active-scene .bw-ib:nth-child(7) span { transition-delay: .4s; --h: 70%; }
  .bw-active-scene .bw-ib:nth-child(8) span { transition-delay: .45s; --h: 50%; }
  .bw-active-scene .bw-ib:nth-child(9) span { transition-delay: .5s; --h: 75%; }
  .bw-active-scene .bw-ib:nth-child(10) span { transition-delay: .55s; --h: 40%; }
  .bw-active-scene .bw-ib:nth-child(11) span { transition-delay: .6s; --h: 65%; }
  .bw-active-scene .bw-ib:nth-child(12) span { transition-delay: .65s; --h: 85%; }
  .bw-index-meta { margin-top: 10px; font-family: var(--mono); font-size: 11px; color: var(--fg-3); }

  /* step 3 — tools */
  .bw-tools { display: flex; flex-direction: column; gap: 8px; max-width: 380px; margin-left: auto; }
  .bw-tool { padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-2); font-family: var(--mono); font-size: 13px; color: var(--fg-2); transform: translateX(20px); opacity: 0; transition: transform .4s, opacity .4s, border-color .3s, background .3s; }
  .bw-active-scene .bw-tool { transform: translateX(0); opacity: 1; }
  .bw-active-scene .bw-tool[data-i="0"] { transition-delay: .05s; }
  .bw-active-scene .bw-tool[data-i="1"] { transition-delay: .15s; }
  .bw-active-scene .bw-tool[data-i="2"] { transition-delay: .25s; }
  .bw-active-scene .bw-tool[data-i="3"] { transition-delay: .35s; }
  .bw-active-scene .bw-tool[data-i="4"] { transition-delay: .45s; }
  .bw-active-scene .bw-tool[data-i="5"] { transition-delay: .55s; }
  .bw-tool.bw-tool-fire { border-color: var(--accent); background: color-mix(in oklch, var(--accent) 10%, var(--bg-2)); color: var(--fg); }
  .bw-tool-arrow { color: var(--accent); }

  /* step 4 — live */
  .bw-call-rect { fill: var(--bg-2); stroke: var(--line); }
  .bw-call-t { text-anchor: middle; fill: var(--fg-2); font-size: 10.5px; }
  .bw-active-scene .bw-call { animation: bwCall 5s linear infinite; }
  .bw-active-scene .bw-call-1 { animation-delay: 0s; }
  .bw-active-scene .bw-call-2 { animation-delay: 1s; }
  .bw-active-scene .bw-call-3 { animation-delay: 2s; }
  .bw-active-scene .bw-call-4 { animation-delay: 3s; }
  .bw-active-scene .bw-call-5 { animation-delay: 4s; }
  @keyframes bwCall { 0% { opacity: 0; transform: translate(20px, 30px); } 8% { opacity: 1; } 50% { opacity: 1; transform: translate(160px, 110px); } 70% { opacity: 0; transform: translate(220px, 140px); } 100% { opacity: 0; } }
  .bw-call-1 { transform: translate(20px, 30px); }
  .bw-call-2 { transform: translate(20px, 70px); }
  .bw-call-3 { transform: translate(20px, 110px); }
  .bw-call-4 { transform: translate(20px, 150px); }
  .bw-call-5 { transform: translate(20px, 190px); }
  .bw-hub { fill: color-mix(in oklch, var(--accent) 15%, var(--bg-1)); stroke: var(--accent); }
  .bw-hub-ring { fill: none; stroke: var(--accent); stroke-opacity: .35; }
  .bw-active-scene .bw-hub-ring { animation: bwRing 2.4s ease-out infinite; }
  .bw-active-scene .bw-hub-ring-2 { animation-delay: 1.2s; }
  @keyframes bwRing { 0% { stroke-opacity: .55; transform: scale(.8); transform-origin: 50px 40px; } 100% { stroke-opacity: 0; transform: scale(1.4); transform-origin: 50px 40px; } }
  .bw-mini-bg { fill: var(--bg-1); stroke: var(--line); }

  /* ===== AURA BACKGROUND — drifting color blobs ===== */
  .aura-field { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
  .aura-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; mix-blend-mode: screen; will-change: transform; }
  html[data-theme="light"] .aura-blob { opacity: .35; mix-blend-mode: multiply; }
  .aura-blob.b1 { width: 520px; height: 520px; left: -120px; top: -80px; background: radial-gradient(circle, var(--aura-1), transparent 65%); animation: auraDrift1 22s ease-in-out infinite; }
  .aura-blob.b2 { width: 600px; height: 600px; right: -160px; top: 10%; background: radial-gradient(circle, var(--aura-2), transparent 65%); animation: auraDrift2 28s ease-in-out infinite; }
  .aura-blob.b3 { width: 480px; height: 480px; left: 30%; top: 40%; background: radial-gradient(circle, var(--aura-3), transparent 65%); animation: auraDrift3 26s ease-in-out infinite; }
  .aura-blob.b4 { width: 460px; height: 460px; right: 10%; bottom: 8%; background: radial-gradient(circle, var(--aura-4), transparent 65%); animation: auraDrift4 30s ease-in-out infinite; opacity: .42; }
  .aura-blob.b5 { width: 380px; height: 380px; left: 8%; bottom: 14%; background: radial-gradient(circle, var(--aura-6), transparent 65%); animation: auraDrift5 24s ease-in-out infinite; opacity: .45; }
  @keyframes auraDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(180px, 120px) scale(1.15); } }
  @keyframes auraDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-220px, 180px) scale(1.1); } }
  @keyframes auraDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(180px, -120px) scale(1.2); } 66% { transform: translate(-120px, 100px) scale(.9); } }
  @keyframes auraDrift4 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-160px, -180px) scale(1.1); } }
  @keyframes auraDrift5 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(220px, -140px) scale(1.15); } }
  @media (prefers-reduced-motion: reduce) { .aura-blob { animation: none !important; } }

  .btn-primary { box-shadow: 0 0 0 1px color-mix(in oklch, var(--accent) 30%, transparent), 0 8px 32px -8px color-mix(in oklch, var(--aura-2) 50%, transparent); }
  .accent-text { background: linear-gradient(95deg, var(--aura-1), var(--aura-2) 45%, var(--aura-3) 90%); -webkit-background-clip: text; background-clip: text; color: transparent; }

  /* per-agent aura tint (set via inline --ag-tint) */
  .ag-item[aria-current="true"]::before { background: var(--ag-tint, var(--accent)); box-shadow: 0 0 16px 0 var(--ag-tint, var(--accent)); }
  .ag-item[aria-current="true"] { background: linear-gradient(90deg, color-mix(in oklch, var(--ag-tint, var(--accent)) 14%, var(--bg-1)), var(--bg-1) 70%); }
  .ag-scene.ag-on .ring { background: var(--ag-tint, var(--accent)); box-shadow: 0 0 14px var(--ag-tint, var(--accent)); }
  .ag-scene.ag-on .ag-tx-who.v { color: var(--ag-tint, var(--accent)); }
  .ag-scene.ag-on .ag-out.on { border-color: color-mix(in oklch, var(--ag-tint, var(--accent)) 55%, var(--line)); background: color-mix(in oklch, var(--ag-tint, var(--accent)) 7%, transparent); }
  .ag-scene.ag-on .ag-out.on .ag-out-l::before { color: var(--ag-tint, var(--accent)); }
  .ag-scene.ag-on .ag-ch.on { color: var(--ag-tint, var(--accent)); border-color: color-mix(in oklch, var(--ag-tint, var(--accent)) 50%, var(--line)); }
  .ag-prog-fill { background: linear-gradient(90deg, var(--aura-1), var(--aura-2), var(--aura-3)) !important; }

  /* scale band — color the numbers with the aura */
  #sc-grid .sc-cell:nth-child(1) .sc-num { color: var(--aura-1); }
  #sc-grid .sc-cell:nth-child(2) .sc-num { color: var(--aura-2); }
  #sc-grid .sc-cell:nth-child(3) .sc-num { color: var(--aura-3); }
  #sc-grid .sc-cell:nth-child(4) .sc-num { color: var(--aura-4); }
  #sc-grid .sc-cell:nth-child(5) .sc-num { color: var(--aura-5); }
  #sc-grid .sc-cell:nth-child(1) .sc-mini span { background: var(--aura-1) !important; }
  #sc-grid .sc-cell:nth-child(1) .sc-pulse { background: var(--aura-1); }
  #sc-grid .sc-cell:nth-child(3) svg circle { fill: var(--aura-3) !important; }

  /* hero ambient halo */
  #hero { position: relative; overflow: hidden; }
  #hero > .container { position: relative; z-index: 1; }
  #hero::before { content: ''; position: absolute; left: 50%; top: 25%; width: 1100px; height: 700px; transform: translateX(-50%); background: radial-gradient(ellipse, color-mix(in oklch, var(--aura-2) 26%, transparent), transparent 70%); pointer-events: none; z-index: 0; }
  #hero::after { content: ''; position: absolute; right: -200px; top: 50%; width: 700px; height: 700px; background: radial-gradient(circle, color-mix(in oklch, var(--aura-1) 22%, transparent), transparent 65%); pointer-events: none; z-index: 0; }

  #hero h1 .accent-text { filter: drop-shadow(0 0 28px color-mix(in oklch, var(--aura-2) 45%, transparent)); }
  .live-dot { box-shadow: 0 0 12px var(--accent); }
  .card:hover { border-color: color-mix(in oklch, var(--aura-2) 35%, var(--line)); box-shadow: 0 0 0 1px color-mix(in oklch, var(--aura-2) 12%, transparent), 0 16px 48px -16px color-mix(in oklch, var(--aura-2) 30%, transparent); }
  .chip:hover { border-color: color-mix(in oklch, var(--aura-3) 50%, var(--line)); color: var(--fg); }

  #mobile-home { display: none; }

  @media (max-width: 640px) {
    body { letter-spacing: 0; }
    header .container { padding-left: 16px; padding-right: 16px; }
    header .btn-primary { padding: .68rem .92rem; font-size: 13px; }
    .grid-bg::after, .aura-field { display: none; }

    #hero, #agents, #platform, #cwa, #scale, #how, #capabilities,
    #integrations, #connections, #entities, #waitlist, #faq, footer { display: none !important; }

    html, body { height: 100%; overflow: hidden; }
    body { overflow-x: hidden; }
    #mobile-home {
      display: block;
      height: calc(100svh - 56px);
      overflow: hidden;
      padding: 12px 16px 62px;
      background:
        radial-gradient(420px 320px at 74% 0%, color-mix(in oklch, var(--aura-2) 22%, transparent), transparent 68%),
        radial-gradient(360px 280px at 0% 34%, color-mix(in oklch, var(--aura-3) 14%, transparent), transparent 70%);
    }
    .m-hero-kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-3); }
    .m-hero-kicker::before { content: ''; width: 7px; height: 7px; border-radius: 99px; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
    .m-title { margin-top: 9px; font-size: clamp(32px, 9.8vw, 42px); line-height: .91; font-weight: 600; letter-spacing: -.03em; max-width: 9ch; }
    .m-title span { background: linear-gradient(95deg, var(--aura-1), var(--aura-2) 44%, var(--aura-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .m-copy { margin-top: 8px; color: var(--fg-2); font-size: 14px; line-height: 1.25; max-width: 29ch; }
    .m-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 12px; }
    .m-actions .btn { justify-content: center; min-height: 38px; padding: .48rem .65rem; }
    .m-actions .m-primary { grid-column: 1 / -1; font-size: 14px; }
    .m-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 9px; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--line); }
    .m-proof div { background: color-mix(in oklch, var(--bg-1) 92%, transparent); padding: 7px 9px; }
    .m-proof strong { display: block; font-size: 16px; line-height: 1; font-weight: 600; color: var(--fg); letter-spacing: -.02em; }
    .m-proof span { display: block; margin-top: 3px; font-size: 9.5px; line-height: 1.1; color: var(--fg-3); }
    .m-live { margin-top: 9px; min-height: clamp(38px, calc(100svh - 704px), 110px); display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(135deg, color-mix(in oklch, var(--aura-2) 12%, transparent), color-mix(in oklch, var(--bg-1) 84%, transparent)); }
    .m-live span { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
    .m-live b { font-size: 13px; font-weight: 600; text-align: right; color: var(--fg); }
    .m-panel { margin-top: 9px; border: 1px solid var(--line); border-radius: 12px; background: color-mix(in oklch, var(--bg-1) 88%, transparent); overflow: hidden; }
    .m-panel-head { padding: 8px 11px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .m-panel-head span:first-child { font-size: 14px; font-weight: 600; }
    .m-panel-head span:last-child { font-family: var(--mono); font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
    .m-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
    .m-choice { min-height: 47px; padding: 8px 11px; background: var(--bg-1); color: var(--fg); }
    .m-choice b { display: block; font-size: 12.5px; font-weight: 600; }
    .m-choice span { display: block; margin-top: 2px; font-size: 10px; line-height: 1.15; color: var(--fg-3); }
    .m-why { display: none; }
    .m-why span { color: var(--fg-3); text-align: right; }
    .m-bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 7px 16px max(7px, env(safe-area-inset-bottom)); background: color-mix(in oklch, var(--bg) 86%, transparent); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
    .m-bottom-bar .btn { justify-content: center; min-height: 40px; padding: .5rem .85rem; }

    @media (max-height: 720px) {
      #mobile-home { padding-top: 10px; }
      .m-hero-kicker { font-size: 9px; }
      .m-title { font-size: 34px; }
      .m-copy { font-size: 13px; }
      .m-live { display: none; }
      .m-choice span { display: none; }
      .m-choice { min-height: 39px; }
    }
  }


  /* ============================================================
     MOBILE OPTIMISATION — keep the page short, scannable, calm.
     Applies only at ≤640px. Desktop/tablet untouched.
     ============================================================ */
  @media (max-width: 640px) {
    /* Tighten vertical rhythm site-wide */
    section { padding-top: 0 !important; padding-bottom: 0 !important; }
    section > .container { padding-top: 36px !important; padding-bottom: 36px !important; }
    .container { padding-left: 18px; padding-right: 18px; }

    /* Hero — smaller, faster */
    #hero > .container { padding-top: 28px !important; padding-bottom: 28px !important; }
    #hero h1.display { font-size: clamp(40px, 11vw, 56px) !important; line-height: 1.02; max-width: none; }
    #hero .ticker-row { margin-bottom: 18px; }
    #hero .ticker-row .sep + .mono,
    #hero .ticker-row .sep + .mono + .sep { display: none; } /* trim secondary ticker bits */
    #hero .mt-10 { margin-top: 18px !important; }
    #hero .mt-12 { margin-top: 22px !important; }
    #hero .mt-14 { margin-top: 22px !important; }
    #hero p[class*="text-[19px]"] { font-size: 16px !important; line-height: 1.5; }

    /* Counter-positioning band — show only the Vora cell on mobile */
    #hero [class*="md:grid-cols-3"] > div:nth-child(1),
    #hero [class*="md:grid-cols-3"] > div:nth-child(2) { display: none !important; }

    /* Hero chat — shorter, single column already via lg breakpoint */
    #chat-log { max-height: 280px !important; }
    #hero .card [class*="lg:col-span-8"] { min-height: 0 !important; border-right: 0 !important; }
    #hero .card [class*="lg:col-span-4"] { display: none !important; } /* sidebar copy redundant on mobile */

    /* Stat row — 2 cols, hide the 4th */
    .stat-row { grid-template-columns: repeat(2, 1fr) !important; }
    .stat-row .stat:nth-child(4) { display: none; }
    .stat { padding: 16px 16px; }
    .stat .num { font-size: 32px; }
    .stat .desc { font-size: 12.5px; line-height: 1.45; }

    /* Drop ambient hero halos (heavy + bleed off) */
    #hero::before, #hero::after { display: none !important; }
    .aura, .grid-bg { display: none !important; }

    /* Hide dense, desktop-only data sections on mobile */
    #scale, #connections, #entities, #integrations { display: none !important; }

    /* Reduce min-heights of remaining interactive stages */
    .pillar { min-height: 0; padding: 20px; }
    .ag-stage, .pt-stage, .bw-stage { min-height: 0 !important; }
    .lane { padding: 18px; }
    .cap { padding: 20px; }

    /* Section tags / headings */
    .sec-tag { padding: 8px 12px; }

    /* Footer — tighter */
    footer .container { padding-top: 36px !important; padding-bottom: 24px !important; }
    footer .grid { gap: 24px !important; }
  }
