<style>
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: #111;
    background: #FAFAF8;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  :root {
    --teal:       #0D5B52;
    --teal-mid:   #0F6B60;
    --teal-light: #E6F2F0;
    --gold:       #C9922B;
    --gold-light: #FBF4E8;
    --ink:        #111111;
    --mid:        #444444;
    --muted:      #7A7A7A;
    --border:     #E2E2DC;
    --off-white:  #FAFAF8;
    --white:      #FFFFFF;
  }

  /* ANNOTATION */
  .annotation {
    background: #1A1A1A;
    color: #FFF;
    padding: 10px 48px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .annotation span { color: var(--gold); }

  /* NAV */
  .nav-sub { font-size: 11px; color: var(--muted); text-align: center; padding: 7px; background: var(--teal-light); letter-spacing: 0.5px; }
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,250,248,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }
  .nav-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--teal); text-decoration: none;}
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a { font-size: 13.5px; font-weight: 500; color: var(--mid); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--teal); }
  .nav-links a.active { font-weight: 600; }
  .nav-cta { background: var(--teal); color: white !important; padding: 9px 22px; border-radius: 4px; font-size: 13px !important; font-weight: 600 !important; letter-spacing: 0.5px; text-transform: uppercase; }

  /* ─── HERO ─── */
  .hero {
    background: var(--ink);
    padding: 80px 64px 0;
    overflow: hidden;
    position: relative;
  }
  .hero-decor {
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(13,91,82,0.12) 100%);
    pointer-events: none;
  }
  .hero-decor-line {
    position: absolute;
    top: 0; right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(201,146,43,0.3), transparent);
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: end;
    position: relative;
  }
  .hero-left { padding-bottom: 72px; }
  .hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .hero-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
  .hero-breadcrumb .sep { color: rgba(255,255,255,0.2); }
  .hero-breadcrumb .current { color: var(--gold); }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,146,43,0.15);
    border: 1px solid rgba(201,146,43,0.3);
    border-radius: 4px;
    padding: 6px 14px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 900;
    line-height: 1.06;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 28px;
  }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 44px;
    font-weight: 300;
  }
  .hero-sub strong { color: rgba(255,255,255,0.9); font-weight: 500; }
  .hero-ctas { display: flex; gap: 16px; align-items: center; }
  .btn-gold {
    background: var(--gold);
    color: white;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-gold:hover { background: #b8831f; }
  .btn-outline-white {
    border: 1.5px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.65);
    padding: 13px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: white; }

  /* HERO STAGE PREVIEW */
  .hero-right {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 32px 28px 0;
  }
  .hero-right-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 24px;
  }
  .stage-preview {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 28px;
  }
  .stage-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
  }
  .stage-num-col {
    background: rgba(255,255,255,0.06);
    padding: 14px 16px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    min-width: 70px;
    flex-shrink: 0;
  }
  .stage-content-col {
    background: rgba(255,255,255,0.03);
    border-left: 1px solid rgba(255,255,255,0.06);
    padding: 14px 16px;
    flex: 1;
  }
  .stage-row-title { font-size: 13px; font-weight: 600; color: white; line-height: 1.3; }
  .stage-row-sub { font-size: 11.5px; color: rgba(255,255,255,0.4); margin-top: 3px; }
  .stage-row.s2 .stage-num-col, .stage-row.s2 .stage-content-col { background: rgba(13,91,82,0.12); }
  .stage-row.s3 .stage-num-col, .stage-row.s3 .stage-content-col { background: rgba(201,146,43,0.08); }
  .hero-right-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    padding: 20px 0;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  /* ─── SHARED ─── */
  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); opacity: 0.6; }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.5px;
  }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-title.on-dark { color: white; }
  .section-title.on-dark em { color: var(--gold); }

  /* ─── AUDIENCE STRIP ─── */
  .audience-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }
  .audience-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }
  .aud-card {
    padding: 32px 40px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .aud-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(13,91,82,0.07); }
  .aud-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); border-radius: 10px 10px 0 0; }
  .aud-card.pg::before { background: var(--gold); }
  .aud-type {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
  }
  .aud-card.pg .aud-type { color: var(--gold); }
  .aud-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }
  .aud-card p { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 20px; }
  .aud-enter {
    font-size: 12px;
    font-family: 'DM Mono', monospace;
    color: var(--muted);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
  }
  .aud-enter strong { color: var(--teal); }
  .aud-card.pg .aud-enter strong { color: var(--gold); }
  .aud-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .aud-cta::after { content: '→'; }
  .aud-card.pg .aud-cta { color: var(--gold); }
  .aud-divider {
    width: 1px;
    background: var(--border);
    margin: 0 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .aud-divider-label {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
  }

  /* ─── SYSTEM OVERVIEW ─── */
  .system-overview { background: var(--teal); padding: 96px 64px; }
  .system-overview-inner { max-width: 1280px; margin: 0 auto; }
  .system-overview-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
    align-items: end;
  }
  .system-overview-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 300;
  }
  .system-overview-header p strong { color: rgba(255,255,255,0.9); font-weight: 500; }
  .flow-strip {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
  }
  .flow-node {
    flex: 1;
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }
  .flow-node:last-child { border-right: none; }
  .flow-node-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .flow-node-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
  }
  .flow-arrow {
    color: var(--gold);
    font-size: 18px;
    padding: 0 4px;
    opacity: 0.6;
    flex-shrink: 0;
  }

  /* THREE STAGE CARDS */
  .stage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .stage-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
  }
  .stage-card:hover { background: rgba(255,255,255,0.09); }
  .stage-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 8px; right: 16px;
    line-height: 1;
  }
  .stage-card-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .stage-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .stage-card-outcome {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stage-steps-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .stage-steps-list li {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .step-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); opacity: 0.5;
    flex-shrink: 0;
  }

  /* ─── STAGE DEEP DIVES ─── */
  .stage-detail { padding: 96px 64px; }
  .stage-detail.alt { background: var(--white); }
  .stage-detail.dark { background: var(--ink); }
  .stage-detail-inner { max-width: 1280px; margin: 0 auto; }
  .stage-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    margin-bottom: 56px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
  }
  .stage-header.dark-border { border-bottom-color: rgba(255,255,255,0.08); }
  .stage-big-num {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 900;
    color: var(--teal);
    opacity: 0.12;
    line-height: 0.85;
  }
  .stage-big-num.dark-num { color: white; opacity: 0.06; }
  .stage-header-right {}
  .stage-heading-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .stage-heading-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .stage-heading-title.on-dark { color: white; }
  .stage-heading-title em { font-style: italic; color: var(--teal); }
  .stage-heading-title.on-dark em { color: var(--gold); }
  .stage-heading-outcome {
    font-size: 15px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.65;
    max-width: 560px;
  }
  .stage-heading-outcome.on-dark { color: rgba(255,255,255,0.55); }

  /* STEP GRID */
  .step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .step-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    background: var(--off-white);
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .step-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(13,91,82,0.07); }
  .step-card.dark-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
  }
  .step-card.dark-card:hover { border-color: rgba(201,146,43,0.4); }
  .step-card-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .step-card.dark-card .step-card-num { color: var(--gold); }
  .step-icon { font-size: 26px; margin-bottom: 12px; display: block; }
  .step-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.25;
  }
  .step-card.dark-card h4 { color: white; }
  .step-card-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
  }
  .step-card p { font-size: 13.5px; color: var(--mid); line-height: 1.6; }
  .step-card.dark-card p { color: rgba(255,255,255,0.55); }
  .step-outcome {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--teal);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
  }
  .step-card.dark-card .step-outcome {
    border-top-color: rgba(255,255,255,0.08);
    color: rgba(201,146,43,0.8);
  }
  .step-outcome::before { content: '→'; flex-shrink: 0; }

  /* ─── KEY DECISIONS ─── */
  .decisions-section { background: var(--off-white); padding: 96px 64px; }
  .decisions-inner { max-width: 1280px; margin: 0 auto; }
  .decisions-header { margin-bottom: 52px; }
  .decisions-header p { font-size: 16px; color: var(--mid); line-height: 1.65; max-width: 560px; margin-top: 16px; }
  .decisions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .decision-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    transition: box-shadow 0.2s;
  }
  .decision-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.05); }
  .dc-left {}
  .dc-icon { font-size: 28px; margin-bottom: 12px; display: block; }
  .dc-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .decision-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .decision-card > .dc-left > p { font-size: 14px; color: var(--mid); line-height: 1.6; }
  .dc-right {}
  .dc-eval-label {
    font-size: 11px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .dc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .dc-list li {
    font-size: 13px;
    color: var(--mid);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
  }
  .dc-list li::before { content: '·'; color: var(--teal); font-size: 16px; flex-shrink: 0; margin-top: -1px; }
  .dc-insight {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    padding-top: 14px;
    border-top: 1px solid var(--border);
    line-height: 1.4;
  }

  /* ─── SELECTIVITY ─── */
  .selectivity-section { background: var(--teal); padding: 80px 64px; }
  .selectivity-inner { max-width: 1280px; margin: 0 auto; }
  .selectivity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 52px;
  }
  .sel-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
  }
  .sel-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
    line-height: 1;
  }
  .sel-num span { color: var(--gold); font-size: 28px; }
  .sel-label { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

  /* ─── NOT FOR YOU ─── */
  .not-for-section { background: var(--white); padding: 80px 64px; }
  .not-for-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .nf-side {}
  .nf-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 24px; line-height: 1.2; }
  .nf-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .nf-list li { font-size: 14.5px; color: var(--mid); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
  .nf-check { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
  .nf-not { color: #999; }
  .nf-divider { width: 1px; background: var(--border); }

  /* ─── FINAL CTA ─── */
  .final-cta { background: var(--ink); padding: 96px 64px; }
  .final-cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
  }
  .final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }
  .final-cta h2 em { font-style: italic; color: var(--gold); }
  .final-cta p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.65; font-weight: 300; max-width: 480px; }
  .final-cta-buttons { display: flex; flex-direction: column; gap: 14px; min-width: 260px; }
  .btn-cta-primary {
    background: var(--gold);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-cta-primary:hover { background: #b8831f; transform: translateY(-1px); }
  .btn-cta-secondary {
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.65);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
  }
  .btn-cta-secondary:hover { border-color: rgba(255,255,255,0.4); color: white; }
  .cta-note { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 8px; }

  /* FOOTER */
  footer { background: #0A0A0A; border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 64px; display: flex; align-items: center; justify-content: space-between; }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; color: white; font-weight: 700; }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 4px; }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: rgba(255,255,255,0.8); }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); text-align: right; }

/* ─────────────────────────────────────────
   RESPONSIVE STYLES
──────────────────────────────────────── */

/* TABLET */
@media (max-width: 1024px) {

  nav { padding: 0 32px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero { padding: 60px 32px 0; }

  .audience-strip-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aud-divider { display: none; }

  .system-overview-header,
  .decisions-grid,
  .not-for-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stage-cards {
    grid-template-columns: 1fr;
  }

  .step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .selectivity-grid {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none; /* simple mobile fallback for now */
  }

  .hero {
    padding: 48px 20px 0;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-right {
    padding: 24px 20px 0;
  }

  .audience-strip-inner {
    padding: 40px 20px;
  }

  .system-overview,
  .stage-detail,
  .decisions-section,
  .selectivity-section,
  .not-for-section,
  .final-cta,
  .faq-section {
    padding: 60px 20px;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .selectivity-grid {
    grid-template-columns: 1fr;
  }

  .decision-card {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 32px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn-gold,
  .btn-outline-white,
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    text-align: center;
  }
}


</style>


