  :root {
    --bg:        oklch(0.985 0.004 90);
    --bg-warm:   oklch(0.97 0.008 80);
    --paper:     oklch(0.99 0.003 90);
    --ink:       oklch(0.18 0.014 275);
    --ink-2:     oklch(0.32 0.012 275);
    --ink-3:     oklch(0.50 0.010 275);
    --ink-4:     oklch(0.68 0.008 275);
    --line:      oklch(0.92 0.006 275);
    --line-2:    oklch(0.88 0.008 275);
    --card:      oklch(1 0 0);

    --accent:        oklch(0.58 0.20 285);
    --accent-2:      oklch(0.65 0.18 295);
    --accent-soft:   oklch(0.94 0.04 285);
    --accent-deep:   oklch(0.32 0.16 285);
    --accent-glow:   oklch(0.62 0.22 290 / 0.35);

    --success:   oklch(0.62 0.14 155);
    --danger:    oklch(0.62 0.20 25);
    --amber:     oklch(0.78 0.14 75);

    --panel:     oklch(0.16 0.022 275);
    --panel-2:   oklch(0.21 0.026 280);
    --panel-line: oklch(1 0 0 / 0.08);

    --r: 14px;
    --r-lg: 20px;

    --font-display: 'Inter Tight', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  }

  /* NOTE: Do NOT restyle body{} here — warm-hero-css must stay scoped to .warm-hero-host
     so v2's dark body / dark footer survive on the v3 page. The cream theme is applied
     to .warm-hero-host below (line ~1275). */
  .warm-hero-host {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
  }

  .display { font-family: var(--font-display); letter-spacing: -0.025em; font-weight: 600; }
  .mono { font-family: var(--font-mono); }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  /* ─── PAGE FRAME ─── */
  .page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 24px 0;       /* horizontal 24px to align with .hp-header-inner nav width */
    position: relative;
  }

  /* Background washes */
  .page::before,
  .page::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }
  .page::before {
    top: -10%; right: -8%;
    width: 720px; height: 720px;
    background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
    filter: blur(40px);
  }
  .page::after {
    top: 18%; left: -15%;
    width: 540px; height: 540px;
    background: radial-gradient(closest-side, oklch(0.85 0.08 80 / 0.5), transparent 70%);
    filter: blur(50px);
  }
  .page > * { position: relative; z-index: 1; }

  /* ─── NAV ─── */
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 8px 0 0;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  .brand-mark svg { display: block; }

  .nav-menu {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background: oklch(1 0 0 / 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 2px 8px -2px oklch(0 0 0 / 0.04);
  }
  .nav-menu a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: 999px;
    transition: all 0.15s;
  }
  .nav-menu a:hover {
    color: var(--ink);
    background: oklch(1 0 0 / 0.7);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-self: end;
    font-size: 14px;
    font-weight: 500;
  }
  .nav-cta a.signin { color: var(--ink-2); }
  .nav-cta a.signin:hover { color: var(--ink); }
  .btn-pill {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: oklch(0.98 0 0);
    font-weight: 500;
    font-size: 13.5px;
    transition: all 0.15s;
  }
  .btn-pill:hover {
    background: oklch(0.08 0.01 275);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -6px oklch(0 0 0 / 0.18);
  }

  /* ─── HERO ─── */
  .hero {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr;
    gap: 56px;
    padding: 64px 0 36px;
    align-items: center;
  }
  .hero-left { min-width: 0; padding-right: 24px; }

  /* Eyebrow */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 8px;
    background: oklch(1 0 0 / 0.7);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--ink-2);
    font-weight: 500;
    box-shadow: 0 2px 8px -4px oklch(0 0 0 / 0.06);
    margin-bottom: 28px;
  }
  .eyebrow-pulse {
    position: relative;
    width: 18px; height: 18px;
    border-radius: 999px;
    background: var(--accent-soft);
    display: grid; place-items: center;
  }
  .eyebrow-pulse::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 var(--accent-glow);
    animation: pulse 2s ease-out infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--accent-glow); }
    70% { box-shadow: 0 0 0 8px oklch(0.62 0.22 290 / 0); }
    100% { box-shadow: 0 0 0 0 oklch(0.62 0.22 290 / 0); }
  }
  .eyebrow b { color: var(--ink); font-weight: 600; }
  .eyebrow .sep {
    width: 1px; height: 12px; background: var(--line-2);
    margin: 0 2px;
  }

  /* Headline (scoped to .warm-hero-host to prevent bleed into v7 page).
     Font cap bumped 68→78px for stronger visual presence at desktop viewports.
     Wrap protection lives on .rot below (white-space: nowrap + word-break:
     keep-all + overflow-wrap: normal), so even at the larger size "command
     center" / "unfair advantage" cannot break across two lines. */
  .warm-hero-host h1 {
    font-family: var(--font-display);
    font-size: clamp(46px, 5.4vw, 78px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin: 0 0 24px;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .warm-hero-host h1 .rot {
    position: relative;
    display: inline-block;
    color: var(--accent);
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 50%, oklch(0.62 0.18 250) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
    padding-bottom: 0.12em;
    overflow: visible;
    will-change: opacity, transform, filter;
  }

  .lede {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink-2);
    max-width: 28em;
    margin: 0 0 36px;
  }
  .lede em {
    font-style: normal;
    color: var(--ink);
    font-weight: 500;
  }

  /* Form — original 14px rounded-rectangle shape (the hero's intended look).
     2026-05-13 third iter: ONLY the button color/gradient changed — geometry,
     borders, padding, box-shadows all match the original spec so the hero form
     keeps its rectangular pill identity. Solid #5B21B6 replaces the oklch
     violet→blue gradient, hover #6D28D9 keeps the lighter-on-hover pattern. */
  .form-wrap { margin-bottom: 28px; max-width: 520px; }
  .form {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--card);
    border: 1.5px solid var(--line-2);
    border-radius: 14px;
    padding: 5px 5px 5px 0;
    transition: all 0.18s;
    box-shadow: 0 1px 0 oklch(1 0 0 / 0.6) inset, 0 8px 24px -12px oklch(0 0 0 / 0.08);
  }
  .form:focus-within {
    border-color: #5B21B6;
    box-shadow:
      0 0 0 4px rgba(109, 40, 217, 0.12),
      0 8px 24px -8px rgba(91, 33, 182, 0.22);
  }
  .form input {
    flex: 1; min-width: 0;
    border: none; outline: none;
    background: transparent;
    padding: 14px 20px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
  }
  .form input::placeholder { color: var(--ink-4); }
  .form-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: #5B21B6;
    color: #ffffff;
    font-weight: 600;
    font-size: 14.5px;
    box-shadow:
      inset 0 1px 0 oklch(1 0 0 / 0.15),
      0 6px 16px -6px oklch(0.18 0.014 275 / 0.55);
    cursor: pointer;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  }
  .form-btn:hover {
    background: #6D28D9;
    transform: translateY(-1px);
    box-shadow:
      inset 0 1px 0 oklch(1 0 0 / 0.18),
      0 12px 24px -6px oklch(0.18 0.014 275 / 0.55);
  }
  .form-btn .arrow { transition: transform 0.2s; }
  .form-btn:hover .arrow { transform: translateX(2px); }

  .form-sub {
    display: flex; align-items: center; gap: 10px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--ink-3);
  }
  .form-sub a {
    color: var(--ink);
    font-weight: 500;
    border-bottom: 1px solid var(--line-2);
    padding-bottom: 1px;
    transition: border-color 0.15s;
  }
  .form-sub a:hover { border-color: var(--accent); }
  .form-sub .dot { color: var(--ink-4); }

  /* Trust strip */
  .trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
  }
  .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px 7px 8px;
    background: oklch(1 0 0 / 0.65);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    color: var(--ink-2);
    font-weight: 500;
  }
  .trust-badge .ck {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-deep);
    display: grid; place-items: center;
    font-size: 10px;
  }

  /* ─── HERO RIGHT (INTERACTIVE PRODUCT) ─── */
  .hero-right {
    position: relative;
    min-width: 0;
    height: 640px;
    padding-top: 18px;
  }

  /* main agent panel */
  .agent {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
    border-radius: var(--r-lg);
    color: oklch(0.98 0 0);
    box-shadow:
      0 0 0 1px oklch(1 0 0 / 0.04),
      0 1px 0 oklch(1 0 0 / 0.08) inset,
      0 50px 120px -40px oklch(0.18 0.014 275 / 0.55),
      0 20px 50px -16px oklch(0.18 0.014 275 / 0.30);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
  }
  /* refined gradient hairline border */
  .agent::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, oklch(1 0 0 / 0.14), oklch(1 0 0 / 0) 40%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  .agent::before {
    content: '';
    position: absolute;
    inset: -1px;
    background:
      radial-gradient(700px 400px at 88% -8%, var(--accent-glow), transparent 60%),
      radial-gradient(500px 320px at 8% 110%, oklch(0.55 0.18 230 / 0.22), transparent 60%);
    pointer-events: none;
    opacity: 0.7;
  }

  /* topbar */
  .agent-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--panel-line);
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, oklch(1 0 0 / 0.02), transparent);
  }
  .agent-dots { display: inline-flex; align-items: center; gap: 6px; }
  .agent-dots span {
    width: 9px; height: 9px; border-radius: 50%;
    background: oklch(1 0 0 / 0.10);
    box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.06);
  }
  .agent-top-l {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12.5px; font-weight: 500;
    color: oklch(0.95 0 0);
  }
  .agent-spark {
    width: 22px; height: 22px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: grid; place-items: center;
    font-size: 12px;
    box-shadow: 0 4px 12px -4px var(--accent-glow);
  }
  .agent-top-l .status {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 9px 3px 7px;
    background: oklch(0.62 0.14 155 / 0.18);
    color: oklch(0.78 0.14 155);
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-left: 4px;
  }
  .agent-top-l .status::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: oklch(0.78 0.14 155);
    box-shadow: 0 0 0 3px oklch(0.78 0.14 155 / 0.18);
    animation: blink2 1.6s ease-in-out infinite;
  }
  @keyframes blink2 { 50% { opacity: 0.35; } }
  .agent-top-r {
    display: inline-flex; align-items: center; gap: 8px;
  }
  .agent-top-r .pill {
    padding: 4px 10px;
    background: oklch(1 0 0 / 0.06);
    border: 1px solid oklch(1 0 0 / 0.10);
    border-radius: 999px;
    font-size: 11px;
    color: oklch(0.78 0 0);
    font-family: var(--font-mono);
  }

  /* sidebar + content layout */
  .agent-body {
    display: grid;
    grid-template-columns: 52px 1fr;
    position: relative;
    z-index: 1;
    min-height: 0;
    overflow: hidden;
  }
  .agent-side {
    border-right: 1px solid oklch(1 0 0 / 0.06);
    background: oklch(0.22 0.024 278);
    box-shadow: inset -1px 0 0 oklch(0 0 0 / 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 0;
    background: linear-gradient(180deg, oklch(1 0 0 / 0.02), transparent 40%);
  }
  .agent-side .side-top { flex: 1; }
  .agent-side .side-mid {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .agent-side .side-bot { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; }
  .side-btn {
    width: 34px; height: 34px;
    border-radius: 9px;
    border: 1px solid transparent;
    background: transparent;
    display: grid; place-items: center;
    color: oklch(0.60 0.01 275);
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
  }
  .side-btn:hover {
    color: oklch(0.92 0 0);
    background: oklch(1 0 0 / 0.04);
  }
  .side-btn.is-active {
    background: oklch(0.62 0.22 290 / 0.18);
    border-color: oklch(0.62 0.22 290 / 0.35);
    color: oklch(0.85 0.12 290);
    box-shadow: 0 0 16px -4px var(--accent-glow);
  }
  .side-btn svg { width: 16px; height: 16px; }
  .side-btn[data-badge]::after {
    content: none;
    content-old: attr(data-badge);
    position: absolute;
    top: -2px; right: -2px;
    min-width: 14px; height: 14px;
    padding: 0 4px;
    border-radius: 7px;
    background: var(--accent-2);
    color: white;
    font-size: 9px;
    font-weight: 700;
    display: grid; place-items: center;
    font-family: var(--font-mono);
    border: 2px solid var(--panel);
  }
  .side-divider {
    width: 22px; height: 1px;
    background: oklch(1 0 0 / 0.08);
    margin: 6px 0;
  }
  .side-spacer { flex: 1; }

  /* content area */
  .agent-main {
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    position: relative;
  }
  .view {
    display: none;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding: 20px 22px 0;
  }
  .view.is-active { display: flex; animation: viewIn 0.32s ease; }
  @keyframes viewIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .view-h {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
  }
  .view-eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: oklch(0.55 0.01 275);
    font-weight: 600;
  }
  .view-actions {
    display: inline-flex; gap: 6px;
  }
  .view-actions .pill {
    padding: 4px 9px;
    background: oklch(1 0 0 / 0.05);
    border: 1px solid oklch(1 0 0 / 0.08);
    border-radius: 999px;
    font-size: 10.5px;
    color: oklch(0.78 0 0);
    font-family: var(--font-mono);
  }

  /* chat content rows */
  .chat-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    padding-right: 6px;
    margin-right: -6px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: oklch(1 0 0 / 0.12) transparent;
  }
  .chat-scroll::-webkit-scrollbar { width: 6px; }
  .chat-scroll::-webkit-scrollbar-track { background: transparent; }
  .chat-scroll::-webkit-scrollbar-thumb {
    background: oklch(1 0 0 / 0.10);
    border-radius: 3px;
  }
  .chat-scroll::-webkit-scrollbar-thumb:hover { background: oklch(1 0 0 / 0.18); }

  /* question bubble */
  .qbubble {
    align-self: end;
    max-width: 78%;
    padding: 11px 15px;
    background: linear-gradient(135deg, oklch(0.62 0.22 290 / 0.85), oklch(0.55 0.20 285 / 0.85));
    border: 1px solid oklch(0.72 0.20 290 / 0.45);
    border-radius: 14px 14px 4px 14px;
    font-size: 13.5px;
    color: #fff;
    line-height: 1.4;
    box-shadow: 0 8px 20px -10px oklch(0.62 0.22 290 / 0.45);
    position: relative;
  }
  .qbubble::before {
    content: 'You';
    position: absolute;
    top: -9px; right: 10px;
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: oklch(0.78 0.14 290);
    background: var(--panel);
    padding: 0 6px;
  }

  /* agent searching row */
  .thinking {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 12px 7px 8px;
    background: oklch(0.62 0.22 290 / 0.10);
    border: 1px solid oklch(0.62 0.22 290 / 0.20);
    border-radius: 12px;
    font-size: 11.5px;
    color: oklch(0.85 0.06 290);
    width: max-content;
  }
  .thinking-mark {
    width: 16px; height: 16px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: grid; place-items: center;
    font-size: 9px;
    color: white;
  }
  .src-logos { display: inline-flex; align-items: center; margin-left: 4px; }
  .src-logos > div {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: grid; place-items: center;
    border: 1.5px solid var(--panel);
    margin-left: -5px;
  }
  .src-logos > div:first-child { margin-left: 0; }
  .src-logos .more {
    background: oklch(1 0 0 / 0.10);
    color: oklch(0.85 0 0);
    font-size: 9px;
    font-weight: 600;
    font-family: var(--font-mono);
  }
  .think-dots {
    display: inline-flex; gap: 3px; margin-left: 6px;
  }
  .think-dots span {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent-2);
    animation: bob 1.2s ease-in-out infinite;
  }
  .think-dots span:nth-child(2) { animation-delay: 0.15s; }
  .think-dots span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes bob {
    0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-2px); }
  }

  /* answer card */
  .answer {
    position: relative;
    background: linear-gradient(180deg, oklch(0.22 0.025 275 / 0.85), oklch(0.16 0.020 275 / 0.85));
    border: 1px solid oklch(1 0 0 / 0.12);
    border-radius: 14px;
    padding: 20px 18px 16px;
    display: grid;
    gap: 14px;
    align-self: stretch;
    box-shadow: 0 12px 30px -16px rgba(0,0,0,0.6), inset 0 1px 0 oklch(1 0 0 / 0.06);
  }
  .answer::before { content: none; }
  .ans-head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 12px;
  }
  .ans-label {
    font-size: 10.5px;
    color: oklch(0.65 0.02 275);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .ans-metric {
    display: flex; align-items: baseline; gap: 14px;
  }
  .ans-metric .num {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: oklch(0.98 0 0);
  }
  .ans-metric .num span { color: oklch(0.65 0.02 275); font-size: 30px; margin-left: 1px; }
  .ans-delta {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 9px;
    background: oklch(0.62 0.14 155 / 0.18);
    color: oklch(0.85 0.14 155);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
  }

  /* sparkline */
  .spark {
    width: 100%;
    height: 110px;
    display: block;
  }
  .spark-axis {
    display: flex; justify-content: space-between;
    font-size: 10px; color: oklch(0.55 0.01 275);
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* insight chip */
  .insight {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, oklch(0.62 0.22 290 / 0.18), oklch(0.62 0.22 290 / 0.06));
    border: 1px solid oklch(0.62 0.22 290 / 0.22);
    border-radius: 12px;
    font-size: 12.5px;
    line-height: 1.45;
    color: oklch(0.92 0.02 285);
  }
  .insight b { color: oklch(0.98 0 0); font-weight: 600; }
  .insight-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: grid; place-items: center;
    color: white;
    font-size: 11px;
    margin-top: 1px;
  }

  /* chips + composer (inside chat view) */
  .chips {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin: 8px 0 10px;
    position: relative;
    padding-top: 16px;
  }
  .chips::before {
    content: 'Suggested';
    position: absolute;
    top: 0; left: 2px;
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: oklch(0.55 0.01 275);
  }
  .chip {
    padding: 7px 12px;
    white-space: nowrap;
    background: oklch(1 0 0 / 0.05);
    border: 1px solid oklch(1 0 0 / 0.14);
    border-radius: 999px;
    color: oklch(0.88 0 0);
    font-size: 11.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
  }
  .chip:hover {
    background: oklch(0.62 0.22 290 / 0.18);
    border-color: oklch(0.62 0.22 290 / 0.45);
    color: #fff;
    transform: translateY(-1px);
  }
  .chips-followup {
    margin-top: 14px;
    margin-bottom: 4px;
  }
  .chips-followup::before { content: 'Follow up'; }
  .composer {
    margin: 6px -22px 0;
    padding: 12px 22px 14px;
    border-top: 1px solid oklch(1 0 0 / 0.08);
    display: flex; align-items: center; gap: 8px;
    background: transparent;
  }
  .composer-field {
    flex: 1; min-width: 0;
    display: flex; align-items: center; gap: 8px;
    padding: 6px 6px 6px 14px;
    background: transparent;
    border: 1px solid oklch(1 0 0 / 0.12);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.03);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .composer-field:focus-within {
    border-color: oklch(0.62 0.22 290 / 0.5);
    box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.04), 0 0 0 3px oklch(0.62 0.22 290 / 0.10);
  }
  .composer-icon {
    flex-shrink: 0;
    color: oklch(0.65 0.02 275);
    display: grid; place-items: center;
  }
  .composer input {
    flex: 1; min-width: 0;
    background: transparent;
    border: none; outline: none;
    color: oklch(0.92 0 0);
    font-family: inherit;
    font-size: 13px;
    padding: 6px 4px;
  }
  .composer input::placeholder { color: oklch(0.55 0.01 275); }
  .composer .kbdhint {
    font-size: 10.5px;
    color: oklch(0.55 0.01 275);
    font-family: var(--font-mono);
  }
  .composer .kbd {
    padding: 2px 6px;
    background: oklch(1 0 0 / 0.06);
    border: 1px solid oklch(1 0 0 / 0.08);
    border-radius: 4px;
    color: oklch(0.78 0 0);
  }
  .send {
    width: 30px; height: 30px;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: none;
    color: white;
    display: grid; place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px -4px var(--accent-glow);
    transition: transform 0.15s;
  }
  .send:hover { transform: translateY(-1px); }

  /* DASHBOARDS view */
  .dash-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr auto;   /* KPI row 1 · KPI row 2 · chart fills · insight bar */
    gap: 10px;
    min-height: 0;
  }
  .dash-insight {
    grid-column: 1 / -1;
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, oklch(0.30 0.10 285 / 0.35), oklch(0.25 0.06 230 / 0.20));
    border: 1px solid oklch(0.62 0.22 290 / 0.30);
    border-radius: 10px;
    font-size: 12px;
    color: oklch(0.95 0.02 285);
  }
  .dash-insight .ai-dot {
    flex: 0 0 18px; width: 18px; height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, oklch(0.78 0.18 290), oklch(0.48 0.20 285));
    box-shadow: 0 0 12px oklch(0.62 0.22 290 / 0.55);
  }
  .dash-insight .ai-cta {
    margin-left: auto;
    padding: 4px 10px;
    background: oklch(1 0 0 / 0.08);
    border: 1px solid oklch(1 0 0 / 0.15);
    border-radius: 999px;
    font-size: 11px;
    color: oklch(0.96 0 0);
    cursor: pointer;
  }
  .kpi {
    background: oklch(1 0 0 / 0.03);
    border: 1px solid oklch(1 0 0 / 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    display: grid; gap: 4px;
    position: relative;
    overflow: hidden;
  }
  .kpi .k-label { font-size: 10px; color: oklch(0.55 0.01 275); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
  .kpi .k-val { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.03em; color: oklch(0.98 0 0); line-height: 1.1; }
  .kpi .k-delta { font-size: 11px; color: oklch(0.78 0.14 155); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
  .kpi .k-delta.neg { color: oklch(0.72 0.16 30); }
  .kpi .k-trend {
    position: absolute;
    right: 10px; bottom: 10px;
    width: 60px; height: 22px;
    opacity: 0.85;
  }
  .dash-chart {
    grid-column: 1 / -1;
    background: oklch(1 0 0 / 0.03);
    border: 1px solid oklch(1 0 0 / 0.06);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 10px;
    min-height: 0;
  }
  .dash-chart .row {
    display: grid;
    grid-template-columns: 14px 88px 1fr 64px;
    align-items: center; gap: 10px;
    font-size: 11.5px;
  }
  .dash-chart .row .dot { width: 8px; height: 8px; border-radius: 2px; }
  .dash-chart .row .bar {
    height: 6px; border-radius: 3px;
    background: oklch(1 0 0 / 0.06);
    overflow: hidden;
    position: relative;
  }
  .dash-chart .row .bar > span {
    display: block; height: 100%;
    border-radius: 3px;
  }
  .dash-chart .row .name { color: oklch(0.88 0 0); font-weight: 500; }
  .dash-chart .row .val { text-align: right; color: oklch(0.98 0 0); font-family: var(--font-mono); font-weight: 600; }

  /* EXPERIMENTS view */
  .exp-list { display: flex; flex-direction: column; gap: 8px; flex: 1; min-height: 0; overflow: hidden; }
  .exp-row {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
    padding: 11px 14px;
    background: oklch(1 0 0 / 0.03);
    border: 1px solid oklch(1 0 0 / 0.06);
    border-radius: 10px;
    transition: background 0.15s;
  }
  .exp-row:hover { background: oklch(1 0 0 / 0.05); }
  .exp-status { width: 8px; height: 8px; border-radius: 50%; }
  .exp-status.run { background: oklch(0.78 0.14 155); box-shadow: 0 0 0 3px oklch(0.78 0.14 155 / 0.18); animation: blink2 1.6s infinite; }
  .exp-status.win { background: var(--accent-2); box-shadow: 0 0 0 3px oklch(0.62 0.22 290 / 0.18); }
  .exp-status.pause { background: oklch(0.78 0.14 75); }
  .exp-name { font-size: 12.5px; color: oklch(0.94 0 0); font-weight: 500; }
  .exp-meta { font-size: 10.5px; color: oklch(0.55 0.01 275); margin-top: 3px; display: flex; align-items: center; gap: 8px; }
  .exp-progress { width: 80px; height: 3px; border-radius: 2px; background: oklch(1 0 0 / 0.08); overflow: hidden; }
  .exp-progress > span { display: block; height: 100%; background: oklch(0.78 0.14 155); border-radius: 2px; }
  .exp-val { font-family: var(--font-display); font-size: 16px; color: oklch(0.98 0 0); font-weight: 600; letter-spacing: -0.02em; text-align: right; }
  .exp-val small { color: oklch(0.55 0.01 275); font-size: 10px; font-weight: 500; display: block; text-align: right; margin-top: 1px; text-transform: none; letter-spacing: 0; font-family: inherit; }
  .exp-val.win { color: oklch(0.85 0.18 155); }

  /* CREATIVE view */
  .cr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; flex: 1; min-height: 0; }
  .cr-tile {
    background: oklch(1 0 0 / 0.03);
    border: 1px solid oklch(1 0 0 / 0.06);
    border-radius: 12px;
    padding: 8px;
    display: flex; flex-direction: column; gap: 6px;
    transition: transform 0.15s, border-color 0.15s;
  }
  .cr-tile:hover { transform: translateY(-2px); border-color: oklch(1 0 0 / 0.12); }
  .cr-thumb {
    aspect-ratio: 4/3;
    border-radius: 8px;
    background: var(--thumb, linear-gradient(135deg, oklch(0.45 0.18 290), oklch(0.55 0.20 230)));
    position: relative;
    overflow: hidden;
    display: grid; place-items: center;
  }
  .cr-thumb::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, oklch(0 0 0 / 0.45));
  }
  .cr-thumb .cr-format {
    position: relative; z-index: 2;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: oklch(1 0 0 / 0.18);
    backdrop-filter: blur(4px);
    border: 1px solid oklch(1 0 0 / 0.30);
    display: grid; place-items: center;
    color: white;
    opacity: 0.85;
  }
  .cr-score {
    position: absolute; top: 6px; right: 6px;
    padding: 2px 7px;
    background: oklch(0 0 0 / 0.55);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 10px;
    font-family: var(--font-mono);
    font-weight: 700;
    border-radius: 999px;
    z-index: 3;
    letter-spacing: 0.02em;
  }
  .cr-info { padding: 2px 4px 4px; display: grid; gap: 3px; }
  .cr-name { font-size: 11.5px; color: oklch(0.92 0 0); font-weight: 500; letter-spacing: -0.01em; }
  .cr-meta { font-size: 10px; color: oklch(0.55 0.01 275); font-family: var(--font-mono); display: flex; gap: 6px; }
  .cr-meta .pos { color: oklch(0.78 0.14 155); }
  .cr-meta .neg { color: oklch(0.72 0.16 30); }

  /* GOVERNANCE view */
  .gov-list { display: flex; flex-direction: column; gap: 8px; flex: 1; min-height: 0; }
  .gov-row {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
    padding: 11px 14px;
    background: oklch(1 0 0 / 0.03);
    border: 1px solid oklch(1 0 0 / 0.06);
    border-radius: 10px;
    transition: background 0.15s;
  }
  .gov-row:hover { background: oklch(1 0 0 / 0.05); }
  .gov-row.crit { border-color: oklch(0.62 0.20 25 / 0.30); background: oklch(0.62 0.20 25 / 0.04); }
  .gov-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: grid; place-items: center;
    color: white;
    flex-shrink: 0;
  }
  .gov-icon svg { width: 14px; height: 14px; }
  .gov-icon.ok { background: oklch(0.55 0.14 155 / 0.18); color: oklch(0.82 0.14 155); border: 1px solid oklch(0.55 0.14 155 / 0.30); }
  .gov-icon.warn { background: oklch(0.72 0.16 75 / 0.18); color: oklch(0.85 0.16 75); border: 1px solid oklch(0.72 0.16 75 / 0.30); }
  .gov-icon.crit { background: oklch(0.62 0.20 25 / 0.18); color: oklch(0.82 0.18 25); border: 1px solid oklch(0.62 0.20 25 / 0.35); }
  .gov-name { font-size: 12.5px; color: oklch(0.94 0 0); font-weight: 500; letter-spacing: -0.005em; }
  .gov-sub { font-size: 10.5px; color: oklch(0.55 0.01 275); margin-top: 3px; }
  .gov-val { font-size: 11.5px; color: oklch(0.92 0 0); font-family: var(--font-mono); font-weight: 600; }
  .gov-val.pos { color: oklch(0.85 0.14 155); }
  .gov-val.neg { color: oklch(0.82 0.16 30); }

  /* Settings toggles */
  .gov-toggle {
    width: 32px; height: 18px;
    border-radius: 999px;
    background: oklch(0.55 0.14 155 / 0.35);
    position: relative;
    border: 1px solid oklch(0.55 0.14 155 / 0.45);
  }
  .gov-toggle::after {
    content: '';
    position: absolute; top: 1px; right: 1px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: oklch(0.85 0.14 155);
    box-shadow: 0 1px 3px oklch(0 0 0 / 0.3);
  }

  /* SATELLITE CARDS */
  .float {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 14px 16px;
    box-shadow:
      0 1px 0 oklch(1 0 0 / 0.9) inset,
      0 28px 60px -22px oklch(0.18 0.014 275 / 0.34),
      0 8px 20px -8px oklch(0.18 0.014 275 / 0.14);
    backdrop-filter: blur(8px);
  }

  /* sources card — floating on left, overlapping the agent edge */
  .float-sources {
    top: -10px; left: -16px;
    width: 220px;
    display: grid;
    gap: 10px;
    animation: floaty 6s ease-in-out infinite;
    z-index: 5;
  }
  .float-sources .label {
    font-size: 10.5px;
    color: var(--ink-3);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .float-sources .row {
    display: inline-flex;
    align-items: center;
  }
  .src-logos-light > div {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: grid; place-items: center;
    border: 2px solid var(--card);
    margin-left: -7px;
    box-shadow: 0 2px 6px -2px oklch(0 0 0 / 0.15);
  }
  .src-logos-light > div:first-child { margin-left: 0; }
  .src-logos-light { display: inline-flex; align-items: center; }
  .src-logos-light .more {
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-mono);
  }
  .float-sources .count {
    display: flex; align-items: baseline; gap: 6px;
  }
  .float-sources .count .n {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
  .float-sources .count .l {
    font-size: 12px;
    color: var(--ink-3);
  }

  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  /* ─── LIVE TICKER ─── */
  .ticker {
    display: flex; align-items: center;
    gap: 24px;
    margin-top: 12px;
    padding: 14px 0 0;
  }
  .ticker-label {
    font-size: 11px;
    color: var(--ink-3);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
  }
  .ticker-rail {
    overflow: hidden;
    flex: 1; min-width: 0;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  }
  .ticker-track {
    display: inline-flex;
    gap: 36px;
    animation: tick 24s linear infinite;
    white-space: nowrap;
  }
  @keyframes tick {
    to { transform: translateX(-50%); }
  }
  .ticker-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px;
    color: var(--ink-2);
  }
  .ticker-item .mono {
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
  }
  .ticker-item .dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
  }
  .ticker-item .ok { color: oklch(0.55 0.14 155); }

  .brand-logo { display: block; height: 26px; width: auto; }
  /* ─── LOGO MARQUEE ─── */
  .marquee {
    margin-top: 56px;
    padding: 36px 0 24px;
    border-top: 1px solid var(--line);
    position: relative;
  }
  .marquee-h {
    font-size: 11px;
    color: var(--ink-3);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
  }
  .marquee-rail {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  }
  .marquee-track {
    display: inline-flex;
    gap: 72px;
    align-items: center;
    animation: tick 38s linear infinite;
    white-space: nowrap;
    padding: 0 36px;
  }
  .marquee-rail:hover .marquee-track { animation-play-state: paused; }
  @keyframes tick { to { transform: translateX(-25%); } }   /* matches 4-copy duplication for seamless loop */
  /* Real customer logos — sizes mirror v2's prod .hp-logo-strip-track (known-good balance),
     filter flipped from invert(1) → no-invert because the v4 marquee BG is cream, not dark.
     Per-logo height overrides (Activision/Hims/OMD/Mattel) keep visual weight even across
     wordmark vs square-mark vs thick-wordmark glyphs. */
  .logo-wm {
    display: block;
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.62;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  .logo-wm:hover { opacity: 0.9; }
  .marquee-track img.logo-wm[alt="Activision"] { height: 22px; }
  .marquee-track img.logo-wm[alt="Hims"]       { height: 52px; }
  .marquee-track img.logo-wm[alt="OMD"]        { height: 28px; }
  .marquee-track img.logo-wm[alt="Mattel"]     { height: 44px; }

  /* responsive */
  @media (max-width: 1120px) {
    .hero { grid-template-columns: 1fr; gap: 60px; }
    .hero-right { height: clamp(420px, 60vh, 560px); }
    .nav { grid-template-columns: 1fr auto; }
    .nav-menu { display: none; }
  }
  @media (max-width: 768px) {
    .hero { padding: 40px 0 28px; gap: 40px; }
    .hero-left { padding-right: 0; }
    .warm-hero-host h1 { font-size: clamp(36px, 7vw, 52px); }
    .lede { font-size: 17px; }
  }
  @media (max-width: 640px) {
    .page { padding: 16px 18px 0; }
    .hero { padding: 32px 0; }
    .warm-hero-host h1 { font-size: clamp(30px, 9vw, 44px); line-height: 1.15; letter-spacing: -0.025em; overflow-wrap: anywhere; }
    .hero-right { height: auto; aspect-ratio: 4 / 5; min-height: 360px; max-height: 60vh; }
    .float-sources { width: 180px; }
    .marquee-track { gap: 40px; padding: 0 18px; }
    .logo-wm { height: 30px; }
    .marquee-track img.logo-wm[alt="Hims"] { height: 42px; }
    .marquee-track img.logo-wm[alt="Mattel"] { height: 36px; }
    .marquee { margin-top: 36px; padding: 24px 0 16px; }
    .marquee-h { font-size: 10px; margin-bottom: 18px; letter-spacing: 0.14em; }
  }
  @media (max-width: 480px) {
    .page { padding: 12px 14px 0; }
    .warm-hero-host { padding: 64px 0 80px 0; }
    .hero-right { aspect-ratio: 3 / 4; min-height: 320px; max-height: 56vh; padding-top: 8px; }
    .float-sources { width: 160px; top: -6px; left: -8px; padding: 10px 12px; }
    .float-sources .label { font-size: 9.5px; }
    .float-sources .count .n { font-size: 18px; }
    .form-wrap { max-width: 100%; }
    .form {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      padding: 8px;
      border-radius: 12px;
    }
    .form input { padding: 14px 16px; font-size: 16px; }
    .form-btn {
      width: 100%;
      justify-content: center;
      padding: 14px 20px;
      font-size: 15px;
      min-height: 48px;
    }
  }

  /* ── testpage-v3 graft: keep the warm hero as a self-contained cream island ── */
  .warm-hero-host {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;          /* clip horizontal page::before/::after washes only */
    padding: 80px 0 120px 0;     /* top: clear the fixed hp-header; bottom: 120px = enough for agent panel's 130px-extent box-shadow not to clip (marquee wrap has its own padding override below) */
  }
  .warm-hero-host * { box-sizing: border-box; }

  /* Form alignment: flush left, narrower than column so lede + form share a tidy column. */
  .warm-hero-host .form-wrap { margin: 0 0 28px 0; max-width: 460px; }
  .warm-hero-host .lede { max-width: 460px; }

  /* Social-proof strip — ONE bordered row: label · ASUS · inline testimonial · 4 logos */
  .warm-marquee-wrap.warm-hero-host {
    padding: 0 0 24px 0;
  }
  .proof-strip {
    display: grid;
    grid-template-columns: auto auto minmax(280px, 1.6fr) auto auto auto auto;
    align-items: stretch;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: oklch(1 0 0 / 0.4);
    max-width: 1200px;
    margin: 0 auto;
  }
  .proof-cell {
    padding: 12px 22px;
    border-right: 1px solid var(--line);
    min-height: 76px;
    display: grid;
    place-items: center;
  }
  .proof-cell:last-child { border-right: none; }
  /* Label cell — small uppercase eyebrow, left-aligned, narrow */
  .proof-label {
    padding: 12px 18px;
    justify-items: start;
  }
  .proof-label span {
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 600;
  }
  /* Logo cells — slightly larger logos than the previous compact version */
  .proof-logo { min-width: 110px; padding: 12px 22px; }
  .proof-logo .logo-wm { height: 38px; transition: opacity 0.2s, transform 0.2s; }
  .proof-logo:hover .logo-wm { opacity: 0.92; transform: translateY(-1px); }
  .proof-logo img.logo-wm[alt="Activision"] { height: 24px; }
  .proof-logo img.logo-wm[alt="Hims"]       { height: 52px; }
  .proof-logo img.logo-wm[alt="OMD"]        { height: 28px; }
  .proof-logo img.logo-wm[alt="Mattel"]     { height: 44px; }
  /* Testimonial cell — rotator: stacked figures cross-fade between Jeff Lee and Waleed */
  .proof-testimonials {
    position: relative;
    padding: 0;                  /* inner figures own the padding */
    min-height: 76px;
    overflow: hidden;
  }
  .proof-testimonial {
    position: absolute; inset: 0;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    justify-items: start;
    text-align: left;
    margin: 0;
    padding: 10px 22px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 600ms cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
  }
  .proof-testimonial.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .proof-testimonial .quote-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid oklch(1 0 0 / 0.95);
    box-shadow: 0 2px 6px oklch(0 0 0 / 0.08), 0 0 0 1px var(--line);
    background: var(--card);
  }
  /* Initials-style avatar for testimonials without a photo (honest, professional, ethical) */
  .quote-avatar-initials {
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: oklch(0.30 0.08 285);
    background: linear-gradient(135deg, oklch(0.93 0.05 285), oklch(0.96 0.03 250));
  }
  .proof-quote-body { min-width: 0; }
  .proof-quote-body .quote-text {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.003em;
  }
  .proof-quote-body .quote-text strong {
    font-weight: 600;
    color: var(--ink);
    background: linear-gradient(120deg, oklch(0.95 0.08 285), oklch(0.94 0.06 250));
    padding: 0 4px;
    border-radius: 4px;
  }
  .proof-quote-body .quote-cite {
    margin: 2px 0 0;
    font-size: 11.5px;
    color: var(--ink-3);
    letter-spacing: 0.005em;
  }
  .proof-quote-body .quote-cite strong { color: var(--ink); font-weight: 600; }
  /* Reduced-motion: instant swap, no cross-fade */
  @media (prefers-reduced-motion: reduce) {
    .proof-testimonial { transition: none; transform: none; }
  }

  /* Responsive — wrap onto multiple rows on narrow viewports */
  @media (max-width: 1100px) {
    .proof-strip {
      grid-template-columns: 1fr 1fr 1fr;
    }
    .proof-label { grid-column: 1 / -1; justify-items: center; border-right: none; border-bottom: 1px solid var(--line); }
    .proof-label span { text-align: center; }
    .proof-testimonial { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
    .proof-logo { border-right: 1px solid var(--line); }
    .proof-logo:nth-child(3n + 2) { border-right: 1px solid var(--line); }   /* keep dividers tidy */
  }
  @media (max-width: 640px) {
    .proof-strip { grid-template-columns: 1fr 1fr; }
    .proof-testimonial { grid-template-columns: 40px 1fr; }
  }

  /* Hide homepage-v2's dark logo strip in v3 — replaced by the warm text-marquee below. */
  body:has(#warm-hero) .hp-logo-strip { display: none !important; }

  /* ─── v3-only nav recolor: keep the FULL hp-header markup (logo + Product/Solutions/
       Customers/Resources/Pricing dropdowns + Log in), but light-theme its colors so it
       reads on cream BG. These selectors are unscoped because warm-hero-css only loads
       on the v3 page. ─── */

  /* Scrolled state: cream-glass instead of dark-glass */
  .hp-header.scrolled {
    background: rgba(252, 251, 247, 0.88);
    border-bottom: 1px solid oklch(0.92 0.006 275 / 0.6);
    box-shadow: 0 8px 24px -16px oklch(0 0 0 / 0.08);
  }

  /* Logo: recolor only the wordmark paths (3+); keep the i/m glyphs INSIDE the pink rect white */
  .hp-logo svg > path:nth-of-type(n+3) { fill: oklch(0.18 0.014 275); }
  .hp-logo svg { opacity: 1; filter: none; }

  /* Top-level links + dropdown triggers + Log in */
  .hp-header-link,
  .hp-nav-trigger { color: oklch(0.32 0.012 275); }
  .hp-header-link:hover,
  .hp-nav-trigger:hover { color: oklch(0.18 0.014 275); background: oklch(0 0 0 / 0.04); }
  .hp-header-login { color: oklch(0.50 0.010 275); }
  .hp-header-login:hover { color: oklch(0.18 0.014 275); background: oklch(0 0 0 / 0.04); }

  /* Dropdown panel: light glass, soft border + shadow */
  .hp-nav-dropdown {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid oklch(0.92 0.006 275);
    box-shadow: 0 24px 48px -12px oklch(0 0 0 / 0.18), 0 0 0 1px oklch(0 0 0 / 0.02);
  }
  .hp-nav-dropdown--wide .hp-nav-dropdown-col + .hp-nav-dropdown-col {
    border-left: 1px solid oklch(0.92 0.006 275);
  }
  .hp-nav-dropdown-heading { color: oklch(0.50 0.010 275); }
  .hp-nav-dropdown-heading::before { background: oklch(0.58 0.20 285); }
  .hp-nav-dropdown-link:hover { background: oklch(0 0 0 / 0.04); }
  .hp-nav-dropdown-title { color: oklch(0.18 0.014 275); }
  .hp-nav-dropdown-link:hover .hp-nav-dropdown-title { color: oklch(0.18 0.014 275); }
  .hp-nav-dropdown-desc { color: oklch(0.50 0.010 275); }

  /* Mobile hamburger icon — flip from white to ink */
  .hp-nav-hamburger { color: oklch(0.18 0.014 275); }

  /* ─── SELF-RUNNING DEMO (auto-cursor on the right-side agent panel) ─── */
  .hero-right { position: relative; }
  .demo-cursor, .demo-ripple, .demo-caption {
    position: absolute; top: 0; left: 0;
    pointer-events: none;
    z-index: 40;
    opacity: 0;
    will-change: transform, opacity;
  }
  .demo-cursor {
    width: 56px; height: 56px;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
    transition: transform 850ms cubic-bezier(0.4, 0.0, 0.2, 1), opacity 250ms ease;
  }
  .demo-caption {
    padding: 6px 12px;
    background: oklch(0.16 0.022 275 / 0.92);
    color: #fff;
    border-radius: 999px;
    font: 500 12px/1.2 var(--font-body);
    white-space: nowrap;
    transition: transform 850ms cubic-bezier(0.4, 0.0, 0.2, 1), opacity 250ms ease;
  }
  .demo-cursor.is-visible,
  .demo-caption.is-visible { opacity: 1; }
  .demo-cursor.is-clicking { transition: transform 120ms ease-out; }
  .demo-ripple {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, oklch(0.62 0.22 290 / 0.40) 0%, transparent 70%);
    transition: opacity 250ms ease;
  }
  .demo-ripple.is-pulse { animation: demo-pulse 600ms ease-out forwards; }
  @keyframes demo-pulse { 0% { opacity: 0.85; } 100% { opacity: 0; } }
  @media (prefers-reduced-motion: reduce),
         (max-width: 900px) {
    .demo-cursor, .demo-ripple, .demo-caption { display: none !important; }
  }


/* ═══════════════════════════════════════════════════════════════════════
   Rich answer card — adapted from v7 AgentStage state-3 visual rhythm
   (KPI strip + from/to reallocation bars + flow pill + reco card)
   into v4's dark .agent panel. Scoped to .warm-hero-host to prevent bleed.
   ═══════════════════════════════════════════════════════════════════════ */

.warm-hero-host .answer-rich {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, oklch(0.22 0.025 275 / 0.85), oklch(0.16 0.020 275 / 0.85));
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: 14px;
}

