:root {
  --navy-950: #061927;
  --navy-900: #082238;
  --navy-850: #0a2b44;
  --navy-800: #10344d;
  --ivory-50: #faf7f1;
  --ivory-100: #f5f0e8;
  --warm-white: #fffdfc;
  --gold-500: #d8a84c;
  --gold-600: #c89435;
  --gold-border: rgba(216,168,76,.68);
  --ink: #102435;
  --muted: #5e6870;
  --line: rgba(12,36,53,.14);
  --serif: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --sans: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
h1, h2, p { margin-top: 0; }
.sr-only, .hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  z-index: 50;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--gold-500);
  color: var(--navy-950);
}
.skip-link:focus { top: 16px; }
:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: var(--warm-white);
}
.nav {
  width: min(1180px, calc(100% - 48px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.brand img, .footer-brand img { flex: 0 0 auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}
.nav-links a { opacity: .9; }
.nav-links a:hover { opacity: 1; color: var(--gold-500); }
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  background: rgba(216,168,76,.92);
  color: var(--navy-950) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--warm-white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--warm-white);
  background: var(--navy-950);
}
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: 58% 50%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,17,29,.97) 0%, rgba(5,24,39,.88) 31%, rgba(5,24,39,.35) 58%, rgba(5,24,39,.09) 100%),
    linear-gradient(180deg, rgba(4,17,29,.45) 0%, rgba(4,17,29,.05) 56%, rgba(4,17,29,.62) 100%);
}
.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  min-height: 610px;
  margin: 0 auto;
  padding: 92px 0 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero-copy { width: min(540px, 100%); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 11px;
  padding: 0 9px;
  border: 1px solid rgba(216,168,76,.56);
  border-radius: 5px;
  color: var(--gold-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.dark {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--gold-600);
}
h1 {
  max-width: 560px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(55px, 4.3vw, 66px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.012em;
}
h1 span { color: var(--gold-500); }
.hero-subhead {
  max-width: 515px;
  margin: 0;
  color: rgba(255,253,252,.88);
  font-size: 15.5px;
  line-height: 1.42;
}
.signup-panel {
  width: min(520px, 100%);
  margin-top: 18px;
  padding: 20px 20px 15px;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  background: rgba(5,25,42,.91);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
}
.signup-panel h2 {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.05;
}
.signup-panel > p {
  margin-bottom: 13px;
  color: rgba(255,253,252,.76);
  font-size: 12.5px;
}
.field { margin-bottom: 11px; }
.field-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 10px;
}
label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,253,252,.9);
  font-size: 11px;
  font-weight: 600;
}
label span { color: rgba(255,253,252,.58); font-weight: 400; }
input, select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px;
  background: rgba(255,253,252,.98);
  color: var(--ink);
  padding: 0 12px;
  font-size: 12.5px;
}
select { appearance: auto; }
.primary-button, .secondary-button {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, #e1b65b, #cf9c3d);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32);
}
.primary-button:hover, .secondary-button:hover { filter: brightness(1.04); }
.primary-button[disabled], .secondary-button[disabled] { opacity: .72; cursor: wait; }
.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 9px 0 0;
  color: rgba(255,253,252,.68);
  font-size: 10.5px;
}
.form-message {
  margin-top: 9px;
  color: var(--warm-white);
  font-size: 12px;
}
.form-message.error { color: #ffd8cc; }
.form-message.success { color: #fff3cf; }
.signup-panel.is-transitioning { transition: opacity .22s ease, transform .22s ease; }
.signup-panel.is-fading { opacity: 0; transform: translateY(6px); }

/* Intent state retained from launch-integrity package */
.success-state h2 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.04;
  color: var(--warm-white);
}
.success-state p { margin: 0; color: rgba(255,253,252,.78); }
.intent-panel {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}
.intent-confirm {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}
.intent-check {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold-500);
  font-size: 20px;
}
.intent-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.03;
  color: var(--warm-white);
}
.intent-question {
  margin: 0 0 12px;
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
}
.intent-options { display: grid; gap: 8px; margin: 0 0 11px; }
.intent-option {
  width: 100%;
  min-height: 47px;
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--gold-border);
  border-radius: 5px;
  background: rgba(6,25,39,.28);
  color: var(--warm-white);
  font-size: 12.5px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.intent-option:hover { background: rgba(216,168,76,.12); border-color: rgba(216,168,76,.92); }
