/* ============================================================
   fwog design — "The Lily Pond, in daylight"
   A storybook-pond design system: warm paper cream, layered
   green banks, ink-lined "print" cards with hard offset
   shadows, a sun with halo rings, and a frog who hops down
   the page from lily pad to lily pad as you scroll.
   Fraunces (full variable axes incl. WONK) + Geist.
   Vanilla CSS, no build step.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* inks & papers */
  --ink: #0C1F3F;            /* brand navy IS the ink */
  --ink-soft: #33415E;
  --navy-deep: #081729;
  --cream: #FBF7EE;
  --wash: #EDF5E4;           /* pale green section wash */
  --paper: #FFFEF9;

  /* greens — leaf is the logo's green */
  --leaf: #5CB947;
  --leaf-deep: #3E9230;
  --leaf-dark: #2E6E22;
  --leaf-pale: #DFF0D0;
  --emerald: #1AAE76;
  --emerald-deep: #0E6E49;
  --blue: #2563EB;
  --wa: #21BE5E;
  --sun: #F5B73D;

  /* supporting */
  --muted: #4D5B76;
  --muted-dark: rgba(251, 247, 238, 0.74);
  --line: rgba(12, 31, 63, 0.16);
  --line-dark: rgba(251, 247, 238, 0.16);

  /* type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Geist", -apple-system, "Segoe UI", sans-serif;
  --wonk: "SOFT" 0, "WONK" 1;

  /* geometry */
  --container: 1180px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-blob: 58% 42% 55% 45% / 52% 48% 52% 48%;

  /* the storybook "print" shadows — hard offsets, no blur */
  --pop: 4px 4px 0 var(--ink);
  --pop-lg: 7px 7px 0 var(--ink);
  --pop-sm: 3px 3px 0 var(--ink);

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.18s;
  --t-med: 0.45s;

  /* grain texture (SVG turbulence, data URI) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");

  /* hand-drawn squiggle underline (leaf green) */
  --squiggle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='9' viewBox='0 0 36 9'%3E%3Cpath d='M1 6.5C5 1.5 9 1.5 13 6.5s8 5 12 0s8-5 10-1' fill='none' stroke='%235CB947' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");

  /* organic bank edge between sections (tiles horizontally) */
  --bank: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 14 C40 0 80 28 120 14 L120 24 L0 24 Z' fill='%23EDF5E4'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--emerald-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--leaf-deep); }
::selection { background: var(--leaf); color: var(--ink); }
:focus-visible { outline: 3px solid var(--emerald); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-variation-settings: var(--wonk); }
p { text-wrap: pretty; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--leaf); color: var(--ink); padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Layout utilities ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 2.2rem; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.section { padding-block: clamp(4.2rem, 9vw, 7.5rem); position: relative; }
.section--cream { background: var(--wash); }
.section--cream::before { /* organic bank edge flowing in */
  content: ""; position: absolute; top: -22px; left: 0; right: 0; height: 23px;
  background: var(--bank) repeat-x bottom / 120px 24px;
  pointer-events: none;
}

/* ============================================================
   Buttons — ink-lined pills with hard pop shadows
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 650; font-size: 1rem;
  padding: 0.72rem 1.5rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  border: 2px solid var(--ink);
  box-shadow: var(--pop-sm);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }

.btn--primary { background: var(--leaf); color: var(--ink); }
.btn--primary:hover { background: #6AC756; color: var(--ink); }
.btn--whatsapp { background: var(--wa); color: var(--ink); }
.btn--whatsapp:hover { background: #2BD46E; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--paper); color: var(--ink); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--lg { padding: 0.9rem 1.85rem; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* dark sections: keep ink lines but glow against navy */
.cta-band .btn--ghost { color: var(--cream); border-color: var(--cream); box-shadow: 3px 3px 0 rgba(251,247,238,0.35); }
.cta-band .btn--ghost:hover { background: rgba(251,247,238,0.08); color: var(--cream); box-shadow: 5px 5px 0 rgba(251,247,238,0.35); }