.warm-hero-host .answer-rich .answer-title {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: oklch(0.62 0.01 275);
  font-weight: 500;
}

.warm-hero-host .answer-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.06);
}
.warm-hero-host .answer-kpi {
  display: flex; flex-direction: column; gap: 4px;
}
.warm-hero-host .answer-kpi-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: oklch(0.55 0.01 275);
}
.warm-hero-host .answer-kpi-value {
  font-size: 22px;
  font-weight: 600;
  color: oklch(0.98 0 0);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.warm-hero-host .answer-kpi-value > span {
  font-size: 14px;
  font-weight: 500;
  color: oklch(0.72 0.01 275);
  margin-left: 1px;
}
.warm-hero-host .answer-kpi--accent .answer-kpi-value {
  color: oklch(0.80 0.18 155);
}
.warm-hero-host .answer-kpi--accent .answer-kpi-value > span { color: oklch(0.70 0.16 155); }

.warm-hero-host .answer-bars {
  display: flex; flex-direction: column; gap: 8px;
}
.warm-hero-host .answer-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
}
.warm-hero-host .answer-bar-label {
  color: oklch(0.85 0.01 275);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.warm-hero-host .answer-bar-meta {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(0.65 0.01 275);
  padding: 2px 6px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.05);
  border: 1px solid oklch(1 0 0 / 0.08);
}
.warm-hero-host .answer-bar-value {
  font-size: 14px;
  font-weight: 600;
  color: oklch(0.98 0 0);
  font-variant-numeric: tabular-nums;
}
.warm-hero-host .answer-bar-track {
  grid-column: 1 / -1;
  height: 8px;
  background: oklch(1 0 0 / 0.05);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid oklch(1 0 0 / 0.04);
}
.warm-hero-host .answer-bar-fill {
  height: 100%;
  width: var(--bar-width, 0%);
  border-radius: 4px;
  transition: width 0.9s cubic-bezier(.22,.61,.36,1);
}
.warm-hero-host .answer-bar-fill--winner {
  background: linear-gradient(90deg, oklch(0.55 0.16 155), oklch(0.68 0.18 165));
  box-shadow: 0 0 12px -2px oklch(0.62 0.18 155 / 0.45);
}
.warm-hero-host .answer-bar-fill--loser {
  background: linear-gradient(90deg, oklch(0.52 0.16 25), oklch(0.60 0.20 35));
}