.intent-option[disabled] { opacity: .68; cursor: wait; }
.intent-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
}
.intent-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.intent-arrow { color: var(--gold-500); font-size: 20px; justify-self: end; }
.intent-note, .intent-result { margin: 0; color: rgba(255,253,252,.7); font-size: 11px; }
.intent-result { min-height: 34px; margin-top: auto; color: #fff3cf; }
.qualification-step { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(216,168,76,.35); }
.qualification-title { margin: 0 0 8px; color: rgba(255,253,252,.78); font-size: 11px; }
.qualification-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.qualification-grid label { margin: 0; color: rgba(255,253,252,.82); font-size: 10px; }
.qualification-grid input, .qualification-grid select { min-height: 38px; margin-top: 4px; }
.qualification-actions { display: flex; gap: 8px; margin-top: 8px; }
.qualification-save, .qualification-skip {
  min-height: 38px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.qualification-save { flex: 1; border: 0; background: var(--gold-500); color: var(--navy-950); }
.qualification-skip { width: 76px; border: 1px solid rgba(255,255,255,.24); background: transparent; color: var(--warm-white); }
.qualification-message { min-height: 18px; margin: 6px 0 0; color: #fff3cf; font-size: 10px; }
.inline-confirmation { display: grid; gap: 2px; color: var(--warm-white); }
.inline-confirmation strong { font-family: var(--serif); font-size: 22px; line-height: 1.05; }
.inline-confirmation span { color: rgba(255,253,252,.72); font-size: 12px; }

/* Benefits */
.benefits {
  background: var(--ivory-50);
  border-bottom: 1px solid var(--line);
}
.benefits-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.benefit {
  min-height: 118px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 30px;
  border-right: 1px solid var(--line);
}
.benefit:first-child { padding-left: 0; }
.benefit:last-child { border-right: 0; padding-right: 0; }
.benefit-icon, .cta-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  border: 1px solid var(--gold-border);
}
.benefit h2 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.05;
}
.benefit p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.45; }

/* Editorial section */
.truth {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 38px 0 34px;
  display: grid;
  grid-template-columns: .9fr 1.18fr;
  gap: 52px;
  align-items: center;
}
.truth-image img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: 50% 44%;
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(12,36,53,.1);
}
.truth-copy h2 {
  max-width: 560px;
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.02;
  font-weight: 600;
}
.truth-copy p { max-width: 520px; margin-bottom: 8px; color: var(--muted); font-size: 13.5px; line-height: 1.45; }
.truth-copy .closing { margin-top: 12px; color: var(--ink); font-weight: 700; }
.truth-copy a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--gold-600);
  font-size: 12.5px;
  font-weight: 800;
}

/* Secondary CTA */
.cta-band {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 12px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 470px);
  gap: 34px;
  align-items: center;
  padding: 16px 24px;
  border-radius: 6px;
  background: var(--navy-900);
  color: var(--warm-white);
}
.cta-copy { display: flex; align-items: center; gap: 14px; }
.cta-icon { width: 42px; height: 42px; flex: 0 0 auto; background: var(--warm-white); }
.cta-copy h2 { margin-bottom: 1px; font-family: var(--serif); font-size: 25px; line-height: 1.05; }
.cta-copy p { margin: 0; color: rgba(255,253,252,.72); font-size: 11.5px; }
.inline-signup {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 8px;
}
.inline-signup input { min-height: 40px; font-size: 12px; }
.inline-signup .secondary-button { min-height: 40px; font-size: 12px; }
.inline-signup .form-message { grid-column: 1 / -1; margin: 0; }

