@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Nunito:wght@500;600;700;800&display=swap");

:root {
  --bg: #f4f9ff;
  --bg-alt: #eaf4ff;
  --text: #1a3159;
  --muted: #49658f;
  --line: #bfd4f5;
  --brand: #2b7cff;
  --brand-dark: #1f5fd1;
  --aqua: #37c7de;
  --sun: #ffd76f;
  --coral: #ff9078;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, #fff7d9 0, transparent 28%),
    radial-gradient(circle at 90% 16%, #ddf4ff 0, transparent 32%),
    radial-gradient(circle at 15% 90%, #dff0ff 0, transparent 30%),
    linear-gradient(180deg, #f4f9ff 0%, #f1f8ff 48%, #f8fbff 100%);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  z-index: 100;
  border: 1px solid var(--line);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #c9daf7;
  background: rgb(244 249 255 / 86%);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.52rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -2px;
  height: 6px;
  background: linear-gradient(90deg, #72dfff, #7ca7ff);
  border-radius: 999px;
  opacity: 0.45;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: #e6f0ff;
  color: #224e9e;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background:
    radial-gradient(circle at 94% 26%, #fff3cc 0, transparent 26%),
    linear-gradient(180deg, #eaf4ff 0%, #eef9ff 100%);
  border-top: 1px solid #d5e4fb;
  border-bottom: 1px solid #d5e4fb;
}

.hero {
  padding-top: 4.2rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero::before {
  width: 260px;
  height: 260px;
  right: -85px;
  top: 30px;
  background: radial-gradient(circle, rgb(55 199 222 / 36%) 0%, rgb(55 199 222 / 0%) 72%);
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: -40px;
  background: radial-gradient(circle, rgb(255 215 111 / 30%) 0%, rgb(255 215 111 / 0%) 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.8rem;
  display: inline-block;
  border: 1px solid #ccddfa;
  background: #ffffff;
  box-shadow: 0 4px 10px rgb(56 102 190 / 11%);
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.22rem 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2959ac;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.45rem);
  margin: 0;
}

h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.22rem;
}

.subhead {
  margin: 1rem 0 1.6rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 0.95rem;
  text-decoration: none;
  font-weight: 800;
  padding: 0.78rem 1.06rem;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #5f9aff 100%);
  color: #fff;
  box-shadow: 0 10px 16px rgb(43 124 255 / 24%);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #326fdc 100%);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #f1f6ff;
}

.hero-card,
.steps article,
.two-col article,
.faq details,
.cols-3 li {
  border: 1px solid #ccdcf7;
  border-radius: 1.1rem;
  background: var(--card);
  box-shadow: 0 10px 24px rgb(42 86 168 / 8%);
}

.hero-card {
  padding: 1rem 1.1rem;
}

.hero-card ul,
.checklist {
  margin: 0;
  padding-left: 1.05rem;
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  list-style: none;
  padding-left: 0;
}

.cols-3 li {
  padding: 0.9rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.steps article,
.two-col article {
  padding: 1rem;
}

.steps span {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--aqua), #8de7f5);
  color: #184160;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.safety-copy {
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.waitlist-wrap {
  max-width: 700px;
}

.waitlist-form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.78rem;
  padding: 1rem;
  border: 1px solid #ccdcf7;
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 10px 24px rgb(42 86 168 / 8%);
}

.waitlist-form label {
  display: inline-block;
  margin-bottom: 0.28rem;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  border: 1px solid #b8cff3;
  border-radius: 0.8rem;
  padding: 0.74rem 0.82rem;
  font: inherit;
  background: #fff;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: 2px solid rgb(43 124 255 / 34%);
  border-color: #5d92f0;
}

.waitlist-form button {
  width: fit-content;
}

.form-status {
  margin: 0;
  min-height: 1.25rem;
  color: var(--muted);
  font-weight: 700;
}

.hp {
  position: absolute;
  left: -9999px;
}

.faq {
  display: grid;
  gap: 0.66rem;
}

.faq details {
  padding: 0.86rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 0.58rem 0 0;
  color: var(--muted);
}

footer {
  padding: 1.25rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal {
  max-width: 840px;
}

.legal p,
.legal li {
  color: var(--muted);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-card,
  .steps article,
  .two-col article,
  .cols-3 li,
  .waitlist-form,
  .faq details {
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .hero-card:hover,
  .steps article:hover,
  .two-col article:hover,
  .cols-3 li:hover,
  .faq details:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgb(42 86 168 / 14%);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .cols-3,
  .steps,
  .two-col,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .waitlist-form button {
    width: 100%;
  }

  .hero {
    padding-top: 3.2rem;
  }
}
