:root {
  --navy: #1b2b4b;
  --navy-2: #2a3f6b;
  --gold: #ffd700;
  --paper: #f7f3e8;
  --ink: #182033;
  --muted: #657089;
  --line: rgba(27, 43, 75, 0.14);
  --amber: #fff0c2;
  --amber-strong: #af6b00;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffaf0;
  line-height: 1.5;
}

a { color: inherit; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 24px;
  color: white;
  background: var(--navy);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
}

.site-header nav, .site-footer nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-link {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  place-items: center;
  padding: 72px 20px 88px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 215, 0, 0.18), transparent 26%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
}

.hero-inner { max-width: 840px; }

.jar {
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1.08rem, 2.3vw, 1.4rem);
}

.hero small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

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

.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-light { color: var(--navy); background: white; }
.button-gold, button { color: var(--navy); background: var(--gold); }
.button-navy { color: white; background: var(--navy); }

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--amber-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2, .waitlist-layout h2, .legal h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.how, .features, .waitlist-section { padding: 88px 0; }

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.path, .feature-grid article, .waitlist-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 48px rgba(27, 43, 75, 0.08);
}

.path { padding: 28px; }

.path h3, .feature-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
}

.lead {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding-left: 50px;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
  content: counter(steps);
}

.steps strong, .steps span { display: block; }
.steps span { color: var(--muted); }

.features { background: var(--paper); }

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

.feature-grid article { padding: 24px; }
.feature-grid span { font-size: 2rem; }
.feature-grid p { color: var(--muted); margin-bottom: 0; }

.blocked-banner {
  padding: 34px 0;
  background: var(--amber);
  border-bottom: 1px solid rgba(175, 107, 0, 0.24);
}

.blocked-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.blocked-banner h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.blocked-actions {
  display: grid;
  gap: 10px;
}

.blocked-actions a {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.state-waitlist-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 250px 140px;
  gap: 12px;
  align-items: end;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.state-waitlist-form p { grid-column: 1 / -1; margin: 0; }

.waitlist-section { background: white; }

.waitlist-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.download-note { color: var(--muted); font-weight: 700; }

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input, select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(27, 43, 75, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.form-message.error { color: #a32020; }

.waitlist-form small { color: var(--muted); }

.site-footer {
  padding: 42px 0;
  color: white;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.site-footer nav {
  align-items: flex-start;
  flex-direction: column;
}

.site-footer h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.legal-header {
  padding: 18px 24px;
  color: white;
  background: var(--navy);
}

.legal-header a { font-weight: 800; text-decoration: none; }

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 20px 80px;
  background: #fffaf0;
}

.legal h2 {
  margin-top: 34px;
  color: var(--navy);
}

@media (max-width: 820px) {
  .site-header { padding: 0 14px; }
  .nav-link { padding: 8px 10px; }
  .path-grid, .feature-grid, .blocked-grid, .waitlist-layout, .footer-grid { grid-template-columns: 1fr; }
  .state-waitlist-form { grid-template-columns: 1fr; }
  .how, .features, .waitlist-section { padding: 64px 0; }
}
