:root {
  --text: #1a1f1c;
  --muted: #5c6560;
  --bg: #f7f8f6;
  --accent: #1f6b4a;
  --max-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Figtree", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, #e4efe8 0%, transparent 55%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero {
  padding: 4rem 0 5rem;
}

.logo {
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero h1 {
  margin: 0 auto 1.25rem;
  max-width: 18ch;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.support {
  margin: 0 auto 2.5rem;
  max-width: 38rem;
  font-size: 1.125rem;
  color: var(--muted);
}

.cta {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: 4px;
  text-decoration: none;
}

.cta:hover {
  text-decoration: none;
  filter: brightness(1.08);
}

.sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 0;
  border-top: 1px solid #d9e4e0;
  border-bottom: 1px solid #d9e4e0;
}

.sections h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.access {
  padding: 5rem 0 2rem;
  text-align: center;
}

.access h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.access-note {
  margin: 0 auto 2.5rem;
  max-width: 28rem;
  color: var(--muted);
}

.access-form {
  display: grid;
  gap: 1.25rem;
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}

.access-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

.access-form input,
.access-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  border: 1px solid #c9d5cf;
  border-radius: 4px;
}

.access-form input:focus,
.access-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.access-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.access-form .cta {
  justify-self: center;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.footer {
  padding: 4rem 0 2rem;
}

.privacy,
.disclaimer,
.contact {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.privacy {
  margin-bottom: 0.75rem;
}

.disclaimer {
  margin-bottom: 2rem;
}

.contact {
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 700px) {
  .page {
    width: min(100% - 1.5rem, var(--max-width));
    padding: 3rem 0 2.5rem;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .sections {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 3rem 0;
  }

  .access {
    padding: 3.5rem 0 1.5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }
}
