:root {
  --bg: #070c0a;
  --ink: #eef5ec;
  --muted: #8eaa96;
  --lime: #8be86a;
  --lime-hot: #b4f58a;
  --forest: #3d9a58;
  --fox: #ff9a4a;
  --fox-dark: #e87828;
  --surface: #101a14;
  --line: #243528;
  --display: "Fredoka", system-ui, sans-serif;
  --body: "Nunito", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font: 700 16px/1.55 var(--body);
  background:
    radial-gradient(ellipse 70% 50% at 80% -10%, #1a4a2a55, transparent 55%),
    radial-gradient(ellipse 55% 40% at 5% 30%, #2a5a2030, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, #e8b84a12, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='30' r='1'/%3E%3Ccircle cx='90' cy='70' r='1.2'/%3E%3Ccircle cx='150' cy='40' r='.8'/%3E%3Ccircle cx='60' cy='140' r='1'/%3E%3Ccircle cx='130' cy='120' r='.7'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(175deg, #050a08 0%, #0a120e 45%, #08110c 100%);
  overflow-x: hidden;
  min-height: 100%;
}

.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.sky-blobs { pointer-events: none; position: fixed; inset: 0; z-index: 0; overflow: hidden; }
.cloud {
  position: absolute;
  border-radius: 999px;
  opacity: .12;
  background: #c8e0c8;
  filter: blur(2px);
  animation: float-cloud 26s ease-in-out infinite;
}
.cloud::before, .cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.cloud.c1 { width: 140px; height: 42px; top: 10%; left: 6%; }
.cloud.c1::before { width: 55px; height: 55px; top: -30px; left: 20px; }
.cloud.c1::after { width: 42px; height: 42px; top: -22px; left: 60px; }
.cloud.c2 { width: 100px; height: 34px; top: 22%; right: 10%; animation-duration: 32s; }
.cloud.c2::before { width: 44px; height: 44px; top: -24px; left: 14px; }
.cloud.c2::after { width: 34px; height: 34px; top: -16px; left: 48px; }
.cloud.c3 { width: 80px; height: 28px; top: 48%; left: 50%; opacity: .08; animation-duration: 36s; }
.cloud.c3::before { width: 34px; height: 34px; top: -18px; left: 12px; }
.cloud.c3::after { width: 26px; height: 26px; top: -12px; left: 38px; }
@keyframes float-cloud {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(28px); }
}

.site-header, main, .site-footer { position: relative; z-index: 1; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--lime-hot), var(--forest));
  border: 3px solid #1a2e20;
  box-shadow: 0 0 24px #8be86a33, 0 6px 0 #1a3a24;
  animation: bounce-mark 2.8s ease-in-out infinite;
}
.brand-name {
  font: 700 1.25rem/1 var(--display);
  letter-spacing: -.02em;
}
.brand-name em { font-style: normal; color: var(--lime); }
@keyframes bounce-mark {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.nav { display: flex; align-items: center; gap: 18px; }
.nav a {
  display: none;
  color: var(--muted);
  text-decoration: none;
  font: 800 .9rem var(--display);
}
.nav-cta {
  border: 2px solid #3d6a4e;
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font: 800 .8rem var(--display);
  cursor: pointer;
  transition: .2s;
}
.nav-cta:hover {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 20px #8be86a22;
}

.hero {
  display: grid;
  gap: 28px;
  padding: 20px 0 48px;
  min-height: calc(100svh - 78px);
  align-items: center;
}
.kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font: 700 .85rem/1.3 var(--display);
}
.hero h1 {
  margin: 0;
  font: 700 clamp(3rem, 12vw, 5.8rem)/.95 var(--display);
  letter-spacing: -.03em;
  text-shadow: 0 8px 40px #0008, 0 0 60px #8be86a22;
}
.hero h1 em { font-style: normal; color: var(--fox); }
.tagline {
  margin: 14px 0 0;
  font: 700 clamp(1.15rem, 3vw, 1.55rem)/1.25 var(--display);
  color: #c5dcc8;
}
.lead {
  margin: 12px 0 0;
  max-width: 36ch;
  color: var(--muted);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.hero-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #122018;
  border: 1px solid #2a4a38;
  font: 800 .75rem var(--display);
  color: #b8d4bc;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime-hot), var(--lime) 50%, #5ec844);
  color: #0e1a10;
  font: 700 1rem var(--display);
  cursor: pointer;
  box-shadow: 0 10px 36px #8be86a40, 0 4px 0 #3d7a30;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px #8be86a55;
}
.btn-ghost {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 800 .95rem var(--display);
  cursor: pointer;
}
.btn-ghost:hover { color: var(--ink); }
.btn-soft {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid #3d5a48;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 700 .9rem var(--display);
  cursor: pointer;
}

