/* ============================================================
   Objevitel — landing page styles
   Warm scrapbook / nature aesthetic matching the app
   ============================================================ */

:root {
  /* greens */
  --green-900: #1f4a24;   /* deepest heading green */
  --green-800: #275c2c;
  --green-700: #2f6b34;
  --green-500: #6aa85b;   /* primary brand button */
  --green-400: #7fb85f;
  --leaf:      #7FB069;
  --leaf-soft: #e4efdc;

  /* sky + paper */
  --sky-1:   #cfe7f5;
  --sky-2:   #e7f3fb;
  --paper:   #f5efe1;     /* warm cream page bg */
  --paper-2: #fcf8ee;     /* card cream */
  --cream-deep: #ebe2cd;

  /* ink */
  --ink:      #4a4232;
  --ink-soft: #6e6450;
  --ink-faint:#8b8169;

  /* category accents (from the app) */
  --orange: #e8924a;
  --orange-soft: #fbe6d4;
  --blue:   #5fa8d3;
  --blue-soft: #dcebf5;
  --pink:   #e69fc4;
  --pink-soft: #f8e4f0;
  --yellow: #f4c95d;
  --yellow-soft: #fbeec8;

  --white: #fffdf8;

  --shadow-card: 0 10px 30px rgba(60,50,30,0.10), 0 2px 6px rgba(60,50,30,0.06);
  --shadow-phone: 0 30px 70px rgba(35,55,30,0.30), 0 8px 22px rgba(35,55,30,0.18);

  --font-head: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;

  --maxw: 1180px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-head); margin: 0; line-height: 1.05; color: var(--green-900); font-weight: 700; }

p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* paper dotted texture overlay helper */
.paper-tex {
  background-image:
    radial-gradient(rgba(120,110,90,0.05) 1px, transparent 1px),
    radial-gradient(rgba(120,110,90,0.04) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px;
  background-position: 0 0, 11px 11px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  background: #1c1c1e; color: #fff;
  padding: 13px 22px 13px 20px; border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform .14s ease, box-shadow .14s ease;
  border: 1px solid rgba(255,255,255,0.06);
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,0.28); }
.btn-store .apple { width: 26px; height: 26px; flex-shrink: 0; fill: #fff; }
.btn-store .store-lines { display: flex; flex-direction: column; line-height: 1.05; text-align: left; white-space: nowrap; }
.btn-store .store-small { font-size: 11px; font-weight: 600; letter-spacing: .02em; opacity: .85; }
.btn-store .store-big { font-family: var(--font-head); font-size: 19px; font-weight: 600; letter-spacing: .01em; }

.btn-green {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green-500); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 18px;
  padding: 15px 30px; border-radius: 18px; border: none; cursor: pointer;
  box-shadow: 0 10px 22px rgba(106,168,91,0.45), inset 0 -3px 0 rgba(0,0,0,0.13);
  transition: transform .12s ease, filter .12s ease;
}
.btn-green:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn-green:active { transform: translateY(1px); }

/* rating chip */
.rating { display: inline-flex; align-items: center; gap: 9px; }
.rating .stars { color: var(--yellow); font-size: 18px; letter-spacing: 1px; -webkit-text-stroke: 0; }
.rating .rtext { font-weight: 700; color: var(--ink-soft); font-size: 14.5px; }

/* ============================================================
   Phone mockup
   ============================================================ */
