/* =========================================
   EngJoy — Brand styles
   Palette:
     Navy   #222663
     Yellow #f6bb58
     Orange #ee6c51
     Green  #3cc46d
   ========================================= */

:root{
  --navy:   #222663;
  --navy-2: #2d3380;
  --yellow: #f6bb58;
  --orange: #ee6c51;
  --green:  #3cc46d;
  --cream:  #fff8ec;
  --paper:  #fffdf8;
  --ink:    #1a1d4a;
  --ink-2:  #4d5180;
  --line:   rgba(34,38,99,.10);
  --shadow-sm: 0 6px 18px rgba(34,38,99,.08);
  --shadow-md: 0 18px 40px rgba(34,38,99,.14);
  --shadow-lg: 0 32px 70px rgba(34,38,99,.18);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --font-display: 'Fredoka', system-ui, -apple-system, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  margin:0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img{ max-width: 100%; display:block; }
a{ color: var(--navy); text-decoration: none; }
button{ font: inherit; cursor: pointer; }
h1,h2,h3,h4{ font-family: var(--font-display); color: var(--navy); margin:0 0 .4em; line-height:1.1; letter-spacing:-.01em;}
h1{ font-size: clamp(2.4rem, 5.6vw, 4.5rem); font-weight: 700; }
h2{ font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; }
h3{ font-size: 1.25rem; font-weight: 600; }
p{ margin: 0 0 1em; color: var(--ink-2); }
em{ font-style: normal; color: var(--orange); font-weight: 700; }

.container{ width: min(1180px, 92%); margin-inline: auto; }

/* Floating background blobs */
.bg-blobs{
  position: fixed; inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.blob-1{ width: 380px; height: 380px; background: var(--yellow); top: -100px; left: -120px; }
.blob-2{ width: 340px; height: 340px; background: var(--orange); top: 30%; right: -120px; opacity: .25;}
.blob-3{ width: 460px; height: 460px; background: var(--green); bottom: -160px; left: 30%; opacity: .22;}
.blob-4{ width: 280px; height: 280px; background: var(--navy); top: 10%; left: 45%; opacity: .08;}

/* ==== HEADER ==== */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 248, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row{
  display: flex; align-items: center; gap: 28px;
  padding: 14px 0;
}
.logo{ display: inline-flex; align-items: center; }
.logo img{
  height: 40px;
  width: auto;
  max-width: 160px;
  transition: transform .2s ease;
}
.logo:hover img{ transform: scale(1.04) rotate(-1deg); }
.primary-nav{ display: flex; gap: 28px; margin-left: auto; }
.primary-nav a{
  font-weight: 700; color: var(--navy); font-size: .98rem;
  position: relative;
}
.primary-nav a::after{
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 3px; border-radius: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover::after{ transform: scaleX(1); }
.nav-cta{ margin-left: 0; }
.nav-toggle{
  display: none;
  background: transparent; border: 0; padding: 6px;
}
.nav-toggle span{
  display:block; width: 26px; height: 3px; border-radius: 3px;
  background: var(--navy); margin: 5px 0;
  transition: transform .25s, opacity .25s;
}

/* ==== BUTTONS ==== */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-family: var(--font-body);
  text-decoration: none;
  border: 0;
  font-size: .98rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 28px rgba(238, 108, 81, .35), inset 0 -3px 0 rgba(0,0,0,.12);
}
.btn-primary:hover{ transform: translateY(-2px); background: #ff7a5e; }
.btn-ghost{
  background: rgba(34,38,99,.06);
  color: var(--navy);
}
.btn-ghost:hover{ background: rgba(34,38,99,.12); transform: translateY(-2px); }
.btn-lg{ padding: 16px 26px; font-size: 1.05rem; }
.btn-xl{ padding: 18px 30px; font-size: 1.15rem; }
.btn-block{ display: flex; justify-content: center; width: 100%; }

/* ==== HERO ==== */
.hero{
  padding: 56px 0 0;
  position: relative;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap: 10px;
  background: #fff;
  color: var(--navy);
  font-weight: 800; font-size: .85rem; letter-spacing: .02em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot{
  width:8px; height:8px; border-radius:50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(60, 196, 109, .25);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(60, 196, 109, .25); }
  50%{ box-shadow: 0 0 0 8px rgba(60, 196, 109, .12); }
}
.hero-copy h1{ margin-top: 18px; }
.hl-yellow{ background: linear-gradient(180deg, transparent 60%, rgba(246,187,88,.55) 60%); padding: 0 4px; }
.hl-orange{ color: var(--orange); }
.hl-green{ color: var(--green); }
.lede{ font-size: 1.12rem; max-width: 560px; }
.hero-ctas{ display: flex; gap: 12px; margin: 24px 0 24px; flex-wrap: wrap; }
.hero-trust{
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 8px;
  font-weight: 600; color: var(--navy);
  font-size: .98rem;
}
.hero-trust .tick{
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: .8rem; margin-right: 10px;
}

/* Hero visual */
.hero-visual{ position: relative; height: 100%; min-height: 460px; }
.hero-stage{
  position: relative; width: 100%; height: 100%;
  display: grid; place-items: center;
}
.stage-card{
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stage-card-main{
  width: min(440px, 100%);
  transform: rotate(-2deg);
}
.screen{
  background: linear-gradient(160deg, #fff8ec 0%, #fff 100%);
}
.screen-top{
  display:flex; align-items:center; gap:6px;
  padding: 10px 14px;
  background: #f4f1ea;
}
.screen-top .dot{ width:10px; height:10px; border-radius: 50%; background: #ddd; }
.screen-top .dot.red{ background:#ee6c51; }
.screen-top .dot.amber{ background:#f6bb58; }
.screen-top .dot.green{ background:#3cc46d; }
.screen-title{
  margin-left: 10px; font-size: .8rem; font-weight: 700; color: var(--ink-2);
}
.screen-body{
  padding: 28px 24px 26px;
  display: grid; gap: 16px;
  position: relative;
}
.character-big{
  width: 110px; height: 110px;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(238, 108, 81, .32);
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
.speech{
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px 18px 18px 4px;
  font-size: .95rem;
  line-height: 1.45;
  position: relative;
}
.kid-tiles{
  display: flex; justify-content: center; gap: 10px;
  margin-top: 4px;
}
.kid{
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.kid-1{ background: var(--green); }
.kid-2{ background: var(--orange); }
.kid-3{ background: var(--yellow); color: var(--navy); }
.kid-4{ background: var(--navy); }

/* Brand badge floating near hero card */
.brand-badge{
  position: absolute;
  width: 110px;
  height: 110px;
  bottom: 10%;
  right: 0;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  transform: rotate(8deg);
  animation: floaty 7s ease-in-out infinite;
  z-index: 3;
}

/* Floating emojis in hero */
.float{
  position: absolute;
  font-size: 2rem;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.12));
  animation: floaty 6s ease-in-out infinite;
}
.float-1{ top:  4%; left: 6%; animation-delay: 0s; }
.float-2{ top: 14%; right: 6%; animation-delay: 1.2s; font-size: 1.6rem; }
.float-3{ bottom: 16%; left: 0%; animation-delay: 2.5s; }
.float-4{ bottom:  4%; right: 8%; animation-delay: .8s; }
.float-5{ top: 50%; right: 0%; animation-delay: 1.7s; font-size: 1.7rem; }
@keyframes floaty{
  0%,100%{ transform: translateY(0) rotate(-4deg); }
  50%{ transform: translateY(-18px) rotate(6deg); }
}

/* Marquee */
.marquee{
  margin-top: 64px;
  background: var(--navy);
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
  transform: rotate(-1.2deg);
  margin-inline: -3vw;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--orange);
}
.marquee-track{
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: scroll-left 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.marquee-track span{ display: inline-block; }
@keyframes scroll-left{
  to{ transform: translateX(-50%); }
}

/* ==== Sections shared ==== */
section{ padding: 96px 0; position: relative; }
.section-head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-sub{
  font-size: 1.1rem;
  color: var(--ink-2);
  margin-top: 8px;
}
.kicker{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.kicker-orange{ background: rgba(238,108,81,.14); color: var(--orange); }
.kicker-green{ background: rgba(60,196,109,.16); color: #1f9b4f; }
.kicker-yellow{ background: rgba(246,187,88,.22); color: #b07712; }
.kicker-navy{ background: rgba(34,38,99,.10); color: var(--navy); }

/* ==== PROBLEM ==== */
.problem{ background: linear-gradient(180deg, transparent, rgba(255,248,236,.7)); }
.problem-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.problem-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.problem-emoji{
  font-size: 2.6rem;
  margin-bottom: 14px;
}
.problem-promise{
  margin-top: 56px;
  background: var(--navy);
  color: #fff;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  text-align: center;
  font-size: 1.15rem;
  position: relative;
  overflow: hidden;
}
.problem-promise::before, .problem-promise::after{
  content: ''; position: absolute; border-radius: 50%;
}
.problem-promise::before{
  width: 120px; height: 120px; background: var(--orange); opacity:.4;
  top:-40px; left:-40px;
}
.problem-promise::after{
  width: 160px; height: 160px; background: var(--yellow); opacity:.35;
  bottom:-60px; right:-50px;
}
.problem-promise p{ color: #fff; margin: 0; position: relative; z-index: 1; }
.problem-promise strong{ color: var(--yellow); }
.problem-promise em{ color: var(--green); }

/* ==== HOW IT WORKS ==== */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step{
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 22px 26px;
  position: relative;
  border: 1px solid var(--line);
  transition: transform .25s ease;
}
.step:nth-child(1){ background: linear-gradient(180deg, #fff, #fff8ec); }
.step:nth-child(2){ background: linear-gradient(180deg, #fff, #f0fbf4); }
.step:nth-child(3){ background: linear-gradient(180deg, #fff, #fff1ec); }
.step:nth-child(4){ background: linear-gradient(180deg, #fff, #f0eefa); }
.step:hover{ transform: translateY(-6px); }
.step-num{
  position: absolute; top: -18px; left: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(34,38,99,.3);
}
.step-icon{ font-size: 2.2rem; margin: 8px 0 10px; }
.step h3{ margin-bottom: 8px; }
.step p{ font-size: .96rem; margin: 0; }

.how-extra{
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.how-extra-card{
  display: flex; gap: 18px;
  padding: 28px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  align-items: flex-start;
}
.how-icon{ font-size: 2.2rem; }
.how-extra-card h4{ font-size: 1.15rem; margin-bottom: 4px; }
.how-extra-card p{ margin: 0; font-size: .96rem; }

/* ==== CHARACTERS ==== */
.characters{ background: linear-gradient(180deg, rgba(255,248,236,.5), transparent); }
.char-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.char-card{
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-sm);
}
.char-card:hover{
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-md);
}
.char-illustration{
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  position: relative;
}
.char-illustration::before{
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  opacity: .25; transform: scale(1.15);
}
.char-illustration img{ width: 80%; height: 80%; object-fit: contain; position: relative; }
.char-card-orange .char-illustration{ background: rgba(238,108,81,.14); }
.char-card-yellow .char-illustration{ background: rgba(246,187,88,.22); }
.char-card-green  .char-illustration{ background: rgba(60,196,109,.16); }
.char-card-navy   .char-illustration{ background: rgba(34,38,99,.10); }
.char-role{
  font-weight: 700; color: var(--orange); margin: 0 0 10px;
  font-size: .92rem;
}
.char-card-yellow .char-role{ color: #b07712; }
.char-card-green  .char-role{ color: #1f9b4f; }
.char-card-navy   .char-role{ color: var(--navy); }
.char-bio{
  font-size: .94rem; margin: 0 0 14px; color: var(--ink-2);
}
.char-tag{
  display: inline-block;
  font-size: .78rem; font-weight: 800; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(34,38,99,.08); color: var(--navy);
}
.char-note{
  text-align: center;
  margin-top: 36px;
  font-weight: 600;
  color: var(--ink-2);
}

/* ==== PARENTS ==== */
.parents-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.parents-list{
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 18px;
}
.parents-list li{
  display: flex; gap: 14px; align-items: flex-start;
}
.check-pill{
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  margin-top: 2px;
}
.parents-list strong{ color: var(--navy); display:block; font-size: 1.05rem; }
.parents-list p{ margin: 4px 0 0; font-size: .96rem; }

.phone-wrap{ display: grid; place-items: center; }
.phone{
  width: 290px;
  background: var(--navy);
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(2deg);
}
.phone-notch{
  width: 100px; height: 22px;
  background: var(--navy);
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.phone-screen{
  background: linear-gradient(180deg, #fff, #fff8ec);
  border-radius: 32px;
  padding: 36px 22px 22px;
  display: grid; gap: 14px;
}
.phone-header{
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.phone-header img{ width: 38px; height: 38px; border-radius: 10px; }
.phone-header strong{ display: block; color: var(--navy); font-family: var(--font-display); font-size: 1.05rem; }
.phone-header span{ font-size: .78rem; color: var(--ink-2); }
.metric-row{
  display: flex; justify-content: space-between;
  font-weight: 700; color: var(--navy);
  font-size: .9rem;
  margin-bottom: 6px;
}
.bar{
  height: 8px; background: rgba(34,38,99,.08);
  border-radius: 99px; overflow: hidden;
}
.bar-fill{ height: 100%; border-radius: 99px; transition: width .8s ease; }
.phone-note{
  background: rgba(60,196,109,.12);
  border: 1px dashed var(--green);
  color: var(--navy);
  padding: 12px 14px;
  border-radius: 14px;
  font-size: .85rem;
  margin-top: 6px;
}

/* ==== PRICING ==== */
.pricing{ background: linear-gradient(180deg, transparent, rgba(34,38,99,.04)); }
.plan-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card{
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-featured{
  background: var(--navy);
  color: #fff;
  border: 0;
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(34,38,99,.25);
}
.plan-featured h3, .plan-featured .plan-price{ color: #fff; }
.plan-featured ul li{ color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.12); }
.plan-featured .plan-price{ color: var(--yellow); }
.plan-badge{
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--navy);
  font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 8px 18px rgba(246,187,88,.4);
}
.plan-price{
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 4px 0 18px;
}
.plan-card ul{
  list-style: none; padding: 0; margin: 0 0 24px;
  flex: 1;
}
.plan-card ul li{
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600; font-size: .95rem;
  color: var(--ink-2);
}
.plan-card ul li:last-child{ border-bottom: 0; }

/* ==== WAITLIST ==== */
.waitlist{ padding: 60px 0 96px; }
.waitlist-card{
  background: linear-gradient(135deg, var(--orange) 0%, #f6bb58 100%);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.waitlist-card::before, .waitlist-card::after{
  content: ''; position: absolute; border-radius: 50%; opacity: .15;
}
.waitlist-card::before{ width: 220px; height: 220px; background: #fff; top: -80px; right: -60px; }
.waitlist-card::after{ width: 180px; height: 180px; background: #fff; bottom: -80px; left: -40px; }
.waitlist-copy{ position: relative; z-index: 1; color: #fff; }
.waitlist-copy h2{ color: #fff; }
.waitlist-copy p{ color: rgba(255,255,255,.95); font-size: 1.05rem; }
.waitlist-copy .kicker{ background: rgba(255,255,255,.22); color: #fff; }
.waitlist-perks{
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 10px;
  font-weight: 700; color: #fff; font-size: 1.02rem;
}
.waitlist-form{
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.waitlist-form label{
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
}
.waitlist-form input,
.waitlist-form select{
  font: inherit;
  font-weight: 600;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--navy);
  outline: 0;
  transition: border-color .2s, background .2s;
}
.waitlist-form input:focus,
.waitlist-form select:focus{
  border-color: var(--orange);
  background: #fff;
}
.form-fine{
  font-size: .82rem; text-align: center; margin: 4px 0 0;
}
.form-success{
  background: rgba(60,196,109,.16);
  color: #1f9b4f;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  text-align: center;
}

/* ==== FAQ ==== */
.faq-list{
  max-width: 820px; margin: 0 auto;
  display: grid; gap: 14px;
}
.faq details{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 24px;
  transition: box-shadow .2s ease;
}
.faq details[open]{ box-shadow: var(--shadow-sm); }
.faq summary{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.08rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{
  content: '+';
  font-family: var(--font-display);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.faq details[open] summary::after{
  content: '−';
  background: var(--orange);
  color: #fff;
  transform: rotate(180deg);
}
.faq details p{ margin: 12px 0 0; }

/* ==== FINAL CTA ==== */
.final-cta{
  background: var(--navy);
  color: #fff;
  text-align: center;
  border-radius: var(--r-xl);
  margin: 0 auto 80px;
  width: min(1180px, 92%);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before{
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(238,108,81,.4), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(60,196,109,.4), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(246,187,88,.3), transparent 40%);
}
.final-cta h2, .final-cta p, .final-cta .btn{ position: relative; }
.final-cta h2{ color: #fff; }
.final-cta p{ color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 580px; margin: 0 auto 28px; }

/* ==== FOOTER ==== */
.site-footer{
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo{ height: 38px; width: auto; max-width: 150px; margin-bottom: 14px; }
.footer-brand p{ color: var(--ink-2); font-size: .95rem; }
.footer-col h4{
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 14px;
}
.footer-col a, .footer-col span{
  display: block;
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.footer-col a:hover{ color: var(--orange); }
.muted{ color: var(--ink-2); }
.footer-bottom{
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .88rem;
  color: var(--ink-2);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a{
  color: var(--ink-2); margin-left: 18px; font-weight: 600;
}
.footer-bottom a:hover{ color: var(--orange); }

/* ==== Reveal on scroll ==== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible{ opacity: 1; transform: translateY(0); }

/* ==== RESPONSIVE ==== */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; gap: 48px; }
  .hero-visual{ min-height: 400px; }
  .problem-grid, .steps, .char-grid, .plan-grid{ grid-template-columns: repeat(2, 1fr); }
  .how-extra{ grid-template-columns: 1fr; }
  .parents-grid{ grid-template-columns: 1fr; gap: 40px; }
  .waitlist-card{ grid-template-columns: 1fr; padding: 40px 32px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .plan-featured{ transform: none; }
  .primary-nav, .nav-cta{ display: none; }
  .nav-toggle{ display: block; margin-left: auto; }
  .primary-nav.open{
    display: flex; flex-direction: column; gap: 14px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 22px 5%;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  section{ padding: 72px 0; }
  .brand-badge{ width: 90px; height: 90px; }
}
@media (max-width: 600px){
  .problem-grid, .steps, .char-grid, .plan-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  .hero{ padding-top: 32px; }
  .marquee{ margin-top: 48px; }
  .waitlist-card{ padding: 32px 22px; }
  .waitlist-form{ padding: 22px; }
  .final-cta{ padding: 56px 20px; }
  .brand-badge{ display: none; }
}
 5%;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  section{ padding: 72px 0; }
  .brand-badge{ width: 90px; height: 90px; }
}
@media (max-width: 600px){
  .problem-grid, .steps, .char-grid, .plan-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  .hero{ padding-top: 32px; }
  .marquee{ margin-top: 48px; }
  .waitlist-card{ padding: 32px 22px; }
  .waitlist-form{ padding: 22px; }
  .final-cta{ padding: 56px 20px; }
  .brand-badge{ display: none; }
}
 }
  .brand-badge{ display: none; }
}
