:root {
  --paper: #f3f1e8;
  --white: #fffdf7;
  --ink: #153329;
  --fairway: #143d2b;
  --pin: #d8ff62;
  --sand: #e9dfca;
  --coral: #ff765f;
  --mist: #dce8df;
  --muted: #6c7d73;
  --line: #d7ddd4;
  --display: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--pin);
  color: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand img { width: 32px; height: 32px; }

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover, .site-nav a:focus-visible { text-decoration: underline; text-underline-offset: 5px; }

.nav-pill {
  padding: 9px 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding: clamp(64px, 9vw, 108px) clamp(28px, 7vw, 86px);
  background: var(--fairway);
  color: var(--white);
  border-radius: 34px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/contours.svg") center / cover no-repeat;
  pointer-events: none;
}

.hero-copy, .phone-wrap { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--pin);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

h1 { max-width: 690px; font-size: clamp(64px, 8.6vw, 124px); }

h2 { font-size: clamp(46px, 6vw, 78px); }

h3 { font-size: 31px; line-height: 1.05; }

.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #c9d7ce;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary { border-color: var(--pin); background: var(--pin); color: var(--ink); }

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

.launch-note { margin: 18px 0 0; color: #9eb2a5; font-size: 13px; }

.phone-wrap { display: flex; justify-content: center; perspective: 1200px; }

.phone {
  width: min(360px, 100%);
  padding: 10px;
  background: #0c2119;
  border: 1px solid rgba(216,255,98,.25);
  border-radius: 46px;
  box-shadow: 0 34px 80px rgba(0,0,0,.36);
  transform: rotate(3deg);
}

.phone img { width: 100%; aspect-ratio: 944 / 2048; object-fit: cover; object-position: top; border-radius: 38px; }

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.ticker div { padding: 24px; background: var(--white); }
.ticker strong { display: block; font-family: var(--display); font-size: 28px; font-weight: 500; }
.ticker span { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: clamp(92px, 12vw, 150px) 0; }

.section-heading {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 60px;
}

.section-heading p { max-width: 620px; margin: 0; color: var(--muted); font-size: 19px; }

.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }

.feature-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.feature-card:nth-child(1) { grid-column: span 7; background: var(--sand); }
.feature-card:nth-child(2) { grid-column: span 5; }
.feature-card:nth-child(3) { grid-column: span 5; background: var(--mist); }
.feature-card:nth-child(4) { grid-column: span 7; background: var(--fairway); color: var(--white); }

.card-number { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.feature-card:last-child .card-number { color: var(--pin); }
.feature-card p { max-width: 540px; margin: 20px 0 0; color: var(--muted); }
.feature-card:last-child p { color: #bfd0c5; }

.privacy-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: clamp(56px, 8vw, 90px);
  background: var(--ink);
  color: var(--white);
  border-radius: 30px;
}

.privacy-strip p { color: #bfd0c5; }

.privacy-points { display: grid; gap: 16px; }
.privacy-point { display: grid; grid-template-columns: 34px 1fr; align-items: start; gap: 12px; }
.privacy-point span { color: var(--pin); font-weight: 900; }
.privacy-point p { margin: 0; }

.final-cta { text-align: center; }
.final-cta h2 { max-width: 760px; margin-inline: auto; }
.final-cta p { max-width: 610px; margin: 24px auto 30px; color: var(--muted); font-size: 19px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  padding: 44px 0 52px;
  border-top: 1px solid var(--line);
}

.footer-copy p { max-width: 460px; margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.footer-links a { color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

.legal-hero { padding: clamp(70px, 10vw, 120px) 0 56px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 900px; font-size: clamp(56px, 8vw, 100px); }
.legal-hero .lede { max-width: 720px; margin: 26px 0 0; color: var(--muted); font-size: 20px; }
.legal-meta { margin-top: 24px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: clamp(48px, 9vw, 110px);
  padding: 70px 0 130px;
}

.legal-toc { position: sticky; top: 24px; align-self: start; }
.legal-toc p { margin: 0 0 14px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.legal-toc a { display: block; padding: 6px 0; color: var(--muted); font-size: 14px; text-decoration: none; }
.legal-toc a:hover { color: var(--ink); }

.legal-copy section { scroll-margin-top: 30px; }
.legal-copy section + section { margin-top: 58px; padding-top: 58px; border-top: 1px solid var(--line); }
.legal-copy h2 { font-size: 38px; line-height: 1.1; }
.legal-copy h3 { margin-top: 30px; font-family: var(--sans); font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.legal-copy p, .legal-copy li { color: #41584f; }
.legal-copy ul { padding-left: 22px; }
.legal-copy li + li { margin-top: 10px; }
.legal-copy a { font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.support-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.support-card h2 { font-size: 31px; }
.support-card p { margin-bottom: 0; color: var(--muted); }
.support-card.wide { grid-column: 1 / -1; background: var(--fairway); color: var(--white); }
.support-card.wide p { color: #bfd0c5; }
.support-card.wide a { color: var(--pin); }

.callout { margin: 32px 0; padding: 22px 24px; background: var(--sand); border-left: 4px solid var(--coral); border-radius: 0 16px 16px 0; }
.callout p { margin: 0; }

@media (max-width: 850px) {
  .site-nav a:not(.nav-pill) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .phone { width: 300px; transform: none; }
  .ticker { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .privacy-strip, .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .section-heading { align-items: start; }
  .feature-card:nth-child(n) { grid-column: span 12; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 24px, 1180px); }
  .site-header { min-height: 72px; }
  .nav-pill { padding: 8px 12px; }
  .hero { padding: 58px 20px 36px; border-radius: 24px; }
  h1 { font-size: 58px; }
  .hero-lede { font-size: 17px; }
  .ticker div { padding: 18px; }
  .section { padding: 84px 0; }
  .feature-card { min-height: 270px; padding: 25px; }
  .privacy-strip { padding: 40px 24px; gap: 38px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card.wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .button:hover { transform: none; }
}