/* ============================================================
   Header — paper band, inked underline
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
  transition: box-shadow var(--t-fast) var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 24px -14px rgba(12, 31, 63, 0.4); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }

.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--ink);
}
.brand .mark { width: 38px; height: 38px; flex: none; transition: transform var(--t-med) var(--spring); }
.brand:hover .mark { transform: rotate(-14deg) scale(1.08); }
.brand__name {
  font-family: var(--font-body); font-weight: 800; font-size: 1.18rem;
  letter-spacing: 0.015em; color: var(--ink);
}
.brand__name .brand__eye { color: var(--leaf-deep); }

.nav-links { display: flex; gap: 0.3rem; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  display: block; padding: 0.42rem 0.85rem; border-radius: 999px;
  color: var(--ink-soft); text-decoration: none; font-weight: 550; font-size: 0.98rem;
  border: 2px solid transparent;
  transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--leaf-pale); }
.nav-links a.active { color: var(--ink); background: var(--leaf-pale); border-color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.nav-toggle {
  display: none; background: var(--paper); border: 2px solid var(--ink);
  color: var(--ink); border-radius: 12px; padding: 0.42rem; cursor: pointer;
  box-shadow: var(--pop-sm);
}
.nav-toggle:active { transform: translate(2px, 2px); box-shadow: none; }

/* ============================================================
   Hero — the pond at noon
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(245, 183, 61, 0.20), transparent 38%),
    linear-gradient(180deg, #FDFAF2 0%, #F4F8EA 55%, #E9F3DE 100%);
  padding-block: clamp(3.8rem, 8vw, 6.5rem) clamp(4.2rem, 9vw, 7rem);
}
.hero::before { /* grain */
  content: ""; position: absolute; inset: 0;
  background: var(--grain); background-size: 160px;
  opacity: 0.05; pointer-events: none; mix-blend-mode: multiply;
}
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; position: relative;
}
.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.6rem);
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.hero h1 em {
  font-style: italic; color: var(--leaf-deep);
  font-variation-settings: "SOFT" 0, "WONK" 1;
  padding-bottom: 0.08em;
  background: var(--squiggle) repeat-x left bottom / 34px 9px;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); font-weight: 380;
  line-height: 1.75; color: var(--muted);
  max-width: 56ch; margin-bottom: 2rem;
}
.hero__ticks {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 0.55rem 1.5rem; padding: 0; margin-top: 2rem;
  font-size: 0.95rem; color: var(--ink-soft); font-weight: 500;
}
.hero__ticks li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__ticks svg { color: var(--leaf-deep); flex: none; }

/* --- the illustrated pond scene --- */
.hero__visual { position: relative; }
.scene { width: 100%; height: auto; overflow: visible; }
.scene * { transform-box: fill-box; }

.scene .sun { transform-origin: center; animation: sunGlow 6s ease-in-out infinite alternate; }
@keyframes sunGlow { from { transform: scale(1); } to { transform: scale(1.05); } }

.scene .rip {
  fill: none; stroke: #fff; stroke-width: 1.6; opacity: 0;
  transform-origin: center;
  animation: ripExpand 5s var(--ease) infinite;
}
.scene .rip:nth-child(2) { animation-delay: 2.5s; }
@keyframes ripExpand {
  0% { transform: scale(0.45); opacity: 0; }
  20% { opacity: 0.75; }
  100% { transform: scale(1.6); opacity: 0; }
}

.scene .lily { transform-origin: center; animation: lilyBob 5s ease-in-out infinite alternate; }
.scene .lily.l2 { animation-duration: 6.2s; animation-delay: -1.8s; }
.scene .lily.l3 { animation-duration: 5.6s; animation-delay: -3s; }
@keyframes lilyBob { from { transform: translateY(0); } to { transform: translateY(-4px); } }

.scene .reeds { transform-origin: bottom center; animation: reedSway 6.5s ease-in-out infinite alternate; }
@keyframes reedSway { from { transform: rotate(-1.6deg); } to { transform: rotate(2deg); } }

.scene .hero-frog { transform-origin: bottom center; animation: frogBreath 4.2s ease-in-out infinite alternate; }
@keyframes frogBreath { from { transform: scale(1); } to { transform: scale(1.025); } }
.scene .blink { transform-origin: center; animation: blink 5.4s infinite; }
@keyframes blink { 0%, 90%, 100% { transform: scaleY(1); } 93%, 95% { transform: scaleY(0.08); } }

