/* Filing Clarity — shared marketing chrome + page styles (single source, T221).
   Generated origin: extracted verbatim from the pre-T221 index.html <style> blocks,
   plus the chooser/variant additions below. Linked by index/advisor/retail. */

    /* ── RESET ─────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ── HERO DOT GRID ─────────────────────────────────────── */
    .hero-bg {
      position: relative;
      background-image: radial-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    /* ── TOKENS ────────────────────────────────────────────── */
    :root {
      --bg:           #0a0f1e;
      --bg-alt:       #0d1428;
      --card:         #1a202c;
      --border:       #2d3748;
      --accent:       #00c9a7;
      --accent-dim:   rgba(0, 201, 167, 0.10);
      --accent-ring:  rgba(0, 201, 167, 0.28);
      --text:         #f7fafc;
      --muted:        #718096;
      --muted2:       #a0aec0;
      --positive:     #68d391;
      --negative:     #fc8181;
      --radius:       10px;
      --max-w:        1100px;
    }

    /* ── BASE ──────────────────────────────────────────────── */
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section { padding: 5rem 0; }

    h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.2; }
    h1 { font-size: clamp(2.5rem, 5.5vw, 3.75rem); font-weight: 800; }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; }
    h3 { font-size: 1.1rem; font-weight: 600; }
    p { color: var(--muted2); }
    a { color: var(--accent); text-decoration: none; transition: opacity .2s; }
    a:hover { opacity: .8; }

    /* ── BUTTONS ───────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .4rem;
      padding: .7rem 1.4rem;
      border-radius: var(--radius);
      font-family: inherit;
      font-weight: 600;
      font-size: .9rem;
      cursor: pointer;
      transition: all .2s;
      border: none;
      text-decoration: none;
    }
    .btn-primary { background: var(--accent); color: #0a0f1e; }
    .btn-primary:hover { background: #00b394; opacity: 1; }
    .btn-ghost {
      background: transparent;
      color: var(--muted2);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

    /* ── SECTION LABEL ─────────────────────────────────────── */
    .eyebrow {
      display: inline-block;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: .75rem;
    }
    .section-header { margin-bottom: 3rem; }
    .section-header p.sub {
      margin: .75rem auto 0;
      font-size: 1.05rem;
      max-width: 64ch;
      color: var(--muted2);
      text-align: center;
    }

    /* ──────────────────────────────────────────────────────── */
    /* NAV                                                      */
    /* ──────────────────────────────────────────────────────── */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 1.1rem 0;
      transition: background .3s, backdrop-filter .3s, border-color .3s;
      border-bottom: 1px solid transparent;
    }
    #nav.scrolled {
      background: rgba(10, 15, 30, .88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom-color: var(--border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .nav-logo {
      font-weight: 800;
      font-size: 1.05rem;
      color: var(--text) !important;
      display: flex;
      align-items: center;
      gap: .55rem;
      opacity: 1 !important;
    }
    .nav-logo:hover { opacity: .85 !important; }
    .accent-dot {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
      margin-left: auto;
    }
    .nav-links a {
      color: var(--muted2);
      font-size: .88rem;
      font-weight: 500;
    }
    .nav-links a:hover { color: var(--text); opacity: 1; }

    @media (max-width: 720px) {
      .nav-links { display: none; }
    }

    /* ── HAMBURGER + MOBILE NAV ─────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: .4rem;
      background: none;
      border: none;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--muted2);
      border-radius: 2px;
      transition: all .25s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav {
      display: none;
      background: rgba(10, 15, 30, .97);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      padding: .5rem 1.5rem 1rem;
    }
    .mobile-nav.open { display: block; }
    .mobile-nav a {
      display: block;
      padding: .8rem 0;
      color: var(--muted2);
      font-size: .95rem;
      font-weight: 500;
      border-bottom: 1px solid rgba(255,255,255,.06);
      text-decoration: none;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: var(--text); }
    .mobile-nav .btn {
      display: flex;
      width: 100%;
      margin-top: .75rem;
      justify-content: center;
    }
    .mobile-nav .btn-primary { color: #0a0f1e; }
    @media (max-width: 720px) {
      .hamburger { display: flex; }
      .nav-cta { display: none; }
    }

    /* ──────────────────────────────────────────────────────── */
    /* HERO                                                     */
    /* ──────────────────────────────────────────────────────── */
    #hero {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
      padding: 9rem 0 0.5rem;
      min-height: auto;
    }
    #how-it-works { padding-top: 1.25rem; padding-bottom: 2rem; background: var(--bg); border-top: 1px solid var(--border); }
    #intelligence-gap { padding-top: 1.25rem; padding-bottom: 2rem; background: var(--bg-alt); border-top: 1px solid var(--border); }
    #intelligence-gap .section-header { margin-bottom: 1.25rem; }
    .hero-text { max-width: 780px; margin: 0 auto; text-align: center; }
    .hero-text .hero-ctas { justify-content: center; }
    .hero-jumps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: .6rem;
      margin-top: 1.75rem;
    }
    .hero-jumps a {
      display: inline-block;
      padding: .5rem 1.1rem;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--muted2);
      font-size: .9rem;
      font-weight: 500;
      transition: color .15s ease, border-color .15s ease;
    }
    .hero-jumps a:hover { color: var(--text); border-color: var(--accent); }
    #signal-example .signal-example-wrap { display: flex; justify-content: center; margin-top: 2.5rem; }
    .hero-text h1 { margin-bottom: 1.25rem; }
    .hero-text h1 em { font-style: normal; color: var(--accent); }
    .hero-sub {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--muted2);
      margin-bottom: 2rem;
      max-width: 46ch;
    }
    .hero-ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
    .hero-link { color: var(--muted2); font-size: .9rem; font-weight: 500; }
    .hero-link:hover { color: var(--text); opacity: 1; }

    @media (max-width: 900px) {
      #hero {
        grid-template-columns: 1fr;
        padding: 7.5rem 0 1.5rem;
        min-height: auto;
        gap: 3rem;
      }
    }
    @media (max-width: 600px) {
      section { padding: 3rem 0; }
      #hero { padding: 5.5rem 0 0.75rem; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .btn { width: 100%; }
      .hero-ctas .hero-link { text-align: center; }
      .hero-email-wrap { display: none; }
    }

    /* ──────────────────────────────────────────────────────── */
    /* MOCK EMAIL CARD                                          */
    /* ──────────────────────────────────────────────────────── */
    .email-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      font-size: .8rem;
      box-shadow: 0 28px 64px rgba(0, 0, 0, .45);
    }
    .email-chrome {
      background: #111827;
      padding: .65rem 1rem;
      display: flex;
      align-items: center;
      gap: .5rem;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .chrome-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .chrome-dot-r { background: #fc5c57; }
    .chrome-dot-y { background: #febc2e; }
    .chrome-dot-g { background: #2ac940; }
    .chrome-url {
      flex: 1;
      margin-left: .5rem;
      font-size: .7rem;
      color: var(--muted);
      background: rgba(255,255,255,.05);
      border-radius: 4px;
      padding: .2rem .6rem;
      font-family: 'SF Mono', 'Fira Code', monospace;
    }
    .email-header {
      background: #0f1829;
      padding: .85rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
    }
    .email-sender { display: flex; align-items: center; gap: .65rem; }
    .sender-avatar {
      width: 32px; height: 32px;
      background: var(--accent);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: .68rem;
      color: #0a0f1e;
      flex-shrink: 0;
    }
    .sender-info { line-height: 1.3; }
    .sender-name { font-weight: 600; font-size: .8rem; color: var(--text); }
    .sender-addr { font-size: .7rem; color: var(--muted); }
    .email-time { font-size: .7rem; color: var(--muted); }
    .email-subject-row {
      padding: .65rem 1rem .6rem;
      border-bottom: 1px solid var(--border);
      background: #0d1525;
    }
    .email-subject-line { font-weight: 600; font-size: .82rem; color: var(--text); }
    .email-to-line { font-size: .7rem; color: var(--muted); margin-top: .2rem; }
    .email-body { padding: 1rem; }

    .filing-pill {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: var(--accent-dim);
      border: 1px solid var(--accent-ring);
      border-radius: 5px;
      padding: .22rem .6rem;
      font-size: .68rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: .04em;
      margin-bottom: .85rem;
    }
    .live-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: .35; }
    }

    .filing-title { font-weight: 700; font-size: .95rem; color: var(--text); }
    .filing-meta { font-size: .7rem; color: var(--muted); margin: .2rem 0 .9rem; }

    .data-group { margin-bottom: .85rem; }
    .data-group-head {
      font-size: .64rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      padding-bottom: .3rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: .45rem;
    }
    .data-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: .22rem 0;
    }
    .data-lbl { color: var(--muted2); font-size: .78rem; }
    .data-val { font-weight: 600; color: var(--text); font-size: .82rem; display: flex; align-items: center; gap: .45rem; }
    .badge-up {
      font-size: .66rem;
      font-weight: 600;
      padding: .1rem .32rem;
      border-radius: 4px;
      background: rgba(104, 211, 145, .12);
      color: var(--positive);
    }
    .flag-ok { color: var(--positive); font-weight: 600; }
    .flag-na { color: var(--muted); }
    .xbrl-note {
      font-size: .67rem;
      color: var(--muted);
      margin-top: .5rem;
      padding-top: .5rem;
      border-top: 1px solid var(--border);
      font-style: italic;
    }

    .email-footer-bar {
      padding: .65rem 1rem;
      border-top: 1px solid var(--border);
      background: #0f1829;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .edgar-link-small { font-size: .73rem; color: var(--accent); font-weight: 500; }
    .powered-by { font-size: .67rem; color: var(--muted); }

    /* ──────────────────────────────────────────────────────── */
    /* PROBLEM                                                  */
    /* ──────────────────────────────────────────────────────── */
    #problem { background: var(--bg-alt); }
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .problem-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
    }
    .problem-num {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--accent);
      margin-bottom: .9rem;
    }
    .problem-card h3 { color: var(--text); margin-bottom: .5rem; }
    .problem-card p { font-size: .9rem; line-height: 1.7; }

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

    /* ──────────────────────────────────────────────────────── */
    /* HOW IT WORKS                                            */
    /* ──────────────────────────────────────────────────────── */
    .steps-wrap { position: relative; }
    .steps-line {
      position: absolute;
      top: 2rem;
      left: calc(16.667% + 1.5rem);
      right: calc(16.667% + 1.5rem);
      height: 1px;
      background: var(--border);
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
    }
    .step { text-align: center; padding: 0 .75rem; }
    .step-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--accent-ring);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--accent);
      margin: 0 auto 1.25rem;
      position: relative;
      z-index: 1;
    }
    .step h3 { color: var(--text); margin-bottom: .5rem; white-space: nowrap; font-size: 1rem; }
    .step p { font-size: .9rem; line-height: 1.7; }

    @media (max-width: 720px) {
      .steps-line { display: none; }
      .steps-grid { grid-template-columns: 1fr; }
    }

    /* ──────────────────────────────────────────────────────── */
    /* WHAT WE EXTRACT                                          */
    /* ──────────────────────────────────────────────────────── */
    #extract { background: var(--bg-alt); padding-top: 1.25rem; padding-bottom: 1rem; border-top: 1px solid var(--border); }
    #pricing {
      background:
        radial-gradient(120% 65% at 50% 0%, var(--accent-dim), transparent 62%),
        #131c30;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding-top: 1.5rem;
      padding-bottom: 2.5rem;
    }

    /* 5-card layout: 3 on row 1, 2 centered on row 2 */
    .extract-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1.25rem;
    }
    .extract-card:nth-child(1) { grid-column: 1 / 3; }
    .extract-card:nth-child(2) { grid-column: 3 / 5; }
    .extract-card:nth-child(3) { grid-column: 5 / 7; }
    .extract-card:nth-child(4) { grid-column: 2 / 4; }
    .extract-card:nth-child(5) { grid-column: 4 / 6; }

    @media (max-width: 900px) {
      .extract-grid {
        grid-template-columns: 1fr 1fr;
      }
      .extract-card:nth-child(n) { grid-column: auto; }
    }
    @media (max-width: 540px) {
      .extract-grid { grid-template-columns: 1fr; }
    }

    .extract-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      position: relative;
    }
    .filing-type-badge {
      display: inline-block;
      background: var(--accent-dim);
      border: 1px solid var(--accent-ring);
      color: var(--accent);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: .22rem .65rem;
      border-radius: 5px;
      margin-bottom: .9rem;
    }
    .extract-card h3 { color: var(--text); margin-bottom: 1rem; }
    .extract-list { list-style: none; }
    .extract-list li {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      padding: .42rem 0;
      font-size: .875rem;
      color: var(--muted2);
      border-bottom: 1px solid rgba(45, 55, 72, .55);
      line-height: 1.5;
    }
    .extract-list li:last-child { border-bottom: none; }
    .surfaces-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.25rem; }
    .signals-lead { margin-bottom: 1.5rem; }
    .signals-lead-shot .mock-card { width: 100%; }
    .mock-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 48px rgba(0,0,0,.4); }
    .mock-head { padding: .7rem .9rem; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.015); }
    .mock-subject { font-weight: 700; font-size: .82rem; color: var(--text); display: flex; align-items: center; gap: .4rem; line-height: 1.35; }
    .mock-sub { font-size: .7rem; color: var(--muted); margin-top: .25rem; }
    .mock-body { padding: .85rem .9rem; }
    .mock-section-label { font-size: .6rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin: .1rem 0 .35rem; }
    .mock-list { list-style: none; margin: 0 0 .7rem; }
    .mock-list:last-child { margin-bottom: 0; }
    .mock-list li { display: flex; gap: .5rem; padding: .3rem 0; font-size: .76rem; color: var(--muted2); line-height: 1.45; border-bottom: 1px solid rgba(45,55,72,.4); }
    .mock-list li:last-child { border-bottom: none; }
    .mock-arrow { color: var(--accent); flex-shrink: 0; font-weight: 700; }
    .mock-foot { margin-top: .55rem; padding-top: .5rem; border-top: 1px solid var(--border); }
    .mock-foot a { font-size: .72rem; color: var(--accent); font-weight: 600; }
    html { scroll-behavior: smooth; }
    #surface-signals, #surface-earnings { scroll-margin-top: 90px; }
    .surface-jump { display: flex; justify-content: center; flex-wrap: wrap; gap: .6rem; margin: 1rem 0 .25rem; }
    .surface-jump a { font-size: .82rem; font-weight: 600; color: var(--accent); background: var(--accent-dim); border: 1px solid var(--accent-ring); padding: .35rem .95rem; border-radius: 999px; transition: background .15s; }
    .surface-jump a:hover { background: rgba(0,201,167,.18); }
    .signals-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
    .signals-lead-shot { display: flex; align-items: flex-start; }
    .signals-lead-shot { cursor: zoom-in; position: relative; justify-content: center; align-items: flex-start; }
    .signals-lead-shot .email-card, .signals-lead-shot .mock-card { margin: 0; width: 100%; zoom: 0.5; }
    .signals-lead-shot::after { content: "Click to expand"; position: absolute; top: 8px; right: 8px; font-size: .68rem; font-weight: 600; color: var(--accent); background: var(--bg); border: 1px solid var(--accent-ring); border-radius: 6px; padding: 3px 9px; pointer-events: none; opacity: .92; z-index: 2; }
    #mockModal { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(2,6,20,.85); align-items: flex-start; justify-content: center; overflow: auto; padding: 6vh 1rem; cursor: zoom-out; }
    #mockModal.open { display: flex; }
    #mockModalInner { max-width: 460px; width: 100%; }
    #mockModalInner .email-card, #mockModalInner .mock-card { zoom: 1; width: 100%; margin: 0; }
    .signals-lead-text .filing-type-badge { margin-bottom: .5rem; }
    .signals-lead-text h3 { font-size: 1.05rem; margin-bottom: .5rem; }
    .signals-lead-text .extract-list li { font-size: .8rem; padding: .32rem 0; line-height: 1.45; }
    @media (max-width: 760px) { .signals-lead-grid { grid-template-columns: 1fr; } }
    .signals-detect-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; margin-top: 1rem; }
    .signals-detect-list li:nth-last-child(2) { border-bottom: none; }
    @media (max-width: 760px) { .surfaces-3 { grid-template-columns: 1fr; } .signals-detect-list { grid-template-columns: 1fr; } .signals-detect-list li:nth-last-child(2) { border-bottom: 1px solid rgba(45,55,72,.55); } }
    .extract-arrow {
      color: var(--accent);
      font-weight: 600;
      flex-shrink: 0;
      line-height: 1.5;
      font-size: .8rem;
    }
    .pro-corner-badge {
      position: absolute;
      top: .85rem;
      right: .85rem;
      background: var(--accent-dim);
      border: 1px solid var(--accent-ring);
      color: var(--accent);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .05em;
      padding: .18rem .5rem;
      border-radius: 4px;
      text-transform: uppercase;
    }

    /* ──────────────────────────────────────────────────────── */
    /* BILLING TOGGLE                                           */
    /* ──────────────────────────────────────────────────────── */
    .billing-toggle-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 2.5rem;
    }
    .billing-toggle {
      display: flex;
      align-items: center;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: .3rem;
      gap: .2rem;
    }
    .toggle-btn {
      display: flex;
      align-items: center;
      gap: .45rem;
      padding: .5rem 1.1rem;
      border-radius: 7px;
      border: none;
      background: transparent;
      color: var(--muted2);
      font-family: inherit;
      font-size: .88rem;
      font-weight: 500;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
    }
    .toggle-btn.active {
      background: var(--accent);
      color: #0a0f1e;
      font-weight: 600;
    }
    .toggle-save-chip {
      background: var(--accent-dim);
      color: var(--accent);
      border: 1px solid var(--accent-ring);
      padding: .1rem .4rem;
      border-radius: 4px;
      font-size: .7rem;
      font-weight: 700;
    }
    .toggle-btn.active .toggle-save-chip {
      background: rgba(10, 15, 30, .18);
      color: #0a0f1e;
      border-color: transparent;
    }

    /* ──────────────────────────────────────────────────────── */
    /* PRICING                                                  */
    /* ──────────────────────────────────────────────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      align-items: stretch;
      max-width: 760px;
      margin: 0 auto;
    }
    .pricing-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .pricing-card.popular {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(0, 201, 167, .18), 0 20px 48px rgba(0, 201, 167, .07);
    }
    .popular-corner-badge {
      position: absolute;
      top: 1.1rem;
      right: 1.1rem;
      background: var(--accent);
      color: #0a0f1e;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: .22rem .7rem;
      border-radius: 5px;
    }
    .plan-tier {
      font-size: .73rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .5rem;
    }
    .plan-price {
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -.04em;
      line-height: 1;
      margin-bottom: .3rem;
    }
    .plan-price sup { font-size: 1.2rem; font-weight: 600; vertical-align: super; margin-right: .1rem; }
    .plan-price span { font-size: .95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
    .plan-annual-note {
      font-size: .78rem;
      color: var(--muted);
      margin-bottom: .5rem;
      min-height: 1.1rem;
    }
    .savings-badge {
      display: none;
      align-items: center;
      gap: .3rem;
      background: rgba(0, 201, 167, .10);
      border: 1px solid var(--accent-ring);
      color: var(--accent);
      font-size: .72rem;
      font-weight: 700;
      padding: .2rem .6rem;
      border-radius: 5px;
      margin-bottom: 1.1rem;
      width: fit-content;
    }
    .savings-badge.visible { display: inline-flex; }
    .plan-companies {
      font-size: .8rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: .65rem;
    }
    .plan-tagline {
      color: var(--muted2);
      font-size: .875rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .plan-features { list-style: none; margin-bottom: 1.75rem; flex: 1; }
    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: .65rem;
      padding: .5rem 0;
      font-size: .875rem;
      color: var(--muted2);
      border-bottom: 1px solid rgba(45, 55, 72, .5);
      line-height: 1.5;
    }
    .plan-features li:last-child { border-bottom: none; }
    .feat-check { color: var(--accent); font-weight: 700; flex-shrink: 0; line-height: 1.5; }
    .feat-dash  { color: var(--muted); flex-shrink: 0; line-height: 1.5; min-width: 14px; text-align: center; }
    .plan-cta {
      display: flex;
      width: 100%;
      padding: .78rem;
      justify-content: center;
      margin-top: auto;
    }
    .plan-cta-sub {
      text-align: center;
      font-size: .76rem;
      color: var(--muted);
      margin-top: .6rem;
    }

    @media (max-width: 560px) {
      .pricing-grid {
        display: flex;
        flex-direction: column;
      }
    }

    /* ──────────────────────────────────────────────────────── */
    /* FAQ                                                      */
    /* ──────────────────────────────────────────────────────── */
    #faq { background: var(--bg-alt); padding-top: 0.75rem; }
    #faq .section-header { margin-bottom: 1.25rem; }
    .faq-wrap { max-width: 700px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      font-family: inherit;
      font-size: .98rem;
      font-weight: 600;
      color: var(--text);
      text-align: left;
      padding: 1.2rem 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--accent); }
    .faq-chevron {
      color: var(--muted);
      font-size: .75rem;
      flex-shrink: 0;
      transition: transform .25s, color .25s;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }
    .faq-a-inner {
      padding-bottom: 1.2rem;
      font-size: .93rem;
      line-height: 1.75;
      color: var(--muted2);
    }


    /* ──────────────────────────────────────────────────────── */
    /* FOOTER                                                   */
    /* ──────────────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 0;
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }
    .footer-links {
      display: flex;
      gap: 1.75rem;
      list-style: none;
      flex-wrap: wrap;
      justify-content: center;
    }
    .footer-links a { color: var(--muted); font-size: .85rem; }
    .footer-links a:hover { color: var(--text); opacity: 1; }
    .footer-copy { font-size: .83rem; color: var(--muted); }
    .footer-tagline { font-size: .9rem; color: var(--text); font-weight: 600; max-width: 52ch; line-height: 1.55; }
    .footer-disclaimer {
      font-size: .73rem;
      color: var(--muted);
      max-width: 58ch;
      line-height: 1.65;
    }
    .hero-tagline {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 0.25rem;
      letter-spacing: -0.01em;
    }

    /* ──────────────────────────────────────────────────────── */
    /* ECOSYSTEM                                                */
    /* ──────────────────────────────────────────────────────── */
    #ecosystem { background: var(--bg-alt); }
    .eco-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 2.5rem 2rem;
      margin-bottom: 3rem;
    }
    .eco-col-labels {
      display: grid;
      grid-template-columns: 1fr 180px 1fr;
      gap: 2rem;
      margin-bottom: .6rem;
      text-align: center;
    }
    .eco-col-labels span {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .eco-diagram {
      display: grid;
      grid-template-columns: 1fr 180px 1fr;
      gap: 2rem;
      align-items: center;
    }
    .eco-side { display: flex; flex-direction: column; gap: .85rem; }
    .eco-node {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: .8rem 1rem;
      position: relative;
    }
    .eco-node-in  { padding-right: 2.2rem; }
    .eco-node-out { padding-left:  2.2rem; }
    .eco-node-in::after {
      content: '→';
      position: absolute; right: .7rem; top: 50%;
      transform: translateY(-50%);
      color: var(--accent); font-size: .95rem; opacity: .7;
    }
    .eco-node-out::before {
      content: '→';
      position: absolute; left: .7rem; top: 50%;
      transform: translateY(-50%);
      color: var(--accent); font-size: .95rem; opacity: .7;
    }
    .eco-node-label {
      font-size: .82rem; font-weight: 600; color: var(--text);
      margin-bottom: .2rem;
      display: flex; align-items: center; gap: .35rem;
    }
    .eco-icon { font-size: 1rem; }
    .eco-node-sub { font-size: .7rem; color: var(--muted); line-height: 1.45; }
    .eco-pro-tag {
      background: var(--accent-dim);
      border: 1px solid var(--accent-ring);
      color: var(--accent);
      font-size: .58rem; font-weight: 700;
      padding: .07rem .28rem; border-radius: 3px;
      text-transform: uppercase; letter-spacing: .04em;
    }
    .eco-hub {
      width: 162px; height: 162px;
      background: radial-gradient(circle, rgba(0,201,167,.13) 0%, rgba(0,201,167,.03) 100%);
      border: 2px solid var(--accent); border-radius: 50%;
      box-shadow: 0 0 0 8px rgba(0,201,167,.05), 0 0 48px rgba(0,201,167,.11);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 1.25rem; margin: 0 auto;
    }
    .eco-hub-mark {
      font-size: 1.25rem; font-weight: 800; color: var(--accent);
      letter-spacing: -.02em; line-height: 1; margin-bottom: .25rem;
    }
    .eco-hub-name {
      font-size: .66rem; font-weight: 700; color: var(--muted2);
      text-transform: uppercase; letter-spacing: .08em; line-height: 1.4;
    }
    .eco-props {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    }
    .eco-prop {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 1.5rem 1.25rem; text-align: center;
    }
    .eco-prop-icon { font-size: 1.6rem; display: block; margin-bottom: .6rem; }
    .eco-prop h3 { color: var(--text); font-size: .975rem; margin-bottom: .4rem; }
    .eco-prop p   { font-size: .875rem; line-height: 1.65; }
    .eco-closing  {
      text-align: center; margin-top: 1.75rem;
      font-size: .95rem; color: var(--muted); font-style: italic;
    }
    @media (max-width: 760px) {
      .eco-col-labels { grid-template-columns: 1fr; }
      .eco-col-labels span:nth-child(2) { display: none; }
      .eco-diagram { grid-template-columns: 1fr; gap: .65rem; justify-items: center; }
      .eco-side    { width: 100%; max-width: 400px; }
      .eco-node-in  { padding-right: 1rem; }
      .eco-node-out { padding-left:  1rem; }
      .eco-node-in::after  { display: none; }
      .eco-node-out::before { display: none; }
      .eco-hub  { width: 130px; height: 130px; margin: .25rem auto; }
      .eco-props { grid-template-columns: 1fr; }
    }

    /* ──────────────────────────────────────────────────────── */
    /* DASHBOARD PREVIEW                                        */
    /* ──────────────────────────────────────────────────────── */
    .dash-glow-wrap {
      position: relative;
      border-radius: 18px;
      margin-bottom: 2.5rem;
    }
    .dash-glow-wrap::before {
      content: '';
      position: absolute;
      inset: -32px;
      background: radial-gradient(ellipse at center, rgba(0,201,167,.13) 0%, transparent 70%);
      border-radius: 24px;
      pointer-events: none;
      z-index: 0;
    }
    /* Browser chrome frame */
    .browser-frame {
      position: relative;
      z-index: 1;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.06);
    }
    .browser-chrome {
      background: #1c2333;
      padding: .65rem 1rem;
      display: flex;
      align-items: center;
      gap: .75rem;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .b-dots { display: flex; gap: .4rem; flex-shrink: 0; }
    .b-dot  { width: 11px; height: 11px; border-radius: 50%; }
    .b-dot-r { background: #ff5f57; }
    .b-dot-y { background: #febc2e; }
    .b-dot-g { background: #27c840; }
    .b-url {
      flex: 1;
      background: rgba(255,255,255,.06);
      border-radius: 6px;
      padding: .25rem .8rem;
      font-size: .72rem;
      color: #718096;
      font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
      text-align: center;
    }
    .b-url-lock { color: #68d391; margin-right: .3rem; font-size: .68rem; }
    .b-spacer { width: 52px; flex-shrink: 0; }

    /* Dashboard interior */
    .dash-inner {
      background: #0a0f1e;
      padding: 0;
      font-size: .78rem;
    }

    /* Dashboard nav */
    .d-nav {
      background: #1a202c;
      border-bottom: 1px solid #2d3748;
      padding: .6rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .d-nav-logo {
      display: flex; align-items: center; gap: .4rem;
      font-weight: 800; font-size: .82rem; color: #f7fafc;
    }
    .d-accent-dot {
      width: 6px; height: 6px; border-radius: 50%; background: #00c9a7;
    }
    .d-nav-links { display: flex; gap: 1.25rem; align-items: center; }
    .d-nav-link { color: #a0aec0; font-size: .72rem; }
    .d-nav-link.active { color: #f7fafc; font-weight: 600; }
    .d-nav-link.logout { color: #718096; }

    /* Dashboard body */
    .d-body { padding: 1.1rem 1.25rem; }
    .d-greeting {
      font-size: .95rem; font-weight: 700; color: #f7fafc;
      margin-bottom: 1rem;
    }

    /* Two-column layout inside dashboard */
    .d-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .85rem;
      margin-bottom: .85rem;
    }

    /* Dashboard cards */
    .d-card {
      background: #1a202c;
      border: 1px solid #2d3748;
      border-radius: 8px;
      overflow: hidden;
    }
    .d-card-head {
      background: #232b3b;
      border-bottom: 1px solid #2d3748;
      padding: .55rem .85rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .d-card-title { font-weight: 700; color: #f7fafc; font-size: .78rem; }
    .d-card-count { color: #718096; font-size: .68rem; }
    .d-card-btn {
      background: #00c9a7; color: #0a0f1e;
      font-weight: 700; font-size: .65rem;
      padding: .2rem .55rem; border-radius: 5px;
    }
    .d-card-body { padding: .65rem .85rem; }

    /* Watchlist table */
    .d-tbl { width: 100%; border-collapse: collapse; }
    .d-tbl th {
      font-size: .62rem; font-weight: 600; color: #718096;
      text-align: left; padding: .3rem .4rem;
      border-bottom: 1px solid #2d3748;
      letter-spacing: .05em; text-transform: uppercase;
    }
    .d-tbl td {
      padding: .4rem .4rem; font-size: .72rem; color: #a0aec0;
      border-bottom: 1px solid rgba(45,55,72,.5);
    }
    .d-tbl tr:last-child td { border-bottom: none; }
    .d-ticker { color: #00c9a7; font-weight: 700; font-family: monospace; font-size: .74rem; }
    .d-remove { color: #4a5568; font-size: .65rem; border: 1px solid #2d3748; padding: .12rem .4rem; border-radius: 4px; }

    /* Prefs list */
    .d-prefs-group { margin-bottom: .6rem; }
    .d-prefs-group-label {
      font-size: .62rem; font-weight: 700; letter-spacing: .07em;
      text-transform: uppercase; color: #718096;
      margin-bottom: .35rem; padding-bottom: .25rem;
      border-bottom: 1px solid #2d3748;
      display: flex; align-items: center; gap: .35rem;
    }
    .d-pref-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: .3rem 0;
      border-bottom: 1px solid rgba(45,55,72,.4);
    }
    .d-pref-row:last-child { border-bottom: none; }
    .d-pref-name { color: #a0aec0; font-size: .7rem; }
    /* Toggle pill */
    .d-tog {
      width: 28px; height: 15px; border-radius: 15px;
      position: relative; flex-shrink: 0;
    }
    .d-tog-on  { background: #00c9a7; }
    .d-tog-off { background: #2d3748; }
    .d-tog::after {
      content: '';
      position: absolute; top: 2px;
      width: 11px; height: 11px; border-radius: 50%;
      background: #fff;
    }
    .d-tog-on::after  { right: 2px; }
    .d-tog-off::after { left: 2px; }
    .d-pro-pip {
      font-size: .55rem; font-weight: 700; color: #00c9a7;
      background: rgba(0,201,167,.1); border: 1px solid rgba(0,201,167,.25);
      padding: .06rem .28rem; border-radius: 3px; letter-spacing: .04em;
      text-transform: uppercase; margin-left: .3rem;
    }

    /* Recent alerts table */
    .d-alerts-card { /* full-width below two-col */ }
    .d-alerts-footer {
      padding: .45rem .85rem;
      border-top: 1px solid #2d3748;
      text-align: right;
    }
    .d-view-all { color: #00c9a7; font-size: .68rem; font-weight: 600; }
    .d-type-pill {
      display: inline-block;
      padding: .1rem .35rem;
      border-radius: 4px;
      font-size: .65rem;
      font-family: monospace;
      background: #232b3b; color: #a0aec0;
    }
    .d-view-btn { color: #718096; font-size: .65rem; border: 1px solid #2d3748; padding: .1rem .4rem; border-radius: 4px; }

    /* Preview captions */
    .dash-captions {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .dash-caption {
      display: flex; align-items: center; gap: .5rem;
      font-size: .82rem; color: #718096;
    }
    .dash-caption::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: #00c9a7; flex-shrink: 0;
    }

    /* Mobile: allow horizontal scroll on the frame */
    @media (max-width: 900px) {
      .dash-glow-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .browser-frame  { min-width: 700px; }
      .d-cols { grid-template-columns: 1fr; }
      .dash-captions { gap: 1.5rem; }
    }
  .rotating-phrase { color: #00c9a7; display: inline; opacity: 1; }
  .rp-wrap { white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; height: 1.2em; overflow: hidden; vertical-align: bottom; }
  @media (max-width: 768px) { .rotating-phrase { min-width: 0; display: inline; } }
  

/* ── whats-included table (from the former inline pricing style) ── */
.whats-included{margin:32px 0;padding:24px;background:#161b22;border-radius:8px;border:1px solid #30363d;}.whats-included h3{font-size:18px;margin:0 0 4px 0;}.included-note{font-size:13px;color:#8b949e;margin:0 0 16px 0;}.included-table{width:100%;border-collapse:collapse;}.included-table tr{border-bottom:1px solid #21262d;}.included-table tr:last-child{border-bottom:none;}.included-table td{padding:10px 8px;font-size:14px;vertical-align:top;}.included-table .check{color:#3fb950;font-size:16px;width:24px;}.included-footer{font-size:12px;color:#8b949e;margin:16px 0 0 0;border-top:1px solid #21262d;padding-top:12px;}

    /* ══════════════════════════════════════════════════════════ */
    /* T221 — HOMEPAGE CHOOSER + VARIANT LANDING PAGES            */
    /* ══════════════════════════════════════════════════════════ */

    /* ── Chooser hero (/) ── */
    #chooser { padding: 9rem 0 3rem; }
    .chooser-inner { max-width: 820px; margin: 0 auto; text-align: center; }
    .chooser-inner h1 { margin-bottom: 1.1rem; }
    .chooser-inner h1 em { font-style: normal; color: var(--accent); }
    .chooser-sub { font-size: 1.06rem; line-height: 1.72; color: var(--muted2); max-width: 62ch; margin: 0 auto 2.5rem; }
    .chooser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 720px; margin: 0 auto; }
    .chooser-card {
      display: flex; flex-direction: column; align-items: flex-start; text-align: left;
      background: var(--card); border: 1px solid var(--border); border-radius: 14px;
      padding: 1.75rem 1.6rem; transition: border-color .18s, transform .18s, box-shadow .18s;
    }
    .chooser-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,201,167,.08); opacity: 1; }
    .chooser-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; }
    .chooser-card h2 { font-size: 1.32rem; color: var(--text); margin-bottom: .5rem; }
    .chooser-card p { font-size: .9rem; line-height: 1.6; color: var(--muted2); margin-bottom: 1.25rem; flex: 1; }
    .chooser-go { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .92rem; color: var(--accent); }
    .chooser-demo { margin-top: 2.25rem; font-size: .95rem; }
    .chooser-demo a { color: #3fb950; font-weight: 600; }
    .chooser-card .lbl-short { display: none; }  /* T228: full label by default */
    /* T228: the two pathway cards stay SIDE BY SIDE on one row at EVERY width.
       No breakpoint collapses .chooser-grid to a single column — stacking would
       make the top card read as the primary option, which it must not. */
    @media (max-width: 600px) {
      #chooser { padding: 6.5rem 0 2rem; }
      .chooser-grid { gap: .85rem; }
    }
    /* T228: below ~480px two full cards on one row are tight, so collapse to two
       compact, equal-weight buttons — short label + arrow, tighter padding — rather
       than stacking or shrinking body text below legibility. */
    @media (max-width: 480px) {
      .chooser-grid { gap: .6rem; }
      .chooser-card { align-items: center; text-align: center; padding: 1.05rem .6rem; min-height: 44px; }
      .chooser-card .chooser-eyebrow,
      .chooser-card p { display: none; }
      .chooser-card .lbl-full { display: none; }
      .chooser-card .lbl-short { display: inline; }
      .chooser-card h2 { font-size: 1.18rem; margin-bottom: .55rem; }
      .chooser-go { font-size: .86rem; }
    }

    /* ── Variant landing pages (/advisor, /retail) ── */
    .variant-hero { padding: 9rem 0 2rem; text-align: center; }
    .variant-hero .container { max-width: 820px; }
    .variant-hero h1 { margin-bottom: 1.1rem; }
    .variant-hero h1 em { font-style: normal; color: var(--accent); }
    .variant-lead { font-size: 1.06rem; line-height: 1.72; color: var(--muted2); max-width: 60ch; margin: 0 auto 2rem; }
    .variant-ctas { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }
    .variant-note { margin-top: 1rem; font-size: .82rem; color: var(--muted); }
    .variant-cross { text-align:center; padding: 0 0 3.5rem; }
    .variant-cross a { font-size: .9rem; font-weight: 600; }
    @media (max-width: 600px) {
      .variant-hero { padding: 6.5rem 0 1.5rem; }
      .variant-ctas { flex-direction: column; align-items: stretch; }
      .variant-ctas .btn { width: 100%; }
      .variant-ctas .hero-link { text-align: center; }
    }

    .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 900px; margin: 0 auto; }
    .feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; }
    .feature-card h3 { color: var(--text); margin-bottom: .5rem; font-size: 1.02rem; }
    .feature-card p { font-size: .9rem; line-height: 1.6; }
    @media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

    .variant-pricing {
      background:
        radial-gradient(120% 65% at 50% 0%, var(--accent-dim), transparent 62%),
        #131c30;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .price-block { max-width: 460px; margin: 0 auto; text-align: center; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 2.25rem 2rem; }
    .price-block .plan-tier { margin-bottom: .6rem; }
    .price-amt { font-size: 3rem; font-weight: 800; color: var(--text); letter-spacing: -.04em; line-height: 1; }
    .price-amt sup { font-size: 1.3rem; font-weight: 600; vertical-align: super; margin-right: .05rem; }
    .price-amt span { font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
    .price-note { font-size: .82rem; color: var(--muted); margin: .6rem auto 1.5rem; max-width: 40ch; line-height: 1.55; }
    .price-block .btn { width: 100%; padding: .8rem; }

    /* Retail pricing FLAG (undecided) */
    .price-flag { max-width: 500px; margin: 0 auto; text-align: center; background: rgba(254,188,46,.055); border: 1px dashed rgba(254,188,46,.5); border-radius: 14px; padding: 2rem; }
    .flag-tag { display:inline-block; font-size:.65rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#febc2e; background:rgba(254,188,46,.1); border:1px solid rgba(254,188,46,.35); padding:.2rem .6rem; border-radius:5px; margin-bottom:.9rem; }
    .price-flag h3 { color: var(--text); margin-bottom:.5rem; }
    .price-flag p { font-size:.9rem; line-height:1.6; }

    /* Retail waitlist form */
    .waitlist { max-width: 460px; margin: 1.5rem auto 0; }
    .waitlist-form { display:flex; gap:.6rem; }
    .waitlist-form input[type=email] { flex:1; background: var(--card); border:1px solid var(--border); border-radius: var(--radius); color: var(--text); padding: .75rem 1rem; font-size:.95rem; font-family:inherit; }
    .waitlist-form input[type=email]:focus { outline:none; border-color: var(--accent); }
    .waitlist-form .btn { white-space: nowrap; }
    .waitlist-msg { font-size:.85rem; margin-top:.75rem; min-height:1.2rem; text-align:center; color: var(--muted2); }
    .waitlist-msg.ok { color: var(--positive); }
    .waitlist-msg.err { color: var(--negative); }
    @media (max-width: 460px){ .waitlist-form{ flex-direction:column; } .waitlist-form .btn{ width:100%; } }
