/* --------------------------------------------------
  Base & Reset
-------------------------------------------------- */
:root {
  --bg: #ffffff;
  --text: #222222;
  --accent: #007aff;
  --card: #f2f2f2;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
}
a {
  color: var(--accent);
  text-decoration: none;
}

/* --------------------------------------------------
  Layout Utilities
-------------------------------------------------- */
.section {
  padding: 72px 16px;
}
.section.alt {
  background: var(--card);
}
.container {
  max-width: 960px;
  margin: 0 auto;
}

/* --------------------------------------------------
  Typography
-------------------------------------------------- */
h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.subhead {
  font-size: 1.25rem;
  margin-bottom: 32px;
}

/* --------------------------------------------------
  Hero
-------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  background: url('hero-dots.svg') center/contain no-repeat;
}

/* --------------------------------------------------
  Buttons
-------------------------------------------------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn:hover {
  background: #005ec1;
}

/* --------------------------------------------------
  Lists & Cards
-------------------------------------------------- */
.bullets {
  list-style: none;
  display: grid;
  gap: 12px;
}
.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.banner {
  text-align: center;
  font-weight: 600;
}

/* --------------------------------------------------
  Wait‑list Form
-------------------------------------------------- */
.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.waitlist-form input[type='email'] {
  flex: 1 1 240px;
  padding: 14px;
  border: 1px solid var(--card);
  border-radius: 6px;
  font-family: var(--font-body);
}
.waitlist-form .hp {
  display: none;
}
.waitlist-form button {
  flex: 0 0 auto;
}
.consent {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 8px;
}

/* --------------------------------------------------
  Footer
-------------------------------------------------- */
.footer {
  font-size: 0.875rem;
  text-align: center;
}

/* --------------------------------------------------
  Reveal Animation
-------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }
}
