/* ─── Platyland landing page ─────────────────────────────────────────
   Shares design tokens (../css/tokens.css).
   Storybook warmth; targets parents AND kids 50/50.                 */

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

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(27, 58, 91, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 10% 6%, rgba(255, 210, 63, 0.22), transparent 45%),
    radial-gradient(circle at 88% 4%, rgba(126, 206, 196, 0.22), transparent 42%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  background-size: 22px 22px, auto, auto, auto;
  background-attachment: fixed;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11  0 0 0 0 0.22  0 0 0 0 0.35  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

/* ─── Reusable bits ──────────────────────────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.2rem);
}

.btn-stamp {
  --btn-bg: var(--coral);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid var(--ink);
  border-radius: var(--r-full);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-stamp);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-stamp:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(27,58,91,0.92); color: var(--btn-fg); }
.btn-stamp:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(27,58,91,0.92); }

.btn-stamp--ghost { --btn-bg: var(--card); --btn-fg: var(--ink); }
.btn-stamp--mint { --btn-bg: var(--mint); --btn-fg: var(--ink); }
.btn-stamp--sun { --btn-bg: var(--sun); --btn-fg: var(--ink); }
.btn-stamp--ink { --btn-bg: var(--ink); --btn-fg: var(--paper); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-hand);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--coral-deep);
  transform: rotate(-2deg);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 144;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0 0 0.9rem;
}

.section-lead {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 2rem;
}

.underline-sun {
  position: relative;
  display: inline-block;
}
.underline-sun::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 6%;
  height: 18%;
  background: var(--sun);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1.5deg);
}

/* ─── Nav ────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 244, 227, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2.2rem);
  padding-right: clamp(1rem, 3vw, 2.2rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--sun);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: var(--shadow-stamp-sm);
  transform: rotate(-4deg);
}

.brand em { font-style: normal; color: var(--coral); }

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
  transition: right 0.25s ease;
}

.nav-links a:hover { color: var(--coral-deep); }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: inline-flex; align-items: center; gap: 0.6rem; }

.nav-cta .btn-stamp { padding: 0.55rem 1rem; font-size: 0.92rem; }

.nav-burger {
  display: none;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--r-full);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  box-shadow: var(--shadow-stamp-sm);
}

.nav-burger svg { width: 20px; height: 20px; }

@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta .btn-stamp:not(.primary-cta) { display: none; }

  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
  }
  .nav-links.is-open a {
    padding: 0.9rem clamp(1rem, 3vw, 2.2rem);
    border-top: 1px dashed var(--line-strong);
  }
  .nav-links.is-open a::after { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem);
}

.hero-title {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 144;
  font-weight: 600;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 1.3rem;
}

.hero-title .coral { color: var(--coral); font-style: italic; font-variation-settings: "SOFT" 80, "WONK" 1; }

.hero-lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 0 2rem;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.hero-facts {
  display: flex;
  gap: 2rem;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--line-strong);
  flex-wrap: wrap;
}

.hero-fact-n {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "opsz" 72;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-fact-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}

.mascot-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-bubble {
  position: absolute;
  inset: 4%;
  background: radial-gradient(circle at 30% 25%, #fff6d9 0%, var(--sun) 60%, #f5b800 100%);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow-stamp), inset 0 -10px 0 rgba(27,58,91,0.05);
  overflow: hidden;
}

.mascot-bubble::after {
  content: "";
  position: absolute;
  top: 12%; left: 18%;
  width: 28%; height: 14%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  filter: blur(6px);
  transform: rotate(-20deg);
}

.mascot-img {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(6px 10px 0 rgba(27, 58, 91, 0.18));
  animation: mascot-float 6s ease-in-out infinite;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}

.floater {
  position: absolute;
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  padding: 0.6rem 0.85rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  box-shadow: var(--shadow-stamp-sm);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.floater svg { width: 18px; height: 18px; }
.floater--a { top: 8%; left: 10%; transform: rotate(-8deg); background: var(--mint); animation: tilt-a 5s ease-in-out infinite; }
.floater--b { top: 38%; right: -8%; transform: rotate(6deg); background: var(--coral); color: #fff; animation: tilt-b 6.5s ease-in-out infinite; }
.floater--c { bottom: 6%; left: 8%; transform: rotate(-4deg); background: #fff; animation: tilt-c 5.5s ease-in-out infinite; }

@keyframes tilt-a { 0%,100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-5deg) translateY(-8px); } }
@keyframes tilt-b { 0%,100% { transform: rotate(6deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-10px); } }
@keyframes tilt-c { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-6px); } }

/* ─── Section blocks ─────────────────────────────────────────────── */

section { padding: clamp(2.5rem, 6vw, 5rem) 0; position: relative; }

.wave-divider {
  display: block;
  width: 100%;
  height: 40px;
  color: var(--ink);
  opacity: 0.55;
}

/* ── Subjects ── */

.subjects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-top: 2rem;
  max-width: 720px;
}

.subject-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-stamp);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.subject-card:hover { transform: translate(-2px, -3px); box-shadow: 6px 7px 0 rgba(27,58,91,0.92); }

.subject-emblem {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: var(--mint);
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-stamp-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-4deg);
  flex-shrink: 0;
}

.subject-emblem svg { width: 60px; height: 60px; color: var(--ink); }

.subject-card h3 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 72;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.subject-card p {
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
  line-height: 1.5;
}

.topic-chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--paper-deep);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-full);
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.topic-chip-soon {
  background: transparent;
  border-style: dashed;
  color: var(--ink-muted);
  font-style: italic;
}