.notice {
  width: min(1180px, calc(100% - 48px));
  min-height: 42px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--warm-white);
}
.notice span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
}
.notice p { margin: 0; color: var(--muted); font-size: 11px; }

.site-footer {
  width: min(1180px, calc(100% - 48px));
  min-height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 10px 0 16px;
  border-top: 1px solid var(--line);
}
.footer-brand { color: var(--navy-950); font-size: 18px; }
.footer-nav, .footer-legal { display: flex; gap: 22px; color: var(--muted); font-size: 11px; font-weight: 600; }
.site-footer p { grid-column: 1 / -1; margin: -8px 0 0; color: var(--muted); font-size: 10px; }

/* Policy pages */
.policy-page { background: var(--ivory-50); color: var(--ink); }
.policy-header { position: static; background: var(--navy-950); }
.policy-main { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: 64px 0; }
.policy-main h1, .policy-main h2 { font-family: var(--serif); }
.policy-main h1 { font-size: 52px; color: var(--ink); }
.policy-main h2 { margin-top: 30px; font-size: 27px; }
.policy-main p, .policy-main li { color: var(--muted); }

@media (max-width: 960px) {
  .nav { width: min(100% - 32px, 1180px); height: 68px; }
  .brand { font-size: 20px; }
  .menu-toggle { display: grid; }
  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    width: min(310px, calc(100vw - 32px));
    display: none;
    padding: 14px;
    border: 1px solid rgba(216,168,76,.36);
    border-radius: 7px;
    background: rgba(6,25,39,.98);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-links.is-static {
    position: static;
    width: auto;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; padding: 0 10px; }
  .nav-cta { margin-top: 4px; }

  .hero { min-height: 760px; }
  .hero-media img { object-position: 66% 50%; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6,25,39,.34) 0%, rgba(6,25,39,.72) 38%, rgba(6,25,39,.97) 100%),
      linear-gradient(90deg, rgba(6,25,39,.8), rgba(6,25,39,.18));
  }
  .hero-inner {
    width: min(100% - 32px, 620px);
    min-height: 760px;
    padding: 82px 0 22px;
    justify-content: flex-end;
  }
  .hero-copy { width: 100%; }
  h1 { max-width: 540px; font-size: clamp(42px, 8.2vw, 54px); line-height: .98; margin-bottom: 10px; }
  .hero-subhead { max-width: 520px; font-size: 14.5px; }
  .signup-panel { width: 100%; margin-top: 14px; padding: 17px 18px 13px; }
  .signup-panel h2 { font-size: 26px; }
  .signup-panel > p { margin-bottom: 11px; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 8px; }

  .benefits-inner { width: min(100% - 32px, 620px); grid-template-columns: 1fr; }
  .benefit, .benefit:first-child, .benefit:last-child {
    min-height: 0;
    grid-template-columns: 44px 1fr;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .benefit:last-child { border-bottom: 0; }
  .benefit h2 { font-size: 21px; }

  .truth { width: min(100% - 32px, 620px); padding: 30px 0; grid-template-columns: 1fr 1.15fr; gap: 24px; }
  .truth-image img { aspect-ratio: 1.35 / 1; }
  .truth-copy h2 { font-size: 29px; }
  .truth-copy p { font-size: 12.5px; }

  .cta-band { width: min(100% - 32px, 620px); grid-template-columns: 1fr; gap: 12px; padding: 14px 16px; }
  .cta-copy h2 { font-size: 23px; }
  .inline-signup { grid-template-columns: 1fr 120px; }
  .notice, .site-footer { width: min(100% - 32px, 620px); }
  .site-footer { grid-template-columns: 1fr; gap: 10px; align-items: start; }
  .site-footer p { grid-column: auto; margin: 0; }
}

