:root {
  --indigo: #4b4bad;
  --indigo-dark: #373482;
  --indigo-light: #eeedfe;
  --indigo-soft: #afa9ec;
  --indigo-muted: #7168d0;
  --cream: #f5f0eb;
  --cream-dark: #ede8e2;
  --navy: #1e1b4b;
  --gray: #64608f;
  --border: #c8c4e8;
  --white: #faf8f4;
  --green: #78d991;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 40px);
  background: rgb(245 240 235 / 90%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-logo,
.footer-logo {
  color: var(--indigo);
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-cta,
.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 18px;
  border: 1px solid var(--indigo);
  border-radius: 999px;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-cta:hover,
.section-cta:hover {
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 118px 24px 72px;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  position: absolute;
  top: -160px;
  left: 50%;
  width: min(760px, 95vw);
  height: min(760px, 95vw);
  background: radial-gradient(circle, rgb(75 75 173 / 12%) 0%, rgb(75 75 173 / 3%) 45%, transparent 72%);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.hero > * {
  position: relative;
}

.hero-art {
  width: clamp(150px, 28vw, 230px);
  aspect-ratio: 1;
  margin-bottom: 26px;
  animation: float 4.5s ease-in-out infinite;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-eyebrow,
.section-eyebrow {
  margin: 0 0 16px;
  color: var(--indigo-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.safety-title,
.final-title {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.1;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(44px, 9vw, 78px);
}

.hero-title em {
  color: var(--indigo);
}

.hero-sub,
.section-sub,
.safety-sub,
.final-sub {
  max-width: 540px;
  margin: 20px auto 0;
  color: var(--gray);
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.7;
}

.launch-badge {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 28px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--indigo);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.launch-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.waitlist-block {
  width: 100%;
  margin-top: 32px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  width: min(100%, 460px);
  margin: 0 auto;
}

.waitlist-input {
  min-width: 0;
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.waitlist-input::placeholder {
  color: var(--indigo-soft);
}

.waitlist-input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgb(75 75 173 / 12%);
}

.waitlist-btn {
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--indigo);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, transform 120ms ease;
}

.waitlist-btn:hover {
  background: var(--indigo-dark);
}

.waitlist-btn:active {
  transform: scale(0.98);
}

.form-note {
  margin: 12px 0 0;
  color: var(--indigo-soft);
  font-size: 12px;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.proof-avs {
  display: flex;
}

.proof-av {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: -8px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.proof-av:nth-child(2) {
  background: var(--indigo-muted);
}

.proof-av:nth-child(3) {
  background: var(--indigo-soft);
}

.proof-av:nth-child(4) {
  background: var(--gray);
}

.proof-text {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.proof-text strong {
  color: var(--navy);
}

.problem-section,
.how-section,
.safety-section,
.nj-section,
.final-cta {
  padding: 96px 24px;
  text-align: center;
}

.problem-section,
.nj-section {
  background: var(--cream-dark);
}

.section-title,
.safety-title {
  max-width: 640px;
  margin-inline: auto;
  font-size: clamp(30px, 5vw, 46px);
}

.section-sub,
.safety-sub {
  margin-bottom: 52px;
}

.three-cols,
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-card,
.safety-card {
  border-radius: 8px;
  text-align: left;
}

.problem-card {
  padding: 30px 24px;
  border: 1px solid var(--border);
  background: var(--white);
}

.problem-num {
  margin: 0 0 8px;
  color: var(--indigo);
  font-family: "DM Serif Display", serif;
  font-size: 52px;
  line-height: 1;
}

.problem-label,
.safety-card-title,
.step-title {
  margin: 0;
}

.problem-label {
  margin-bottom: 10px;
  color: var(--indigo-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-desc,
.step-desc,
.safety-card-desc {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--indigo-light);
  color: var(--indigo);
  font-family: "DM Serif Display", serif;
  font-size: 20px;
}

.step-title {
  color: var(--navy);
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  font-weight: 400;
}

.safety-section {
  background: var(--indigo);
}

.safety-section .section-eyebrow,
.safety-sub {
  color: var(--indigo-soft);
}

.safety-title {
  color: var(--white);
}

.safety-card {
  padding: 24px 20px;
  border: 1px solid rgb(255 255 255 / 16%);
  background: rgb(255 255 255 / 8%);
}

.safety-card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 28px;
  margin-bottom: 14px;
  padding: 0 8px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.safety-card-title {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
}

.safety-card-desc {
  color: var(--indigo-soft);
  font-size: 13px;
}

.nj-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--indigo-light);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 700;
}

.section-cta {
  min-height: 46px;
  padding-inline: 28px;
}

.final-title {
  max-width: 650px;
  margin-inline: auto;
  font-size: clamp(34px, 6vw, 58px);
}

.final-sub {
  margin-bottom: 36px;
}

.social-link {
  display: inline-block;
  margin-top: 34px;
  border-bottom: 1px solid var(--border);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo,
.footer-tagline,
.footer-note {
  margin: 0;
}

.footer-tagline {
  margin-top: 6px;
  color: var(--gray);
  font-size: 13px;
  font-style: italic;
}

.footer-note {
  margin-top: 16px;
  color: var(--indigo-soft);
  font-size: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot {
  position: absolute;
  left: -5000px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

@media (max-width: 820px) {
  .three-cols,
  .steps,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .safety-card {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .site-nav {
    padding: 14px 20px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-btn {
    width: 100%;
  }

  .hero {
    padding: 100px 20px 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
