:root {
  --navy: #021d33;
  --green: #2eb502;
  --white: #ffffff;
  --light: #f4f7fa;
  --text: rgba(2, 29, 51, .78);
  --text-on-navy: rgba(255, 255, 255, .76);
  --hair: rgba(2, 29, 51, .12);
  --hair-on-navy: rgba(255, 255, 255, .14);
  --disp: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --pad-x: clamp(20px, 5vw, 64px);
  --pad-y: clamp(100px, 12vw, 170px);
  --wide: 1240px;
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--disp);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .45em;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6vw, 78px); line-height: .98; letter-spacing: -.028em; }
h2 { font-size: clamp(36px, 4.6vw, 62px); line-height: 1.02; letter-spacing: -.022em; }
h3 { font-size: clamp(20px, 2vw, 23px); line-height: 1.16; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

/* kicker */
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
}
.kicker span {
  color: var(--green);
  padding: 3px 9px;
  border: 1.5px solid rgba(46, 181, 2, .45);
  border-radius: 6px;
  letter-spacing: .06em;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 30px;
  border: 0;
  border-radius: 12px;
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 12px 30px rgba(46, 181, 2, .28); }
.btn-green:hover { background: #34cc04; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(46, 181, 2, .34); }
.btn-line { background: transparent; color: var(--navy); border: 1.5px solid rgba(2, 29, 51, .3); }
.btn-line:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 8px 18px; font-size: 15px; border-radius: 10px; box-shadow: none; }

/* ============ header ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad-x);
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--hair);
  box-shadow: 0 6px 24px rgba(2, 29, 51, .06);
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.logo-chip { display: inline-flex; align-items: center; }
.logo-chip img { display: block; width: auto; height: 34px; }
.site-nav { display: none; gap: 4px; }
.site-nav a {
  padding: 9px 14px;
  border-radius: 8px;
  color: rgba(2, 29, 51, .7);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease;
}
.site-nav a:hover { color: var(--green); }
@media (min-width: 760px) { .site-nav { display: flex; } }

/* ============ hero ============ */
.hero { background: var(--white); }
.hero-inner {
  width: min(var(--wide), 100%);
  margin: 0 auto;
  padding: clamp(110px, 13vh, 138px) var(--pad-x) clamp(36px, 5vh, 64px);
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
}
.hero h1 { max-width: 12em; }
.hero h1 em { font-style: normal; color: var(--green); }
.lede {
  max-width: 34em;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--text);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 0; }
.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 30px 0 0;
}
@media (min-width: 900px) {
  .hero-chips {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 12px 40px;
  }
}
.hero-chips li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.hero-chips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.hero-media { margin: 0; justify-self: center; width: min(460px, 92%); }
.hero-media img { width: 100%; }
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; }
  .hero-media { width: min(450px, 100%); justify-self: end; }
}

/* ============ strip ============ */
.strip { background: var(--navy); color: var(--text-on-navy); }
.strip p {
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(26px, 3.4vw, 40px) var(--pad-x);
  font-family: var(--disp);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.01em;
}
.strip strong { color: #fff; font-weight: 700; }

/* ============ sections ============ */
.section { padding: var(--pad-y) var(--pad-x); }
.section-light { background: var(--light); }
.section > * { max-width: var(--wide); margin-left: auto; margin-right: auto; }
.measure h2 { max-width: 14em; }

/* steps */
.steps {
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  margin-top: clamp(44px, 6vw, 76px);
}
.step { border-top: 1.5px solid var(--hair); padding-top: 30px; }
.step-num {
  display: block;
  margin-bottom: 20px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(52px, 5.6vw, 80px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--green);
}
.step h3 { margin-bottom: .55em; }
.step p { margin: 0; color: var(--text); font-size: 16.5px; max-width: 30em; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ============ benefits (light, framed image) ============ */
.benefits { background: var(--white); padding: var(--pad-y) var(--pad-x); }
.benefits-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.benefits h2 { max-width: 11em; }
.benefits-lede { max-width: 34em; font-size: clamp(17px, 1.6vw, 19px); line-height: 1.65; color: var(--text); }
.benefits-media { margin: 0; }
.benefits-media img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(2, 29, 51, .18);
}
.benefits-media figcaption { margin-top: 12px; font-size: 13.5px; color: rgba(2, 29, 51, .55); }
.ticks {
  list-style: none;
  padding: 0;
  margin: clamp(30px, 4vw, 44px) 0 0;
  display: grid;
  gap: 18px;
}
.ticks li {
  position: relative;
  padding-left: 36px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
}
.ticks li strong { color: var(--navy); }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  background: var(--green);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="M3.5 12.8 9.5 18.5 20.5 6"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="M3.5 12.8 9.5 18.5 20.5 6"/></svg>') center / contain no-repeat;
}
@media (min-width: 900px) {
  .benefits-inner { grid-template-columns: 1.05fr .95fr; }
}

