  /* ── Reset & Base ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink:        #0d0d0d;
    --ink-60:     rgba(13,13,13,0.6);
    --ink-30:     rgba(13,13,13,0.3);
    --ink-12:     rgba(13,13,13,0.12);
    --paper:      #f5f2eb;
    --paper-80:   rgba(245,242,235,0.8);
    --white:      #ffffff;
    --gold:       #b8922a;
    --gold-light: #d4aa4a;
    --gold-dim:   rgba(184,146,42,0.15);
    --slate:      #8a8f99;
    --slate-light:#c4c8d0;

    --serif:  'Playfair Display', Georgia, serif;
    --sans:   'DM Sans', system-ui, sans-serif;
    --mono:   'DM Mono', 'Courier New', monospace;

    --max:    1200px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --section-gap: clamp(5rem, 10vw, 9rem);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── Layout Helpers ── */
  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  .section { padding: var(--section-gap) 0; }

  /* ── Scroll Reveal ── */
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ── Typography ── */
  h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; font-weight: 600; }

  .label {
    font-family: var(--sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* ── NAV (scope to #nav only — footer uses <nav> too) ── */
  #nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem var(--gutter);
    border-bottom: 1px solid transparent;
    transition: background 0.4s, border-color 0.4s;
  }
  #nav.scrolled {
    background: rgba(245,242,235,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: var(--ink-12);
  }

  .nav-logo {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink-60);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }

  .nav-end {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }

  .nav-signin {
    flex-shrink: 0;
  }

  .btn {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.625rem 1.5rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--paper);
  }
  .btn-primary:hover {
    background: #1f1f1f;
    box-shadow: 0 4px 18px rgba(13,13,13,0.18);
  }
  .btn-gold {
    background: var(--gold);
    color: var(--white);
  }
  .btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 18px rgba(184,146,42,0.28);
  }
  .btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink-30);
  }
  .btn-outline:hover {
    border-color: var(--ink);
  }
  .btn-lg {
    font-size: 0.875rem;
    padding: 0.875rem 2.25rem;
  }

  @media (max-width: 700px) {
    .nav-links { display: none; }
    .nav-end { gap: 0; }
  }

  /* ── HERO ── */
  #hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 7rem;
    padding-bottom: clamp(3rem, 8vw, 6rem);
    border-bottom: 1px solid var(--ink-12);
  }

  .hero-eyebrow {
    margin-bottom: 1.75rem;
  }

  .hero-hl {
    font-size: clamp(2.75rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    max-width: 14ch;
    margin-bottom: 1.75rem;
  }
  .hero-hl em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    color: var(--ink-60);
    max-width: 48ch;
    line-height: 1.65;
    margin-bottom: 2.75rem;
    font-weight: 400;
  }

  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-rule {
    width: 2.5rem;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
  }

  .hero-fineprint {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: var(--ink-60);
    letter-spacing: 0.005em;
  }
  .hero-fineprint strong {
    color: var(--ink);
    font-weight: 600;
  }
  .hero-fineprint a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(184,146,42,0.35);
    transition: border-color 0.2s;
  }
  .hero-fineprint a:hover { border-bottom-color: var(--gold); }

  /* ── PRICING ── */
  #pricing {
    background: var(--paper);
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    max-width: 880px;
    margin: 0 auto;
  }
  @media (max-width: 700px) {
    .pricing-grid { grid-template-columns: 1fr; }
  }
  .pricing-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--ink-12);
    border-radius: 14px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(13,13,13,0.06);
    border-color: var(--ink-30);
  }
  .pricing-card-featured {
    border-color: var(--gold);
    background:
      linear-gradient(180deg, rgba(184,146,42,0.04), rgba(255,255,255,0.0) 35%),
      var(--white);
  }
  .pricing-card-featured:hover { border-color: var(--gold); }
  .pricing-badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
  }
  .pricing-card-head {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--ink-12);
  }
  .pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
  }
  .pricing-price {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
  }
  .pricing-price span {
    font-family: var(--sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-60);
    letter-spacing: 0;
  }
  .pricing-credits {
    margin-top: 0.65rem;
    font-size: 0.875rem;
    color: var(--ink-60);
    font-family: var(--sans);
  }
  .pricing-credits strong {
    color: var(--gold);
    font-weight: 700;
  }
  .pricing-list {
    list-style: none;
    margin-bottom: 1.75rem;
    flex: 1;
  }
  .pricing-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--ink-60);
    margin-bottom: 0.65rem;
  }
  .pricing-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.85rem;
    height: 1.5px;
    background: var(--gold);
  }
  .pricing-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }
  .pricing-footnote {
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    max-width: 60ch;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--ink-60);
    line-height: 1.6;
  }

  /* ── DIVIDER ── */
  .hairline {
    width: 100%;
    height: 1px;
    background: var(--ink-12);
  }

  /* ── SECTION HEADER ── */
  .section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }
  .section-header .label { margin-bottom: 0.75rem; }
  .section-header h2 {
    font-size: clamp(1.875rem, 4vw, 3.25rem);
    letter-spacing: -0.02em;
    max-width: 20ch;
  }
  .section-header p {
    margin-top: 1rem;
    font-size: 1.0625rem;
    color: var(--ink-60);
    max-width: 52ch;
    line-height: 1.7;
  }

  /* ── PROBLEM SECTION ── */
  #problem { background: var(--ink); color: var(--paper); }
  #problem .label { color: var(--gold); }
  #problem h2 { color: var(--paper); }
  #problem p { color: rgba(245,242,235,0.65); }

  .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    border-top: 1px solid rgba(245,242,235,0.1);
  }
  .problem-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(245,242,235,0.1);
    border-bottom: 1px solid rgba(245,242,235,0.1);
  }
  .problem-item:last-child { border-right: none; }
  .problem-num {
    font-family: var(--mono);
    font-size: 0.6875rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    display: block;
  }
  .problem-item h3 {
    font-size: 1.25rem;
    color: var(--paper);
    margin-bottom: 0.625rem;
    font-weight: 600;
  }
  .problem-item p {
    font-size: 0.9375rem;
    color: rgba(245,242,235,0.55);
    line-height: 1.65;
  }

  /* ── HOW IT WORKS ── */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem 4rem;
    margin-top: 3rem;
    position: relative;
  }

  .step {
    position: relative;
  }

  .step-number {
    font-family: var(--mono);
    font-size: 0.6875rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }

  .step h3 {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
  }

  .step p {
    font-size: 0.9375rem;
    color: var(--ink-60);
    line-height: 1.7;
  }

  .step-time {
    display: inline-block;
    margin-top: 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate);
    letter-spacing: 0.04em;
    font-family: var(--mono);
  }

  .step-connector {
    display: none;
  }

  @media (min-width: 900px) {
    .steps { grid-template-columns: repeat(3, 1fr); }
  }

  /* ── FEATURES GRID ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: var(--ink-12);
    border: 1px solid var(--ink-12);
  }

  .feature-card {
    background: var(--paper);
    padding: 2.25rem 2rem;
    transition: background 0.2s;
  }
  .feature-card:hover { background: var(--white); }

  .feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.25rem;
    color: var(--gold);
  }

  .feature-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--sans);
  }

  .feature-card p {
    font-size: 0.875rem;
    color: var(--ink-60);
    line-height: 1.65;
  }

  /* ── REPORT TEASER ── */
  #report-teaser { background: var(--ink); }

  .report-frame {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    max-width: 820px;
    margin: 3rem auto 0;
  }

  .report-topbar {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .report-dots {
    display: flex;
    gap: 6px;
  }

  .report-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
  }

  .report-ticker-pill {
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: rgba(184,146,42,0.15);
    padding: 0.2rem 0.625rem;
    border-radius: 2px;
    margin-left: auto;
  }

  .report-body {
    padding: 2rem 2.5rem 2.5rem;
    position: relative;
    user-select: none;
  }

  .report-date {
    font-family: var(--mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: rgba(245,242,235,0.3);
    margin-bottom: 1.5rem;
  }

  .report-h1 {
    font-family: var(--serif);
    font-size: clamp(1.125rem, 2.5vw, 1.625rem);
    color: var(--paper);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .report-conviction {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    border: 1px solid rgba(184,146,42,0.4);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 1.75rem;
  }

  .report-conviction::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
  }

  .report-section-label {
    font-family: var(--sans);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,242,235,0.35);
    margin-bottom: 0.625rem;
    margin-top: 1.75rem;
  }

  .report-body-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(245,242,235,0.75);
    max-width: 58ch;
    filter: blur(3.5px);
    transition: filter 0.3s;
  }

  .report-body-text.first-para {
    filter: none;
    color: rgba(245,242,235,0.88);
  }

  .report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
    font-family: var(--mono);
    font-size: 0.75rem;
  }

  .report-table th {
    text-align: left;
    font-family: var(--sans);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,242,235,0.35);
    padding: 0 1rem 0.625rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .report-table td {
    padding: 0.625rem 1rem 0.625rem 0;
    color: rgba(245,242,235,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    filter: blur(3.5px);
  }

  .report-table td.visible {
    filter: none;
    color: rgba(245,242,235,0.9);
  }

  .report-table td.highlight {
    color: var(--gold);
    font-weight: 500;
  }

  .report-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #111);
    pointer-events: none;
  }

  .report-unlock {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.8125rem;
    color: rgba(245,242,235,0.4);
    font-family: var(--sans);
  }

  .report-unlock a {
    color: var(--gold-light);
    font-weight: 600;
    text-decoration: none;
  }

  .report-unlock a:hover {
    text-decoration: underline;
  }

  /* ── TRUST ── */
  #trust .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .trust-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    color: var(--gold);
    margin-top: 2px;
  }

  .trust-item h4 {
    font-size: 0.9375rem;
    font-family: var(--sans);
    font-weight: 600;
    margin-bottom: 0.375rem;
  }

  .trust-item p {
    font-size: 0.8125rem;
    color: var(--ink-60);
    line-height: 1.65;
  }

  /* ── FAQ ── */
  #faq { background: var(--white); }

  .faq-list {
    max-width: 680px;
  }

  .faq-item {
    border-bottom: 1px solid var(--ink-12);
  }

  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.375rem 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9375rem;
    gap: 1.5rem;
    user-select: none;
    list-style: none;
  }

  .faq-q::-webkit-details-marker { display: none; }

  .faq-toggle {
    flex-shrink: 0;
    width: 20px; height: 20px;
    position: relative;
  }

  .faq-toggle::before,
  .faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--ink-60);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }

  .faq-toggle::before { width: 12px; height: 1.5px; top: 9px; left: 4px; }
  .faq-toggle::after  { width: 1.5px; height: 12px; top: 4px; left: 9px; }

  details[open] .faq-toggle::after { transform: scaleY(0); opacity: 0; }

  .faq-a {
    padding: 0 0 1.375rem;
    font-size: 0.9rem;
    color: var(--ink-60);
    line-height: 1.75;
    max-width: 56ch;
  }

  /* ── FINAL CTA ── */
  #final-cta {
    background: var(--ink);
    text-align: center;
    padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  }

  #final-cta .label { color: var(--gold); margin-bottom: 1.25rem; }
  #final-cta h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--paper);
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }
  #final-cta p {
    font-size: 1rem;
    color: rgba(245,242,235,0.55);
    margin-bottom: 2.5rem;
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
  }
  #final-cta .cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    border-top: 1px solid rgba(245,242,235,0.07);
    padding: 2.5rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .footer-brand {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--paper);
    text-decoration: none;
  }
  .footer-brand span { color: var(--gold); }

  .footer-links {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 0.75rem;
    color: rgba(245,242,235,0.4);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(245,242,235,0.75); }

  .footer-disclaimer {
    width: 100%;
    font-size: 0.6875rem;
    color: rgba(245,242,235,0.25);
    line-height: 1.65;
    max-width: 72ch;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(245,242,235,0.07);
  }

  /* ── Utilities ── */
  .gold-line {
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--gold);
    margin-top: 1.5rem;
  }

  .mt-sm { margin-top: 0.75rem; }
  .mt-md { margin-top: 1.5rem; }
  .mt-lg { margin-top: 2.5rem; }

  @media (max-width: 640px) {
    .problem-item { border-right: none; }
    .report-body { padding: 1.5rem; }
    footer { flex-direction: column; align-items: flex-start; }
  }

  /* Legal pages: keep nav legible without relying on scroll reveal */
  body.legal-site #nav {
    background: rgba(245, 242, 235, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ink-12);
  }

  /* ── Legal / policy subpages (privacy, terms, contact) ── */
  .legal-subpage {
    padding: 7.5rem 0 4rem;
    min-height: 55vh;
  }
  .legal-subpage .container { max-width: 44rem; }
  .legal-subpage h1 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .legal-subpage .legal-updated {
    font-size: 0.8125rem;
    color: var(--ink-60);
    margin-bottom: 2.25rem;
  }
  .legal-subpage h2 {
    font-size: 1.0625rem;
    font-weight: 600;
    font-family: var(--sans);
    margin-top: 2rem;
    margin-bottom: 0.65rem;
    color: var(--ink);
  }
  .legal-subpage p,
  .legal-subpage li {
    font-size: 0.9375rem;
    color: var(--ink-60);
    line-height: 1.75;
    margin-bottom: 0.75rem;
  }
  .legal-subpage ul { margin: 0 0 1rem 1.15rem; }
  .legal-subpage li { margin-bottom: 0.35rem; }
  .legal-subpage a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
  }
  .legal-subpage a:hover { text-decoration: underline; }
  .legal-notice {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.15rem 1.05rem;
    background: var(--gold-dim);
    margin: 1.5rem 0 2rem;
    font-size: 0.875rem;
    color: var(--ink-60);
    line-height: 1.65;
  }
  .legal-notice strong { color: var(--ink); font-weight: 600; }
  .legal-subpage .label { display: block; margin-bottom: 0.5rem; }
