:root {
  --cream: #fffbf8;
  --sky: #b5def5;
  --sky-deep: #9ecfee;
  --pink: #f8c4d4;
  --pink-deep: #f0a8be;
  --brown: #5c4033;
  --brown-soft: #7a5c50;
  --gold: #ffd966;
  --mint: #b8e8d0;
  --lavender: #d8c8f5;
  --white: #ffffff;
  --shadow: rgba(92, 64, 51, 0.1);
  --glass: rgba(255, 255, 255, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
  font-family: "Fredoka", "Nunito", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Fluffy cloud backdrop */
.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    165deg,
    #d4ecfa 0%,
    #e8f4fc 18%,
    var(--cream) 50%,
    #ffe8f0 82%,
    #fff0f5 100%
  );
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 32px var(--shadow);
  opacity: 0.88;
  animation: drift 28s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 {
  width: 120px;
  height: 48px;
  top: 8%;
  left: -5%;
  animation-duration: 32s;
}
.cloud-1::before {
  width: 56px;
  height: 56px;
  top: -28px;
  left: 18px;
}
.cloud-1::after {
  width: 44px;
  height: 44px;
  top: -18px;
  right: 16px;
}

.cloud-2 {
  width: 160px;
  height: 56px;
  top: 18%;
  right: -8%;
  animation-delay: -8s;
  animation-duration: 38s;
}
.cloud-2::before {
  width: 72px;
  height: 72px;
  top: -36px;
  left: 28px;
}
.cloud-2::after {
  width: 52px;
  height: 52px;
  top: -22px;
  right: 24px;
}

.cloud-3 {
  width: 100px;
  height: 40px;
  bottom: 22%;
  left: 10%;
  animation-delay: -14s;
}
.cloud-3::before {
  width: 48px;
  height: 48px;
  top: -24px;
  left: 12px;
}
.cloud-3::after {
  width: 36px;
  height: 36px;
  top: -14px;
  right: 10px;
}

.cloud-4 {
  width: 140px;
  height: 50px;
  bottom: 12%;
  right: 5%;
  animation-delay: -20s;
  animation-duration: 42s;
}
.cloud-4::before {
  width: 64px;
  height: 64px;
  top: -32px;
  left: 22px;
}
.cloud-4::after {
  width: 48px;
  height: 48px;
  top: -20px;
  right: 18px;
}

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

.dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: twinkle 4s ease-in-out infinite;
}

.dot-1 {
  width: 10px;
  height: 10px;
  background: var(--gold);
  top: 12%;
  left: 42%;
}
.dot-2 {
  width: 8px;
  height: 8px;
  background: var(--pink);
  top: 28%;
  right: 38%;
  animation-delay: 1s;
}
.dot-3 {
  width: 9px;
  height: 9px;
  background: var(--mint);
  bottom: 35%;
  left: 28%;
  animation-delay: 2s;
}
.dot-4 {
  width: 7px;
  height: 7px;
  background: var(--lavender);
  bottom: 20%;
  right: 32%;
  animation-delay: 0.5s;
}

.spark {
  position: absolute;
  font-size: 1.1rem;
  opacity: 0.35;
  animation: twinkle 5s ease-in-out infinite;
  pointer-events: none;
}

.spark-1 {
  color: var(--gold);
  top: 22%;
  right: 18%;
}
.spark-2 {
  color: var(--pink-deep);
  bottom: 40%;
  left: 8%;
  animation-delay: 1.5s;
}
.spark-3 {
  color: var(--sky-deep);
  bottom: 28%;
  right: 12%;
  animation-delay: 0.8s;
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.2) rotate(12deg);
    opacity: 0.7;
  }
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 8px;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-size: 1.5rem;
  color: var(--brown);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--brown-soft);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.2s, background 0.2s;
}

.nav-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.85);
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 24px 0 56px;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 90vw);
  height: 320px;
  background: radial-gradient(
    ellipse at center,
    rgba(248, 196, 212, 0.45) 0%,
    rgba(181, 222, 245, 0.35) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-card,
.hero h1,
.hero .tagline,
.hero .eyebrow,
.hero .cta-row,
.choice-demo {
  position: relative;
  z-index: 1;
}

.hero-card {
  display: inline-block;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 250, 0.75));
  border-radius: 40px;
  box-shadow:
    0 20px 50px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  animation: bob 3.2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-card img {
  width: min(260px, 68vw);
  height: auto;
  border-radius: 28px;
  display: block;
}

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