.scene .dragonfly { animation: dfDrift 26s ease-in-out infinite; }
@keyframes dfDrift {
  0%   { transform: translate(30px, 70px) rotate(8deg); }
  30%  { transform: translate(190px, 16px) rotate(-6deg); }
  55%  { transform: translate(330px, 60px) rotate(10deg); }
  80%  { transform: translate(150px, 110px) rotate(-8deg); }
  100% { transform: translate(30px, 70px) rotate(8deg); }
}
.scene .wings { transform-origin: center; animation: flutter 0.22s linear infinite alternate; }
@keyframes flutter { from { transform: scaleY(1); } to { transform: scaleY(0.5); } }

/* hero load sequence */
@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .lede, .hero .btn-row, .hero .hero__ticks {
    animation: heroIn 0.85s var(--ease) both;
  }
  .hero .lede { animation-delay: 0.1s; }
  .hero .btn-row { animation-delay: 0.2s; }
  .hero .hero__ticks { animation-delay: 0.3s; }
  .hero__visual { animation: heroVis 1.1s var(--spring) 0.15s both; }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroVis {
  from { opacity: 0; transform: translateY(20px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   Marquee ribbon — inked band
   ============================================================ */
.marquee {
  overflow: hidden; background: var(--leaf); color: var(--ink);
  padding-block: 0.8rem; border-block: 2px solid var(--ink);
}
.marquee__track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 2.6rem;
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 560;
  letter-spacing: 0.01em; white-space: nowrap;
}
.marquee__track i { font-style: italic; }
@supports (-webkit-text-stroke: 1px black) {
  .marquee__track i { -webkit-text-stroke: 1.1px var(--ink); color: transparent; }
}
.marquee__track .spark { color: var(--ink); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Section heads — eyebrow + ghost numerals
   ============================================================ */
.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); position: relative; z-index: 1; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 600; margin-block: 0.55rem 1rem; }
.section-head h2 em {
  font-style: italic; color: var(--leaf-deep);
  font-variation-settings: "SOFT" 0, "WONK" 1;
}
.section-head p { color: var(--muted); }
.section-head[data-no]::before {
  content: attr(data-no);
  position: absolute; top: -0.55em; left: -0.08em; z-index: -1;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(5.5rem, 12vw, 9rem); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(12, 31, 63, 0.13);
  pointer-events: none; user-select: none;
}
.section-head.center[data-no]::before { left: 50%; transform: translateX(-50%); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--leaf-dark);
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: var(--leaf); flex: none;
}
.cta-band .eyebrow { color: var(--leaf); }

/* ============================================================
   Stats — inked cards, wonky numerals
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.stats > div {
  background: var(--paper); border: 2px solid var(--ink);
  border-radius: var(--r-lg); padding: 1.9rem 1.6rem 1.6rem;
  position: relative; overflow: hidden;
  box-shadow: var(--pop);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.stats > div::after { /* lily-pad wash in the corner */
  content: ""; position: absolute; right: -34px; bottom: -34px;
  width: 110px; height: 110px; border-radius: var(--r-blob);
  background: var(--leaf-pale);
  transition: transform var(--t-med) var(--spring);
}
.stats > div:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); }
.stats > div:hover::after { transform: scale(1.5); }
.stats .num {
  font-family: var(--font-display); font-weight: 640;
  font-variation-settings: var(--wonk);
  font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1.1;
  color: var(--ink); padding-bottom: 0.06em;
  position: relative; z-index: 1;
}
.stats .lbl { color: var(--muted); font-size: 0.98rem; margin-top: 0.2rem; position: relative; z-index: 1; }

