@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext-variable.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --bg: #07111f;
  --surface: #0d1b2a;
  --raised: #12263a;
  --line: #2b485f;
  --line-soft: rgba(168, 186, 200, 0.2);
  --text: #f4f8fb;
  --muted: #a8bac8;
  --cyan: #69cce3;
  --cyan-strong: #1ca4bd;
  --ink: #07111f;
  --danger: #f06f68;
  --radius-panel: 8px;
  --radius-control: 6px;
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  --public-body-size: 16px;
  --public-body-line-height: 1.5;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--public-body-size);
  line-height: var(--public-body-line-height);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select, input { font: inherit; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  min-width: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--cyan);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand { flex: 0 0 auto; }
.brand img { width: 154px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
}

.site-nav a:hover { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.language-menu {
  position: relative;
  min-width: 144px;
  max-width: 164px;
}

.language-menu summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  padding: 0 12px;
  background: var(--surface);
  cursor: pointer;
  list-style: none;
}

.language-menu summary span:not(.sr-only) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-menu summary::-webkit-details-marker { display: none; }

.language-menu summary::after {
  content: "";
  flex: 0 0 auto;
  border: 5px solid transparent;
  border-top-color: var(--cyan);
  transform: translateY(3px);
}

.language-menu[open] summary { border-color: var(--cyan); }

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 2px;
  min-width: 230px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.language-options a {
  border-radius: var(--radius-control);
  padding: 9px 11px;
  color: var(--muted);
}

.language-options a:hover,
.language-options a[aria-current="page"] {
  background: var(--raised);
  color: var(--text);
}

.fallback-select { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  padding: 0 17px;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--cyan); color: var(--ink); }
.button-primary:hover { background: #8ad9eb; }
.button-secondary, .button-outline { border-color: var(--line); background: transparent; color: var(--text); }
.button-secondary:hover, .button-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.button-small { min-height: 40px; padding-inline: 14px; font-size: 12px; }
.button-block { width: 100%; }

.hero {
  border-bottom: 1px solid var(--line-soft);
  padding: 76px 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.eyebrow, .panel-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin-top: 0; font-weight: 750; line-height: 1.16; }
h1 { max-width: 800px; margin-bottom: 20px; font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.035em; }
h2 { margin-bottom: 16px; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.025em; }
h3 { margin-bottom: 9px; font-size: 16px; }
p { margin-top: 0; }

.hero-lede, .section-heading > p:last-child, .split-copy > p:last-child, .pdf-copy > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions, .pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-panel, .score-panel, .risk-card, .deliverables article, .offer-card, .provider-points article {
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--surface);
}

.hero-panel { padding: 28px; box-shadow: var(--shadow); }

.signal-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.signal-list li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; min-height: 46px; border-top: 1px solid var(--line-soft); color: var(--muted); }
.signal-list li:first-child { border-top: 0; }
.signal-list span { color: var(--cyan); font: 800 11px/1 monospace; }

.confidence-strip {
  margin-top: 18px;
  border-left: 3px solid var(--cyan);
  padding: 11px 13px;
  background: var(--raised);
}

.confidence-strip strong, .confidence-strip span { display: block; }
.confidence-strip span { margin-top: 2px; color: var(--muted); font-size: 12px; }