/* Dark cartoon stage — night forest */
.hero-stage {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  border: 1px solid #2a4a38;
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 35% at 78% 18%, #e8d08033, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 80%, #1a4a2a44, transparent 70%),
    linear-gradient(180deg, #0a1520 0%, #0c1a14 40%, #0a1812 70%, #08140e 100%);
  box-shadow: 0 30px 80px #0008, inset 0 0 80px #0006;
}
.stage-sky {
  position: absolute;
  inset: 0 0 35%;
  background:
    radial-gradient(ellipse 50% 60% at 75% 20%, #2a406055, transparent 70%),
    linear-gradient(180deg, #0a1220, transparent);
}
.sun {
  position: absolute;
  top: 28px;
  right: 40px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff6c8, #e8c86a 50%, #c4a040);
  box-shadow: 0 0 40px #e8c86a55, 0 0 80px #e8c86a22;
  animation: moon-glow 4s ease-in-out infinite;
}
@keyframes moon-glow {
  0%, 100% { box-shadow: 0 0 40px #e8c86a44, 0 0 80px #e8c86a18; }
  50% { box-shadow: 0 0 55px #e8c86a66, 0 0 100px #e8c86a28; }
}
.hill {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}
.hill-back {
  height: 42%;
  background: #143024;
  border-top: 1px solid #1e4a32;
}
.hill-front {
  height: 28%;
  background: #0e2418;
  border-top: 1px solid #1a3a28;
}

.tree {
  position: absolute;
  bottom: 18%;
  width: 70px;
  z-index: 2;
}
.tree span {
  display: block;
  margin: -18px auto 0;
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-bottom: 48px solid #1a4a32;
  filter: drop-shadow(0 4px 8px #0006);
}
.tree span:nth-child(1) {
  margin-top: 0;
  border-left-width: 28px;
  border-right-width: 28px;
  border-bottom-width: 40px;
  border-bottom-color: #246848;
}
.tree span:nth-child(2) { border-bottom-color: #1e5a3a; }
.tree span:nth-child(3) { border-bottom-color: #164830; }
.tree i {
  display: block;
  width: 14px;
  height: 22px;
  margin: -4px auto 0;
  background: #3a2818;
  border: 1px solid #1a1208;
  border-radius: 4px;
}
.t1 { left: 8%; --s: .85; animation: sway-tree 3.5s ease-in-out infinite; }
.t2 { left: 28%; bottom: 22%; --s: 1.1; animation: sway-tree 4s ease-in-out infinite reverse; }
.t3 { right: 10%; left: auto; --s: .95; animation: sway-tree 3.2s ease-in-out infinite; }
@keyframes sway-tree {
  0%, 100% { transform: rotate(-2deg) scale(var(--s, 1)); }
  50% { transform: rotate(2deg) scale(var(--s, 1)); }
}

.mascot {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 14%;
  width: 140px;
  height: 150px;
  margin-left: -70px;
  animation: bounce-mascot 2.4s ease-in-out infinite;
  filter: drop-shadow(0 12px 20px #0008);
}
@keyframes bounce-mascot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fox-ear {
  position: absolute;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 32px solid var(--fox);
  z-index: 1;
}
.fox-ear::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #ffd0b0;
}
.fox-ear.left { left: 18px; transform: rotate(-12deg); }
.fox-ear.right { right: 18px; transform: rotate(12deg); }
.fox-head {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 78px;
  background: var(--fox);
  border: 2px solid #1a1008;
  border-radius: 46% 46% 42% 42%;
  z-index: 2;
  box-shadow: inset 0 -8px 0 #ff9f5a44;
}
.fox-eye {
  position: absolute;
  top: 28px;
  width: 12px;
  height: 16px;
  background: #1a1008;
  border-radius: 50%;
  animation: blink 4s infinite;
}
.fox-eye.e1 { left: 22px; }
.fox-eye.e2 { right: 22px; }
.fox-eye::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}
.fox-nose {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 16px;
  height: 12px;
  background: #1a1008;
  border-radius: 50%;
}
.fox-nose::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 18px;
  height: 10px;
  border: 2px solid #1a1008;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}
.fox-blush {
  position: absolute;
  top: 42px;
  width: 14px;
  height: 8px;
  background: #ff6b8a66;
  border-radius: 50%;
}
.fox-blush.b1 { left: 8px; }
.fox-blush.b2 { right: 8px; }
.fox-body {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 56px;
  background: var(--fox);
  border: 2px solid #1a1008;
  border-radius: 40% 40% 36% 36%;
  z-index: 1;
}
.fox-tail {
  position: absolute;
  right: -8px;
  bottom: 28px;
  width: 48px;
  height: 28px;
  background: var(--fox);
  border: 2px solid #1a1008;
  border-radius: 50% 50% 40% 20%;
  transform: rotate(-20deg);
  z-index: 0;
  animation: wag 1.2s ease-in-out infinite;
}
.fox-tail::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #fff8f0;
  border-radius: 50%;
  border: 2px solid #1a1008;
}
.fox-scarf {
  position: absolute;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 14px;
  background: var(--lime);
  border: 2px solid #1a1008;
  border-radius: 8px;
  z-index: 3;
  box-shadow: 0 0 16px #8be86a44;
}
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(.1); }
}
@keyframes wag {
  0%, 100% { transform: rotate(-20deg); }
  50% { transform: rotate(-5deg); }
}

.mushroom {
  position: absolute;
  z-index: 3;
  bottom: 16%;
  width: 28px;
  height: 22px;
  background: #e8e0d0;
  border: 2px solid #1a1008;
  border-radius: 4px 4px 6px 6px;
}
.mushroom::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -6px;
  width: 40px;
  height: 22px;
  background: #e8556a;
  border: 2px solid #1a1008;
  border-radius: 50% 50% 40% 40%;
  box-shadow: 0 0 12px #e8556a44;
}
.m1 { left: 62%; }
.m2 { left: 72%; transform: scale(.75); bottom: 14%; }
.berry {
  position: absolute;
  z-index: 3;
  left: 18%;
  bottom: 20%;
  width: 14px;
  height: 14px;
  background: #ff4d6d;
  border: 2px solid #1a1008;
  border-radius: 50%;
  box-shadow: 16px 6px 0 #ff4d6d, 8px -8px 0 #8be86a, 0 0 10px #ff4d6d44;
}

.speech-bubble {
  position: absolute;
  z-index: 5;
  top: 18%;
  left: 52%;
  padding: 10px 14px;
  background: #15241a;
  border: 2px solid #3d6a4e;
  border-radius: 18px;
  color: var(--ink);
  font: 700 .85rem var(--display);
  box-shadow: 0 8px 24px #0006, 0 0 20px #8be86a18;
  animation: pop 2.8s ease-in-out infinite;
}
.speech-bubble::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -10px;
  border: 8px solid transparent;
  border-top-color: #3d6a4e;
}
.speech-bubble::before {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -6px;
  border: 6px solid transparent;
  border-top-color: #15241a;
  z-index: 1;
}
@keyframes pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06) rotate(-2deg); }
}

