/* WildPatch Adventures — playful kids landing page */
:root {
  --navy: #17405c;
  --green: #2e9b5a;
  --green-deep: #1f7a45;
  --cream: #fff8e7;
  --sky: #9fe8f0;
  --sky-deep: #6ed4e0;
  --peach: #ffd6c9;
  --lilac: #e8d9ff;
  --pink: #ffb6d9;
  --yellow: #ffe566;
  --orange: #ff9f5a;
  --mint: #b8f5c8;
  --white: #ffffff;
  --text: #1a3d52;
  --muted: #4a6d7c;
  --shadow: 0 14px 40px rgba(23, 64, 92, 0.14);
  --radius: 28px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, #fff3b0 0%, transparent 50%),
    radial-gradient(ellipse 70% 40% at 100% 0%, #c8f5ff 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 50% 100%, #d4ffd8 0%, transparent 50%),
    linear-gradient(180deg, #e8fbff 0%, #f7fff8 40%, #fff9ef 100%);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- FLOATING DECOR ---------- */
.floaters { pointer-events: none; position: fixed; inset: 0; z-index: 0; overflow: hidden; }
.floater {
  position: absolute;
  width: clamp(64px, 9vw, 120px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 10px 16px rgba(23, 64, 92, 0.18));
  z-index: 0;
}
.f-kat-1 { top: 18%; left: 1.5%; width: clamp(70px, 10vw, 130px); }
.f-chim-1 { top: 42%; right: 1%; width: clamp(80px, 11vw, 140px); }
.f-leo-1 { top: 68%; left: 2%; width: clamp(72px, 10vw, 125px); }
.f-kat-2 { top: 78%; right: 3%; width: clamp(60px, 8vw, 100px); opacity: 0.85; }
.f-chim-2 { top: 12%; right: 8%; width: clamp(55px, 7vw, 90px); opacity: 0.75; }
.f-leo-2 { top: 55%; left: 8%; width: clamp(58px, 7.5vw, 95px); opacity: 0.8; }

.float-a { animation: bob 5s ease-in-out infinite; }
.float-b { animation: bob 6.5s ease-in-out infinite 0.8s; }
.float-c { animation: bob 4.5s ease-in-out infinite 1.4s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.35;
  z-index: -1;
}
.b1 { width: 220px; height: 220px; background: #ffd6f0; top: 20%; left: -40px; }
.b2 { width: 280px; height: 280px; background: #c4f5d4; bottom: 10%; right: -60px; }
.b3 { width: 160px; height: 160px; background: #ffe9a8; top: 60%; left: 40%; }

.star {
  position: absolute;
  color: #ffd54a;
  font-size: 1.6rem;
  text-shadow: 0 2px 0 #f0a800;
  animation: twinkle 2.8s ease-in-out infinite;
}
.s1 { top: 22%; left: 18%; }
.s2 { top: 48%; right: 16%; animation-delay: 0.7s; }
.s3 { top: 75%; left: 30%; animation-delay: 1.2s; font-size: 1.2rem; }
@keyframes twinkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.clover {
  position: absolute;
  color: #4caf65;
  font-size: 1.8rem;
  opacity: 0.45;
}
.c1 { bottom: 18%; right: 22%; }
.c2 { top: 35%; left: 22%; font-size: 1.3rem; }

@media (max-width: 900px) {
  .floater { opacity: 0.55; }
  .f-kat-2, .f-chim-2, .f-leo-2 { display: none; }
}

/* ---------- NAV ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid rgba(46, 155, 90, 0.15);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
}
.nav-brand img { border-radius: 50%; border: 3px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: linear-gradient(135deg, #ff7eb3, #ffb347);
  color: white !important;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255, 126, 179, 0.4);
}
.nav-cta:hover { filter: brightness(1.05); text-decoration: none !important; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  z-index: 1;
  padding: 28px 16px 0;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-sky { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.cloud {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  opacity: 0.85;
  box-shadow: 30px 10px 0 0 #fff, 60px 4px 0 -4px #fff;
}
.cloud-1 { width: 80px; height: 30px; top: 40px; left: 8%; animation: drift 18s linear infinite; }
.cloud-2 { width: 100px; height: 36px; top: 80px; right: 12%; animation: drift 22s linear infinite reverse; }
.cloud-3 { width: 60px; height: 24px; top: 120px; left: 40%; animation: drift 26s linear infinite; }
@keyframes drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(30px); }
  100% { transform: translateX(0); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 12px 8px 8px;
}
.hero-logo {
  width: min(480px, 90vw);
  margin: 0 auto 8px;
  filter: drop-shadow(0 8px 20px rgba(23, 64, 92, 0.15));
}
.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 12px;
  text-shadow: 0 2px 0 rgba(255,255,255,0.8);
}
.hero-lede {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 auto 22px;
  max-width: 520px;
  font-weight: 600;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn-rainbow {
  background: linear-gradient(90deg, #ff6b6b, #ffb347, #ffe566, #6bcb77, #4d96ff, #c77dff);
  background-size: 200% 100%;
  color: #17324a;
  box-shadow: 0 8px 24px rgba(77, 150, 255, 0.35);
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.btn-soft {
  background: white;
  color: var(--navy);
  border: 3px solid #c8ebe0;
  box-shadow: var(--shadow);
}
.btn-green {
  background: var(--green);
  color: white;
  box-shadow: 0 8px 22px rgba(46, 155, 90, 0.35);
}

/* Hero stage with characters on grass */
.hero-stage {
  position: relative;
  z-index: 2;
  height: clamp(260px, 42vw, 380px);
  margin-top: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(4px, 2vw, 24px);
  padding-bottom: 28px;
}
.stage-char {
  position: relative;
  z-index: 2;
  width: clamp(110px, 22vw, 200px);
  filter: drop-shadow(0 12px 18px rgba(23, 64, 92, 0.22));
  animation: bob 4s ease-in-out infinite;
}
.sc-chim { width: clamp(120px, 24vw, 220px); animation-delay: 0.5s; z-index: 3; }
.sc-kat { animation-delay: 1s; }
.sc-leo { animation-delay: 0.2s; }
.stage-grass {
  position: absolute;
  bottom: 0;
  left: -5%;
  right: -5%;
  height: 90px;
  background: linear-gradient(180deg, #7ed56f 0%, #4faf55 60%, #3d9144 100%);
  border-radius: 50% 50% 0 0 / 40px 40px 0 0;
  z-index: 1;
  box-shadow: inset 0 12px 0 rgba(255,255,255,0.15);
}
.stage-tree {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 140px;
  z-index: 0;
  opacity: 0.35;
  background:
    radial-gradient(circle at 50% 40%, #6bcb4a 0 40%, transparent 42%),
    linear-gradient(#9f6b3a, #9f6b3a);
  background-size: 100% 80%, 22% 50%;
  background-position: center top, center bottom;
  background-repeat: no-repeat;
}

/* ---------- PANELS ---------- */
main {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 8px 16px 48px;
}
.panel {
  position: relative;
  margin: 28px 0;
  padding: clamp(28px, 5vw, 48px) clamp(18px, 4vw, 40px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.7);
}
.panel-cream { background: linear-gradient(165deg, #fffdf5 0%, #fff0d4 100%); }
.panel-sky { background: linear-gradient(165deg, #e0f9ff 0%, #b8eef8 55%, #dfffe8 100%); }
.panel-peach { background: linear-gradient(165deg, #fff0ea 0%, #ffd9cc 100%); }
.panel-lilac { background: linear-gradient(165deg, #f4ecff 0%, #e4d4ff 100%); }
.panel-watch { background: linear-gradient(145deg, #1a4d6e 0%, #2e7852 50%, #17405c 100%); color: white; }
.panel-watch .section-lede { color: rgba(255,255,255,0.88); }
.panel-watch h2 { color: white; }
.panel-mint-soft { background: linear-gradient(165deg, #e8fff0 0%, #d4f5e0 100%); }

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: white;
  color: var(--green-deep);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 2px solid rgba(46, 155, 90, 0.2);
}
.badge-green { background: var(--mint); color: var(--green-deep); }
.badge-purple { background: #e8d9ff; color: #6b3fa0; }
.badge-yellow { background: var(--yellow); color: #7a5a00; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.2;
}
.section-lede {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 28px;
}

.corner-char {
  position: absolute;
  width: clamp(90px, 16vw, 150px);
  bottom: 8px;
  z-index: 2;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.12));
  pointer-events: none;
}
.corner-char.left { left: -8px; }
.corner-char.right { right: -8px; }
.corner-char.flip { transform: scaleX(-1); }
.side-char {
  position: absolute;
  width: clamp(80px, 14vw, 130px);
  z-index: 2;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.12));
  pointer-events: none;
  opacity: 0.95;
}
.side-char.left-low { left: -10px; bottom: 20px; }
.side-char.right-high { right: -6px; top: 40px; }
.side-char.flip { transform: scaleX(-1); }

@media (max-width: 700px) {
  .corner-char, .side-char { opacity: 0.35; width: 70px; }
}

/* Pill cards */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  position: relative;
  z-index: 3;
}
.pill-card {
  border-radius: 24px;
  padding: 20px 16px 22px;
  text-align: center;
  border: 3px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 28px rgba(23, 64, 92, 0.1);
  transition: transform 0.2s ease;
}
.pill-card:hover { transform: translateY(-6px) rotate(-1deg); }
.pill-card img {
  height: 120px;
  width: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.12));
}
.pill-card h3 {
  font-family: var(--font-display);
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.2rem;
}
.pill-card p { margin: 0; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.pc-pink { background: linear-gradient(180deg, #fff 0%, #ffe0f0 100%); }
.pc-yellow { background: linear-gradient(180deg, #fff 0%, #fff5c4 100%); }
.pc-mint { background: linear-gradient(180deg, #fff 0%, #d4f8dc 100%); }

/* Friend cards */
.friend-cards { display: grid; gap: 22px; position: relative; z-index: 2; }
.friend {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,0.75);
  border-radius: 24px;
  padding: 18px;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 30px rgba(23, 64, 92, 0.1);
}
@media (max-width: 640px) {
  .friend { grid-template-columns: 1fr; text-align: center; }
  .friend ul { display: inline-block; text-align: left; }
}
.friend-art {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.friend-main {
  width: min(180px, 50vw);
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.15));
  z-index: 2;
}
.friend-mini {
  position: absolute;
  width: 64px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
  z-index: 1;
}
.friend-mini.m1 { top: 8px; left: 0; animation: bob 5s ease-in-out infinite; }
.friend-mini.m2 { top: 20px; right: 0; animation: bob 5.5s ease-in-out infinite 0.6s; }
.friend-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
@media (max-width: 640px) {
  .friend-body h3 { justify-content: center; }
}
.dot {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.8);
}
.dot.pink { background: #ff7eb3; }
.dot.orange { background: #ff9f5a; }
.dot.green { background: #4caf65; }
.role {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green);
  margin: 0 0 8px;
  font-size: 1rem;
}
.friend-body p { margin: 0 0 10px; font-weight: 600; color: var(--muted); }
.friend-body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}
.friend-body li { margin: 4px 0; }
.f-kat { border-left: 6px solid #ff7eb3; }
.f-chim { border-left: 6px solid #ff9f5a; }
.f-leo { border-left: 6px solid #4caf65; }

/* Promise */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  position: relative;
  z-index: 3;
}
.promise-card {
  background: white;
  border-radius: 22px;
  padding: 18px 16px;
  text-align: center;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 22px rgba(23, 64, 92, 0.08);
}
.emoji-bubble {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(145deg, #fff8d8, #ffe0f0);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.promise-card h3 {
  font-family: var(--font-display);
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--navy);
}
.promise-card p { margin: 0; font-size: 0.92rem; font-weight: 600; color: var(--muted); }

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.8);
  border-radius: 20px;
  padding: 12px 16px;
  border: 3px solid white;
  box-shadow: 0 6px 18px rgba(23, 64, 92, 0.08);
}
.steps img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}
.steps span { font-weight: 600; color: var(--muted); }

/* Watch */
.panel-watch .badge { border-color: transparent; }
.watch-char {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: clamp(100px, 18vw, 170px);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
  pointer-events: none;
}
.watch-buttons {
  display: grid;
  gap: 12px;
  max-width: 420px;
  position: relative;
  z-index: 2;
}
.watch-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.35);
  color: white !important;
  text-decoration: none !important;
  backdrop-filter: blur(6px);
  transition: transform 0.15s ease, background 0.15s ease;
}
.watch-btn:hover { transform: translateX(6px); background: rgba(255,255,255,0.22); }
.wb-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: white;
  color: var(--navy);
  font-weight: 800;
}
.watch-btn strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.watch-btn em { font-style: normal; opacity: 0.85; font-size: 0.9rem; font-weight: 600; }

/* Contact */
.contact-box {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  .contact-box { grid-template-columns: 1fr; text-align: center; }
  .contact-char { margin: 0 auto; }
}
.contact-char {
  width: 140px;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.12));
}
.fine-print {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 16px 56px;
  background: linear-gradient(180deg, transparent, rgba(126, 213, 111, 0.25));
}
.footer-crew {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-crew img {
  width: 72px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.12));
  animation: bob 4s ease-in-out infinite;
}
.footer-crew img:nth-child(2) { animation-delay: 0.4s; width: 80px; }
.footer-crew img:nth-child(3) { animation-delay: 0.8s; }
.footer-logo { width: min(280px, 70vw); margin: 0 auto 8px; }
.footer-tag {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 10px;
}
.footer-meta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.footer-meta a { color: var(--navy); font-weight: 800; }