/* ============ earnings (navy) ============ */
.earn { background: var(--navy); color: var(--text-on-navy); padding: var(--pad-y) var(--pad-x); }
.earn-inner { max-width: var(--wide); margin: 0 auto; }
.earn h2 { color: #fff; max-width: 13em; }
.earn .kicker { color: #fff; }
.earn-lede { color: var(--text-on-navy); font-size: clamp(17px, 1.6vw, 19px); max-width: 34em; }
.scenarios {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(36px, 4.5vw, 56px);
}
.scenario {
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-top: 3px solid var(--green);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
}
.sc-name {
  display: block;
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.scenario strong {
  display: block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--green);
  margin-bottom: 12px;
}
.scenario strong em {
  font-style: normal;
  font-size: .38em;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .65);
  margin-left: 4px;
}
.sc-note { display: block; color: rgba(255, 255, 255, .65); font-size: 14.5px; }
.earn-foot {
  margin: clamp(28px, 3vw, 40px) 0 0;
  max-width: 46em;
  color: rgba(255, 255, 255, .6);
  font-size: 14.5px;
  line-height: 1.6;
}
@media (min-width: 820px) { .scenarios { grid-template-columns: repeat(3, 1fr); } }

/* ============ product ============ */
.product-grid {
  display: grid;
  gap: clamp(44px, 6vw, 76px);
  align-items: center;
}
.product-copy h2 { font-size: clamp(34px, 4vw, 54px); }
.product-copy p { color: var(--text); max-width: 32em; }
.product .ticks { gap: 15px; }
.product .ticks li { font-size: 16px; padding-left: 33px; }
.product .ticks li::before { width: 19px; height: 19px; }
.product-media { margin: 0; }
.stage {
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--hair);
  box-shadow: 0 20px 50px rgba(2, 29, 51, .1);
}
.stage img { width: min(440px, 100%); }
@media (min-width: 900px) { .product-grid { grid-template-columns: 1fr 1fr; } }

/* ============ FAQ ============ */
.faq-section { background: var(--white); padding: var(--pad-y) var(--pad-x); }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq { margin-top: clamp(36px, 5vw, 56px); border-top: 1.5px solid var(--hair); }
.faq details { border-bottom: 1.5px solid var(--hair); }
.faq summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: clamp(20px, 2.6vw, 28px) 54px clamp(20px, 2.6vw, 28px) 0;
  font-family: var(--disp);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.01em;
  transition: color .15s ease;
}
.faq summary:hover { color: var(--green); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--disp);
  font-weight: 500;
  font-size: 28px;
  color: var(--green);
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 0;
  padding: 0 0 clamp(22px, 2.6vw, 30px);
  max-width: 44em;
  color: var(--text);
  font-size: 16.5px;
}

/* ============ contact (navy) ============ */
.contact { background: var(--navy); color: var(--text-on-navy); padding: var(--pad-y) var(--pad-x); }
.contact-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}
.contact h2 { color: #fff; }
.contact .kicker { color: #fff; }
.contact-copy p { color: var(--text-on-navy); max-width: 27em; font-size: clamp(17px, 1.6vw, 19px); }
.contact-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.btn-line-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .35); gap: 9px; }
.btn-line-light:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.icon-phone { width: 18px; height: 18px; flex: 0 0 auto; }
.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 3.4vw, 42px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
}
.lead-form label {
  display: grid;
  gap: 7px;
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--navy);
}
.lead-form .optional { color: rgba(2, 29, 51, .5); font-family: var(--body); font-weight: 500; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.lead-form input, .lead-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid rgba(2, 29, 51, .18);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-family: var(--body);
  resize: vertical;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(2, 29, 51, .35); }
.lead-form input:focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 181, 2, .18);
}
.form-note { margin: 0; font-size: 13px; color: rgba(2, 29, 51, .55); }
@media (min-width: 900px) { .contact-inner { grid-template-columns: .95fr 1.05fr; } }

/* ============ footer ============ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--hair-on-navy);
  color: var(--text-on-navy);
  padding: clamp(44px, 6vw, 64px) var(--pad-x);
  display: grid;
  gap: 28px;
  font-size: 14.5px;
  line-height: 1.65;
}
.site-footer .logo-chip { padding: 8px 14px; background: #fff; border-radius: 10px; }
.site-footer .logo-chip img { height: 26px; }
.site-footer p { margin: 12px 0 0; max-width: 420px; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--green); }
.footer-meta p { margin: 0 0 10px; }
@media (min-width: 760px) {
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > * { max-width: var(--wide); }
  .footer-meta { text-align: right; }
  .footer-meta p { margin-left: auto; }
}

/* ============ reveal ============ */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(46, 181, 2, .7);
  outline-offset: 3px;
}

/* ============ legal page ============ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px var(--pad-x) 100px;
}
.legal-page h1 { font-size: clamp(34px, 5vw, 50px); }
.legal-page h2 { font-size: 22px; margin-top: 2em; }
.legal-page p, .legal-page li { color: var(--text); font-size: 16px; }
.legal-page a { color: var(--green); font-weight: 600; }