.benefits { padding: 56px 0 24px; }
.section-head h2 {
  margin: 0;
  font: 700 clamp(1.9rem, 5vw, 3rem)/1.1 var(--display);
}
.section-lead {
  margin: 12px 0 0;
  max-width: 38ch;
  color: var(--muted);
}
.fun-cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.fun-cards article {
  padding: 22px;
  background: linear-gradient(160deg, #121c16, #0e1612);
  border: 1px solid #2a4a38;
  border-radius: 24px;
  box-shadow: 0 16px 40px #0005;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.fun-cards article:hover {
  transform: translateY(-4px);
  border-color: #4a8a5a;
  box-shadow: 0 20px 48px #0007, 0 0 30px #8be86a12;
}
.icon-blob {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 50%;
  font-size: 1.5rem;
  border: 2px solid #2a4a38;
}
.icon-blob.lime { background: #1a3a24; box-shadow: 0 0 20px #8be86a22; }
.icon-blob.peach { background: #3a2418; box-shadow: 0 0 20px #ff9a4a22; }
.icon-blob.sky { background: #1a2830; box-shadow: 0 0 20px #4fa8ff22; }
.fun-cards h3 {
  margin: 0 0 8px;
  font: 700 1.2rem/1.2 var(--display);
}
.fun-cards p { margin: 0; color: var(--muted); font-size: .95rem; }

.path { padding: 40px 0 56px; }
.path-banner {
  display: grid;
  gap: 24px;
  padding: 32px;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, #8be86a14, transparent 55%),
    linear-gradient(135deg, #14241a, #0e1812);
  border: 1px solid #3d6a4e;
  border-radius: 28px;
  box-shadow: 0 24px 60px #0006;
  overflow: hidden;
}
.path-copy h2 {
  margin: 0;
  font: 700 clamp(1.6rem, 4vw, 2.4rem)/1.15 var(--display);
}
.path-copy p {
  margin: 12px 0 22px;
  max-width: 36ch;
  color: var(--muted);
}
.path-art {
  position: relative;
  min-height: 140px;
  display: grid;
  place-items: center;
}
.mini-tree {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #2a6a48;
  filter: drop-shadow(0 0 16px #8be86a33);
  animation: bounce-mini 2s ease-in-out infinite;
}
@keyframes bounce-mini {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.mini-fox {
  position: absolute;
  right: 18%;
  bottom: 20%;
  width: 50px;
  height: 42px;
  background: var(--fox);
  border: 2px solid #1a1008;
  border-radius: 50% 50% 40% 40%;
  animation: bounce-mini 2.2s ease-in-out infinite .3s;
  box-shadow: 0 0 20px #ff9a4a33;
}
.mini-fox::before, .mini-fox::after {
  content: "";
  position: absolute;
  top: -14px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 18px solid var(--fox);
}
.mini-fox::before { left: 6px; }
.mini-fox::after { right: 6px; }
.stars {
  position: absolute;
  top: 10%;
  left: 20%;
  color: var(--fox);
  font-size: 1.2rem;
  letter-spacing: 8px;
  animation: pop 2s ease-in-out infinite;
  text-shadow: 0 0 12px #ff9a4a66;
}

.support {
  display: grid;
  gap: 20px;
  padding: 40px 0 64px;
  border-top: 1px solid #243528;
}
.support h2 {
  margin: 0;
  font: 700 clamp(1.6rem, 4vw, 2.4rem)/1.15 var(--display);
}
.support p {
  margin: 0 0 14px;
  max-width: 38ch;
  color: var(--muted);
}
.text-link {
  border: 0;
  border-bottom: 2px solid var(--fox);
  background: none;
  color: var(--ink);
  padding: 0 0 2px;
  font: 800 1rem var(--display);
  cursor: pointer;
}
.text-link span { color: var(--fox); margin-left: 6px; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 0 36px;
  border-top: 1px solid #243528;
}
.site-footer p { display: none; margin: 0; color: var(--muted); font-size: .85rem; }
.footer-link {
  border: 0;
  background: none;
  color: var(--lime);
  font: 800 .85rem var(--display);
  cursor: pointer;
}

.operator {
  position: fixed;
  z-index: 6;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid #3d6a4e;
  border-radius: 999px;
  background: #101a14ee;
  color: var(--ink);
  font: 800 .8rem var(--display);
  cursor: pointer;
  box-shadow: 0 12px 40px #0008;
  backdrop-filter: blur(8px);
}
.toast {
  position: fixed;
  z-index: 9;
  left: 50%;
  bottom: 80px;
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border: 1px solid #8be86a66;
  border-radius: 16px;
  background: #eef5ec;
  color: #0e1a10;
  font: 800 .85rem var(--display);
  box-shadow: 0 16px 40px #0007;
  transition: .25s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.chat { position: fixed; z-index: 6; right: 14px; bottom: 72px; }
.chat-toggle {
  border: 1px solid #3d6a4e;
  border-radius: 999px;
  background: #14241a;
  color: var(--ink);
  padding: 10px 14px;
  font: 800 .75rem var(--display);
  cursor: pointer;
}
.chat-window {
  display: none;
  width: min(300px, calc(100vw - 28px));
  margin-bottom: 10px;
  border: 1px solid #3d6a4e;
  border-radius: 22px;
  background: #101a14;
  overflow: hidden;
  box-shadow: 0 24px 60px #000a;
}
.chat.open .chat-window { display: block; }
.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #14241a;
  border-bottom: 1px solid #243528;
  font: 800 .7rem var(--display);
  color: var(--lime);
}
.chat-head button { border: 0; background: 0; color: var(--ink); font-size: 1.3rem; cursor: pointer; }
.chat-log { min-height: 100px; padding: 14px; }
.chat-log p {
  margin: 0 0 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #16241a;
  color: #d5e4d6;
  font-size: .85rem;
}
.chat-log .user { margin-left: 24px; background: var(--fox); color: #1a1008; }
.chat-options { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 14px; }
.chat-options button {
  border: 1px solid #3d6a4e;
  border-radius: 999px;
  background: transparent;
  color: #b8ccb8;
  padding: 6px 10px;
  font: 800 .7rem var(--display);
  cursor: pointer;
}

.modal {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}
.modal.open { display: grid; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: #040806dd;
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  width: min(440px, 100%);
  padding: 40px 26px 32px;
  border: 1px solid #3d6a4e;
  border-radius: 28px;
  background: linear-gradient(160deg, #14241a, #0c1410);
  text-align: center;
  box-shadow: 0 40px 100px #000c;
}
.modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: 0;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
}
.step { display: grid; justify-items: center; gap: 4px; }
.hidden { display: none !important; }
.modal-emoji {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 6px;
  font-size: 2rem;
  background: #1a3a24;
  border: 2px solid #3d6a4e;
  border-radius: 50%;
  box-shadow: 0 0 24px #8be86a33;
}
.modal h2 {
  margin: 8px 0 16px;
  font: 700 1.7rem/1.15 var(--display);
}
.modal p:not(.kicker) { margin: 0; color: var(--muted); }
.modal-actions { display: grid; width: 100%; gap: 10px; margin-top: 8px; }
.bad-signal { font-size: 3rem; animation: wobble .25s infinite; }
.warn { color: var(--fox) !important; }
.shake-title { animation: wobble .35s infinite; }
.answer-recover { margin-top: 20px; }
@keyframes wobble { 50% { transform: rotate(-3deg); } }

.reveal { opacity: 0; transform: translateY(24px) scale(.98); transition: .6s cubic-bezier(.34,1.4,.64,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 800px) {
  .nav a { display: block; }
  .hero { grid-template-columns: 1fr 1.05fr; gap: 40px; padding: 12px 0 56px; }
  .hero-stage { min-height: 460px; }
  .fun-cards { grid-template-columns: repeat(3, 1fr); }
  .path-banner { grid-template-columns: 1.2fr .8fr; align-items: center; padding: 40px; }
  .support { grid-template-columns: 1fr 1fr; align-items: end; }
  .site-footer p { display: block; }
  .modal-actions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.6rem, 14vw, 3.4rem); }
  .hero-stage { min-height: 320px; border-radius: 24px; }
  .mascot { left: 52%; margin-left: -60px; transform: scale(.85); }
  .speech-bubble { font-size: .75rem; left: 42%; }
}
