:root {
  --ink: #111827;
  --muted: #536176;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #dce1d8;
  --lime: #dfff63;
  --lime-dark: #b9df2d;
  --navy: #172339;
  --navy-2: #22324d;
  --rust: #bd4f34;
  --radius: 20px;
  --shadow: 0 22px 60px rgba(23, 35, 57, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(223, 255, 99, .25), transparent 24rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 24, 39, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lime);
  letter-spacing: -.04em;
}

.header-link {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

main { overflow: hidden; }

.hero,
.section,
.proof-strip,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  padding: clamp(72px, 11vw, 150px) 0 clamp(64px, 8vw, 110px);
  text-align: center;
}

.eyebrow,
.section-label,
.card-kicker {
  color: var(--navy);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 35, 57, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #54a529;
  box-shadow: 0 0 0 4px rgba(84, 165, 41, .14);
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 940px;
  margin: 26px auto 24px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: .96;
  letter-spacing: -.065em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

.button-primary {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(185, 223, 45, .22);
}

.button-primary:hover { background: var(--lime-dark); }

.button-secondary {
  border-color: rgba(23, 35, 57, .22);
  background: rgba(255, 255, 255, .65);
}

.button-light { background: var(--white); color: var(--navy); }
.button-full { width: 100%; }

.microcopy {
  margin: 18px 0 0;
  color: #697588;
  font-size: .82rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.proof-strip div {
  padding: 28px clamp(18px, 3vw, 40px);
  display: grid;
  gap: 3px;
  text-align: center;
}

.proof-strip div + div { border-left: 1px solid var(--line); }
.proof-strip strong { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.proof-strip span { color: var(--muted); font-size: .9rem; }

.section { padding: clamp(76px, 10vw, 130px) 0; }
.two-column { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.section-label { margin-bottom: 18px; }
.body-copy { color: var(--muted); font-size: clamp(1.04rem, 1.7vw, 1.2rem); }
.body-copy p:last-child { margin-bottom: 0; }

.panel {
  width: min(1180px, calc(100% - 40px));
  padding: clamp(48px, 7vw, 86px);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.panel .section-label { color: var(--lime); }
.panel > h2 { max-width: 700px; }

.metric-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.metric-grid article { padding: 32px; background: var(--navy); }
.metric-grid p { color: #c2cbd8; margin-bottom: 0; }
.metric-number { display: block; margin-bottom: 30px; color: var(--lime); font-size: .78rem; font-weight: 850; letter-spacing: .14em; }

.offer-section {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: start;
  gap: clamp(44px, 7vw, 90px);
}

.offer-copy > p:not(.section-label) { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.fit-grid { margin-top: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fit-grid > div { padding-top: 24px; border-top: 1px solid var(--line); }
.fit-grid ul { padding: 0; margin: 0; list-style: none; }
.fit-grid li { position: relative; margin: 12px 0; padding-left: 25px; color: var(--muted); }
.check-list li::before,
.x-list li::before { position: absolute; left: 0; font-weight: 900; }
.check-list li::before { content: "✓"; color: #4b8e28; }
.x-list li::before { content: "×"; color: var(--rust); }

.cta-card {
  position: sticky;
  top: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-kicker { color: var(--rust); }
.cta-card h2 { margin: 15px 0 20px; font-size: clamp(2rem, 3.5vw, 3rem); }
.cta-card > p { color: var(--muted); }
.disclosure { padding: 16px; border-radius: 12px; background: #f0f2ec; font-size: .82rem; line-height: 1.5; }
.card-note { margin: 12px 0 0; text-align: center; font-size: .72rem; }

.reality-check {
  max-width: 850px;
  text-align: center;
}

blockquote {
  margin: 24px 0 28px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.05em;
}

.reality-check > p:last-child { color: var(--muted); font-size: 1rem; }

.final-cta {
  padding: clamp(74px, 10vw, 125px) 20px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
}

.final-cta .section-label { color: var(--lime); }
.final-cta h2 { margin-bottom: 15px; }
.final-cta p:not(.section-label) { color: #c2cbd8; margin-bottom: 28px; }

footer {
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  color: var(--muted);
  font-size: .83rem;
}

footer strong { color: var(--ink); letter-spacing: .1em; }
footer p { margin: 4px 0 0; }
footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
footer a { text-underline-offset: 3px; }
.copyright { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid var(--line); }

.legal-page main { overflow: visible; }
.legal-wrap { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 120px; }
.legal-wrap h1 { margin: 0 0 24px; text-align: left; font-size: clamp(2.6rem, 7vw, 5rem); }
.legal-wrap h2 { margin-top: 42px; font-size: 1.45rem; letter-spacing: -.02em; }
.legal-wrap p,
.legal-wrap li { color: var(--muted); }

@media (max-width: 850px) {
  .two-column,
  .offer-section { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .cta-card { position: static; }
}

@media (max-width: 620px) {
  .site-header { width: min(100% - 28px, 1180px); min-height: 72px; }
  .header-link { font-size: 0; }
  .header-link span { font-size: 1.1rem; }
  .hero,
  .section,
  .proof-strip,
  footer { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.5rem); }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div + div { border-left: 0; border-top: 1px solid var(--line); }
  .panel { width: min(100% - 18px, 1180px); padding: 40px 24px; }
  .metric-grid { margin-top: 35px; }
  .metric-grid article { padding: 28px 8px; }
  .cta-card { padding: 28px 22px; }
  footer { grid-template-columns: 1fr; }
  footer nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