.warm-hero-host .answer-realloc-flow {
  display: flex; justify-content: center; padding: 2px 0;
}
.warm-hero-host .answer-realloc-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px 5px 14px;
  background: linear-gradient(120deg, oklch(0.62 0.22 290 / 0.22), oklch(0.55 0.18 250 / 0.22));
  border: 1px solid oklch(0.62 0.22 290 / 0.40);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: oklch(0.92 0.10 290);
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px -4px oklch(0.62 0.22 290 / 0.35);
}
.warm-hero-host .answer-realloc-pill-arrow { font-weight: 700; opacity: 0.7; }

.warm-hero-host .answer-reco {
  display: flex; gap: 10px;
  padding: 11px 12px;
  background: linear-gradient(180deg, oklch(0.62 0.22 290 / 0.10), oklch(0.55 0.18 250 / 0.08));
  border: 1px solid oklch(0.62 0.22 290 / 0.20);
  border-radius: 10px;
}
.warm-hero-host .answer-reco-icon {
  flex: 0 0 auto;
  color: oklch(0.85 0.14 290);
  font-size: 14px; font-weight: 700;
  margin-top: -1px;
}
.warm-hero-host .answer-reco-text {
  flex: 1;
  font-size: 12.5px;
  line-height: 1.5;
  color: oklch(0.90 0 0);
}
.warm-hero-host .answer-reco-text strong {
  color: oklch(0.98 0 0);
  font-weight: 600;
}
.warm-hero-host .answer-uplift {
  color: oklch(0.80 0.18 155);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Subtle entrance for newly-rendered rich answer */
.warm-hero-host .answer-rich {
  animation: answer-rich-in 420ms cubic-bezier(.22,.61,.36,1) both;
}
@keyframes answer-rich-in {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .warm-hero-host .answer-rich { animation: none; }
  .warm-hero-host .answer-bar-fill { transition: none; }
}
