:root {
  --navy: #102a43;
  --blue: #23527c;
  --cyan: #4db8d1;
  --gold: #e8b84b;
  --cream: #f7f3e8;
  --ink: #15222d;
  --paper: #ffffff;
  --muted: #536577;
  --line: #c9d6df;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px clamp(20px, 5vw, 72px);
  color: #fff;
  background: rgba(16, 42, 67, .97);
  border-bottom: 3px solid var(--gold);
}
.brand img { width: 174px; border: 2px solid rgba(255,255,255,.25); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold); }
.menu-toggle { display: none; color: #fff; background: transparent; border: 1px solid #fff; padding: 10px 14px; font-weight: 800; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  min-height: calc(100vh - 76px);
  background: linear-gradient(120deg, #0b2136 0 54%, #e8edf1 54%);
}
.hero-copy { align-self: center; padding: 80px clamp(28px, 7vw, 110px); color: #fff; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 28px; font-size: clamp(3.4rem, 7.5vw, 7.3rem); line-height: .82; letter-spacing: 0; text-transform: uppercase; }
h1 span { color: var(--gold); }
.hero-lead { max-width: 720px; color: #d8e2e9; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 34px; }
.button, .secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #102030;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
}
.button:hover, .button:focus-visible { background: #f4ca66; }
.text-link { font-weight: 900; text-underline-offset: 5px; }
.product-stage { display: grid; place-items: center; margin: 0; padding: 48px; overflow: hidden; }
.product-stage img { width: min(720px, 100%); aspect-ratio: 3/2; object-fit: cover; box-shadow: 18px 18px 0 var(--cyan); }

.warning-band { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; padding: 30px clamp(24px, 7vw, 110px); background: var(--gold); color: #132333; }
.warning-band strong { font-size: 1.15rem; }
.split-section, .story-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 100px); padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px); }
h2 { font-size: clamp(2.2rem, 5vw, 5rem); line-height: .98; text-transform: uppercase; }
.prose { color: var(--muted); font-size: 1.12rem; }
.modules-section { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px); background: var(--cream); }
.section-heading { max-width: 820px; margin-bottom: 50px; }
.modules-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.modules-grid article { grid-column: span 2; min-height: 260px; padding: 28px; background: #fff; border-top: 7px solid var(--blue); box-shadow: 0 8px 22px rgba(16,42,67,.08); }
.modules-grid article:nth-child(4) { grid-column: 2 / span 2; }
.modules-grid article span { color: var(--blue); font-weight: 900; letter-spacing: .12em; }
.modules-grid h3 { margin: 34px 0 12px; font-size: 1.45rem; text-transform: uppercase; }
.modules-grid p { color: var(--muted); }
.story-section { align-items: center; background: var(--navy); color: #fff; }
.story-image img { box-shadow: -16px 16px 0 var(--gold); }
.story-copy p:not(.eyebrow) { color: #d8e2e9; }
.faq-section { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px); }
.faq-list { max-width: 980px; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 24px 0; font-weight: 900; cursor: pointer; font-size: 1.15rem; }
details p { max-width: 800px; color: var(--muted); padding-bottom: 24px; }
.status-section { padding: clamp(70px, 9vw, 120px) clamp(24px, 13vw, 220px); text-align: center; background: var(--cyan); }
.status-section p:not(.eyebrow) { max-width: 800px; margin-left: auto; margin-right: auto; }

footer { padding: 48px clamp(24px, 7vw, 110px); color: #d6e0e7; background: #081827; }
footer img { width: 150px; margin-bottom: 24px; }
footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
footer nav a, .privacy-open { color: #fff; background: transparent; border: 0; padding: 0; text-decoration: underline; cursor: pointer; }
.copyright { margin: 28px 0 0; font-size: .84rem; }

.consent { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 20px; background: rgba(5, 17, 29, .72); }
.consent[hidden] { display: none; }
.consent-panel { position: relative; width: min(620px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: clamp(28px, 5vw, 52px); background: #fff; border-top: 8px solid var(--gold); box-shadow: 0 24px 80px rgba(0,0,0,.4); }
.consent-close { position: absolute; top: 12px; right: 15px; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; }
.consent-panel label { display: block; margin: 22px 0; font-weight: 800; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.secondary-button { background: #fff; border-color: var(--navy); }

.legal-page { max-width: 900px; min-height: 70vh; margin: 0 auto; padding: 90px 24px; }
.legal-page h1 { color: var(--navy); font-size: clamp(3rem, 6vw, 5rem); }
.legal-page h2 { margin-top: 42px; font-size: 1.6rem; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 24px; background: var(--navy); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero { grid-template-columns: 1fr; background: var(--navy); }
  .hero-copy { padding-bottom: 38px; }
  .product-stage { background: #e8edf1; padding: 32px; }
  .warning-band, .split-section, .story-section { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .modules-grid article, .modules-grid article:nth-child(4) { grid-column: auto; }
}

@media (max-width: 580px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2.3rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .modules-grid article { min-height: 0; }
  .warning-band { gap: 10px; }
  .consent-actions > * { width: 100%; }
}