@media (max-width: 640px) {
  .brand span { font-size: 18px; }
  .hero { min-height: 690px; }
  .hero-media img { object-position: 58% 50%; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6,25,39,.28) 0%, rgba(6,25,39,.72) 32%, rgba(6,25,39,.98) 100%),
      linear-gradient(90deg, rgba(6,25,39,.72), rgba(6,25,39,.2));
  }
  .hero-inner { width: calc(100% - 28px); min-height: 690px; padding: 78px 0 18px; }
  .eyebrow { margin-bottom: 8px; }
  h1 { font-size: clamp(37px, 10.5vw, 45px); line-height: .98; }
  .hero-subhead { font-size: 13.5px; line-height: 1.4; }
  .signup-panel { padding: 15px 14px 12px; }
  .signup-panel h2 { font-size: 24px; }
  .signup-panel > p { font-size: 11.5px; }
  .field { margin-bottom: 8px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  label { font-size: 10.5px; }
  input, select { min-height: 40px; font-size: 12px; }
  .primary-button { min-height: 43px; font-size: 12px; }
  .privacy-note { font-size: 10px; }

  .intent-panel { min-height: 300px; }
  .intent-confirm { grid-template-columns: 30px 1fr; gap: 10px; margin-bottom: 12px; }
  .intent-check { width: 30px; height: 30px; font-size: 18px; }
  .intent-panel h2 { font-size: 25px; }
  .intent-question { font-size: 18px; }
  .intent-option { min-height: 45px; font-size: 12px; }
  .qualification-grid { grid-template-columns: 1fr; }

  .benefit h2 { font-size: 20px; }
  .benefit p { font-size: 12px; }
  .truth { grid-template-columns: 42% 1fr; gap: 14px; padding: 22px 0; align-items: center; }
  .truth-image img { aspect-ratio: 1.1 / 1; object-position: 46% center; }
  .truth-copy .eyebrow { font-size: 9px; margin-bottom: 5px; }
  .truth-copy h2 { font-size: 23px; margin-bottom: 6px; }
  .truth-copy p { font-size: 11px; line-height: 1.35; margin-bottom: 5px; }
  .truth-copy .closing { display: none; }
  .truth-copy a { min-height: 28px; font-size: 11px; }

  .cta-band { gap: 10px; padding: 13px 14px; }
  .cta-copy { gap: 10px; }
  .cta-icon { width: 38px; height: 38px; }
  .cta-copy h2 { font-size: 21px; }
  .cta-copy p { font-size: 10.5px; }
  .inline-signup { grid-template-columns: 1fr 106px; gap: 6px; }
  .inline-signup input, .inline-signup .secondary-button { min-height: 38px; font-size: 10.5px; }
  .notice { align-items: flex-start; padding: 8px 11px; }
  .notice p { font-size: 10px; line-height: 1.35; }
  .footer-brand { font-size: 17px; }
  .footer-nav, .footer-legal { font-size: 10.5px; }
}

@media (max-width: 390px) {
  .nav, .hero-inner, .benefits-inner, .truth, .cta-band, .notice, .site-footer { width: calc(100% - 24px); }
  .hero { min-height: 720px; }
  .hero-inner { min-height: 720px; }
  .inline-signup { grid-template-columns: 1fr; }
  .truth-copy h2 { font-size: 21px; }
}

@media (max-width: 340px) {
  .brand { font-size: 17px; }
  h1 { font-size: 34px; }
  .hero-subhead { font-size: 12.5px; }
  .signup-panel { padding: 14px 12px 11px; }
  .truth { grid-template-columns: 1fr; }
  .truth-image img { aspect-ratio: 1.8 / 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* Final image-proportion correction */
.truth-image { height: 250px; }
.truth-image picture { display: block; width: 100%; height: 100%; }
.truth-image img { width: 100%; height: 100%; aspect-ratio: auto; }
@media (max-width: 960px) {
  .truth-image { height: 210px; }
}
@media (max-width: 640px) {
  .hero-media img { object-position: center top; }
  .truth-image { height: 138px; }
}
@media (max-width: 340px) {
  .truth-image { height: 150px; }
}