.eyebrow {
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.1rem);
  margin-bottom: 14px;
  line-height: 1.12;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--brown-soft);
  max-width: 480px;
  margin: 0 auto 26px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brown) 0%, #c4925c 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(184, 130, 79, 0.32);
}

.btn-ghost {
  background: var(--glass);
  backdrop-filter: blur(8px);
  color: var(--brown);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 20px var(--shadow);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 16px 36px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Mini choice preview in hero */
.choice-demo {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 22px 22px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 36px var(--shadow);
  animation: bob 4s ease-in-out infinite;
  animation-delay: -1.5s;
}

.choice-demo-q {
  font-family: "Fredoka", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--brown);
}

.choice-demo-cards {
  display: flex;
  gap: 12px;
}

.pick {
  flex: 1;
  padding: 16px 12px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.25;
  box-shadow: 0 8px 20px var(--shadow);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pick-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.pick-a {
  background: linear-gradient(160deg, #a8d4f5 0%, #7eb8e8 100%);
  color: #2d4a5c;
}

.pick-b {
  background: linear-gradient(160deg, #f8b8cc 0%, #f098b0 100%);
  color: #5c3040;
}

.choice-demo:hover .pick-a {
  transform: translateY(-4px) rotate(-1deg);
}

.choice-demo:hover .pick-b {
  transform: translateY(-4px) rotate(1deg);
}

/* Sections */
.section {
  margin-top: 56px;
}

.section h2 {
  text-align: center;
  font-size: 1.85rem;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.card {
  border-radius: 28px;
  padding: 22px 22px 24px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px var(--shadow);
  transition: transform 0.25s;
}

.card:hover {
  transform: translateY(-4px);
}

.card.blue {
  background: linear-gradient(155deg, rgba(181, 222, 245, 0.85) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.card.pink {
  background: linear-gradient(155deg, rgba(248, 196, 212, 0.85) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.card.mint {
  background: linear-gradient(155deg, rgba(184, 232, 208, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.card.lavender {
  background: linear-gradient(155deg, rgba(216, 200, 245, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.card-emoji {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1;
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.card p {
  font-size: 0.95rem;
  color: var(--brown-soft);
  line-height: 1.55;
}

/* Steps */
.steps {
  text-align: center;
}

.step-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
}

.step-list li {
  flex: 1 1 200px;
  max-width: 240px;
  padding: 24px 20px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-num {
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-list strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.05rem;
  color: var(--brown);
}

.step-list li > span:last-child {
  font-size: 0.9rem;
  color: var(--brown-soft);
}

/* Quote band */
.quote-band {
  margin-top: 48px;
  padding: 32px 28px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 217, 102, 0.35) 0%,
    rgba(248, 196, 212, 0.3) 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.quote-band blockquote {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-band p {
  font-family: "Fredoka", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto;
}

.quote-band p::before {
  content: "\201C";
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
  color: var(--pink-deep);
  font-family: Georgia, serif;
}

.quote-band p::after {
  content: "\201D";
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.5rem;
  margin-left: 4px;
  color: var(--pink-deep);
  font-family: Georgia, serif;
}

.quote-band cite {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--brown-soft);
}

/* Download band — blended, not a white box */
.download {
  margin-top: 64px;
}

.download-inner {
  text-align: center;
  padding: 40px 28px 36px;
  border-radius: 36px;
  background: linear-gradient(
    135deg,
    rgba(181, 222, 245, 0.55) 0%,
    rgba(248, 196, 212, 0.45) 50%,
    rgba(255, 217, 102, 0.25) 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 40px var(--shadow);
  backdrop-filter: blur(12px);
}

.download h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.download-blurb {
  color: var(--brown-soft);
  max-width: 400px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
}

.download-foot {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--brown-soft);
}

.download-foot a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  text-align: center;
  margin-top: 56px;
  padding-top: 8px;
  color: var(--brown-soft);
  font-size: 0.92rem;
}

.footer-bear {
  font-family: "Fredoka", sans-serif;
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

footer a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Privacy page */
.page-legal {
  padding: 24px 0 64px;
}

.page-legal h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-legal .updated {
  color: var(--brown-soft);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.legal-block {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.legal-block h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.legal-block p,
.legal-block ul {
  color: var(--brown-soft);
  margin-bottom: 8px;
}

.legal-block ul {
  padding-left: 1.25rem;
}

.legal-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.legal-links a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .legal-block {
    padding: 20px;
  }

  .choice-demo-cards {
    flex-direction: column;
  }

  .step-list li {
    max-width: 100%;
  }
}
