:root {
  --ink: #0b1f33;
  --ink-2: #16324f;
  --muted: #617083;
  --muted-2: #8792a1;
  --paper: #f7f4ee;
  --white: #ffffff;
  --line: rgba(11, 31, 51, 0.13);
  --accent: #b78b39;
  --accent-2: #f3d08a;
  --blue-soft: #e7eef7;
  --shadow: 0 28px 70px rgba(11, 31, 51, 0.12);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }
a { color: inherit; }
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.section { padding: 84px 0; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 99;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 244, 238, 0.84);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  font-size: 13px;
  letter-spacing: .06em;
  font-weight: 800;
}
.brand-text { font-size: 18px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover { color: var(--ink); }

.hero {
  padding-top: 98px;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at top right, rgba(183, 139, 57, .22), transparent 36%),
    linear-gradient(180deg, #fbf8f1 0%, var(--paper) 72%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: .92;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
}
h1 span { display: block; color: var(--ink-2); }
h2 {
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}
h3 {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 760;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(11,31,51,.18);
}
.button.secondary {
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border-color: var(--line);
}
.button.light {
  background: var(--white);
  color: var(--ink);
}
.microcopy {
  color: var(--muted-2);
  font-size: 14px;
  max-width: 560px;
}

.hero-card {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(11,31,51,.11);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.score-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.score-card-top strong {
  max-width: 220px;
  font-size: 29px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-align: right;
}
.score-list {
  display: grid;
  gap: 12px;
  padding: 22px 0;
}
.score-list div {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 16px;
  background: #f7f9fb;
  border: 1px solid rgba(11,31,51,.08);
  border-radius: 18px;
  padding: 16px;
}
.score-list span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 820;
}
.score-list p { margin: 0; font-weight: 760; }
.confidence-note {
  border-radius: 18px;
  background: #fff7e5;
  border: 1px solid rgba(183,139,57,.28);
  padding: 16px;
  color: #594118;
}

.strip {
  padding: 0;
  transform: translateY(1px);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.strip-grid div {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.strip-grid div:last-child { border-right: 0; }
.strip-grid strong { display: block; margin-bottom: 6px; }
.strip-grid span { color: var(--muted); font-size: 15px; }

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.two-col > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}
.align-start { align-items: start; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.method-grid article,
.process-grid article,
.audience-grid article,
.faq-grid details {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.method-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 860;
}
.method-grid p,
.process-grid p,
.audience-grid p,
.faq-grid p { color: var(--muted); margin-bottom: 0; }

.process {
  background: var(--ink);
  color: var(--white);
}
.process .eyebrow { color: var(--accent-2); }
.process h2 { color: var(--white); }
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.section-heading.compact {
  text-align: left;
  margin-left: 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-grid article {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.process-grid p { color: rgba(255,255,255,.72); }
.step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-2);
  color: var(--ink);
  font-weight: 850;
  margin-bottom: 28px;
}

.timeline {
  display: grid;
  gap: 14px;
}
.timeline div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.timeline span {
  color: var(--accent);
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850;
  margin-bottom: 8px;
}
.timeline strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.timeline p { margin: 0; color: var(--muted); }

.audience { background: #fbf9f4; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience-grid article { min-height: 190px; }

.guardrail-box {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 22px 50px rgba(11,31,51,.07);
}
.guardrail-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.guardrail-box li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 650;
}
.guardrail-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.cta { padding-top: 0; }
.cta-card {
  border-radius: 36px;
  padding: clamp(34px, 7vw, 76px);
  background:
    radial-gradient(circle at top right, rgba(243,208,138,.3), transparent 34%),
    linear-gradient(135deg, var(--ink), #173858);
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-card .eyebrow { color: var(--accent-2); }
.cta-card h2 { max-width: 830px; }
.cta-card p:not(.eyebrow) {
  color: rgba(255,255,255,.76);
  max-width: 650px;
  margin-bottom: 26px;
  font-size: 18px;
}

.faq { padding-top: 0; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
details summary {
  cursor: pointer;
  font-weight: 820;
  letter-spacing: -0.01em;
}
details p { margin-top: 14px; }

.site-footer {
  background: #071726;
  color: var(--white);
  padding: 48px 0 28px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand .brand-mark {
  background: var(--white);
  color: var(--ink);
}
.site-footer p { color: rgba(255,255,255,.64); margin-bottom: 0; }
.footer-links {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-weight: 700;
}
.footer-links a:hover { color: var(--white); }
.footer-note { padding-top: 24px; font-size: 14px; }

@media (max-width: 920px) {
  .hero-grid,
  .two-col,
  .guardrail-box { grid-template-columns: 1fr; }
  .strip-grid,
  .process-grid,
  .audience-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .strip-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-grid div:last-child { border-bottom: 0; }
  .nav-links { display: none; }
  .section { padding: 62px 0; }
  .hero { padding-top: 70px; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .method-grid { grid-template-columns: 1fr; }
  .score-card-top { display: block; }
  .score-card-top strong { display: block; text-align: left; margin-top: 8px; }
  .score-list div { grid-template-columns: 64px 1fr; }
  .hero-actions { align-items: stretch; }
  .button { width: 100%; }
}
