:root {
  --teal: #18c7b6;
  --teal-dark: #0fa493;
  --green: #306b33;
  --orange: #fa8c2f;
  --orange-dark: #ea7723;
  --ink: #143b35;
  --muted: #55706b;
  --bg: #f4fffb;
  --bg-2: #eafdf6;
  --card: #ffffff;
  --line: #e2f1ec;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(20, 59, 53, 0.1);
  --shadow-sm: 0 8px 24px rgba(20, 59, 53, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: Fredoka, Inter, sans-serif;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.5px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.grad {
  background: linear-gradient(100deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(120deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(24, 199, 182, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(24, 199, 182, 0.45);
}

.btn--ghost {
  background: rgba(24, 199, 182, 0.12);
  color: var(--teal-dark);
  padding: 10px 18px;
  font-size: 15px;
}

.btn--ghost:hover {
  background: rgba(24, 199, 182, 0.2);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 5vw, 56px);
  background: rgba(244, 255, 251, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Fredoka, sans-serif;
  font-weight: 700;
}

.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand__name {
  font-size: 22px;
  color: var(--ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 15px;
}

.nav__links a:not(.btn):hover {
  color: var(--teal-dark);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 90px) clamp(16px, 5vw, 56px);
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: 0;
}

.hero__blob--1 {
  width: 420px;
  height: 420px;
  background: #b8f5ec;
  top: -120px;
  right: -80px;
}

.hero__blob--2 {
  width: 360px;
  height: 360px;
  background: #ffe0bf;
  bottom: -140px;
  left: -100px;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
}

.hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 520px;
  margin: 20px 0 28px;
}

/* ---------- WAITLIST FORM ---------- */
.waitform {
  display: flex;
  gap: 10px;
  max-width: 480px;
  background: #fff;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.waitform input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: inherit;
  padding: 10px 16px;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}

.waitform input::placeholder {
  color: #9bb3ac;
}

.hero__note,
.cta__note {
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0 0;
}

.hero__stats {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-family: Fredoka, sans-serif;
  font-size: 26px;
  color: var(--teal-dark);
}

.hero__stats span {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- HERO ART ---------- */
.hero__art {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.dino-card {
  position: relative;
  width: min(360px, 90%);
  background: linear-gradient(160deg, #ffffff, #f0fbf7);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

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

.dino-card__img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 24px rgba(234, 119, 35, 0.25));
}

.dino-card__bubble {
  position: absolute;
  top: 18px;
  right: -10px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 16px 16px 4px 16px;
  box-shadow: var(--shadow-sm);
}

.dino-card__xp {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 16px;
}

.dino-card__xp span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.bar {
  height: 10px;
  background: #e9f6f1;
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 999px;
}

/* ---------- STRIP ---------- */
.strip {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  text-align: center;
  padding: 22px 16px;
}

.strip p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 17px);
}

.strip b {
  color: var(--ink);
}

/* ---------- SECTIONS ---------- */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) clamp(16px, 5vw, 56px);
}

.section--alt {
  background: var(--bg-2);
  max-width: none;
  margin: 0;
}

.section--alt .steps,
.section--alt .section__head {
  max-width: 1180px;
  margin-inline: auto;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 12px;
}

.section__head h2 {
  font-size: clamp(28px, 4.5vw, 42px);
}

.section__head p {
  color: var(--muted);
  font-size: 17px;
  margin: 14px 0 0;
}

/* ---------- FEATURES GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feat__icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  border-radius: 16px;
  margin-bottom: 16px;
}

.feat h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feat p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.step__num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-family: Fredoka, sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
}

/* ---------- CTA ---------- */
.cta {
  padding: clamp(40px, 8vw, 80px) clamp(16px, 5vw, 56px);
}

.cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #143b35, #0c5b50);
  color: #fff;
  border-radius: 32px;
  padding: clamp(36px, 6vw, 64px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta__inner::before {
  content: "🦕";
  position: absolute;
  font-size: 180px;
  right: -30px;
  bottom: -50px;
  opacity: 0.08;
}

.cta__inner h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.cta__inner p {
  color: #cfeae3;
  max-width: 520px;
  margin: 14px auto 28px;
}

.waitform--big {
  margin: 0 auto;
  max-width: 520px;
}

.cta__note {
  color: #a9d6cc;
}

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  padding: 48px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}

.footer__brand img {
  width: 30px;
  height: 30px;
}

.footer p {
  margin: 4px 0;
  font-size: 14px;
}

.footer__small {
  font-size: 13px;
  opacity: 0.8;
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 80px);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 100;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__lead {
    margin-inline: auto;
  }
  .waitform {
    margin-inline: auto;
  }
  .hero__stats {
    justify-content: center;
  }
  .hero__art {
    order: -1;
    margin-bottom: 12px;
  }
  .grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .nav__links a:not(.btn) {
    display: none;
  }
  .waitform {
    flex-direction: column;
    border-radius: 22px;
    padding: 12px;
  }
  .waitform .btn {
    width: 100%;
  }
  .grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    gap: 18px;
  }
}
