:root {
  color-scheme: light;
  --canvas: #f9f7ec;
  --canvas-soft: #eff4e1;
  --surface: rgba(255, 252, 238, 0.72);
  --surface-strong: rgba(255, 252, 238, 0.92);
  --ink: #0b0f0b;
  --muted: rgba(11, 15, 11, 0.62);
  --brand: #13451e;
  --brand-strong: #082813;
  --accent: #9fb65b;
  --hairline: rgba(19, 69, 30, 0.14);
  --shadow: rgba(8, 40, 19, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--canvas);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(159, 182, 91, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--canvas) 0%, var(--canvas-soft) 100%);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

.page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 56px) 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(56px, 10vw, 112px);
}

.wordmark {
  display: block;
  width: 132px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(36px, 7vw, 76px);
  align-items: end;
  min-height: 52vh;
}

.eyebrow,
.section-eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--brand-strong);
  color: #fffaf0;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 32px var(--shadow);
}

.button.secondary {
  background: var(--surface-strong);
  color: var(--brand-strong);
  border: 1px solid var(--hairline);
  box-shadow: none;
}

.preview-card {
  align-self: stretch;
  padding: 22px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 70px var(--shadow);
  backdrop-filter: blur(18px);
}

.preview-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.02;
}

.preview-card p {
  color: var(--muted);
  font-weight: 650;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.signal strong {
  color: var(--ink);
  font-size: 18px;
}

.content {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 16px 0 56px;
}

.content h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 8vw, 76px);
}

.content h2 {
  margin: 42px 0 10px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.08;
}

.content h3 {
  margin: 28px 0 8px;
  font-size: 20px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 17px;
  font-weight: 620;
}

.content ul {
  padding-left: 22px;
}

.policy-card,
.support-card {
  margin-top: 28px;
  padding: clamp(20px, 4vw, 32px);
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--hairline);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.support-card h3 {
  margin-top: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(64px, 10vw, 116px);
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 56px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .preview-card {
    max-width: 420px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .nav a {
    transition: color 180ms ease, transform 180ms ease, background 180ms ease;
  }

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