.phone {
  position: relative;
  width: 300px;
  border-radius: 46px;
  padding: 10px;
  background: linear-gradient(150deg, #2b2b2e, #141416);
  box-shadow: var(--shadow-phone);
}
.phone::after { /* side button hint */
  content: ""; position: absolute; right: -3px; top: 150px; width: 3px; height: 64px;
  background: #2b2b2e; border-radius: 0 3px 3px 0;
}
.phone img { width: 100%; border-radius: 37px; display: block; }
.phone.sm { width: 232px; border-radius: 38px; padding: 8px; }
.phone.sm img { border-radius: 31px; }

/* ============================================================
   Decorative leaf / shapes
   ============================================================ */
.leaf-deco {
  position: absolute; font-size: 38px; opacity: .9; pointer-events: none; user-select: none;
  filter: drop-shadow(0 6px 8px rgba(40,60,30,0.12));
}
.blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); opacity: .6; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(231,243,251,0.72);
  border-bottom: 1px solid rgba(120,150,110,0.16);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, #7fb85f, #5d9a4e); font-size: 22px;
  box-shadow: 0 4px 10px rgba(95,150,70,0.4), inset 0 -2px 0 rgba(0,0,0,0.12);
}
img.mark { object-fit: cover; }
.brand .name { font-family: var(--font-head); font-weight: 700; font-size: 23px; color: var(--green-900); letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 700; color: var(--ink-soft); font-size: 15px; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--green-700); }
.nav .btn-store { padding: 9px 16px; border-radius: 13px; }
.nav .btn-store .apple { width: 20px; height: 20px; }
.nav .btn-store .store-big { font-size: 15px; }
.nav .btn-store .store-small { font-size: 9px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(255,255,255,0.55), transparent 60%),
    linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 42%, var(--paper) 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 30px; align-items: center; padding: 70px 28px 90px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: rgba(255,255,255,0.7); color: var(--green-700);
  font-weight: 800; font-size: 14px; padding: 8px 15px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(60,80,40,0.08); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(40px, 5.4vw, 66px); color: var(--green-900); letter-spacing: -.015em; }
.hero h1 .accent { color: var(--green-500); }
.hero .lead { font-size: clamp(17px, 1.7vw, 20.5px); color: var(--ink-soft); font-weight: 600; margin-top: 22px; max-width: 30em; line-height: 1.5; }
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 32px; }
.hero-meta { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-meta .meta-item { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink-soft); font-size: 14.5px; }
.hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--leaf); }

.hero-art { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.hero-art .phone { width: 320px; transform: rotate(-3deg); }
.hero-art .phone-back {
  position: absolute; width: 244px; right: 4px; top: 70px; transform: rotate(6deg);
  filter: saturate(1.02);
}
.hero-art .phone-back img { border-radius: 31px; }
.hero-art .phone-back { border-radius: 38px; padding: 8px; background: linear-gradient(150deg, #2b2b2e, #141416); box-shadow: var(--shadow-phone); opacity: .96; }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section.tight { padding: 76px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .kicker {
  display: inline-block; font-family: var(--font-hand); font-size: 27px; color: var(--green-500);
  font-weight: 700; line-height: 1; margin-bottom: 6px; transform: rotate(-2deg);
}
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -.01em; }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); font-weight: 600; line-height: 1.5; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.step {
  background: var(--paper-2); border-radius: 26px; padding: 30px 26px 32px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(120,100,60,0.07);
  position: relative; text-align: center; display: flex; flex-direction: column; align-items: center;
}
.step .num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 21px; color: #fff;
  background: var(--green-500); box-shadow: 0 6px 14px rgba(106,168,91,0.45), inset 0 -2px 0 rgba(0,0,0,0.12);
}
.step .step-phone { margin: 18px 0 20px; }
.step h3 { font-size: 22px; margin-bottom: 9px; }
.step p { color: var(--ink-soft); font-weight: 600; font-size: 15.5px; line-height: 1.5; }
.step .step-icon { font-size: 30px; margin-bottom: 4px; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--paper-2); border-radius: 24px; padding: 28px 26px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(120,100,60,0.07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(60,50,30,0.14); }
.feature .ficon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-size: 28px; margin-bottom: 18px;
}
.feature h3 { font-size: 20.5px; margin-bottom: 8px; color: var(--green-800); }
.feature p { color: var(--ink-soft); font-weight: 600; font-size: 15px; line-height: 1.5; }