/* ============================================================
   Pricing tiers — hand-placed lily pads (slight tilts)
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 2px solid var(--ink);
  border-radius: var(--r-lg); padding: 2rem 1.7rem 1.7rem;
  box-shadow: var(--pop);
  rotate: -0.8deg;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), rotate var(--t-med) var(--spring);
}
.tier:nth-child(3) { rotate: 0.8deg; }
.tier:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); rotate: 0deg; }
.tier__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 620; color: var(--ink); }
.tier__desc { color: var(--muted); font-size: 0.98rem; margin-top: 0.45rem; min-height: 3.2em; }
.tier__price {
  font-family: var(--font-display); font-weight: 640;
  font-variation-settings: var(--wonk);
  font-size: clamp(2.5rem, 4.6vw, 3.3rem); line-height: 1.15;
  color: var(--ink); margin-block: 0.8rem 1.1rem; padding-bottom: 0.05em;
}
.tier__price span { font-family: var(--font-body); font-size: 0.95rem; font-weight: 480; color: var(--muted); font-variation-settings: normal; letter-spacing: 0; margin-left: 0.3rem; }
.tier__list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 0.6rem; flex: 1; align-content: start; }
.tier__list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.98rem; }
.tier__list svg { color: var(--leaf-deep); flex: none; margin-top: 0.22em; }
.tier__badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--sun); color: var(--ink);
  border: 2px solid var(--ink);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.32rem 1rem; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--pop-sm);
}

/* featured tier: the sunlit pad */
.tier--featured {
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(245, 183, 61, 0.16), transparent 50%),
    linear-gradient(165deg, #E5F4D8, var(--leaf-pale));
  rotate: 0deg;
  z-index: 1;
}
.tier--featured .tier__price { color: var(--leaf-dark); }
.tier--featured .tier__list svg { color: var(--leaf-dark); }

/* ============================================================
   Care plans
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.plan {
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem; box-shadow: var(--pop);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.plan:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); }
.plan h3 { font-size: 1.25rem; }
.plan__price {
  font-family: var(--font-display); font-weight: 640;
  font-variation-settings: var(--wonk);
  font-size: 2.3rem; color: var(--ink); margin-top: 0.4rem; padding-bottom: 0.05em;
}
.plan__price span { font-family: var(--font-body); font-size: 0.92rem; font-weight: 480; color: var(--muted); font-variation-settings: normal; }

/* ============================================================
   Process steps + frog-hop trajectory
   ============================================================ */
.steps-wrap { position: relative; padding-top: 86px; }
.leap {
  position: absolute; inset: 0 0 auto 0; height: 96px;
  pointer-events: none; color: var(--leaf-deep);
  opacity: 0.85; overflow: visible;
}
.leap path {
  fill: none; stroke: currentColor; stroke-width: 4;
  stroke-linecap: round; stroke-dasharray: 0.1 14;
}
@media (prefers-reduced-motion: no-preference) {
  .leap path { animation: hopMarch 2.6s linear infinite; }
}
@keyframes hopMarch { to { stroke-dashoffset: -28; } }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.step {
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg);
  padding: 1.7rem 1.4rem; box-shadow: var(--pop);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.step:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); }
.step__num {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: var(--r-blob);
  background: var(--leaf-pale); color: var(--leaf-dark);
  border: 2px solid var(--ink);
  font-family: var(--font-display); font-weight: 650; font-size: 1.15rem;
  margin-bottom: 0.9rem;
  transition: border-radius var(--t-med) var(--ease), background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.step:hover .step__num { border-radius: 50%; background: var(--leaf); color: var(--ink); }
.step h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* ============================================================
   Flow (how-it-works) — editorial numbered rows
   ============================================================ */
.flow { display: grid; gap: 1.5rem; max-width: 880px; margin-inline: auto; }
.flow-item {
  display: grid; grid-template-columns: 92px 1fr; gap: 1.4rem; align-items: start;
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg);
  padding: 1.8rem 1.8rem 1.8rem 1.4rem; box-shadow: var(--pop);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.flow-item:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); }
.flow-item .n {
  font-family: var(--font-display); font-weight: 600;
  font-variation-settings: var(--wonk);
  font-size: 3.6rem; line-height: 1; text-align: center;
  color: transparent; -webkit-text-stroke: 1.5px var(--leaf-deep);
  padding-top: 0.1em;
}
.flow-item h3 { font-size: 1.45rem; margin-bottom: 0.45rem; }
.flow-item p { color: var(--muted); }

/* ============================================================
   Cards, features, prose
   ============================================================ */
.card {
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem; box-shadow: var(--pop);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.98rem; }

