*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg1:     #f4f4f2;
    --bg2:     #0d2040;
    --bg3:     #2a5a8c;
    --bg4:     #a8cce0;
    --accent1: #c49030;
    --accent2: #f0ede8;
    --accent4: #8a9e45;
    --accent5: #2d5c3a;
    --accent6: #d4d6d0;
    --link:    #6ec4a8;

    --navy:   var(--bg2);
    --blue:   var(--bg3);
    --sky:    var(--bg4);
    --gold:   var(--accent1);
    --forest: var(--accent5);
    --sage:   var(--accent4);
    --mint:   var(--link);
    --chalk:  var(--bg1);
    --warm:   var(--accent2);

    --serif: 'Playfair Display', Georgia, serif;
    --sans:  'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--chalk);
    color: var(--navy);
    overflow-x: hidden;
    font-size: 16px;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(13,32,64,0.97);
    backdrop-filter: blur(8px);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: white;
  }
  .nav-logo span { color: var(--bg4); }

  /* Hamburger */
  /* .nav-menu-btn {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; padding: 4px;
  }
  .nav-menu-btn span {
    display: block; width: 22px; height: 1.5px;
    background: rgba(255,255,255,0.7);
    transition: all 0.2s;
  } */

  /* Mobile drawer */
  /* .nav-drawer {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 75%; max-width: 280px;
    background: var(--navy);
    z-index: 200;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(168,204,224,0.1);
  }
  .nav-drawer.open { right: 0; }
  .nav-drawer a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.15s;
  }
  .nav-drawer a:hover { color: white; }
  .nav-drawer .drawer-cta {
    display: block;
    margin-top: 1.5rem;
    background: var(--forest);
    color: white !important;
    text-align: center;
    padding: 0.9rem;
    border-radius: 3px;
    border-bottom: none;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 150;
    background: rgba(0,0,0,0.4);
  }
  .nav-overlay.open { display: block; }
  .drawer-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.5); font-size: 1.4rem; line-height: 1;
  } */

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex; flex-direction: column; justify-content: center;
    padding: 7rem 1.5rem 5rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(42,90,140,0.15) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bg4);
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 20px; height: 1px; background: var(--bg4); flex-shrink: 0;
  }

  .hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 10vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: white;
    margin-bottom: 0.75rem;
  }
  .hero-headline em { font-style: italic; color: var(--bg4); }

  .hero-divider {
    width: 40px; height: 2px;
    background: var(--gold);
    margin: 2.2rem 0 1.5rem 0;
  }

  .hero-subhead {
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
  }
  .hero-subhead strong { color: rgba(255,255,255,0.9); font-weight: 500; }

  .hero-actions { display: flex; flex-direction: column; gap: 0.75rem; }
  .btn-primary {
    background: var(--forest); color: white;
    padding: 1rem; border-radius: 3px;
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.03em; text-decoration: none;
    text-align: center; display: block;
    transition: opacity 0.2s;
  }
  .btn-primary:hover { opacity: 0.88; }
  .btn-ghost {
    border: 1px solid rgba(168,204,224,0.3);
    color: rgba(255,255,255,0.7);
    padding: 1rem; border-radius: 3px;
    font-size: 0.9rem; font-weight: 400;
    letter-spacing: 0.03em; text-decoration: none;
    text-align: center; display: block;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--sky); color: white; }

  /* Stats strip (replaces desktop right panel) */
  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin-top: 3rem;
    border-top: 1px solid rgba(168,204,224,0.12);
    padding-top: 2rem;
  }
  .hero-stat { text-align: center; padding: 0 0.5rem; }
  .hero-stat + .hero-stat { border-left: 1px solid rgba(168,204,224,0.12); }
  .hero-stat-num {
    font-family: var(--serif);
    font-size: 1.8rem; font-weight: 700;
    color: white; line-height: 1;
    margin-bottom: 0.3rem;
  }
  .hero-stat-label {
    font-size: 0.7rem; font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
  }

  /* Wave */
  .hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px; overflow: hidden; pointer-events: none;
  }
  .hero-wave svg { width: 100%; height: 100%; }

  /* ── CONVICTION BAR ── */
  .conviction {
    background: var(--forest);
    padding: 1rem 1.5rem;
    overflow-x: auto;
  }
  .conviction-inner {
    display: flex; gap: 1.5rem; align-items: center;
    white-space: nowrap; width: max-content; margin: 0 auto;
  }
  .conviction-item {
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
  }
  .conviction-dot {
    font-size: 0.5rem; color: rgba(255,255,255,0.3); flex-shrink: 0;
  }

  /* ── SECTION COMMONS ── */
  .section-eyebrow {
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .section-eyebrow::before {
    content: ''; display: block;
    width: 20px; height: 1px; background: var(--blue);
  }

  /* ── TENSION ── */
  .tension-section { background: var(--chalk); padding: 4rem 1.5rem; }
  .tension-headline {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    font-weight: 700; line-height: 1.2;
    color: var(--navy); margin-bottom: 2.5rem;
  }
  .tension-headline em { font-style: italic; color: var(--blue); }

  .tension-col { border-radius: 4px; padding: 1.75rem; margin-bottom: 1rem; }
  .tension-col.bad { background: #f6f0eb; border: 1px solid #e0cfc4; }
  .tension-col.good { background: #eef3e8; border: 1px solid rgba(45,92,58,0.2); }

  .tension-col-label {
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 1.25rem;
  }
  .tension-col.bad .tension-col-label { color: var(--accent1); }
  .tension-col.good .tension-col-label { color: var(--forest); }

  .tension-item {
    display: flex; align-items: flex-start; gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.88rem; line-height: 1.55; color: #4a5568;
  }
  .tension-item .icon {
    width: 16px; height: 16px; border-radius: 50%;
    flex-shrink: 0; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700;
  }
  .tension-col.bad .icon { background: rgba(196,144,48,0.15); color: var(--accent1); }
  .tension-col.good .icon { background: rgba(45,92,58,0.15); color: var(--forest); }

  .vs-divider {
    text-align: center; padding: 0.5rem 0; margin: 0.5rem 0;
  }
  .vs-pill {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--navy); color: white;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  }

  /* ── PILLARS ── */
  .pillars-section { background: var(--navy); padding: 4rem 1.5rem; }
  .pillars-headline {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    font-weight: 700; color: white; line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  .pillars-headline em { font-style: italic; color: var(--bg4); }
  .pillars-intro {
    font-size: 0.9rem; font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,0.5); margin-bottom: 2.5rem;
  }

  .pillar {
    border-left: 2px solid rgba(196,144,48,0.3);
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    margin-bottom: 1px; background: rgba(255,255,255,0.03);
    transition: background 0.2s;
  }
  .pillar:first-of-type { border-radius: 4px 4px 0 0; }
  .pillar:last-of-type { border-radius: 0 0 4px 4px; }
  .pillar:hover { background: rgba(42,90,140,0.15); }
  .pillar-number {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
    color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 0.5rem;
  }
  .pillar-title {
    font-size: 0.95rem; font-weight: 500; color: white;
    margin-bottom: 0.5rem; line-height: 1.3;
  }
  .pillar-body {
    font-size: 0.82rem; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.45);
  }

  /* ── AUDIENCE ── */
  .audience-section { background: var(--warm); padding: 4rem 1.5rem; }
  .audience-headline {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    font-weight: 700; color: var(--navy);
    margin-bottom: 0.4rem;
  }
  .audience-sub {
    font-size: 0.9rem; font-weight: 300; color: #6a7a8a; margin-bottom: 2rem;
  }

  .audience-card {
    background: white; border-radius: 4px;
    border: 1px solid var(--accent6); margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .audience-card:active { box-shadow: 0 6px 20px rgba(13,32,64,0.1); }
  .card-header { padding: 1.5rem 1.5rem 1.25rem; border-bottom: 1px solid var(--accent6); }
  .audience-card:nth-child(1) .card-header { border-top: 3px solid var(--blue); }
  .audience-card:nth-child(2) .card-header { border-top: 3px solid var(--forest); }
  .audience-card:nth-child(3) .card-header { border-top: 3px solid var(--sage); }

  .card-type {
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.6rem;
  }
  .audience-card:nth-child(1) .card-type { color: var(--blue); }
  .audience-card:nth-child(2) .card-type { color: var(--forest); }
  .audience-card:nth-child(3) .card-type { color: var(--sage); }

  .card-headline {
    font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
    color: var(--navy); line-height: 1.3;
  }
  .card-body { padding: 1.25rem 1.5rem 1.5rem; }
  .card-copy {
    font-size: 0.86rem; font-weight: 300; line-height: 1.75;
    color: #5a6a7a; margin-bottom: 1.25rem;
  }
  .card-link {
    font-size: 0.8rem; font-weight: 500; color: var(--link);
    text-decoration: none; letter-spacing: 0.03em;
    display: flex; align-items: center; gap: 0.35rem;
  }

  /* ── PROOF ── */
  .proof-section { background: var(--chalk); padding: 4rem 1.5rem; }
  .proof-headline {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    font-weight: 700; color: var(--navy);
    line-height: 1.2; margin-bottom: 2.5rem;
  }

  .proof-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.25rem; margin-bottom: 2.5rem;
  }
  .proof-stat {
    border-top: 2px solid var(--gold); padding-top: 1rem;
  }
  .proof-stat-num {
    font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
    color: var(--navy); line-height: 1; margin-bottom: 0.3rem;
  }
  .proof-stat-label {
    font-size: 0.78rem; color: #6a7a8a; font-weight: 300; line-height: 1.4;
  }

  .quote-block {
    background: var(--navy); border-radius: 4px; padding: 2rem;
  }
  .quote-text {
    font-family: var(--serif); font-style: italic;
    font-size: 1.1rem; font-weight: 700;
    color: white; line-height: 1.55; margin-bottom: 1.5rem;
  }
  .quote-text::before {
    content: '\201C'; color: var(--gold); font-size: 3rem;
    line-height: 0; vertical-align: -0.8rem; margin-right: 0.05em;
  }
  .quote-divider { width: 32px; height: 2px; background: var(--gold); margin-bottom: 0.75rem; }
  .quote-name { font-size: 0.9rem; font-weight: 500; color: white; margin-bottom: 0.2rem; }
  .quote-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 300; }

  /* ── MANIFESTO ── */
  .manifesto-section { background: var(--blue); padding: 4rem 1.5rem; text-align: center; }
  .manifesto-eyebrow {
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 1.25rem;
  }
  .manifesto-headline {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    font-weight: 900; color: white; line-height: 1.15; margin-bottom: 1.5rem;
  }
  .manifesto-body {
    font-size: 0.95rem; font-weight: 300; line-height: 1.85;
    color: rgba(255,255,255,0.7); margin-bottom: 2.5rem;
  }
  .btn-white {
    display: block; background: white; color: var(--blue);
    padding: 1rem; border-radius: 3px; font-size: 0.9rem; font-weight: 500;
    text-decoration: none; margin-bottom: 0.75rem;
    transition: opacity 0.2s;
  }
  .btn-white:hover { opacity: 0.9; }
  .btn-outline-white {
    display: block; border: 1px solid rgba(255,255,255,0.35); color: white;
    padding: 1rem; border-radius: 3px; font-size: 0.9rem; font-weight: 400;
    text-decoration: none; transition: border-color 0.2s;
  }
  .btn-outline-white:hover { border-color: white; }

  /* ── FOOTER ── */
  footer { background: var(--navy); padding: 3rem 1.5rem 2rem; }
  .footer-brand {
    font-family: var(--serif); font-size: 1.05rem; color: white; margin-bottom: 0.6rem;
  }
  .footer-brand span { color: var(--bg4); }
  .footer-tagline {
    font-size: 0.8rem; color: rgba(255,255,255,0.3);
    line-height: 1.7; font-weight: 300; margin-bottom: 2rem;
  }

  .footer-links {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0;
  }
  .footer-col-title {
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 0.75rem;
  }
  .footer-col a {
    display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5);
    text-decoration: none; margin-bottom: 0.5rem; font-weight: 300;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: white; }
  .footer-bottom {
    border-top: 1px solid rgba(168,204,224,0.08);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
  .footer-note { font-size: 0.68rem; color: var(--bg4); font-weight: 500; letter-spacing: 0.08em; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow  { animation: fadeUp 0.5s ease 0.15s both; }
  .hero-headline { animation: fadeUp 0.6s ease 0.28s both; }
  .hero-divider  { animation: fadeUp 0.4s ease 0.42s both; }
  .hero-subhead  { animation: fadeUp 0.5s ease 0.52s both; }
  .hero-actions  { animation: fadeUp 0.5s ease 0.65s both; }
  .hero-stats    { animation: fadeUp 0.5s ease 0.75s both; }