/* ── How it works ── */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-stamp);
  position: relative;
  transition: transform 0.22s ease;
}
.step:hover { transform: translateY(-4px) rotate(-0.8deg); }

.step[data-tone="coral"] { background: #ffe8e4; }
.step[data-tone="mint"] { background: #dcefec; }
.step[data-tone="sun"] { background: #fff3c9; }

.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--sun);
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 20, "WONK" 1, "opsz" 72;
  font-weight: 700;
  font-size: 1.5rem;
  border: 2px solid var(--ink);
  margin-bottom: 0.9rem;
  transform: rotate(-6deg);
}

.step h3 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 72;
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.05;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.step p { color: var(--ink-soft); margin: 0; line-height: 1.5; }

.step-arrow {
  position: absolute;
  top: 40%;
  right: -22px;
  color: var(--ink);
  opacity: 0.45;
  z-index: 2;
}

.step-arrow svg { width: 32px; height: 32px; }

.step:last-child .step-arrow { display: none; }

/* ── Dual pitch (parents + kids) ── */

.pitch-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 2rem;
}

.pitch {
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-stamp);
  position: relative;
  overflow: hidden;
}

.pitch--kids { background: linear-gradient(165deg, #fff4d3, #ffde8a); }
.pitch--parents { background: linear-gradient(165deg, #dcefec, #a9dcd3); }

.pitch-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-hand);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink);
  transform: rotate(-2deg);
  margin-bottom: 0.4rem;
}

.pitch h3 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 72;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1;
  margin: 0 0 0.7rem;
  letter-spacing: -0.022em;
}

.pitch p { color: var(--ink-soft); margin: 0 0 0.7rem; line-height: 1.55; }

.pitch ul { margin: 0.5rem 0 0; padding: 0; list-style: none; }

.pitch li {
  display: flex;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.pitch li::before {
  content: "✦";
  color: var(--coral);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Testimonials ── */

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
  padding: 0.3rem 0.7rem;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-full);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

.testimonial {
  position: relative;
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: var(--shadow-stamp);
  transform: rotate(-1deg);
}

.testimonial:nth-child(2) { transform: rotate(1deg); background: var(--paper-deep); }
.testimonial:nth-child(3) { transform: rotate(-0.5deg); }

.testimonial-quote-mark {
  position: absolute;
  top: -22px;
  left: 1rem;
  width: 44px;
  height: 44px;
  background: var(--coral);
  color: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 0;
  box-shadow: var(--shadow-stamp-sm);
}

.testimonial-body {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 50, "opsz" 36;
  font-weight: 500;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0.5rem 0 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  flex-shrink: 0;
}

.testimonial-author-info { line-height: 1.2; }
.testimonial-author-name { font-weight: 800; font-size: 0.95rem; }
.testimonial-author-meta { font-size: 0.82rem; color: var(--ink-muted); }

/* ── FAQ ── */

.faq-list {
  max-width: 820px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq {
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-stamp-sm);
  overflow: hidden;
}

.faq summary {
  padding: 1.1rem 1.2rem;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 36;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "＋";
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--coral);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 1.2rem 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── Signup ── */

.signup {
  position: relative;
  background: linear-gradient(165deg, var(--ink), #0f2740);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  margin: 3rem 0;
  overflow: hidden;
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-stamp);
}

.signup::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 63, 0.28), transparent 65%);
}

.signup::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.22), transparent 65%);
}

.signup-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.signup .section-tag { color: var(--sun); }

.signup h2 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 144;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 0.8rem;
  color: #fff;
}

.signup p {
  color: rgba(253, 244, 227, 0.75);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 1.6rem;
}

.signup-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.signup-input {
  flex: 1 1 260px;
  padding: 0.95rem 1.1rem;
  border: 2px solid var(--paper);
  border-radius: var(--r-full);
  background: rgba(253, 244, 227, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.signup-input::placeholder { color: rgba(253, 244, 227, 0.45); }
.signup-input:focus { border-color: var(--sun); background: rgba(253, 244, 227, 0.14); }

.signup-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: rgba(253, 244, 227, 0.55);
}

.signup-thanks {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(126, 206, 196, 0.18);
  border: 1.5px solid var(--mint);
  border-radius: var(--r-md);
  color: var(--mint);
  font-weight: 700;
}
.signup-thanks.is-visible { display: block; }

/* ── Footer ── */

.footer {
  padding: 3rem 0 2rem;
  border-top: 2px dashed var(--line-strong);
  margin-top: 2rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-about { max-width: 360px; color: var(--ink-soft); line-height: 1.5; font-size: 0.95rem; }

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.7rem;
  letter-spacing: -0.01em;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { padding: 0.2rem 0; }
.footer-col a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.footer-col a:hover { color: var(--coral-deep); }

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  border-top: 1.5px dashed var(--line-strong);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--ink-muted);
  font-size: 0.85rem;
}

/* ─── Reveal on scroll ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 1.8rem; }
  .mascot-stage { order: -1; max-width: 360px; margin: 0 auto; }
  .how-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .pitch-duo { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand { font-size: 1.15rem; }
  .brand-mark { width: 36px; height: 36px; font-size: 1rem; }
  .hero-title { font-size: clamp(2.3rem, 10vw, 3.2rem); }
  .hero-lead { font-size: 1rem; }
  .subject-card { grid-template-columns: 1fr; text-align: center; }
  .subject-emblem { margin: 0 auto; width: 90px; height: 90px; border-radius: 22px; }
  .subject-emblem svg { width: 44px; height: 44px; }
  .footer-row { flex-direction: column; gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .mascot-img,
  .floater--a, .floater--b, .floater--c,
  .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