.ic {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; flex: none;
  border-radius: var(--r-blob);
  background: var(--leaf-pale); color: var(--leaf-dark);
  border: 2px solid var(--ink);
  margin-bottom: 1rem;
  transition: border-radius var(--t-med) var(--ease), transform var(--t-med) var(--spring),
              background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.card:hover .ic, .addon-card:hover .ic, .feature:hover .ic {
  border-radius: 50%; transform: rotate(-8deg) scale(1.07);
  background: var(--leaf); color: var(--ink);
}

.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; }
.prose h2::after {
  content: ""; display: block; width: 56px; height: 8px; margin-top: 0.55rem;
  background: var(--squiggle) repeat-x left center / 34px 8px;
}
.prose p { color: var(--muted); margin-bottom: 1rem; }

/* ============================================================
   Add-ons
   ============================================================ */
.addon { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.addon-card {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem; box-shadow: var(--pop);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.addon-card:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); }
.addon-card .ic { margin-bottom: 0; }
.addon-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.addon-card p { color: var(--muted); font-size: 0.97rem; }
.addon-card--feature {
  background:
    radial-gradient(130% 130% at 100% 0%, rgba(245, 183, 61, 0.13), transparent 55%),
    linear-gradient(165deg, #EFF7E4, var(--paper));
}
.addon-tag {
  display: inline-block; background: var(--sun); color: var(--ink);
  border: 2px solid var(--ink);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.7rem; border-radius: 999px; margin-bottom: 0.55rem;
  transform: rotate(-1.5deg);
}
.addon-list { margin: 0.8rem 0 1rem; padding-left: 1.1rem; color: var(--muted); font-size: 0.95rem; display: grid; gap: 0.35rem; }
.addon-list li::marker { content: "✦  "; color: var(--leaf-deep); }
.price-pill {
  display: inline-block; margin-top: 0.7rem;
  font-family: var(--font-display); font-weight: 640; font-size: 1.02rem;
  color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 0.28rem 0.95rem;
  background: var(--leaf-pale);
  box-shadow: 2px 2px 0 var(--ink);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 1rem; }
.faq details {
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-md);
  padding: 0; overflow: hidden; box-shadow: var(--pop-sm);
  transition: box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.faq details:hover { transform: translate(-2px, -2px); box-shadow: var(--pop); }
.faq details[open] { box-shadow: var(--pop); background: linear-gradient(165deg, #F4FAEC, var(--paper)); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; color: var(--ink);
  padding: 1.25rem 1.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .chev { flex: none; color: var(--leaf-deep); transition: transform var(--t-med) var(--spring); }
.faq details[open] .chev { transform: rotate(180deg); }
.faq details p { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-grid h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.contact-methods { display: grid; gap: 1rem; }
.method {
  display: flex; align-items: center; gap: 1rem;
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-md);
  padding: 1.05rem 1.2rem; text-decoration: none; color: var(--ink);
  box-shadow: var(--pop-sm);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.method:hover { transform: translate(-2px, -2px); box-shadow: var(--pop); color: var(--ink); }
.method .ic { width: 48px; height: 48px; margin: 0; }
.method .ic.wa { background: rgba(33, 190, 94, 0.18); color: var(--leaf-dark); }
.method > span:last-child { display: grid; }
.method b { font-weight: 700; color: var(--ink); }
.method span span { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   Forms
   ============================================================ */
.form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r-sm);
  padding: 0.78rem 1rem; width: 100%;
  box-shadow: 2px 2px 0 rgba(12, 31, 63, 0.35);
  transition: box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--leaf-deep);
  box-shadow: 0 0 0 4px rgba(92, 185, 71, 0.25);
}
.form-status { min-height: 1.4em; font-weight: 600; }
.form-status.ok { color: var(--leaf-dark); }
.form-status.err { color: #C0392B; }

/* ============================================================
   Page hero (inner pages) — sunny clearing
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 86% 0%, rgba(245, 183, 61, 0.22), transparent 42%),
    linear-gradient(180deg, #FDFAF2, #EDF5E2);
  border-bottom: 2px solid var(--ink);
  padding-block: clamp(3.4rem, 6.5vw, 5rem) clamp(3.8rem, 7.5vw, 5.6rem);
}
.page-hero::before { /* grain */
  content: ""; position: absolute; inset: 0;
  background: var(--grain); background-size: 160px;
  opacity: 0.05; pointer-events: none; mix-blend-mode: multiply;
}
.page-hero::after { /* sun halo, top-right */
  content: ""; position: absolute; top: -110px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 2px solid rgba(245, 183, 61, 0.5);
  box-shadow: 0 0 0 46px rgba(245, 183, 61, 0.12), 0 0 0 105px rgba(245, 183, 61, 0.06);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-block: 0.7rem 1rem; max-width: 22ch;
}
.page-hero h1 em {
  font-style: italic; color: var(--leaf-deep);
  font-variation-settings: "SOFT" 0, "WONK" 1;
  padding-bottom: 0.06em;
  background: var(--squiggle) repeat-x left bottom / 30px 8px;
}
.page-hero p { color: var(--muted); max-width: 60ch; }
@media (prefers-reduced-motion: no-preference) {
  .page-hero .eyebrow, .page-hero h1, .page-hero p { animation: heroIn 0.8s var(--ease) both; }
  .page-hero h1 { animation-delay: 0.08s; }
  .page-hero p { animation-delay: 0.16s; }
}

/* ============================================================
   CTA band — dusk falls on the pond (fireflies out)
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 130% at 85% 10%, rgba(37, 99, 235, 0.25), transparent 55%),
    linear-gradient(168deg, #14305C, var(--navy-deep));
  color: var(--cream); text-align: center;
  border: 2px solid var(--ink);
  border-radius: clamp(20px, 4vw, 44px);
  margin-inline: clamp(0.8rem, 2.5vw, 2rem);
  padding-block: clamp(4rem, 8vw, 6.5rem);
  box-shadow: 6px 6px 0 rgba(12, 31, 63, 0.25);
}
.cta-band h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem); color: var(--cream);
  font-variation-settings: var(--wonk); margin-bottom: 0.9rem;
}
.cta-band p { color: var(--muted-dark); max-width: 56ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-band .btn-row { justify-content: center; }

/* fireflies — one dot, many box-shadow clones, drifting & twinkling */
.cta-band::after, .site-footer::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: #F8E48A;
  box-shadow:
    8vw  18vh 0 -1px #F8E48A,
    22vw  6vh 0  0px rgba(248, 228, 138, 0.8),
    34vw 22vh 0 -2px #F8E48A,
    52vw 10vh 0 -1px rgba(248, 228, 138, 0.7),
    66vw 20vh 0  0px #F8E48A,
    78vw  7vh 0 -2px rgba(248, 228, 138, 0.85),
    90vw 16vh 0 -1px #F8E48A;
  filter: blur(0.4px);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .cta-band::after, .site-footer::after { animation: fireflies 7s ease-in-out infinite alternate; }
}
@keyframes fireflies {
  0%   { transform: translate(0, 0); opacity: 0.35; }
  50%  { opacity: 0.95; }
  100% { transform: translate(14px, -16px); opacity: 0.5; }
}

/* ============================================================
   Footer — the pond at night + watermark
   ============================================================ */
.site-footer {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--navy-deep), #050E1A);
  color: var(--muted-dark);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 5.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 2px solid var(--ink);
}
.site-footer::before { /* giant watermark */
  content: "fwogdesign";
  position: absolute; left: 50%; bottom: -0.34em; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 640;
  font-variation-settings: var(--wonk);
  font-size: clamp(5rem, 16vw, 13rem); line-height: 1; white-space: nowrap;
  color: rgba(251, 247, 238, 0.05);
  pointer-events: none; user-select: none;
}
.site-footer .brand, .site-footer .brand__name { color: var(--cream); }
.site-footer .brand__name .brand__eye { color: var(--leaf); }
.site-footer .cols {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.4rem;
  position: relative; z-index: 1;
}
.site-footer .brand { margin-bottom: 0.9rem; }
.site-footer .fcol > p { font-size: 0.97rem; max-width: 34ch; }
.site-footer h4 {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream);
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.45rem; }
.site-footer a { color: var(--muted-dark); text-decoration: none; transition: color var(--t-fast) var(--ease); }
.site-footer a:hover { color: var(--leaf); }
.site-footer .copy {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  border-top: 1px solid var(--line-dark);
  margin-top: 2.6rem; padding-top: 1.4rem;
  font-size: 0.9rem; position: relative; z-index: 1;
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--wa); color: var(--ink);
  border: 2px solid var(--ink);
  padding: 0.8rem; border-radius: 999px; text-decoration: none;
  box-shadow: var(--pop-sm);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.wa-float:hover { transform: translate(-2px, -2px); box-shadow: var(--pop); color: var(--ink); }
