:root {
  --background: hsl(80 25% 97%);
  --foreground: hsl(160 10% 15%);
  --card: #fff;
  --primary: hsl(152 44% 42%);
  --primary-foreground: #fff;
  --secondary: hsl(80 20% 92%);
  --muted-foreground: hsl(160 8% 32%);
  --accent: hsl(42 60% 90%);
  --accent-foreground: hsl(30 30% 25%);
  --border: hsl(80 15% 88%);
  --ring: hsl(152 44% 42%);
  --radius: 12px;
  --hero-gradient: linear-gradient(165deg, hsl(80 25% 97%) 0%, hsl(152 30% 94%) 50%, hsl(42 40% 95%) 100%);
  --shadow-soft: 0 2px 24px -4px hsl(152 44% 42% / 0.08);
  --shadow-card: 0 1px 12px -2px hsl(160 10% 15% / 0.06);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--background);
  color: var(--foreground);
}

h1, h2, h3, h4, h5, h6 { font-family: "Sora", sans-serif; margin: 0; }
a { color: inherit; }

.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  border-radius: 0.5rem;
  background: var(--foreground);
  color: #fff;
  padding: 0.6rem 0.9rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all .25s;
  background: transparent;
}
.nav.nav-scrolled {
  background: color-mix(in oklab, white 80%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
}
.pause-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid color-mix(in oklab, var(--primary) 30%, transparent);
  background: var(--primary);
  color: var(--primary-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pause-badge svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: .875rem;
  font-weight: 600;
}
.nav-links a { color: var(--muted-foreground); text-decoration: none; }
.nav-links a:hover { color: var(--foreground); }
.nav-links .btn-primary,
.nav-links .btn-primary:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.btn-primary {
  height: 36px;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
}
.btn-primary-lg {
  height: 48px;
  padding: 0 1.75rem;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}
.btn-subtle {
  height: 44px;
  padding: 0 1.5rem;
  border-radius: 999px;
  color: var(--muted-foreground);
  font-weight: 600;
}
.btn-subtle:hover { background: color-mix(in oklab, var(--card) 70%, transparent); }

.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--foreground);
  padding: .25rem;
  display: none;
}
.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 95%, transparent);
  backdrop-filter: blur(12px);
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: .5rem 0;
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 600;
  font-size: .875rem;
}
.mobile-menu .btn-primary { width: 100%; margin-top: .5rem; }

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: var(--hero-gradient);
}
.orb1, .orb2 { position: absolute; border-radius: 999px; filter: blur(48px); }
.orb1 { right: 10%; top: 80px; width: 18rem; height: 18rem; background: color-mix(in oklab, var(--primary) 10%, transparent); }
.orb2 { left: 5%; bottom: 80px; width: 14rem; height: 14rem; background: color-mix(in oklab, var(--accent) 60%, transparent); }
.hero-content { position: relative; z-index: 1; padding: 6rem 0 5rem; text-align: center; max-width: 48rem; margin: 0 auto; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--primary) 20%, transparent);
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  padding: .5rem 1rem;
  color: var(--primary);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); line-height: 1.1; margin-bottom: 1.5rem; }
.hero p { color: var(--muted-foreground); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.6; max-width: 42rem; margin: 0 auto 2.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.section { padding: 6rem 0; }
.section-soft { background: color-mix(in oklab, var(--secondary) 50%, white); }
.section-head { text-align: center; margin-bottom: 4rem; }
.tag {
  display: inline-block;
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 1rem;
}
.tag-primary { background: color-mix(in oklab, var(--primary) 10%, transparent); color: var(--primary); }
.tag-accent { background: var(--accent); color: var(--accent-foreground); }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted-foreground); max-width: 34rem; margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
.card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.icon-box svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.card p { color: var(--muted-foreground); margin: 0; line-height: 1.55; }

.inspire-wrap { max-width: 48rem; margin: 0 auto; text-align: center; }
blockquote { margin: 0 0 1rem; font-size: clamp(1.125rem, 2vw, 1.3rem); color: var(--muted-foreground); font-style: italic; line-height: 1.6; }
.muted-small { color: var(--muted-foreground); font-size: .875rem; }
.info-card {
  margin-top: 2.25rem;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  text-align: left;
}
.info-card p { line-height: 1.6; margin: 0; }
.info-card p + p { margin-top: 1rem; color: var(--muted-foreground); }

.waitlist { max-width: 28rem; margin: 0 auto; }
.form {
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 2rem;
}
.field { margin-bottom: 1.25rem; }
.field label { display: block; margin-bottom: .5rem; font-size: .9rem; font-weight: 600; }
.field input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: 0 .8rem;
  font: inherit;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin: .25rem 0 1.2rem;
}
.check input { margin-top: .2rem; }
.check span { color: var(--muted-foreground); font-size: .75rem; line-height: 1.45; }

.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 1.5rem; color: var(--muted-foreground); font-size: .9rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--foreground); }
.footer-note { color: var(--muted-foreground); font-size: .75rem; }

.page-main { padding-top: 6rem; padding-bottom: 4rem; }
.center-wrap {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp .65s ease forwards;
}
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
.delay-4 { animation-delay: .32s; }

.orb1 { animation: drift 8s ease-in-out infinite; }
.orb2 { animation: drift 10s ease-in-out infinite reverse; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