.section { padding: 68px 0; }
.section-tight { padding-bottom: 56px; }
.contrast-band { border-block: 1px solid var(--line-soft); background: #0b1726; }
.section-heading { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.section-heading.align-left { margin-inline: 0; text-align: left; }

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.risk-card { min-height: 190px; padding: 22px; }
.risk-number { display: block; margin-bottom: 24px; color: var(--cyan); font: 800 11px/1 monospace; }
.risk-card p, .deliverables p, .offer-card li, .provider-points p { margin-bottom: 0; color: var(--muted); }

.service-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px 46px; align-items: start; }
.split-copy { position: static; }
.deliverables { display: grid; gap: 12px; }
.deliverables article { padding: 18px 20px; }
.offer-intro { grid-column: 1 / -1; margin-top: 16px; text-align: center; }
.offer-intro h3 { margin-bottom: 0; font-size: 24px; }
.offer-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.offer-card { position: relative; padding: 24px; }
.offer-card.recommended { border-color: var(--cyan); }
.offer-name { margin-bottom: 3px; color: var(--cyan); font-size: 12px; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.offer-price { margin: 10px 0 4px; font-size: 32px; font-weight: 850; letter-spacing: -0.03em; }
.offer-price span { color: var(--muted); font-size: 16px; font-weight: 700; }
.offer-scope { color: var(--text); font-weight: 720; }
.offer-card ul { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.offer-card li { position: relative; padding-left: 18px; }
.offer-card li::before { content: ""; position: absolute; top: 0.62em; left: 0; width: 7px; height: 2px; background: var(--cyan); }
.pricing-note, .service-boundary { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 12px; text-align: center; }
.service-boundary { border-left: 3px solid var(--cyan); padding: 12px 14px; background: var(--surface); text-align: left; }

.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.audit-intro { position: sticky; top: 104px; }
.audit-intro > p:not(.eyebrow) { color: var(--muted); }
.privacy-note { margin-top: 22px; border-left: 3px solid var(--cyan); padding: 12px 14px; background: var(--surface); font-size: 12px; }
.privacy-note strong { display: block; margin-bottom: 3px; color: var(--text); }

.audit-form { display: grid; gap: 14px; }
.question { border: 1px solid var(--line); border-radius: var(--radius-panel); padding: 21px; background: var(--surface); }
.question-title { margin-bottom: 16px; }
.choice { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin-top: 8px; border: 1px solid var(--line-soft); border-radius: var(--radius-control); padding: 11px 12px; color: var(--muted); cursor: pointer; }
.choice:hover { border-color: var(--line); color: var(--text); }
.choice:has(input:checked) { border-color: var(--cyan); background: var(--raised); color: var(--text); }
.choice input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--cyan); }

.score-panel { position: sticky; top: 104px; padding: 22px; }
.score-value { margin: 4px 0 12px; font-size: 44px; font-weight: 850; letter-spacing: -0.05em; }
.score-value small { color: var(--muted); font-size: 15px; }
.score-progress { height: 5px; overflow: hidden; border-radius: 99px; background: var(--raised); }
.score-progress span { display: block; width: 0; height: 100%; background: var(--cyan); transition: width 180ms ease; }
.score-detail { min-height: 96px; margin: 18px 0 8px; color: var(--muted); }
.score-detail strong { display: block; margin-bottom: 4px; color: var(--text); }
.score-count { margin-bottom: 18px; color: var(--muted); font-size: 12px; }

.pdf-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 54px; align-items: center; }
.pdf-preview { display: flex; justify-content: center; }
.pdf-sheet {
  position: relative;
  width: min(100%, 340px);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 204, 227, 0.14), transparent 38%),
    linear-gradient(160deg, var(--raised), var(--surface) 58%);
  color: var(--text);
  box-shadow: var(--shadow);
}
.pdf-sheet::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 112px;
  height: 3px;
  background: var(--cyan);
}
.pdf-logo { margin-bottom: 52px; color: var(--cyan); font-size: 12px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.pdf-sheet h3 { max-width: 260px; font-size: 28px; }
.pdf-sheet p, .pdf-sheet li { color: var(--muted); }
.pdf-sheet ul { padding-left: 18px; }

.provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.provider-points { display: grid; gap: 12px; }
.provider-points article { padding: 18px 20px; }

.final-cta { padding: 72px 0; text-align: center; }
.final-cta-inner { max-width: 840px; }
.final-cta p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.final-cta .hero-actions { justify-content: center; }

.site-footer { border-top: 1px solid var(--line-soft); padding: 24px 0; color: var(--muted); font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; }
.footer-inner a:hover { color: var(--cyan); }

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.8fr; gap: 32px; }
  .risk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audit-layout { grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr); }
  .audit-intro { position: static; grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 76px; }
  .header-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    min-height: 68px;
    gap: 12px;
  }
  .brand { grid-column: 2; justify-self: center; }
  .brand img { width: 124px; }
  .header-actions { grid-column: 3; justify-self: end; }
  .header-actions > .button { display: none; }
  .hero { padding: 54px 0 50px; }
  .hero-grid, .service-layout, .pdf-grid, .provider-grid { grid-template-columns: 1fr; }
  .hero-copy, .split-copy, .audit-intro, .pdf-copy { text-align: center; }
  .hero-lede, .split-copy > p, .audit-intro > p, .pdf-copy > p { margin-inline: auto; }
  .hero-actions, .pdf-actions { justify-content: center; }
  .hero-panel, .deliverables, .audit-form, .score-panel, .offer-card, .service-boundary { text-align: left; }
  .split-copy { position: static; }
  .offer-intro, .offer-grid, .pricing-note, .service-boundary { grid-column: 1; }
  .audit-layout { grid-template-columns: 1fr; }
  .score-panel { position: static; }
  .pdf-grid { gap: 34px; }
  .pdf-preview { order: 2; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1180px); }
  .header-shell { grid-template-columns: 1fr; padding: 12px 0; }
  .brand { grid-column: 1; grid-row: 1; }
  .header-actions { grid-column: 1; grid-row: 2; justify-self: center; }
  .language-menu { min-width: 126px; max-width: 142px; }
  .language-options { position: fixed; top: 128px; right: 12px; left: 12px; min-width: 0; }
  .hero { padding-top: 44px; }
  h1 { font-size: 35px; }
  h2 { font-size: 27px; }
  .hero-actions, .pdf-actions { display: grid; }
  .hero-actions .button, .pdf-actions .button { width: 100%; }
  .hero-panel { padding: 20px; }
  .section { padding: 50px 0; }
  .risk-grid, .offer-grid { grid-template-columns: 1fr; }
  .risk-card { min-height: 0; }
  .offer-card { padding: 20px; }
  .question { padding: 18px 16px; }
  .pdf-sheet { min-height: 380px; }
  .footer-inner { display: grid; }
}

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