.wa-float .label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-weight: 700; font-size: 0.95rem;
  transition: max-width 0.45s var(--ease), margin 0.45s var(--ease);
}
.wa-float:hover .label { max-width: 130px; margin-right: 0.35rem; }

/* ============================================================
   The frog journey — fixed rail of lily pads down the margin;
   the frog (injected by main.js) hops pad-to-pad as you scroll
   ============================================================ */
.journey {
  position: fixed; inset: 0;
  z-index: 80; pointer-events: none;
}
.journey__pad {
  position: absolute; left: 0; top: 0; width: 36px; height: 17px;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--spring);
}
.journey__pad.is-shown { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.journey__pad::after { /* landing ripple */
  content: ""; position: absolute; inset: -9px -12px;
  border: 2px solid var(--leaf-deep); border-radius: 50%;
  opacity: 0; transform: scale(0.4);
}
.journey__pad.is-active::after { animation: padRipple 0.7s var(--ease); }
@keyframes padRipple {
  0% { transform: scale(0.4); opacity: 0.85; }
  100% { transform: scale(1.25); opacity: 0; }
}
.journey__frog {
  position: absolute; left: 0; top: 0;
  width: 46px; height: 40px; margin-left: -23px;
  will-change: transform;
}
.journey__frog .pose-leap { display: none; }
.journey__frog.is-leaping .pose-sit { display: none; }
.journey__frog.is-leaping .pose-leap { display: block; }
.journey__frog .bob { animation: frogIdle 3.4s ease-in-out infinite alternate; }
.journey__frog.is-leaping .bob { animation: none; }
@keyframes frogIdle { from { transform: translateY(0); } to { transform: translateY(-3px); } }

@media (max-width: 1320px) { .journey { display: none; } }
@media (prefers-reduced-motion: reduce) { .journey { display: none; } }

/* ============================================================
   Scroll-reveal system (variants applied by main.js)
   ============================================================ */
.reveal { will-change: transform, opacity; }
.reveal--rise { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal--stagger { opacity: 0; transform: translateY(30px) scale(0.97); transition: opacity 0.65s var(--ease), transform 0.65s var(--spring); }
.reveal--left { opacity: 0; transform: translateX(-36px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal--right { opacity: 0; transform: translateX(36px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal--mask { clip-path: inset(0 0 100% 0); transition: clip-path 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; clip-path: inset(0 0 0% 0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0.2rem;
    background: var(--cream); border-bottom: 2px solid var(--ink);
    padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem) 1.2rem;
    box-shadow: 0 24px 40px -18px rgba(12, 31, 63, 0.35);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 0.9rem; font-size: 1.05rem; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .btn-desktop { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 420px; margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .leap { display: none; }
  .steps-wrap { padding-top: 0; }
  .pricing, .plans { grid-template-columns: 1fr 1fr; }
  .tier--featured { grid-column: 1 / -1; order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .grid-2, .grid-3, .pricing, .plans, .stats, .steps { grid-template-columns: 1fr; }
  .tier, .tier:nth-child(3) { rotate: 0deg; }
  .tier--featured { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .flow-item { grid-template-columns: 64px 1fr; padding: 1.4rem 1.3rem 1.4rem 1rem; }
  .flow-item .n { font-size: 2.6rem; }
  .addon-card { flex-direction: column; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .cta-band { margin-inline: 0.6rem; }
  .hero__ticks { gap: 0.5rem 1.1rem; }
  .marquee__track span { font-size: 0.95rem; }
  .wa-float .label { display: none; }
}

/* ============================================================
   Reduced motion — still water
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; transform: none; }
}
