:root{
    --ink: #0b0908;
    --panel: #16120f;
    --panel-raised: #1e1813;
    --line: rgba(244,238,222,0.11);
    --line-strong: rgba(244,238,222,0.22);
    --paper: #f3ecda;
    --paper-dim: #ded5bd;
    --muted: #a99e88;
    --gold: #d3a53c;
    --gold-bright: #f0c768;
    --gold-deep: #7a5c1e;
    --gold-ink: #1a1306;

    --display: "Fraunces", Georgia, "Times New Roman", serif;
    --body: "Work Sans", -apple-system, "Segoe UI", sans-serif;
    --mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

    --max: 1120px;
    color-scheme: dark;
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ background:var(--ink); }

  body{
    margin:0;
    background:
      radial-gradient(circle, rgba(243,236,218,0.05) 1px, transparent 1px) 0 0/28px 28px,
      var(--ink);
    color:var(--paper);
    font-family:var(--body);
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }

  img,svg{ display:block; max-width:100%; }

  a{ color:inherit; }

  h1,h2,h3{
    font-family:var(--display);
    font-weight:600;
    line-height:1.05;
    margin:0;
    text-wrap:balance;
    color:var(--paper);
  }

  em{
    font-style:italic;
    color:var(--gold-bright);
  }

  p{ margin:0; }

  .wrap{
    max-width:var(--max);
    margin:0 auto;
    padding:0 32px;
  }

  .eyebrow{
    font-family:var(--mono);
    font-size:11.5px;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--gold);
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:16px;
    height:1px;
    background:var(--gold-deep);
  }

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

  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:var(--mono);
    font-size:13px;
    letter-spacing:0.03em;
    font-weight:500;
    padding:14px 26px;
    border-radius:2px;
    text-decoration:none;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  }
  .btn:focus-visible{ outline:2px solid var(--gold-bright); outline-offset:3px; }
  .btn-primary{
    background:var(--gold);
    color:var(--gold-ink);
  }
  .btn-primary:hover{
    background:var(--gold-bright);
    box-shadow:0 0 0 1px var(--gold-bright), 0 8px 24px -8px rgba(211,165,60,0.55);
    transform:translateY(-1px);
  }
  .btn-ghost{
    background:transparent;
    color:var(--paper);
    border-color:var(--line-strong);
  }
  .btn-ghost:hover{
    border-color:var(--gold);
    color:var(--gold-bright);
  }
  .btn-invert{
    background:var(--gold-ink);
    color:var(--gold-bright);
  }
  .btn-invert:hover{
    background:#000;
    transform:translateY(-1px);
  }

  /* ---------- nav ---------- */
  header{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(11,9,8,0.86);
    backdrop-filter:blur(10px);
  }
  nav.wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:78px;
    gap:12px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
  }
  .brand-text{
    display:flex;
    flex-direction:column;
    gap:2px;
  }
  .mark{
    width:36px; height:36px;
    flex-shrink:0;
    filter:drop-shadow(0 0 10px rgba(211,165,60,0.35));
  }
  .brand-name{
    font-family:var(--display);
    font-size:20px;
    font-weight:600;
    letter-spacing:0.01em;
    color:var(--paper);
  }
  .brand-name span{ color:var(--gold-bright); font-style:italic; }
  .brand-sub{
    font-family:var(--mono);
    font-size:10px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--muted);
  }
  .nav-links{
    display:flex;
    align-items:center;
    gap:36px;
    list-style:none;
    margin:0; padding:0;
  }
  .nav-links a{
    font-family:var(--mono);
    font-size:13px;
    letter-spacing:0.02em;
    text-decoration:none;
    color:var(--paper-dim);
    transition:color .15s ease;
  }
  .nav-links a:hover{ color:var(--gold-bright); }
  .nav-cta{ display:flex; align-items:center; gap:28px; }
  .nav-mobile-hide{ display:flex; }
  @media (max-width: 900px){
    .nav-mobile-hide{ display:none; }
    nav.wrap{ padding:14px 0; }
    .brand{ gap:8px; }
    .mark{ width:30px; height:30px; }
    .brand-name{ font-size:15px; white-space:nowrap; }
    .brand-sub{ display:none; }
    .nav-cta .btn{ padding:9px 14px; font-size:11px; white-space:nowrap; }
  }

  /* ---------- hero ---------- */
  .hero{
    padding:96px 0 104px;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-260px; right:-180px;
    width:620px; height:620px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(211,165,60,0.16), transparent 70%);
    pointer-events:none;
  }
  .hero > .wrap{ position:relative; z-index:1; }
  .hero-atmosphere{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    overflow:hidden;
  }
  .hero-horizon{
    position:absolute;
    left:0; right:0; top:0;
    height:70%;
    background:
      radial-gradient(ellipse 55% 60% at 82% 8%, rgba(211,165,60,0.13), transparent 70%),
      radial-gradient(ellipse 45% 50% at 8% 92%, rgba(211,165,60,0.08), transparent 70%);
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:40px;
    align-items:center;
  }
  @media (max-width:900px){
    .hero-grid{ grid-template-columns:1fr; }
  }
  .hero-inner{
    position:relative;
  }
  .status-pill{
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-family:var(--mono);
    font-size:11.5px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--paper-dim);
    border:1px solid var(--line-strong);
    background:rgba(244,238,222,0.03);
    padding:7px 14px 7px 11px;
    border-radius:999px;
    margin-bottom:24px;
  }
  .status-dot{
    width:7px; height:7px;
    border-radius:50%;
    background:var(--gold-bright);
    box-shadow:0 0 0 0 rgba(240,199,104,0.6);
    animation:pulse 2.4s ease-out infinite;
  }
  @keyframes pulse{
    0%   { box-shadow:0 0 0 0 rgba(240,199,104,0.55); }
    70%  { box-shadow:0 0 0 7px rgba(240,199,104,0); }
    100% { box-shadow:0 0 0 0 rgba(240,199,104,0); }
  }
  .dash-live-dot{
    display:inline-block;
    width:6px; height:6px;
    border-radius:50%;
    background:var(--gold-bright);
    margin-right:6px;
    box-shadow:0 0 0 0 rgba(240,199,104,0.6);
    animation:pulse 2.4s ease-out infinite;
    vertical-align:middle;
  }
  @media (prefers-reduced-motion: reduce){
    .status-dot, .dash-live-dot{ animation:none; }
  }

  /* ambient glow utility, reused outside the hero */
  .glow{
    content:"";
    position:absolute;
    width:560px; height:560px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(211,165,60,0.10), transparent 70%);
    pointer-events:none;
    z-index:0;
  }
  .hero h1{
    font-size:clamp(40px, 6vw, 68px);
    margin:20px 0 24px;
  }
  .hero-sub{
    font-size:17px;
    line-height:1.75;
    color:var(--paper-dim);
    max-width:560px;
    margin-bottom:36px;
  }
  .hero-ctas{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:72px;
  }

  .stat-rail{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-end;
    gap:28px 24px;
    padding:38px 4px 42px;
    position:relative;
  }
  .stat-rail-line{
    position:absolute;
    inset:0;
    width:100%; height:100%;
    z-index:0;
    pointer-events:none;
    overflow:visible;
  }
  .stat-rail-line polyline{
    fill:none;
    stroke:var(--line-strong);
    stroke-width:1;
    stroke-dasharray:7 9;
  }
  .stat-pulse{
    position:absolute;
    top:0;
    left:0;
    width:7px; height:7px;
    margin:-3.5px 0 0 -3.5px;
    border-radius:50%;
    background:var(--gold-bright);
    box-shadow:0 0 12px 3px rgba(240,199,104,0.8);
    opacity:0;
    z-index:0;
    pointer-events:none;
  }
  @media (prefers-reduced-motion: reduce){
    .stat-pulse{ display:none; }
  }
  .stat{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    position:relative;
    z-index:1;
  }
  .stat-ring{
    border-radius:50%;
    background:radial-gradient(circle at 34% 28%, var(--gold-bright), var(--gold) 72%);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    box-shadow:0 16px 34px -18px rgba(0,0,0,0.6);
    transition:transform .35s cubic-bezier(.4,0,.2,1), box-shadow .3s ease;
  }
  .stat-ring::before{
    content:"";
    position:absolute;
    inset:6px;
    border-radius:50%;
    background:var(--panel);
    transition:background .2s ease;
  }
  .stat-num{
    position:relative;
    font-family:var(--mono);
    font-weight:700;
    color:var(--gold-bright);
    font-variant-numeric:tabular-nums;
    letter-spacing:-0.01em;
    white-space:nowrap;
  }
  .stat-label{
    font-family:var(--mono);
    font-size:10.5px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--muted);
    text-align:center;
  }
  .stat:hover .stat-ring{
    transform:rotate(0deg) translateY(-6px) scale(1.05);
    box-shadow:0 22px 40px -16px rgba(0,0,0,0.65);
  }
  .stat:hover .stat-ring::before{ background:var(--panel-raised); }

  .stat--1{ transform:translateY(30px); }
  .stat--1 .stat-ring{ width:128px; height:128px; transform:rotate(-4deg); }
  .stat--1 .stat-num{ font-size:22px; }

  .stat--2{ transform:translateY(-38px); }
  .stat--2 .stat-ring{ width:94px; height:94px; transform:rotate(3deg); }
  .stat--2 .stat-num{ font-size:13.5px; }

  .stat--3{ transform:translateY(22px); }
  .stat--3 .stat-ring{ width:110px; height:110px; transform:rotate(-2deg); }
  .stat--3 .stat-num{ font-size:17px; }

  .stat--4{ transform:translateY(-30px); }
  .stat--4 .stat-ring{ width:120px; height:120px; transform:rotate(4deg); }
  .stat--4 .stat-num{ font-size:16px; }

  @media (prefers-reduced-motion: reduce){
    .stat-ring{ transition:none; }
  }
  @media (max-width:640px){
    .stat-rail{ justify-content:center; gap:24px 34px; padding:20px 10px 4px; }
    .stat-rail-line, .stat-pulse{ display:none; }
    .stat--1{ margin-top:10px; }
    .stat--1 .stat-ring{ width:100px; height:100px; }
    .stat--1 .stat-num{ font-size:17px; }
    .stat--2{ margin-top:-16px; }
    .stat--2 .stat-ring{ width:78px; height:78px; }
    .stat--2 .stat-num{ font-size:12px; }
    .stat--3{ margin-top:6px; }
    .stat--3 .stat-ring{ width:88px; height:88px; }
    .stat--3 .stat-num{ font-size:14px; }
    .stat--4{ margin-top:-8px; }
    .stat--4 .stat-ring{ width:96px; height:96px; }
    .stat--4 .stat-num{ font-size:13px; }
  }

  /* ---------- brief mockup ---------- */
  .browser-frame{
    border:1px solid var(--line-strong);
    background:var(--panel);
    overflow:hidden;
    box-shadow:0 30px 60px -30px rgba(0,0,0,0.6);
  }
  .browser-chrome{
    display:flex;
    align-items:center;
    gap:7px;
    padding:12px 16px;
    background:var(--panel-raised);
    border-bottom:1px solid var(--line);
  }
  .browser-dot{
    width:9px; height:9px;
    border-radius:50%;
    background:var(--line-strong);
  }
  .browser-url{
    margin-left:12px;
    font-family:var(--mono);
    font-size:11.5px;
    color:var(--muted);
  }
  .dash-shell{ position:relative; display:flex; align-items:stretch; }
  .dash-sidebar{
    position:relative;
    width:220px;
    flex-shrink:0;
    background:var(--panel-raised);
    border-right:1px solid var(--line);
    padding:20px 16px;
    display:flex;
    flex-direction:column;
  }
  .dash-sidebar-brand{
    display:flex;
    align-items:center;
    gap:10px;
    padding-bottom:16px;
    margin-bottom:16px;
    border-bottom:1px solid var(--line);
  }
  .dash-sidebar-mark{
    width:28px; height:28px;
    border-radius:8px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .dash-sidebar-mark svg{ width:100%; height:100%; display:block; }
  .dash-sidebar-brand-name{
    font-family:var(--display);
    font-weight:600;
    font-size:13.5px;
    color:var(--paper);
    line-height:1.2;
    display:block;
  }
  .dash-sidebar-brand-sub{
    font-family:var(--mono);
    font-size:8.5px;
    letter-spacing:0.08em;
    color:var(--muted);
    text-transform:uppercase;
    margin-top:2px;
    display:block;
  }
  .dash-nav-group{ margin-bottom:14px; }
  .dash-nav-role{
    font-family:var(--mono);
    font-size:9px;
    letter-spacing:0.06em;
    color:var(--muted);
    padding:0 8px 6px;
    text-transform:uppercase;
  }
  .dash-nav-item{
    padding:9px 10px;
    font-size:12.5px;
    color:var(--paper-dim);
    border-radius:6px;
    border:1px solid transparent;
  }
  .dash-role-row{
    display:flex;
    align-items:center;
    gap:9px;
    padding:8px 10px;
    font-size:12px;
    color:var(--paper-dim);
    border-radius:6px;
    border:1px solid transparent;
    transition:background .3s ease, border-color .3s ease;
  }
  .dash-role-row.active, .dash-nav-item.active{
    background:rgba(211,165,60,0.12);
    color:var(--gold-bright);
    border:1px solid rgba(211,165,60,0.35);
  }
  .dash-role-badge{
    font-family:var(--mono);
    font-size:9px;
    font-weight:600;
    padding:2px 6px;
    border-radius:4px;
    letter-spacing:0.02em;
    flex-shrink:0;
  }
  .dash-role-badge.coo{ background:rgba(74,127,214,0.18); color:#8fb3ec; }
  .dash-role-badge.cro{ background:rgba(224,82,107,0.18); color:#ef9cab; }
  .dash-role-badge.cfo{ background:rgba(76,175,125,0.18); color:#8fdcb3; }
  .dash-role-badge.cmo{ background:rgba(155,111,214,0.18); color:#c6a6ec; }
  .dash-sidebar-footer{
    margin-top:auto;
    padding-top:14px;
    border-top:1px solid var(--line);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .dash-avatar{
    width:30px; height:30px;
    border-radius:50%;
    background:var(--panel);
    border:1px solid var(--line-strong);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:var(--mono);
    font-size:11px;
    color:var(--gold);
    flex-shrink:0;
  }
  .dash-avatar-name{ font-size:12px; color:var(--paper); font-weight:500; }
  .dash-avatar-biz{ font-size:10.5px; color:var(--muted); margin-top:1px; }

  .dash-main{ flex:1; padding:32px 36px; min-width:0; }
  .dash-topbar{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    gap:12px;
    margin-bottom:20px;
  }
  .dash-topbar h4{ font-family:var(--display); font-size:19px; font-weight:600; color:var(--paper); margin:0; }
  .dash-topbar-meta{ font-family:var(--mono); font-size:11px; color:var(--muted); }
  .ov-detail-back{
    font-family:var(--mono);
    font-size:10.5px;
    letter-spacing:0.04em;
    color:var(--muted);
    margin-bottom:18px;
  }
  .ov-panel-wrap{ display:grid; }
  .ov-panel-wrap > .ov-panel{ grid-area:1 / 1; min-width:0; }
  .ov-panel-hidden{ visibility:hidden; opacity:0; pointer-events:none; }

  .dash-hero{
    background:linear-gradient(135deg, rgba(211,165,60,0.08), transparent);
    border:1px solid var(--line-strong);
    padding:24px 26px;
    margin-bottom:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
  }
  .dash-badges{ display:flex; gap:8px; margin-bottom:14px; }
  .dash-badge{
    font-family:var(--mono);
    font-size:9.5px;
    letter-spacing:0.03em;
    padding:4px 10px;
    border-radius:999px;
    border:1px solid var(--gold);
    color:var(--gold-bright);
    text-transform:uppercase;
  }
  .dash-badge.warn{ border-color:var(--line-strong); color:var(--muted); }
  .dash-greeting{ font-family:var(--display); font-size:23px; font-weight:600; color:var(--paper); }
  .dash-greeting-sub{ color:var(--paper-dim); font-size:13.5px; margin-top:4px; }

  @property --pct{
    syntax: '<number>';
    inherits: false;
    initial-value: 0;
  }
  .dash-health{ display:flex; flex-direction:column; align-items:center; gap:7px; flex-shrink:0; }
  .dash-health-ring{
    --pct: 0;
    width:76px; height:76px;
    border-radius:50%;
    background:conic-gradient(var(--gold-bright) calc(var(--pct) * 3.6deg), var(--line-strong) 0);
    transition:--pct 1.3s cubic-bezier(.4,0,.2,1);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
  }
  @media (prefers-reduced-motion: reduce){
    .dash-health-ring{ transition:none; }
  }
  .dash-health-ring::before{
    content:"";
    position:absolute;
    inset:7px;
    border-radius:50%;
    background:var(--panel);
  }
  .dash-health-num{ position:relative; font-family:var(--display); font-weight:700; font-size:18px; color:var(--paper); }
  .dash-health-label{
    font-family:var(--mono);
    font-size:8px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--muted);
  }

  .dash-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    border:1px solid var(--gold);
    background:rgba(211,165,60,0.06);
    padding:16px 20px;
    margin-bottom:16px;
    flex-wrap:wrap;
  }
  .dash-submit-text h5{ font-family:var(--body); font-size:14px; font-weight:600; color:var(--paper); margin:0 0 3px; }
  .dash-submit-text p{ font-size:12.5px; color:var(--paper-dim); }

  .dash-stats{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .dash-stat{ background:var(--panel); padding:18px 22px; }
  .dash-stat-num{ font-family:var(--display); font-size:22px; font-weight:700; color:var(--paper); font-variant-numeric:tabular-nums; }
  .dash-stat-label{ font-size:12px; color:var(--muted); margin-top:4px; }

  @media (max-width:760px){
    .dash-sidebar{ display:none; }
    .dash-main{ padding:24px 20px; }
    .dash-hero{ padding:20px; }
  }

  /* ---------- moment sequence ---------- */
  .moment-sequence{ position:relative; }
  .moment-sequence::before{
    content:"";
    position:absolute;
    top:10px; bottom:10px; left:50%;
    width:1px;
    background:var(--line);
    transform:translateX(-50%);
    z-index:0;
  }
  .moment{ position:relative; z-index:1; margin-bottom:80px; }
  .moment:last-child{ margin-bottom:0; }
  .moment-dot{
    width:9px; height:9px;
    border-radius:50%;
    background:var(--gold);
    box-shadow:0 0 0 6px var(--ink);
    margin:0 auto 22px;
  }
  .moment-label{ max-width:600px; margin:0 auto 32px; text-align:center; }
  .moment-label .eyebrow{ justify-content:center; }
  .moment-label h3{
    font-family:var(--display);
    font-size:clamp(24px,3.4vw,34px);
    font-weight:600;
    margin-top:14px;
    text-wrap:balance;
  }
  .moment-label p{
    color:var(--paper-dim);
    font-size:15px;
    line-height:1.7;
    margin-top:12px;
  }
  @media (min-width:901px){
    .moment{ display:flex; align-items:flex-start; gap:56px; }
    .moment-label{ max-width:none; flex:0 0 36%; margin:0; text-align:left; }
    .moment-label .eyebrow{ justify-content:flex-start; }
    .moment-dot{ margin:0 0 22px; }
    .moment-label + *{ flex:1; min-width:0; }
    .moment.reverse{ flex-direction:row-reverse; }

    .dash-compact .dash-sidebar{ width:170px; padding:16px 12px; }
    .dash-compact .dash-main{ padding:20px 22px; }
    .dash-compact .dash-topbar{ margin-bottom:12px; }
    .dash-compact .dash-topbar h4{ font-size:16px; }
    .dash-compact .dash-hero{ padding:16px 18px; margin-bottom:10px; gap:14px; }
    .dash-compact .dash-greeting{ font-size:18px; }
    .dash-compact .dash-greeting-sub{ font-size:12px; }
    .dash-compact .dash-health-ring{ width:56px; height:56px; }
    .dash-compact .dash-health-ring::before{ inset:5px; }
    .dash-compact .dash-health-num{ font-size:14px; }
    .dash-compact .dash-health-label{ font-size:7px; }
    .dash-compact .dash-submit{ padding:12px 14px; }
    .dash-compact .dash-stat{ padding:12px 14px; }
    .dash-compact .dash-stat-num{ font-size:17px; }
    .dash-compact #ovStats{ display:none; }
  }

  /* ask mockup */
  .chat-mock{ padding:40px 44px; display:flex; flex-direction:column; gap:16px; }
  .chat-bubble{ max-width:80%; padding:14px 18px; font-size:14.5px; line-height:1.6; }
  .chat-user{
    align-self:flex-end;
    background:var(--gold);
    color:var(--gold-ink);
    font-weight:500;
    border-radius:14px 14px 2px 14px;
  }
  .chat-bot{
    align-self:flex-start;
    background:var(--panel-raised);
    color:var(--paper-dim);
    border:1px solid var(--line-strong);
    border-radius:14px 14px 14px 2px;
    display:flex;
    gap:12px;
    align-items:flex-start;
  }
  .chat-bot-mark{
    width:26px; height:26px;
    border-radius:7px;
    overflow:hidden;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:1px;
  }
  .chat-bot-mark svg{ width:100%; height:100%; display:block; }
  .chat-input{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:auto;
    padding:14px 18px;
    border:1px solid var(--line-strong);
    background:var(--panel-raised);
    border-radius:10px;
  }
  .chat-input-text{
    flex:1;
    font-size:13.5px;
    color:var(--muted);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .chat-cursor{
    display:inline-block;
    width:2px; height:14px;
    background:var(--gold-bright);
    margin-left:2px;
    vertical-align:middle;
    animation:blink 1s step-end infinite;
  }
  @keyframes blink{ 0%, 100% { opacity:1; } 50% { opacity:0; } }
  .chat-kbd{
    font-family:var(--mono);
    font-size:10.5px;
    color:var(--muted);
    border:1px solid var(--line-strong);
    padding:4px 8px;
    border-radius:5px;
    letter-spacing:0.03em;
    flex-shrink:0;
  }
  .chat-input-text.is-live{ color:var(--paper); }
  .chat-mock.is-animated .chat-bubble{
    opacity:0;
    transform:translateY(6px);
    transition:opacity .4s ease, transform .4s ease;
  }
  .chat-mock.is-animated .chat-bubble.is-shown{ opacity:1; transform:translateY(0); }
  .chat-bot-content{ display:grid; }
  .chat-bot-content > *{ grid-area:1/1; align-self:start; }
  .chat-thinking{
    display:inline-flex;
    gap:4px;
    align-items:center;
    padding:3px 0;
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease;
  }
  .chat-bot.is-thinking .chat-thinking{ opacity:1; }
  .chat-bot-answer{ opacity:1; transition:opacity .2s ease; }
  .chat-bot.is-thinking .chat-bot-answer{ opacity:0; }
  .chat-thinking span{
    width:6px; height:6px;
    border-radius:50%;
    background:var(--muted);
    animation:askThink 1.2s ease-in-out infinite;
  }
  .chat-thinking span:nth-child(2){ animation-delay:.15s; }
  .chat-thinking span:nth-child(3){ animation-delay:.3s; }
  @keyframes askThink{ 0%, 80%, 100% { opacity:.25; transform:translateY(0); } 40% { opacity:1; transform:translateY(-3px); } }
  @media (prefers-reduced-motion: reduce){
    .chat-cursor{ animation:none; opacity:1; }
    .chat-thinking span{ animation:none; opacity:.6; }
  }
  @media (max-width:600px){
    .chat-mock{ padding:26px 22px; }
    .chat-bubble{ max-width:92%; }
    .chat-input-text{ overflow:visible; white-space:normal; }
  }

  /* plan mockup */
  .plan-mock{ padding:14px 36px; }
  .plan-week{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:18px 0;
    border-top:1px solid var(--line);
  }
  .plan-week:first-child{ border-top:none; }
  .plan-check{
    width:26px; height:26px;
    border-radius:50%;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-family:var(--mono);
    border:1px solid var(--line-strong);
    color:var(--muted);
    margin-top:1px;
  }
  .plan-week.done .plan-check{ background:var(--gold); border-color:var(--gold); color:var(--gold-ink); }
  .plan-week.active{ background:rgba(211,165,60,0.06); margin:0 -36px; padding-left:36px; padding-right:36px; }
  .plan-week.active .plan-check{ border-color:var(--gold); color:var(--gold-bright); }
  .plan-week-title{ font-size:14.5px; font-weight:600; color:var(--paper); }
  .plan-week-sub{ font-size:13px; color:var(--paper-dim); margin-top:4px; }
  .plan-week.upcoming .plan-week-title{ color:var(--muted); }
  .plan-week.upcoming .plan-week-sub{ color:var(--muted); }
  .plan-mock.is-animated .plan-week{
    opacity:0;
    transform:translateY(16px) scale(.98);
    transition:opacity .5s cubic-bezier(.34,1.56,.64,1), transform .5s cubic-bezier(.34,1.56,.64,1);
  }
  .plan-mock.is-animated .plan-week.is-shown{
    opacity:1;
    transform:translateY(0) scale(1);
  }
  @media (prefers-reduced-motion: reduce){
    .plan-mock.is-animated .plan-week{ transition:none; }
  }
  .plan-live-tag{
    display:inline-flex;
    align-items:center;
    font-family:var(--mono);
    font-size:9.5px;
    letter-spacing:0.05em;
    text-transform:uppercase;
    color:var(--gold-bright);
    margin-left:9px;
  }

  /* ---------- cost comparison ---------- */
  .cost-compare{ max-width:820px; margin:0 auto; text-align:center; }
  .cost-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;
  }
  .cost-block{ display:flex; flex-direction:column; align-items:center; gap:6px; }
  .cost-label{
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--muted);
  }
  .cost-num{
    font-family:var(--display);
    font-weight:700;
    font-size:clamp(24px,3.6vw,38px);
    color:var(--paper);
    font-variant-numeric:tabular-nums;
  }
  .cost-num.is-growthbot{ color:var(--gold-bright); }
  .cost-arrow{ color:var(--gold); flex-shrink:0; }
  .cost-arrow svg{ width:26px; height:26px; }
  .cost-compare.is-animated .cost-savings{
    opacity:0;
    transform:translateY(8px);
    transition:opacity .5s ease, transform .5s ease;
  }
  .cost-compare.is-animated .cost-savings.is-shown{ opacity:1; transform:translateY(0); }
  .cost-savings{
    margin-top:26px;
    font-family:var(--mono);
    font-size:13px;
    color:var(--gold-bright);
  }
  .cost-breakdown{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:16px;
    margin-top:36px;
  }
  .cost-breakdown .dash-stat{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:12px;
  }
  .cost-breakdown.is-animated .dash-stat{
    opacity:0;
    transform:translateY(10px);
    transition:opacity .4s ease, transform .4s ease, border-color .2s ease;
  }
  .cost-breakdown.is-animated .dash-stat.is-shown{ opacity:1; transform:translateY(0); }
  .cost-breakdown .dash-stat:hover{ border-color:var(--line-strong); }
  .cost-disclaimer{
    margin-top:20px;
    font-size:11.5px;
    color:var(--muted);
    font-style:italic;
  }
  @media (max-width:640px){
    .cost-row{ gap:16px; }
    .cost-breakdown{ grid-template-columns:repeat(2, 1fr); }
  }
  @media (prefers-reduced-motion: reduce){
    .cost-compare.is-animated .cost-savings{ transition:none; }
    .cost-breakdown.is-animated .dash-stat{ transition:none; }
  }

  /* ---------- forecast chart ---------- */
  .forecast-frame-wrap{ position:relative; }
  .forecast-frame-wrap .glow{ top:-100px; left:50%; transform:translateX(-50%); width:480px; height:480px; }
  .forecast-frame-wrap .browser-frame{ position:relative; z-index:1; }

  .ask-frame-wrap{ position:relative; }
  .ask-frame-wrap .glow{ top:-70px; right:-60px; width:360px; height:360px; }
  .ask-frame-wrap .browser-frame{ position:relative; z-index:1; }

  .brief-frame-wrap{ position:relative; }
  .brief-frame-wrap .glow{ bottom:-90px; left:-60px; width:360px; height:360px; }
  .brief-frame-wrap .browser-frame{ position:relative; z-index:1; }
  .forecast-mock{ padding:36px 40px 28px; }
  .forecast-svg{ width:100%; height:auto; display:block; overflow:visible; }
  .forecast-line-actual{
    fill:none;
    stroke:var(--gold-bright);
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .forecast-line-forecast{
    fill:none;
    stroke:var(--gold-deep);
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .forecast-line-alt{
    fill:none;
    stroke:var(--gold-deep);
    stroke-width:1.75;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:3 5;
    opacity:0.35;
    filter:blur(2.5px);
  }
  .forecast-alt-dot{ fill:var(--gold-deep); opacity:0.45; }
  .forecast-alt-label{
    font-family:var(--mono);
    font-size:8px;
    letter-spacing:0.04em;
    fill:var(--muted);
    opacity:0.7;
  }
  .forecast-mock.is-animated .forecast-line-alt,
  .forecast-mock.is-animated .forecast-alt-dot,
  .forecast-mock.is-animated .forecast-alt-label{
    opacity:0;
    transition:opacity 1s ease;
  }
  .forecast-mock.is-animated .forecast-line-alt.is-shown{ opacity:0.35; }
  .forecast-mock.is-animated .forecast-alt-dot.is-shown{ opacity:0.45; }
  .forecast-mock.is-animated .forecast-alt-label.is-shown{ opacity:0.7; }
  .forecast-mock.is-animated .forecast-area{
    opacity:0;
    transition:opacity 1s ease;
  }
  .forecast-mock.is-animated .forecast-area.is-shown{ opacity:1; }
  .forecast-dot{ filter:url(#forecastGlow); }
  .forecast-axis-label{
    font-family:var(--mono);
    font-size:9px;
    letter-spacing:0.04em;
    fill:var(--muted);
  }
  .forecast-value-label{
    font-family:var(--display);
    font-size:19px;
    font-weight:700;
    fill:var(--paper);
  }
  .forecast-value-gold{ fill:var(--gold-bright); }
  .forecast-value-sub{
    font-family:var(--mono);
    font-size:9.5px;
    letter-spacing:0.04em;
    fill:var(--muted);
  }
  .forecast-report{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-top:22px;
    padding:14px 18px;
    border:1px solid var(--gold);
    background:rgba(211,165,60,0.06);
    border-radius:8px;
  }
  .forecast-report p{
    font-size:13.5px;
    line-height:1.6;
    color:var(--paper-dim);
    margin:0;
  }
  .forecast-report strong{ color:var(--gold-bright); font-weight:700; }
  .forecast-mock.is-animated .forecast-fade{
    opacity:0;
    transition:opacity .4s ease;
  }
  .forecast-mock.is-animated .forecast-fade.is-shown{ opacity:1; }
  @media (prefers-reduced-motion: reduce){
    .forecast-line-actual, .forecast-line-forecast{ transition:none !important; }
    .forecast-mock.is-animated .forecast-fade{ transition:none; }
    .forecast-area{ transition:none; }
    .forecast-mock.is-animated .forecast-line-alt,
    .forecast-mock.is-animated .forecast-alt-dot,
    .forecast-mock.is-animated .forecast-alt-label{ transition:none; }
  }

  /* ---------- hires comparison table ---------- */
  .hires-table-scroll{ overflow-x:auto; }
  .hires-table{
    width:100%;
    border-collapse:collapse;
    min-width:640px;
  }
  .hires-table th, .hires-table td{
    padding:16px 18px;
    text-align:left;
    border-bottom:1px solid var(--line);
    font-size:13.5px;
    color:var(--paper-dim);
  }
  .hires-table thead th{
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--muted);
    border-bottom:1px solid var(--line-strong);
    padding-bottom:14px;
  }
  .hires-table td:first-child, .hires-table th:first-child{ color:var(--paper); font-weight:600; }
  .hires-table td.hires-highlight{
    background:rgba(211,165,60,0.07);
    color:var(--gold-bright);
    font-weight:600;
    box-shadow:inset 1px 0 0 var(--gold), inset -1px 0 0 var(--gold);
  }
  .hires-table th.hires-highlight{
    color:var(--gold);
    box-shadow:inset 1px 0 0 var(--gold), inset -1px 0 0 var(--gold);
  }
  .hires-table tbody tr:last-child td{ border-bottom:none; }
  .hires-table.is-animated tbody tr{
    opacity:0;
    transform:translateY(10px);
    transition:opacity .4s ease, transform .4s ease;
  }
  .hires-table.is-animated tbody tr.is-shown{ opacity:1; transform:translateY(0); }
  @media (prefers-reduced-motion: reduce){
    .hires-table.is-animated tbody tr{ transition:none; }
  }

  /* ---------- proof demo ---------- */
  .proof-demo{
    display:flex;
    align-items:stretch;
    gap:14px;
    max-width:1080px;
    margin:0 auto;
  }
  .proof-card{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
    background:var(--panel);
    border:1px solid var(--line-strong);
    padding:24px 18px;
    text-align:center;
  }
  .proof-card-label{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    font-size:12.5px;
    color:var(--paper-dim);
    margin-bottom:18px;
  }
  .proof-metric{
    font-family:var(--display);
    font-size:clamp(26px,3.4vw,38px);
    font-weight:700;
    color:var(--gold-bright);
    font-variant-numeric:tabular-nums;
    transition:text-shadow .4s ease;
  }
  .proof-metric.is-flash{ text-shadow:0 0 18px rgba(240,199,104,0.85); }
  .proof-metric-label{ font-size:13px; color:var(--paper-dim); margin-top:6px; }
  .proof-insight{
    font-size:12.5px;
    line-height:1.55;
    color:var(--paper-dim);
    margin-top:14px;
    text-align:left;
  }
  .proof-demo.is-animated .proof-card .proof-metric-label,
  .proof-demo.is-animated .proof-card .proof-insight{
    opacity:0;
    transform:translateY(6px);
    transition:opacity .4s ease, transform .4s ease;
  }
  .proof-demo.is-animated .proof-card.is-shown .proof-metric-label,
  .proof-demo.is-animated .proof-card.is-shown .proof-insight{
    opacity:1;
    transform:translateY(0);
  }
  .proof-synced{ color:var(--gold-bright); }
  .proof-demo.is-animated .proof-synced{ opacity:0; transition:opacity .3s ease; }
  .proof-demo.is-animated .proof-synced.is-shown{ opacity:1; }
  .proof-connector{
    position:relative;
    flex-shrink:0;
    align-self:center;
    width:44px; height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
  }
  .proof-connector svg{ width:24px; height:24px; }
  .proof-pulse{
    position:absolute;
    top:50%; left:2px;
    width:8px; height:8px;
    margin-top:-4px;
    border-radius:50%;
    background:var(--gold-bright);
    box-shadow:0 0 10px 2px rgba(240,199,104,0.7);
    opacity:0;
    transition:left .55s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  }
  .proof-pulse.is-active{ opacity:1; left:calc(100% - 10px); }
  .proof-pulse.is-active.is-fading{ opacity:0; }
  @media (prefers-reduced-motion: reduce){
    .proof-metric{ transition:none; }
    .proof-pulse{ transition:none; }
    .proof-demo.is-animated .proof-card .proof-metric-label,
    .proof-demo.is-animated .proof-card .proof-insight{ transition:none; }
  }
  @media (max-width:860px){
    .proof-demo{ flex-direction:column; }
    .proof-card{ width:100%; max-width:320px; }
    .proof-connector{ width:24px; height:32px; }
    .proof-connector svg{ transform:rotate(90deg); }
  }

  /* ---------- faq ---------- */
  .faq-list{ max-width:720px; margin:0 auto; }
  .faq-item{ border-top:1px solid var(--line); }
  .faq-item:last-child{ border-bottom:1px solid var(--line); }
  .faq-item summary{
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:22px 4px;
    cursor:pointer;
    font-size:15.5px;
    font-weight:500;
    color:var(--paper);
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::marker{ content:""; }
  .faq-chevron{
    flex-shrink:0;
    color:var(--muted);
    transition:transform .25s ease, color .25s ease;
  }
  .faq-item[open] .faq-chevron{ transform:rotate(180deg); color:var(--gold); }
  .faq-answer{
    padding:0 26px 24px 4px;
    color:var(--paper-dim);
    font-size:14.5px;
    line-height:1.7;
    max-width:620px;
  }
  @media (prefers-reduced-motion: reduce){
    .faq-chevron{ transition:none; }
  }
  @media (max-width:600px){
    .plan-mock{ padding:8px 22px; }
    .plan-week.active{ margin:0 -22px; padding-left:22px; padding-right:22px; }
  }


  /* ---------- hero hub diagram ---------- */
  .hero-visual{ display:flex; justify-content:center; }
  .hub{
    position:relative;
    width:100%;
    max-width:620px;
    aspect-ratio:1 / 1;
  }
  .hub-lines{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    overflow:visible;
  }
  .hub-lines polyline{
    fill:none;
    stroke-linejoin:round;
    vector-effect:non-scaling-stroke;
  }
  .hub-line{
    stroke:rgba(244,238,222,0.22);
    stroke-width:0.6;
  }
  .hub-line-pulse{
    stroke:var(--gold-bright);
    stroke-width:0.9;
    stroke-dasharray:5 500;
    opacity:0.85;
    animation:pulse-flow 2.2s linear infinite;
  }
  @keyframes pulse-flow{
    from{ stroke-dashoffset:0; }
    to{ stroke-dashoffset:-505; }
  }
  .hub-center{
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    width:124px; height:124px;
    border-radius:28px;
    background:#111111;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
      0 0 0 1px rgba(244,238,222,0.14),
      0 0 80px -10px rgba(211,165,60,0.6),
      0 24px 40px -18px rgba(0,0,0,0.65);
    z-index:2;
  }
  .hub-center::before{
    content:"";
    position:absolute;
    inset:-15px;
    border:1px solid var(--line-strong);
    border-radius:34px;
  }
  .hub-center-mark{ width:100%; height:100%; display:block; }
  .hub-node{
    position:absolute;
    transform:translate(-50%,-50%);
    width:88px; height:88px;
    border-radius:19px;
    background:var(--panel);
    border:1px solid var(--line-strong);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;
    z-index:2;
    box-shadow:0 14px 26px -16px rgba(0,0,0,0.65);
    cursor:default;
    transition:background .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .hub-node:hover, .hub-node.sim-active{
    background:var(--panel-raised);
    border-color:var(--gold);
    box-shadow:0 14px 26px -16px rgba(0,0,0,0.65), 0 0 0 1px var(--gold);
    z-index:4;
  }
  .hub-node svg{ width:25px; height:25px; color:var(--gold); }
  .hub-node span{
    font-family:var(--mono);
    font-size:9.5px;
    letter-spacing:0.06em;
    color:var(--muted);
  }
  .hub-tip{
    position:absolute;
    bottom:100%;
    left:50%;
    transform:translate(-50%, 6px);
    margin-bottom:12px;
    width:200px;
    background:var(--panel-raised);
    border:1px solid var(--gold);
    border-radius:10px;
    padding:12px 14px;
    text-align:left;
    font-size:12px;
    line-height:1.55;
    color:var(--paper-dim);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
    box-shadow:0 20px 40px -16px rgba(0,0,0,0.7);
    z-index:5;
  }
  .hub-tip strong{
    display:block;
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.04em;
    color:var(--gold-bright);
    margin-bottom:6px;
  }
  .hub-tip-below{
    bottom:auto;
    top:100%;
    transform:translate(-50%, -6px);
    margin-bottom:0;
    margin-top:12px;
  }
  .hub-node:hover .hub-tip, .hub-node.sim-active .hub-tip{
    opacity:1;
    transform:translate(-50%, 0);
    pointer-events:auto;
  }
  .hub-node.sim-active .hub-tip{
    box-shadow:0 20px 40px -16px rgba(0,0,0,0.7), 0 0 32px -4px rgba(211,165,60,0.6);
  }
  @media (max-width:900px){
    .hub{ max-width:380px; margin:8px auto 0; }
    .hub-center{ width:96px; height:96px; border-radius:22px; }
    .hub-center::before{ inset:-12px; border-radius:26px; }
    .hub-node{ width:68px; height:68px; border-radius:15px; gap:5px; }
    .hub-node svg{ width:20px; height:20px; }
    .hub-node span{ font-size:8px; }
    .hub-tip{ width:180px; font-size:11.5px; padding:11px 13px; }
  }

  @keyframes float-a{
    0%, 100% { transform:translate(-50%,-50%) translateY(0); }
    50%      { transform:translate(-50%,-50%) translateY(-8px); }
  }
  @keyframes float-b{
    0%, 100% { transform:translate(-50%,-50%) translateY(0); }
    50%      { transform:translate(-50%,-50%) translateY(7px); }
  }
  .float-1{ animation:float-a 5.5s ease-in-out infinite; }
  .float-2{ animation:float-b 6.5s ease-in-out infinite; animation-delay:-1.2s; }
  .float-3{ animation:float-a 6s ease-in-out infinite; animation-delay:-3s; }
  .float-4{ animation:float-b 5s ease-in-out infinite; animation-delay:-2s; }
  @media (prefers-reduced-motion: reduce){
    .float-1, .float-2, .float-3, .float-4, .hub-line-pulse{ animation:none; opacity:0; }
  }

  .hub-cursor{
    position:absolute;
    top:50%; left:50%;
    width:20px; height:20px;
    color:var(--paper);
    filter:drop-shadow(0 2px 5px rgba(0,0,0,0.55));
    z-index:6;
    transform:translate(-50%,-50%);
    transition:top .9s cubic-bezier(.65,0,.35,1), left .9s cubic-bezier(.65,0,.35,1), opacity .35s ease;
    pointer-events:none;
    opacity:0;
  }
  .hub-cursor.active{ opacity:1; }
  .hub-cursor svg{ width:100%; height:100%; }
  .hub-click-ring{
    position:absolute;
    top:0; left:0;
    width:20px; height:20px;
    border-radius:50%;
    border:2px solid var(--gold-bright);
    opacity:0;
    transform:scale(0.5);
  }
  .hub-cursor.clicking .hub-click-ring{ animation:click-pulse .55s ease-out; }
  @keyframes click-pulse{
    0%   { opacity:0.9; transform:scale(0.4); }
    100% { opacity:0; transform:scale(2.4); }
  }
  @media (prefers-reduced-motion: reduce){
    .hub-cursor{ display:none; }
  }

  /* ---------- generic section ---------- */
  section{ padding:132px 0; }
  .section-head{
    max-width:640px;
    margin-bottom:56px;
  }
  .section-head h2{
    font-size:clamp(32px,4.4vw,52px);
    margin-top:16px;
  }
  .section-head p{
    color:var(--paper-dim);
    margin-top:16px;
    font-size:15.5px;
    line-height:1.75;
  }

  .bookend{
    font-family:var(--display);
    font-weight:600;
    text-align:center;
    line-height:1.12;
    font-size:clamp(32px,5vw,58px);
    color:var(--paper);
    text-wrap:balance;
  }

  .manifesto{ background:linear-gradient(180deg, transparent, var(--panel) 18%, var(--panel) 82%, transparent); }
  .manifesto blockquote{
    margin:0;
    max-width:820px;
    font-family:var(--display);
    font-weight:500;
    font-size:clamp(24px,3.4vw,34px);
    line-height:1.4;
    color:var(--paper);
  }
  .manifesto cite{
    display:block;
    font-style:normal;
    font-family:var(--mono);
    font-size:12px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--muted);
    margin-top:28px;
  }

  /* ---------- compare (value of one system) ---------- */
  .value-section{ position:relative; overflow:hidden; }
  .value-section .glow{ top:-160px; left:-220px; }
  .compare{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    position:relative;
    z-index:1;
  }
  @media (max-width:760px){ .compare{ grid-template-columns:1fr; } }
  .compare-col{
    background:var(--panel);
    padding:36px 32px;
  }
  .compare-col-highlight{
    background:var(--panel-raised);
    box-shadow:inset 0 0 0 1px var(--gold);
  }
  .compare-label{
    font-family:var(--mono);
    font-size:11.5px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--muted);
    margin-bottom:22px;
  }
  .compare-col-highlight .compare-label{ color:var(--gold); }
  .compare-list{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:17px;
  }
  .compare-list li{
    font-size:14.5px;
    line-height:1.6;
    color:var(--paper-dim);
    display:flex;
    gap:11px;
    align-items:flex-start;
  }
  .compare-list li::before{
    content:"";
    width:6px; height:6px;
    margin-top:6px;
    background:var(--muted);
    flex-shrink:0;
  }
  .compare-col-highlight .compare-list li{ color:var(--paper); }
  .compare-col-highlight .compare-list li::before{
    content:"";
    width:6px; height:6px;
    margin-top:6px;
    background:var(--gold);
    flex-shrink:0;
  }

  /* ---------- cadence ---------- */
  .cadence-track{
    display:flex;
    align-items:stretch;
    gap:18px;
  }
  .cadence-item{
    flex:1;
    background:var(--panel);
    border:1px solid var(--line-strong);
    padding:36px 26px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    opacity:0;
    transform:translateY(14px);
    transition:opacity .6s ease, transform .6s ease, background .2s ease;
  }
  .cadence-item.in{ opacity:1; transform:none; }
  .cadence-item:hover{ background:var(--panel-raised); }
  .cadence-icon{
    width:52px; height:52px;
    border-radius:14px;
    background:var(--panel-raised);
    border:1px solid var(--line-strong);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    margin-bottom:2px;
  }
  .cadence-icon svg{ width:24px; height:24px; }
  .cadence-num{
    font-family:var(--mono);
    font-size:12px;
    letter-spacing:0.06em;
    color:var(--muted);
  }
  .cadence-item h3{
    font-size:19px;
  }
  .cadence-item p{
    color:var(--paper-dim);
    font-size:14px;
    line-height:1.65;
  }
  .cadence-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--line-strong);
    flex-shrink:0;
    width:22px;
  }
  .cadence-arrow svg{ width:20px; height:20px; }
  @media (max-width:820px){
    .cadence-track{ flex-direction:column; }
    .cadence-arrow{ width:auto; height:22px; transform:rotate(90deg); }
  }

  /* ---------- instruments ---------- */
  .card-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
  }
  @media (max-width:900px){ .card-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:600px){ .card-grid{ grid-template-columns:1fr; } }

  .role-grid{ grid-template-columns:repeat(4, 1fr); }
  @media (max-width:900px){ .role-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:520px){ .role-grid{ grid-template-columns:1fr; } }

  .card{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:14px;
    padding:32px 28px;
    display:flex;
    flex-direction:column;
    gap:16px;
    transition:background .2s ease, border-color .2s ease, transform .25s ease;
  }
  .card:hover{ background:var(--panel-raised); border-color:var(--line-strong); transform:translateY(-3px); }
  .card.is-lit{
    background:linear-gradient(135deg, rgba(122,92,30,0.24), rgba(122,92,30,0.02));
    border-color:var(--gold);
  }
  @media (prefers-reduced-motion: reduce){
    .card{ transition:none; }
  }
  .card-icon{
    width:34px; height:34px;
    color:var(--gold);
  }
  .card h3{
    font-size:17px;
    font-weight:600;
  }
  .card p{
    color:var(--paper-dim);
    font-size:14.5px;
    line-height:1.65;
  }

  /* ---------- pricing ---------- */
  .price-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
  }
  @media (max-width:960px){ .price-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:600px){ .price-grid{ grid-template-columns:1fr; } }

  .price-card{
    border:1px solid var(--line);
    padding:30px 24px;
    display:flex;
    flex-direction:column;
    position:relative;
    background:var(--panel);
  }
  .price-card.popular{
    border-color:var(--gold);
    background:var(--panel-raised);
    box-shadow:0 0 0 1px var(--gold), 0 20px 40px -20px rgba(211,165,60,0.35);
  }
  .price-name{
    font-family:var(--display);
    font-size:19px;
    margin-bottom:18px;
  }
  .price-amount{
    display:flex;
    align-items:baseline;
    gap:4px;
    font-family:var(--mono);
    margin-bottom:22px;
    font-variant-numeric:tabular-nums;
  }
  .price-amount .cur{ font-size:16px; color:var(--muted); }
  .price-amount .num{ font-size:36px; color:var(--paper); }
  .price-amount .per{ font-size:13px; color:var(--muted); }
  .price-feats{
    list-style:none;
    margin:0 0 28px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:11px;
    flex:1;
  }
  .price-feats li{
    font-size:13.5px;
    color:var(--paper-dim);
    display:flex;
    gap:9px;
    align-items:flex-start;
  }
  .price-feats li::before{
    content:"";
    width:6px; height:6px;
    margin-top:6px;
    background:var(--gold-deep);
    flex-shrink:0;
  }
  .price-card.popular .price-feats li::before{ background:var(--gold); }
  .price-card .btn{ justify-content:center; }

  /* ---------- cta band ---------- */
  .cta-band{
    background:var(--gold);
    color:var(--gold-ink);
    padding:88px 0;
  }
  .cta-band .eyebrow{ color:var(--gold-ink); }
  .cta-band .eyebrow::before{ background:rgba(26,19,6,0.4); }
  .cta-band h2{
    color:var(--gold-ink);
    font-size:clamp(28px,4vw,44px);
    margin:16px 0 18px;
  }
  .cta-band p{
    color:rgba(26,19,6,0.75);
    max-width:520px;
    font-size:15.5px;
    margin-bottom:32px;
  }

  /* ---------- footer ---------- */
  footer{ padding:64px 0 48px; }
  .footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:32px;
    padding-bottom:40px;
  }
  .footer-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:var(--mono);
    font-size:12px;
    color:var(--muted);
    border:1px solid var(--line-strong);
    padding:8px 14px;
    margin-top:14px;
  }
  .footer-badge strong{ color:var(--paper-dim); font-weight:500; }
  .footer-links{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
    list-style:none;
    margin:0; padding:0;
  }
  .footer-links a{
    font-family:var(--mono);
    font-size:12.5px;
    color:var(--paper-dim);
    text-decoration:none;
  }
  .footer-links a:hover{ color:var(--gold-bright); }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    padding-top:28px;
    border-top:1px solid var(--line);
    font-family:var(--mono);
    font-size:11.5px;
    color:var(--muted);
  }

  .reveal{
    opacity:0;
    transform:translateY(16px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .reveal.in{ opacity:1; transform:none; }

  @media (prefers-reduced-motion: reduce){
    .reveal, .cadence-item{ opacity:1 !important; transform:none !important; transition:none !important; }
    .btn, .card{ transition:none !important; }
  }

  @media (max-width:700px){
    section{ padding:72px 0; }
    .hero{ padding:64px 0 48px; }
  }
