:root {
  --navy-950: #061426;
  --navy-900: #0a1d35;
  --navy-800: #103252;
  --navy-700: #17466e;
  --blue-600: #176da1;
  --blue-100: #e5f2f8;
  --red-700: #9d2033;
  --red-600: #b82f43;
  --gold-500: #d8a441;
  --gold-200: #f1dca7;
  --ink: #17212e;
  --muted: #5f6b78;
  --line: #d8dee6;
  --cream: #f7f4ed;
  --mist: #f2f6f8;
  --white: #ffffff;
  --success: #236a52;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 24px 70px rgba(6, 20, 38, 0.14);
  --shell: min(1240px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--gold-200);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(6, 20, 38, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-200), var(--gold-500));
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand strong, .brand small { display: block; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; line-height: 1.1; }
.brand small { margin-top: 3px; color: #b8c9da; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: #dce8f3; font-size: 15px; font-weight: 700; text-decoration: none; }
.nav-links a:hover { color: var(--gold-200); }
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(23, 109, 161, 0.34), transparent 26%),
    linear-gradient(125deg, var(--navy-950), var(--navy-900) 52%, #0d3453);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle, rgba(255,255,255,0.7) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  padding-block: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--red-600);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--gold-200); }

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

h1 { max-width: 860px; font-size: clamp(48px, 7vw, 86px); line-height: 0.98; }
h2 { font-size: clamp(36px, 4.4vw, 58px); line-height: 1.04; }
h3 { font-size: clamp(30px, 3vw, 43px); line-height: 1.08; }

.hero-lede { max-width: 740px; margin: 28px 0 0; color: #d8e6f2; font-size: clamp(19px, 2.1vw, 24px); }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red-600); }
.button-primary:hover { background: var(--red-700); }
.button-quiet { color: var(--white); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.28); }
.button-gold { color: var(--navy-950); background: var(--gold-500); }
.button-full { width: 100%; border-radius: 12px; }
.source-line { margin: 22px 0 0; color: #9fb6c9; font-size: 14px; }

.system-card {
  padding: 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.22);
}

.system-card-top { display: flex; align-items: end; justify-content: space-between; color: #c6d5e3; font-size: 13px; text-transform: uppercase; letter-spacing: 0.13em; }
.system-card-top strong { color: var(--gold-200); font-size: 17px; }

.orbit { position: relative; width: min(310px, 82vw); aspect-ratio: 1; margin: 26px auto; border: 1px solid rgba(241,220,167,0.34); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; inset: 18%; border: 1px dashed rgba(255,255,255,0.22); border-radius: 50%; }
.orbit-center, .orbit-node { position: absolute; display: grid; place-items: center; border-radius: 50%; font-weight: 850; }
.orbit-center { inset: 33%; color: var(--navy-950); background: var(--gold-500); font-family: Georgia, "Times New Roman", serif; font-size: 28px; box-shadow: 0 0 0 13px rgba(216,164,65,0.1); }
.orbit-node { width: 70px; height: 70px; color: var(--white); background: var(--red-600); border: 5px solid var(--navy-900); }
.orbit-node-one { left: -10px; top: 38%; }
.orbit-node-two { right: -10px; top: 38%; background: var(--blue-600); }
.system-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.system-links a { min-width: 0; padding: 13px; color: #dce9f4; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; text-decoration: none; }
.system-links a:hover { color: var(--white); background: rgba(255,255,255,0.12); border-color: rgba(241,220,167,0.55); }
.system-links span, .system-links small { display: block; }
.system-links span { font-size: 14px; font-weight: 800; }
.system-links small { margin-top: 4px; overflow-wrap: anywhere; color: #9fb6c9; font-size: 12px; line-height: 1.35; }

.metric-band { color: var(--white); background: var(--red-700); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-grid article { min-height: 132px; padding: 24px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,0.2); }
.metric-grid article:last-child { border-right: 1px solid rgba(255,255,255,0.2); }
.metric-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 52px); line-height: 1; }
.metric-grid span { margin-top: 8px; color: #f5dce0; font-size: 14px; font-weight: 700; }

.section { padding-block: 100px; }
.section-heading { max-width: 850px; }
.section-heading > p:last-child { max-width: 700px; color: var(--muted); font-size: 19px; }

.product-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.product-card { position: relative; overflow: hidden; min-height: 510px; padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.product-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 8px; background: var(--red-600); }
.product-compensation::before { background: var(--blue-600); }
.product-number { align-self: flex-end; color: #e4e9ee; font-family: Georgia, "Times New Roman", serif; font-size: 64px; font-weight: 700; line-height: 1; }
.card-kicker { margin: -30px 0 10px; color: var(--red-700); font-size: 13px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.product-compensation .card-kicker { color: var(--blue-600); }
.product-card > p:not(.card-kicker) { color: var(--muted); }
.feature-list { margin: 20px 0 30px; padding: 0; list-style: none; }
.feature-list li { padding: 9px 0 9px 26px; border-bottom: 1px solid var(--line); }
.feature-list li::before { content: "✓"; margin-left: -26px; margin-right: 11px; color: var(--success); font-weight: 900; }
.card-link { margin-top: auto; display: inline-flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--navy-800); font-weight: 850; text-decoration: none; }
.card-link-copy, .card-link-copy strong, .card-link-copy small { display: block; }
.card-link-copy strong { color: var(--navy-800); }
.card-link-copy small { margin-top: 4px; color: var(--muted); font-size: 13px; font-weight: 650; overflow-wrap: anywhere; }
.card-arrow { color: var(--red-600); font-size: 24px; }
.interpretation-note { margin-top: 32px; padding: 24px 28px; display: grid; grid-template-columns: 220px 1fr; gap: 25px; background: var(--blue-100); border-left: 5px solid var(--blue-600); border-radius: var(--radius-md); }
.interpretation-note strong { font-family: Georgia, "Times New Roman", serif; font-size: 23px; }
.interpretation-note p { margin: 0; color: #3d556b; }
.partner-callout { margin-top: 28px; padding: clamp(28px, 4vw, 42px); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 36px; color: var(--white); background: var(--navy-900); border: 1px solid var(--navy-700); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.partner-callout h3 { max-width: 820px; font-size: clamp(28px, 3.2vw, 42px); }
.partner-callout p:not(.eyebrow) { max-width: 880px; margin-bottom: 0; color: #c4d3df; }
.partner-callout .button { min-width: 190px; }

.section-survey { background: var(--mist); }
.survey-grid, .briefing-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr); gap: clamp(42px, 7vw, 90px); align-items: start; }
.survey-intro > p:not(.eyebrow) { color: var(--muted); font-size: 19px; }
.privacy-promise { margin-top: 30px; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.privacy-promise strong { color: var(--red-700); }
.privacy-promise p { margin-bottom: 0; color: var(--muted); font-size: 15px; }

.form-card { padding: clamp(26px, 4vw, 42px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.field { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
label, legend { font-weight: 800; }
label span, legend span { color: var(--muted); font-size: 13px; font-weight: 600; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b8c1ca;
  border-radius: 10px;
}
input, select { min-height: 50px; }
textarea { resize: vertical; }
.field small { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }
fieldset { margin: 0 0 24px; padding: 0; border: 0; }
.choice-grid { margin-top: 10px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
.choice-grid label { padding: 10px; display: flex; gap: 9px; align-items: flex-start; background: var(--mist); border-radius: 9px; font-size: 14px; font-weight: 650; }
.choice-grid input, .consent-row input { width: auto; min-height: 0; margin: 4px 0 0; }
.consent-row { margin: 0 0 22px; display: flex; align-items: flex-start; gap: 11px; font-size: 14px; font-weight: 650; }
.form-message { min-height: 26px; margin-bottom: 8px; color: var(--red-700); font-size: 14px; font-weight: 750; }
.form-footnote { margin: 14px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.briefing-grid > div:first-child { position: sticky; top: 120px; }
.briefing-points { padding-left: 21px; color: var(--muted); }
.briefing-points li { margin-bottom: 9px; }
.form-card-dark { color: var(--white); background: var(--navy-900); border-color: var(--navy-700); }
.form-card-dark input, .form-card-dark select, .form-card-dark textarea { color: var(--ink); background: var(--white); }
.form-card-dark label span, .form-card-dark .field small, .form-card-dark .form-footnote { color: #b9c9d8; }

.crisis-band { color: var(--white); background: var(--red-700); }
.crisis-inner { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.crisis-inner div { display: flex; flex-direction: column; }
.crisis-inner strong { font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.crisis-inner span { color: #f2d9dd; font-size: 14px; }
.crisis-inner p { margin: 0; font-weight: 750; }

.site-footer { padding-block: 54px 26px; color: #cbd8e4; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 45px; }
.footer-brand { color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 700; text-decoration: none; }
.footer-brand:hover { color: var(--gold-200); }
.footer-grid p { max-width: 650px; color: #9fb1c2; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links a { color: #dce7f0; text-decoration: none; }
.footer-links a:hover { color: var(--gold-200); }
.footer-bottom { margin-top: 34px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #8197aa; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; }

.simple-page { min-height: 65vh; padding-block: 85px; background: var(--mist); }
.simple-card { max-width: 900px; padding: clamp(30px, 5vw, 60px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.simple-card h1 { color: var(--navy-900); font-size: clamp(42px, 6vw, 68px); }
.simple-card h2 { margin-top: 38px; font-size: 30px; }
.simple-card p, .simple-card li { color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid, .survey-grid, .briefing-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 76px; }
  .system-card { max-width: 560px; }
  .briefing-grid > div:first-child { position: static; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1240px); }
  .header-inner { min-height: 70px; }
  .brand small { display: none; }
  .brand strong { font-size: 17px; }
  .brand-mark { width: 40px; height: 40px; }
  .menu-button { display: inline-flex; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 8px; padding: 8px 12px; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 18px 20px 24px; flex-direction: column; align-items: stretch; gap: 4px; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.1); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px; }
  .hero-grid { min-height: auto; padding-block: 62px; }
  h1 { font-size: clamp(44px, 14vw, 66px); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid article:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.2); }
  .metric-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.2); }
  .section { padding-block: 72px; }
  .product-grid, .field-row { grid-template-columns: 1fr; }
  .product-card { min-height: 0; }
  .interpretation-note { grid-template-columns: 1fr; gap: 5px; }
  .partner-callout { grid-template-columns: 1fr; }
  .partner-callout .button { justify-self: start; }
  .crisis-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .system-card { padding: 19px; }
  .system-links { grid-template-columns: 1fr; }
  .orbit-node { width: 58px; height: 58px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid article { min-height: 105px; border-top: 1px solid rgba(255,255,255,0.2); border-right: 1px solid rgba(255,255,255,0.2); }
  .choice-grid { grid-template-columns: 1fr; }
}

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

@media print {
  .site-header, .hero-actions, form, .crisis-band { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { color: #000; background: #fff; }
  .hero-lede, .source-line { color: #333; }
  .section { padding-block: 30px; }
  .product-card { box-shadow: none; break-inside: avoid; }
}
