  :root {
    /* Brand palette — flat, no gradients */
    --navy:        #0B0F1A;
    --surface:     #151B2E;
    --surface-2:   #1B2237;
    --border:      #232B42;
    --border-soft: #1D2437;
    --text:        #F5F7FA;
    --muted:       #94A3B8;
    --muted-2:     #64748B;
    --green:       #00E676;
    --green-dim:   #0E3D28;
    --amber:       #FFB300;

    /* 8px spacing grid */
    --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
    --s5: 40px; --s6: 48px; --s7: 64px; --s8: 80px;
    --s9: 96px; --s10: 120px;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-pill: 999px;

    --shadow: 0 4px 24px rgba(0,0,0,0.24);
    --shadow-lift: 0 8px 32px rgba(0,0,0,0.32);

    --max: 1160px;

    /* Type scale — six sizes only */
    --fs-eyebrow: 12px;
    --fs-small:   14px;
    --fs-body:    17px;
    --fs-h3:      20px;
    --fs-h2:      clamp(32px, 3.6vw, 44px);
    --fs-h1:      clamp(44px, 5.2vw, 66px);
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--navy);
    color: var(--text);
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: var(--fs-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  a { color: inherit; text-decoration: none; }
  h1, h2, h3, h4, p, ul, figure, dl, dd, dt { margin: 0; }
  ul { padding: 0; list-style: none; }

  :focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: var(--r-sm);
  }

  .wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--s3); padding-right: var(--s3); }
  .section { padding-top: var(--s10); padding-bottom: var(--s10); }

  /* ---------- Typography ---------- */
  .eyebrow {
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: var(--s2);
  }
  h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
  h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
  h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.35; letter-spacing: -0.01em; }
  .lead { color: var(--muted); font-size: var(--fs-body); line-height: 1.65; }
  .small { font-size: var(--fs-small); color: var(--muted); }

  /* ---------- Header ---------- */
  .site-header {
    position: sticky; top: 0; z-index: 20;
    background: var(--navy);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav {
    max-width: var(--max); margin: 0 auto;
    padding: var(--s2) var(--s3);
    display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  }
  .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: var(--fs-h3); letter-spacing: -0.02em; }
  .brand-mark { display: block; flex: 0 0 auto; }
  .wordmark { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
  .wordmark .st { color: var(--green); }
  .wordmark .ai { font-weight: 300; color: var(--muted); }
  .nav-links { display: flex; align-items: center; gap: var(--s4); font-size: var(--fs-small); color: var(--muted); }
  .nav-links a { transition: color .15s ease; }
  .nav-links a:hover { color: var(--text); }
  .nav-actions { display: flex; align-items: center; gap: var(--s2); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 20px;
    border-radius: var(--r-md);
    font-size: var(--fs-small); font-weight: 600;
    font-family: inherit;
    border: 1px solid transparent;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap; cursor: pointer;
  }
  .btn-primary { background: var(--green); color: var(--navy); }
  .btn-primary:hover { background: #00C866; }
  .btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
  .btn-secondary:hover { border-color: var(--muted-2); }
  .btn-ghost { background: transparent; color: var(--muted); padding: 12px 8px; }
  .btn-ghost:hover { color: var(--text); }
  .btn-lg { padding: 14px 28px; font-size: 15px; }

  /* ---------- Hero ---------- */
  .hero { padding-top: var(--s9); padding-bottom: var(--s10); }
  .hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: var(--s8); align-items: center; }
  .hero h1 { margin-bottom: var(--s3); max-width: 15ch; }
  .hero .lead { max-width: 46ch; margin-bottom: var(--s5); }
  .hero-actions { display: flex; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s5); }
  .trust { display: flex; gap: var(--s3); flex-wrap: wrap; font-size: var(--fs-small); color: var(--muted-2); }
  .trust li { list-style: none; }
  .trust ul { display: flex; gap: var(--s3); flex-wrap: wrap; margin: 0; padding: 0; }

  /* ---------- Product window (signature element) ---------- */
  .window {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lift);
    overflow: hidden;
  }
  .window-bar {
    display: flex; align-items: center; gap: var(--s1);
    padding: 14px var(--s2);
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
  }
  .dot { width: 10px; height: 10px; border-radius: 50%; background: #2E3852; }
  .window-title { margin-left: var(--s2); font-size: 12px; color: var(--muted-2); }

  .app { display: grid; grid-template-columns: 1fr 232px; }
  .editor { padding: var(--s3); border-right: 1px solid var(--border); }
  .panel-label {
    font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted-2); margin-bottom: var(--s3);
  }
  .post-line { height: 10px; border-radius: var(--r-pill); background: #232B42; margin-bottom: 12px; }
  .post-line.w95 { width: 95%; } .post-line.w80 { width: 80%; }
  .post-line.w60 { width: 60%; } .post-line.w40 { width: 40%; }
  .post-line.accent { background: #2A3552; }
  .post-gap { height: var(--s3); }

  .score-panel { padding: var(--s3); display: flex; flex-direction: column; }
  .ring { display: block; margin: var(--s2) auto var(--s3); }
  .ring-value { font-size: 30px; font-weight: 600; fill: var(--text); letter-spacing: -0.02em; }
  .stat { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 12px 0; border-top: 1px solid var(--border); }
  .stat:first-of-type { border-top: 0; }
  .stat span { color: var(--muted); }
  .stat strong { font-weight: 500; color: var(--text); }
  .stat .val { color: var(--green); font-weight: 600; }

  /* ---------- Section header ---------- */
  .section-head { max-width: 60ch; margin-bottom: var(--s7); }
  .section-head h2 { margin-bottom: var(--s2); }

  /* ---------- Cards ---------- */
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }

  .card {
    display: flex; flex-direction: column; align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--s4);
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  }
  .card:hover { border-color: #2E3852; transform: translateY(-2px); box-shadow: var(--shadow); }
  .card h3 { margin-bottom: var(--s1); }
  .card p { color: var(--muted); font-size: var(--fs-small); line-height: 1.65; margin-bottom: var(--s3); }
  .card .link { margin-top: auto; color: var(--green); font-size: var(--fs-small); font-weight: 600; }

  .badge {
    display: inline-block; margin-bottom: var(--s3);
    padding: 5px 10px; border-radius: var(--r-sm);
    font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  }
  .badge-live { background: var(--green-dim); color: var(--green); }
  .badge-soon { background: var(--surface-2); color: var(--muted); border: 1px solid var(--border); }

  .benefit { padding: var(--s4) var(--s3); }
  .benefit h3 { font-size: 16px; margin-bottom: var(--s1); }
  .benefit p { margin-bottom: 0; }
  .benefit-num {
    font-size: var(--fs-small); font-weight: 600; color: var(--green);
    margin-bottom: var(--s3);
  }

  /* ---------- Split sections ---------- */
  .split { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--s8); align-items: center; }
  .split.reverse { grid-template-columns: 1.1fr 1fr; }
  .split h2 { margin-bottom: var(--s3); }
  .split .lead { margin-bottom: var(--s4); max-width: 48ch; }

  .features { list-style: none; padding: 0; margin: 0 0 var(--s5); display: grid; gap: 14px; }
  .features li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--text); }
  .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--green-dim); display: inline-grid; place-items: center; flex: 0 0 auto; }
  .tick svg { display: block; }

  /* Dashboard preview */
  .dash { padding: var(--s3); }
  .dash-row { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); margin-bottom: var(--s3); }
  .dash-title { font-size: 15px; font-weight: 600; }
  .pill { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-sm); background: var(--green-dim); color: var(--green); }
  .dash-score { font-size: 44px; font-weight: 600; letter-spacing: -0.03em; color: var(--green); line-height: 1; }
  .dash-note { font-size: 13px; color: var(--muted); margin-bottom: var(--s3); }
  .meter { height: 6px; border-radius: var(--r-pill); background: #232B42; overflow: hidden; }
  .meter i { display: block; width: 92%; height: 100%; background: var(--green); }
  .dash-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s3); }
  .dash-card + .dash-card { margin-top: var(--s2); }

  /* Workflow */
  .flow { display: grid; gap: 0; }
  .flow-step {
    display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--s3);
  }
  .flow-step strong { font-weight: 500; font-size: 15px; }
  .flow-step span { font-size: 13px; color: var(--muted-2); }
  .flow-arrow { display: grid; place-items: center; height: var(--s4); color: #2E3852; }

  /* ---------- Final CTA ---------- */
  .cta { text-align: center; padding-top: var(--s10); padding-bottom: var(--s10); border-top: 1px solid var(--border-soft); }
  .cta h2 { margin: 0 auto var(--s2); max-width: 18ch; }
  .cta .lead { margin: 0 auto var(--s5); max-width: 46ch; }

  /* ---------- Footer ---------- */
  .footer-brand .brand { margin-bottom: var(--s2); }
  .footer-social { display: flex; gap: var(--s2); margin-top: var(--s3); }
  .footer-social a { width: 32px; height: 32px; display: inline-grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--muted); transition: color .15s ease, border-color .15s ease; }
  .footer-social a:hover { color: var(--green); border-color: rgba(0,230,118,0.3); }
  .footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted-2); margin-bottom: var(--s2); }
  .footer-col ul { display: grid; gap: 10px; }
  .footer-col a { font-size: 13px; color: var(--muted); transition: color .15s ease; }
  .footer-col a:hover { color: var(--green); }
  .footer-bottom { max-width: var(--max); margin: 0 auto; padding: var(--s3) var(--s3) var(--s5); border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: var(--s2); flex-wrap: wrap; }
  .footer-copy { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted-2); }
  .footer-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }
  .footer-cookie { font-size: 12px; color: var(--muted-2); transition: color .15s ease; }
  .footer-cookie:hover { color: var(--green); }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
  }

  @media (max-width: 960px) {
    .nav-links { display: none; }
    .hero-grid, .split, .split.reverse { grid-template-columns: 1fr; gap: var(--s6); }
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
    .section, .hero { padding-top: var(--s8); padding-bottom: var(--s8); }
  }
  @media (max-width: 640px) {
    .app { grid-template-columns: 1fr; }
    .editor { border-right: 0; border-bottom: 1px solid var(--border); }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-actions .btn-ghost { display: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  /* ============================================================
     LucentSignal page components — extracted from v2/lucentsignal.html
     ============================================================ */

  .stripe { background: var(--surface); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
  .green { color: var(--green); }
  .note { font-size: 13px; color: var(--muted-2); }
  .cta-block { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-block.centre { align-items: center; }
  .product-name { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--s3); }
  .badge-inline { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--r-sm); background: var(--green-dim); color: var(--green); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--s3); }
  .badge-inline::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
  .hero-bullets { display: grid; gap: 10px; margin-bottom: var(--s5); }
  .hero-bullets li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--muted); }
  .hero-bullets li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }
  .compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); margin-bottom: var(--s5); }
  .compare-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s4); }
  .compare-col.voice { border-color: rgba(0,230,118,0.28); }
  .compare-label { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: var(--s3); }
  .compare-col.voice .compare-label { color: var(--green); }
  .compare-post { font-size: 15px; line-height: 1.8; color: var(--muted); }
  .compare-col.voice .compare-post { color: var(--text); }
  .provenance { font-size: 13px; color: var(--muted-2); margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid var(--border); }
  .mechanism { font-size: var(--fs-h3); font-weight: 600; line-height: 1.5; color: var(--text); margin: var(--s3) 0 var(--s6); max-width: 40ch; }
  .problem-list { display: grid; gap: 12px; margin-top: var(--s4); }
  .problem-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--muted); line-height: 1.6; }
  .problem-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: 0 0 auto; margin-top: 9px; }
  .callout { background: var(--navy); border: 1px solid var(--border); border-left: 3px solid var(--green); border-radius: var(--r-md); padding: var(--s4); }
  .callout p { font-size: var(--fs-h3); font-weight: 600; line-height: 1.5; margin-bottom: var(--s2); }
  .callout span { font-size: var(--fs-small); color: var(--muted); line-height: 1.65; }
  .topic-row { display: flex; align-items: center; gap: var(--s2); padding-bottom: var(--s3); border-bottom: 1px solid var(--border); }
  .topic-label { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); flex: 0 0 auto; }
  .topic-text { font-size: 15px; color: var(--muted); }
  .style-row { display: grid; grid-template-columns: 200px 1fr; gap: var(--s6); padding: var(--s4) 0; border-bottom: 1px solid var(--border); align-items: start; }
  .style-name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
  .style-desc { font-size: 13px; color: var(--muted-2); line-height: 1.6; }
  .style-text { font-size: 16px; color: var(--muted); line-height: 1.85; }
  .closer { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.01em; margin: var(--s6) 0 var(--s3); }
  .score-overall { display: flex; align-items: center; justify-content: space-between; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s3); margin-bottom: var(--s2); }
  .score-overall-label { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
  .score-overall-value { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
  .score-overall-value span { font-size: 16px; font-weight: 400; color: var(--muted-2); }
  .score-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); margin-bottom: var(--s6); }
  .score-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s3); }
  .score-card.warn { border-color: rgba(255,179,0,0.24); }
  .score-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .score-name { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
  .score-card.warn .score-name { color: var(--amber); }
  .score-value { font-size: 22px; font-weight: 700; color: var(--green); letter-spacing: -0.02em; line-height: 1; }
  .score-value span { font-size: 13px; font-weight: 400; color: var(--muted-2); }
  .score-card.warn .score-value { color: var(--amber); }
  .track { height: 4px; border-radius: var(--r-pill); background: #232B42; overflow: hidden; margin-bottom: 14px; }
  .track i { display: block; height: 100%; background: var(--green); border-radius: inherit; }
  .score-card.warn .track i { background: var(--amber); }
  .score-text { font-size: var(--fs-small); color: var(--muted); line-height: 1.7; }
  .rail { display: flex; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s3); margin-bottom: var(--s6); overflow-x: auto; }
  .rail-node { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; min-width: 76px; }
  .rail-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
  .rail-label { font-size: 12px; font-weight: 500; color: var(--muted); white-space: nowrap; }
  .rail-arrow { color: #2E3852; flex: 0 0 auto; padding: 0 6px; align-self: center; }
  .steps { margin-bottom: var(--s6); }
  .step { display: grid; grid-template-columns: 48px 1fr; gap: var(--s3); padding: var(--s3) 0; border-bottom: 1px solid var(--border); align-items: start; }
  .step:first-child { border-top: 1px solid var(--border); }
  .step-num { font-size: var(--fs-eyebrow); font-weight: 600; color: var(--green); letter-spacing: 0.08em; padding-top: 4px; }
  .step-title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
  .step-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }
  .export { padding: var(--s3) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: var(--s6); }
  .export-label { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: var(--s2); }
  .pills { display: flex; flex-wrap: wrap; gap: var(--s1); }
  .chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--muted); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 8px 14px; }
  .chip svg { width: 16px; height: 16px; flex: 0 0 auto; }
  .card-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--green-dim); display: grid; place-items: center; margin-bottom: var(--s3); }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); align-items: stretch; }
  .plan { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s4); }
  .plan.featured { border-color: var(--green); }
  .plan-badge { position: absolute; top: -11px; left: var(--s4); background: var(--green); color: var(--navy); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px; border-radius: var(--r-sm); }
  .plan-name { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
  .plan.featured .plan-name { color: var(--green); }
  .plan-amount { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
  .plan-amount .cur { font-size: 22px; font-weight: 600; color: var(--muted); vertical-align: top; margin-top: 8px; display: inline-block; }
  .plan-period { font-size: 13px; color: var(--muted-2); margin-bottom: var(--s1); }
  .plan-tag { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: var(--s3); }
  .plan hr { border: 0; border-top: 1px solid var(--border); margin: 0 0 var(--s3); }
  .plan-features { display: grid; gap: 11px; flex: 1; margin-bottom: var(--s3); }
  .plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-small); color: var(--muted); line-height: 1.55; }
  .plan-features li::before { content: "✓"; color: var(--green); font-weight: 700; font-size: 13px; flex: 0 0 auto; }
  .plan-sub { font-size: 12px; color: var(--muted-2); line-height: 1.5; margin: -4px 0 var(--s3) 22px; }
  .plan .btn { width: 100%; }
  .plan-note { font-size: 12px; color: var(--muted-2); text-align: center; margin-top: 10px; }
  .faq { border-top: 1px solid var(--border); }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { display: flex; justify-content: space-between; align-items: center; gap: var(--s3); width: 100%; padding: var(--s3) 0; background: none; border: 0; cursor: pointer; text-align: left; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
  .faq-toggle { width: 26px; height: 26px; border-radius: 50%; background: var(--green-dim); color: var(--green); display: grid; place-items: center; font-size: 17px; font-weight: 400; line-height: 1; flex: 0 0 auto; transition: transform .2s ease; }
  .faq-item[data-open="true"] .faq-toggle { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
  .faq-a p { font-size: 15px; color: var(--muted); line-height: 1.75; padding-bottom: var(--s3); }
  .faq-a a { color: var(--green); }
  .final { text-align: center; padding-top: var(--s10); padding-bottom: var(--s10); }
  .final h2 { max-width: 20ch; margin: 0 auto var(--s2); }
  .final .lead { max-width: 44ch; margin: 0 auto var(--s5); }
  .site-footer { background: var(--surface); border-top: 1px solid var(--border-soft); padding-top: var(--s8); }
  .footer-main { max-width: var(--max); margin: 0 auto var(--s7); padding: 0 var(--s3); display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s6); }
  .footer-desc { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 30ch; margin-bottom: var(--s3); }

  @media (max-width: 960px) {
    .nav-links a:not(.btn) { display: none; }
    .hero-grid, .split, .split.reverse, .compare { grid-template-columns: 1fr; gap: var(--s6); }
    .grid-3, .pricing-grid, .score-grid { grid-template-columns: 1fr; }
    .style-row { grid-template-columns: 1fr; gap: var(--s2); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  }

  @media (max-width: 640px) {
    .footer-main { grid-template-columns: 1fr; }
  }

  /* ============================================================
     PROSE COMPONENT — shared by About, Help, and all legal pages
     ============================================================ */
  .prose-page { flex: 1; max-width: 760px; margin: 0 auto; padding: var(--s8) var(--s3) var(--s10); }
  .prose-back { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-small); color: var(--muted-2); margin-bottom: var(--s6); transition: color .15s ease; }
  .prose-back:hover { color: var(--green); }
  .prose-header { padding-bottom: var(--s5); margin-bottom: var(--s6); border-bottom: 1px solid var(--border); }
  .prose-header h1 { font-size: clamp(34px, 4vw, 44px); margin-bottom: var(--s2); }
  .prose-meta { font-size: var(--fs-small); color: var(--muted-2); }
  .prose-meta + .prose-meta { margin-top: 4px; }

  .prose { font-size: 16px; line-height: 1.8; color: var(--muted); }
  .prose > * + * { margin-top: var(--s3); }
  .prose h2 { font-size: var(--fs-h3); color: var(--text); margin-top: var(--s7); }
  .prose h2 + p, .prose h2 + ul, .prose h2 + dl, .prose h2 + h3 { margin-top: var(--s2); }
  .prose h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-top: var(--s5); }
  .prose h3 + p, .prose h3 + ul, .prose h3 + dl { margin-top: var(--s2); }
  .prose strong { color: var(--text); font-weight: 600; }
  .prose a { color: var(--green); }
  .prose a:hover { text-decoration: underline; }
  .prose ul { list-style: none; display: grid; gap: 10px; }
  .prose ul li { display: flex; gap: 12px; align-items: flex-start; }
  .prose ul li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: 0 0 auto; margin-top: 11px; }
  .prose hr { border: 0; border-top: 1px solid var(--border); margin: var(--s7) 0; }
  .prose .sep { color: var(--muted-2); padding: 0 6px; }

  .prose dl { display: grid; gap: var(--s3); }
  .prose dl.rows { gap: var(--s2); }
  .prose dt { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--text); margin-bottom: 2px; }
  .prose dd { color: var(--muted); }

  .prose .table-wrap { overflow-x: auto; }
  .prose table { width: 100%; border-collapse: collapse; }
  .prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); white-space: nowrap; }
  .prose th { font-size: 13px; font-weight: 600; color: var(--text); }
  .prose td { color: var(--muted); }

  /* Comparison list (e.g. "Good examples" vs "Avoid") */
  .prose .compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); margin-top: var(--s3); }
  .prose .compare-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--s2); }
  .prose .compare-label.good { color: var(--green); }
  .prose .compare-label.avoid { color: var(--muted-2); }
  .prose .compare-list { display: flex; flex-direction: column; }
  .prose .compare-list div { font-size: 15px; color: var(--muted); line-height: 1.6; padding: 9px 0; border-bottom: 1px solid var(--border); }
  .prose .compare-list div:first-child { border-top: 1px solid var(--border); }

  /* Weak vs strong contrast pair */
  .prose .contrast-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); margin: var(--s3) 0; }
  .prose .contrast-card { padding: var(--s3); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); }
  .prose .contrast-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--s2); }
  .prose .contrast-card-label.weak { color: var(--muted-2); }
  .prose .contrast-card-label.strong { color: var(--green); }
  .prose .contrast-card-text { font-size: 14px; color: var(--muted); font-style: italic; line-height: 1.6; }

  /* Numbered step / reason list — consolidates the live page's two
     near-identical numbered-list variants into one pattern */
  .prose .steps-list { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s3); }
  .prose .step-item { display: flex; gap: var(--s3); align-items: flex-start; }
  .prose .step-num { font-size: 11px; font-weight: 700; color: var(--green); flex: 0 0 auto; width: 20px; padding-top: 4px; }
  .prose .step-body { font-size: 15px; color: var(--muted); line-height: 1.7; }
  .prose .step-body strong { color: var(--text); font-weight: 600; }

  /* Model / stat row (e.g. "Ghostwriter controls -> Your voice") */
  .prose .model-rows { margin: var(--s3) 0; }
  .prose .model-row { display: flex; align-items: baseline; gap: var(--s3); padding: var(--s3) 0; border-top: 1px solid var(--border); }
  .prose .model-label { font-size: 13px; color: var(--muted-2); width: 200px; flex: 0 0 auto; }
  .prose .model-value { font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }

  @media (max-width: 960px) {
    .prose-page { padding-top: var(--s7); padding-bottom: var(--s8); }
    .prose .compare-cols, .prose .contrast-pair { grid-template-columns: 1fr; gap: var(--s3); }
    .prose .model-label { width: 140px; }
  }