/* category color helpers */
.c-orange { background: var(--orange-soft); color: var(--orange); }
.c-blue   { background: var(--blue-soft);   color: var(--blue); }
.c-green  { background: var(--leaf-soft);   color: var(--green-700); }
.c-pink   { background: var(--pink-soft);   color: var(--pink); }
.c-yellow { background: var(--yellow-soft); color: #cda23a; }
.c-mauve  { background: #e9ecf8;            color: #8a93cf; }

/* ============================================================
   MASCOT band
   ============================================================ */
.mascot {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #2f6b34, #234d22);
  color: #eef6e9;
}
.mascot::before {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px; opacity:.5;
}
.mascot-inner { position: relative; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 40px; align-items: center; }
.mascot h2 { color: #fff; font-size: clamp(30px, 3.6vw, 46px); }
.mascot .kicker { font-family: var(--font-hand); font-size: 28px; color: #bfe3a8; transform: rotate(-2deg); display:inline-block; }
.mascot p { color: #d6e8cc; font-weight: 600; font-size: 18px; line-height: 1.55; margin-top: 16px; }
.mascot .traits { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.mascot .trait {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: 14.5px; color: #eaf5e2;
  display: inline-flex; align-items: center; gap: 8px;
}
.mascot-art { display: flex; justify-content: center; position: relative; }
.mascot-art .phone { width: 300px; }

/* ============================================================
   GUIDES (avatar picker)
   ============================================================ */
.guides { background: linear-gradient(180deg, var(--paper) 0%, #eaf2e3 100%); overflow: hidden; }
.guides-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 980px; margin: 0 auto;
}
.guide-card {
  background: var(--paper-2); border-radius: 26px; padding: 14px 14px 20px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(120,100,60,0.07);
  text-align: center; transition: transform .18s ease, box-shadow .18s ease;
}
.guide-card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: 0 22px 44px rgba(60,50,30,0.16); }
.guide-photo {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  background: var(--sky-2);
}
.guide-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 34%; display: block; }
.guide-photo .pin {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 30px; height: 13px; background: rgba(127,176,105,0.66);
  box-shadow: 0 2px 4px rgba(40,60,30,0.18); border-radius: 1px;
}
.guide-card h3 { font-size: 21px; margin-top: 16px; color: var(--green-800); }
.guide-card .role { font-family: var(--font-hand); font-size: 20px; color: var(--green-500); line-height: 1; margin-top: 2px; }
.guide-card p { color: var(--ink-soft); font-weight: 600; font-size: 14px; line-height: 1.45; margin-top: 9px; }
.guides-note {
  text-align: center; margin: 40px auto 0; font-family: var(--font-hand);
  font-size: 24px; color: var(--green-700); transform: rotate(-1deg);
}

/* ============================================================
   CREDITS (green band + pricing card)
   ============================================================ */
.credits {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #2f6b34, #234d22); color: #eef6e9;
}
.credits::before {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px; opacity:.5;
}
.credits-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.credits .kicker { font-family: var(--font-hand); font-size: 28px; color: #bfe3a8; transform: rotate(-2deg); display:inline-block; }
.credits h2 { color: #fff; font-size: clamp(30px, 3.6vw, 46px); margin-top: 4px; }
.credits .lead { color: #d6e8cc; font-weight: 600; font-size: 18px; line-height: 1.55; margin-top: 16px; max-width: 30em; }
.free-badge {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 28px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 16px 22px;
}
.free-badge .coin {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  font-size: 26px; background: radial-gradient(circle at 38% 32%, #ffd873, #e8a91f);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.18), 0 5px 12px rgba(0,0,0,0.22);
}
.free-badge .fb-big { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: #fff; line-height: 1.05; }
.free-badge .fb-sub { font-weight: 700; font-size: 14px; color: #c5dcb8; margin-top: 2px; }

.price-card {
  background: var(--paper-2); border-radius: 26px; padding: 26px 24px 22px;
  box-shadow: 0 26px 60px rgba(20,45,18,0.4); border: 1px solid rgba(255,255,255,0.4);
}
.price-card .pc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.price-card .pc-head .leaf {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 20px;
  background: radial-gradient(circle at 38% 32%, #ffd873, #e8a91f);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.18);
}
.price-card .pc-head h3 { font-size: 22px; color: var(--green-800); }
.price-card .pc-sub { color: var(--ink-soft); font-weight: 600; font-size: 14px; line-height: 1.45; margin-bottom: 16px; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--white); border-radius: 16px; padding: 13px 14px 13px 18px;
  border: 1px solid rgba(120,100,60,0.08); margin-bottom: 10px;
}
.price-row.best { box-shadow: 0 0 0 2px var(--green-400); position: relative; }
.price-row .pr-amt { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--green-900); line-height: 1; }
.price-row .pr-sub { font-weight: 700; font-size: 12.5px; color: var(--ink-faint); margin-top: 3px; }
.price-row .pr-price {
  font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff;
  background: var(--green-500); padding: 9px 18px; border-radius: 999px; white-space: nowrap;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.14);
}
.price-row .pr-tag {
  position: absolute; top: -10px; right: 16px; background: var(--green-700); color: #fff;
  font-family: var(--font-body); font-weight: 800; font-size: 10px; letter-spacing: .03em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
}
.price-foot { text-align: center; font-weight: 700; font-size: 13px; color: var(--ink-faint); margin-top: 12px; }

/* ============================================================
   PARENTS
   ============================================================ */
.parents { background: var(--paper); }
.parents-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center; }
.parents-list { display: flex; flex-direction: column; gap: 16px; }
.pcard {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper-2); border-radius: 20px; padding: 20px 22px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(120,100,60,0.07);
}
.pcard .pic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 24px; flex-shrink: 0; }
.pcard h3 { font-size: 18px; margin-bottom: 4px; color: var(--green-800); }
.pcard p { color: var(--ink-soft); font-weight: 600; font-size: 14.5px; line-height: 1.45; }

.parents-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.parents-visual .phone { width: 286px; transform: rotate(2deg); }
.note-card {
  position: absolute; background: var(--white); padding: 16px 18px; border-radius: 16px;
  box-shadow: 0 14px 30px rgba(60,50,30,0.16); border: 1px solid rgba(120,100,60,0.08);
  font-family: var(--font-hand); color: var(--ink); font-size: 21px; line-height: 1.15;
  max-width: 200px;
}
.note-card .nt { font-family: var(--font-body); font-weight: 800; font-size: 12px; color: var(--green-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; display:block; }
.note-card.one { top: 36px; left: -6px; transform: rotate(-5deg); }
.note-card.two { bottom: 48px; right: -10px; transform: rotate(4deg); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: linear-gradient(180deg, var(--paper) 0%, var(--sky-2) 100%); overflow: hidden; }
.gallery-rail { display: flex; gap: 28px; justify-content: center; align-items: flex-end; flex-wrap: wrap; }
.gallery-rail .phone:nth-child(odd) { transform: translateY(-12px); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(700px 380px at 50% -20%, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(180deg, var(--sky-2), var(--sky-1));
}
.cta-card {
  position: relative; max-width: 860px; margin: 0 auto; text-align: center;
  background: var(--paper-2); border-radius: 34px; padding: 60px 40px;
  box-shadow: 0 30px 70px rgba(45,80,40,0.18); border: 1px solid rgba(120,100,60,0.08);
}
.cta-card h2 { font-size: clamp(30px, 4vw, 48px); }
.cta-card p { font-size: 18.5px; color: var(--ink-soft); font-weight: 600; margin-top: 16px; line-height: 1.5; }
.cta-card .hero-cta { justify-content: center; }
.cta-card .badge-leaf { font-size: 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #234d22; color: #cfe0c4; padding: 54px 0 30px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .brand .name { color: #fff; }
.footer .brand .mark { background: linear-gradient(150deg, #8fc56f, #5d9a4e); }
.footer .ftagline { color: #a9c69c; font-weight: 600; font-size: 15px; margin-top: 14px; max-width: 26em; line-height: 1.5; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.fcol h4 { font-family: var(--font-head); color: #fff; font-size: 16px; margin: 0 0 14px; }
.fcol a { display: block; color: #bcd3b0; font-weight: 600; font-size: 14.5px; margin-bottom: 10px; transition: color .15s; }
.fcol a:hover { color: #fff; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: #97b78a; font-size: 13.5px; font-weight: 600;
}
.footer-bottom a { transition: color .15s; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Footer creator credit
   ============================================================ */
.fcreator {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
  color: #a9c69c; font-weight: 700; font-size: 13px;
}
.fcreator .nobig { height: 15px; width: auto; display: block; color: #cfe0c4; transition: color .15s; }
.fcreator:hover .nobig { color: #fff; }

/* ============================================================
   Subpages (support / legal)
   ============================================================ */
.subpage-hero {
  background: linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 55%, var(--paper) 100%);
  padding: 64px 0 48px; text-align: center;
}
.subpage-hero h1 { font-size: clamp(32px, 4.4vw, 52px); letter-spacing: -.015em; }
.subpage-hero .kicker {
  display: inline-block; font-family: var(--font-hand); font-size: 26px; color: var(--green-500);
  font-weight: 700; line-height: 1; margin-bottom: 8px; transform: rotate(-2deg);
}
.subpage-hero p { margin-top: 14px; font-size: 17.5px; color: var(--ink-soft); font-weight: 600; }

.article { max-width: 760px; margin: 0 auto; padding: 54px 28px 96px; }
.article h2 { font-size: 26px; margin: 44px 0 14px; }
.article h2:first-child { margin-top: 0; }
.article p { color: var(--ink-soft); font-weight: 600; font-size: 16px; line-height: 1.65; margin-bottom: 14px; }
.article ul { margin: 0 0 14px; padding-left: 24px; }
.article li { color: var(--ink-soft); font-weight: 600; font-size: 16px; line-height: 1.65; margin-bottom: 8px; }
.article a { color: var(--green-700); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(106,168,91,0.4); text-underline-offset: 3px; }
.article a:hover { color: var(--green-500); }
.article .updated { font-size: 13.5px; color: var(--ink-faint); margin-top: 40px; }

.contact-card {
  display: flex; align-items: center; gap: 18px; margin: 26px 0 8px;
  background: var(--paper-2); border-radius: 22px; padding: 24px 26px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(120,100,60,0.07);
}
.contact-card .cicon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 27px; flex-shrink: 0; background: var(--leaf-soft);
}
.contact-card h3 { font-size: 19px; margin-bottom: 4px; }
.contact-card p { margin: 0; font-size: 15px; }

.faq { margin-top: 10px; }
.faq details {
  background: var(--paper-2); border-radius: 18px; padding: 0;
  box-shadow: var(--shadow-card); border: 1px solid rgba(120,100,60,0.07);
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 17.5px; color: var(--green-800);
  padding: 18px 22px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--green-500); flex-shrink: 0; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 22px 18px; margin: 0; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* floating bob */
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: no-preference) {
  .bob { animation: bob 5s ease-in-out infinite; }
  .bob-slow { animation: bob 7s ease-in-out infinite; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 60px; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-art { min-height: 520px; margin-top: 10px; }
  .mascot-inner, .parents-grid { grid-template-columns: 1fr; }
  .mascot-inner { text-align: center; }
  .credits-inner { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .credits .lead { margin-left: auto; margin-right: auto; }
  .free-badge { text-align: left; }
  .guides-grid { max-width: 640px; }
  .mascot .traits { justify-content: center; }
  .mascot-art { order: -1; }
  .parents-visual { min-height: 420px; order: -1; }
  .features, .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .section { padding: 70px 0; }
  .features, .steps { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .step .num { width: 40px; height: 40px; font-size: 19px; }
  .hero-art .phone { width: 270px; }
  .hero-art .phone-back { display: none; }
  .footer-top { flex-direction: column; }
}
