/* ============================================================
   DUSK MEADOW — the Paw Walk design system
   One system, defined once, imported identically by every page.
   Direction: a bedtime-story walk at dusk. Deep night-sky bands
   for wonder, warm paper bands for parent reading, a hand-drawn
   ink line everywhere, and exactly one loud thing: the blush CTA.
   ============================================================ */

:root {
  /* palette — sampled from the art boards, extended into a ladder */
  --night:        #241A3B;  /* deepest sky */
  --bg:           #2E2148;  /* page dark base */
  --surface:      #3B2C5C;  /* raised dark surface */
  --paper:        #FBF3EA;  /* warm reading paper */
  --paper-2:      #F2E4D3;  /* sunken paper */
  --ink:          #2A1F3D;  /* primary text on paper */
  --ink-soft:     #4A3D63;  /* softened ink */
  --muted:        #6B5D81;  /* secondary text on paper — AA 5.3:1 */
  --muted-dark:   #C9BBE0;  /* secondary text on night — AA 8:1 */
  --brand:        #7C5FA8;  /* dusk purple */
  --brand-deep:   #563E79;  /* headings on paper */
  --accent:       #E8798A;  /* blush — RESERVED for the primary CTA */
  --accent-deep:  #D15A6E;  /* CTA hover/press */
  --moon:         #F2CE95;  /* moon + stars */
  --cloud:        #B49AD6;  /* lavender clouds */
  --grass:        #4C8A6C;  /* meadow */
  --road:         #8A6E5C;  /* the road */
  --white:        #FFFFFF;  /* the creature */

  --line-dark:    rgba(255, 255, 255, .14);
  --line-paper:   rgba(42, 31, 61, .14);

  /* type */
  --font-display: 'Patrick Hand', 'Comic Sans MS', cursive;
  --font-body:    'Nunito', -apple-system, 'Segoe UI', sans-serif;

  /* motion — defined once */
  --dur-fast:  .18s;
  --dur-med:   .34s;
  --ease-out:  cubic-bezier(.22, 1, .36, 1);

  /* shape */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  /* warm-tinted shadows */
  --shadow-sm: 0 2px 8px rgba(24, 14, 44, .10);
  --shadow-md: 0 10px 28px rgba(24, 14, 44, .16);
  --shadow-lg: 0 22px 54px rgba(24, 14, 44, .24);

  --wrap: 1120px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 84px; /* room for the mobile action bar */
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .4em; overflow-wrap: break-word; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
li { margin-bottom: .45em; }
:focus-visible { outline: 3px solid var(--moon); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .005em;
  text-transform: lowercase;
}
h1 { font-size: clamp(2.3rem, 8.6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); line-height: 1.25; }
.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.6; }
.small { font-size: .9rem; }

/* hand-drawn wobbly underline — ten skew/width variations */
.u {
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.u::after {
  content: "";
  position: absolute;
  left: -4%;
  bottom: -.06em;
  height: .14em;
  background: currentColor;
  opacity: .9;
  border-radius: 99px;
  transform: rotate(-1deg);
}
.u:nth-of-type(10n+1)::after { width: 104%; transform: rotate(-1.2deg); }
.u:nth-of-type(10n+2)::after { width: 108%; transform: rotate(.8deg);  left: -5%; }
.u:nth-of-type(10n+3)::after { width: 106%; transform: rotate(-.6deg); }
.u:nth-of-type(10n+4)::after { width: 110%; transform: rotate(1.1deg); left: -6%; }
.u:nth-of-type(10n+5)::after { width: 105%; transform: rotate(-1.6deg); }
.u:nth-of-type(10n+6)::after { width: 112%; transform: rotate(.5deg);  left: -7%; }
.u:nth-of-type(10n+7)::after { width: 104%; transform: rotate(-.9deg); }
.u:nth-of-type(10n+8)::after { width: 109%; transform: rotate(1.4deg); left: -5%; }
.u:nth-of-type(10n+9)::after { width: 107%; transform: rotate(-1.8deg); }
.u:nth-of-type(10n+0)::after { width: 105%; transform: rotate(.9deg); }

/* numbered eyebrow — narrative rhythm */
.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 6px;
  gap: 10px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 100%;
}
@media (max-width: 480px) {
  .eyebrow { font-size: .7rem; letter-spacing: .09em; }
}
.eyebrow .num {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  letter-spacing: .05em;
  border: 2px solid currentColor;
  flex: none;
}
.on-night .eyebrow { color: var(--cloud); }
.on-paper .eyebrow { color: var(--brand-deep); }

/* ---------- page bands ---------- */
.band { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.band.night {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(206, 133, 191, .16), transparent 60%),
    linear-gradient(var(--bg), var(--night));
  color: var(--white);
}
.band.paper {
  background:
    radial-gradient(rgba(42,31,61,.05) 1.2px, transparent 1.3px) 0 0 / 26px 26px,
    var(--paper);
  color: var(--ink);
}
.band.paper h2, .band.paper h3 { color: var(--brand-deep); }
.band + .band.paper { border-top: 1px solid var(--line-paper); }
.on-paper p, .on-paper li { color: var(--ink-soft); }
.on-paper .lead { color: var(--ink); }
.on-night p, .on-night li { color: var(--muted-dark); }
.on-night .lead { color: var(--white); }
.hairline { border: 0; border-top: 1px solid var(--line-paper); margin: 0; }
.on-night .hairline { border-color: var(--line-dark); }

/* ---------- header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(36, 26, 59, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 66px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
  text-decoration: none;
  text-transform: lowercase;
}
.brand svg { width: 34px; height: 34px; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  color: var(--muted-dark);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.site-nav a:hover { color: var(--white); background: rgba(255, 255, 255, .08); }
.site-nav .btn { margin-left: 10px; }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .site-nav a:not(.btn) { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 4px 0 rgba(42, 31, 61, .9);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 6px 0 rgba(42, 31, 61, .9); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(42, 31, 61, .9); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.on-paper .btn-ghost { color: var(--brand-deep); border-color: rgba(86, 62, 121, .5); }
.on-paper .btn-ghost:hover { border-color: var(--brand-deep); }
.btn svg { width: 18px; height: 18px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 980px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--night) 0%, var(--bg) 46%, #4A3573 72%, var(--brand) 100%);
}
#skyCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-layer { position: absolute; inset: -4%; pointer-events: none; will-change: transform; }
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 90px 24px 120px; /* keep .wrap's side padding — same specificity, later rule wins */
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 64px 24px 96px; }
}
.hero h1 { color: var(--white); }
.hero h1 .moon-word { color: var(--moon); }
.hero .lead { max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 26px 0 18px; }
.hero-note { font-size: .9rem; color: var(--muted-dark); }

/* store badges — static "coming soon", not links */
.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.2;
}
.badge svg { width: 22px; height: 22px; flex: none; }
.badge .soon {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* the creature + paw spot (signature element) */
.hero-stage { position: relative; display: grid; place-items: center; }
.creature {
  width: clamp(240px, 30vw, 380px);
  filter: drop-shadow(0 0 26px rgba(255, 255, 255, .45)) drop-shadow(0 0 90px rgba(255, 255, 255, .18));
}
.paw-spot {
  position: absolute;
  right: 6%;
  bottom: 9%;
  width: clamp(96px, 11vw, 138px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px dashed rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
  animation: spotPulse 2.6s var(--ease-out) infinite;
}
.paw-spot:hover { transform: scale(1.06); background: rgba(255, 255, 255, .12); }
.paw-spot .hint {
  position: absolute;
  top: -2.4em;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  white-space: nowrap;
}
.paw-spot svg { width: 46%; opacity: .95; }
@keyframes spotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 121, 138, .5); }
  55%      { box-shadow: 0 0 0 18px rgba(232, 121, 138, 0); }
}

/* floating trust stickers — double-stroke cartoon depth */
.sticker {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .86rem;
  color: var(--ink);
  background: var(--moon);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--white);
  outline: 2.5px solid var(--ink);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.sticker svg { width: 16px; height: 16px; }
.sticker.pink { background: #F5B8C6; }
.sticker.lav  { background: var(--cloud); }
.sticker-1 { top: 9%;  left: 2%;  transform: rotate(-5deg); animation: bob 5.2s ease-in-out infinite; }
.sticker-2 { top: 21%; right: -1%; transform: rotate(4deg);  animation: bob 6.4s ease-in-out .7s infinite; }
.sticker-3 { bottom: 5%; left: 6%; transform: rotate(3deg);  animation: bob 5.8s ease-in-out 1.3s infinite; }
@media (max-width: 920px) { .sticker { display: none; } }
@keyframes bob {
  0%, 100% { margin-top: 0; }
  50%      { margin-top: -12px; }
}

/* ---------- trust strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.trust-strip .t {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  font-weight: 800;
  font-size: .95rem;
  color: var(--white);
}
.trust-strip .t + .t { border-left: 1px solid var(--line-dark); }
.trust-strip svg { width: 26px; height: 26px; flex: none; color: var(--moon); }
@media (max-width: 860px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip .t:nth-child(3) { border-left: 0; }
  .trust-strip .t { border-top: 1px solid var(--line-dark); }
  .trust-strip .t:nth-child(-n+2) { border-top: 0; }
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.step .scene { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 18px; border: 2px solid var(--ink); }
.step h3 { margin-bottom: .3em; }
.step .n {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 4px;
}

/* ---------- privacy promise (dark manifesto) ---------- */
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
@media (max-width: 860px) { .promise-grid { grid-template-columns: 1fr; } }
.promise-list { list-style: none; padding: 0; margin: 34px 0 0; }
.promise-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}
.promise-list svg { width: 30px; height: 30px; color: var(--moon); margin-top: 3px; }
.promise-list b { display: block; color: var(--white); font-size: 1.08rem; margin-bottom: 2px; }
.promise-list span { color: var(--muted-dark); }

/* ---------- ritual stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr; } }
.stat {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.stat .big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--brand-deep);
  line-height: 1;
}
.stat p { margin: 8px 0 0; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: 1fr 1.35fr; gap: 26px; margin-top: 44px; align-items: stretch; }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.plan.hero-plan {
  background: var(--brand-deep);
  color: var(--white);
  border-width: 3px;
  box-shadow: var(--shadow-lg);
}
.plan h3 { margin-bottom: 4px; }
.plan.hero-plan h3 { color: var(--white); }
.plan .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 10px 0 4px;
  color: var(--brand-deep);
}
.plan.hero-plan .price { color: var(--moon); }
.plan .per { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.plan.hero-plan .per { color: var(--muted-dark); }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; }
.plan li { padding-left: 28px; position: relative; margin-bottom: .55em; }
.plan li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cloud);
  border: 2px solid var(--ink);
}
.plan.hero-plan li { color: #EDE6F7; }
.plan.hero-plan li::before { background: var(--moon); }
.plan .btn { margin-top: auto; }
.plan-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
@media (max-width: 520px) { .plan-tiers { grid-template-columns: 1fr; } }
.tier {
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.tier.best { border-color: var(--moon); background: rgba(242, 206, 149, .12); position: relative; }
.tier .t-price { font-weight: 800; font-size: 1.05rem; }
.tier .t-name { font-size: .82rem; color: var(--muted-dark); }
.tier .t-tag {
  position: absolute;
  top: -12px; right: 10px;
  background: var(--moon);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
}

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; }
.faq details {
  border-top: 1px solid var(--line-paper);
  padding: 20px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line-paper); }
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--brand-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 12px 0 0; max-width: 68ch; }

/* ---------- forms ---------- */
.form-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  max-width: 640px;
}
.form-row { margin-bottom: 18px; }
label { display: block; font-weight: 800; font-size: .95rem; color: var(--ink); margin-bottom: 7px; }
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 13px 16px;
  transition: box-shadow var(--dur-fast) var(--ease-out);
}
input:focus, select:focus, textarea:focus { outline: none; box-shadow: 0 0 0 4px rgba(124, 95, 168, .3); }
textarea { min-height: 130px; resize: vertical; }
.field-err { display: none; color: #B03A4C; font-size: .85rem; font-weight: 700; margin-top: 6px; }
.invalid input, .invalid textarea { border-color: #B03A4C; }
.invalid .field-err { display: block; }
.form-success { display: none; text-align: center; padding: 18px 6px; }
.form-success.show { display: block; }
.form-success .creature-sm { width: 120px; margin: 0 auto 14px; }
.form-success h3 { color: var(--brand-deep); }
form.hide { display: none; }

/* ---------- waitlist band ---------- */
.waitlist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 860px) { .waitlist-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-foot {
  background: var(--night);
  border-top: 1px solid var(--line-dark);
  padding: 54px 0 40px;
  color: var(--muted-dark);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; } }
.site-foot h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-foot a { color: var(--muted-dark); text-decoration: none; display: block; padding: 4px 0; font-weight: 600; }
.site-foot a:hover { color: var(--white); }
.foot-base {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .88rem;
}

/* ---------- mobile action bar (mandatory, every page) ---------- */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(36, 26, 59, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
}
.action-bar .btn { width: 100%; }
@media (max-width: 860px) {
  .action-bar { display: block; }
}
@media (min-width: 861px) {
  body { padding-bottom: 0; }
}

/* ---------- policy page ---------- */
.policy-toc {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin: 34px 0 0;
}
.policy-toc ol { margin: 0; columns: 2; column-gap: 44px; }
@media (max-width: 700px) { .policy-toc ol { columns: 1; } }
.policy-toc a { color: var(--brand-deep); font-weight: 700; text-decoration: none; }
.policy-toc a:hover { text-decoration: underline; }
.policy-body { max-width: 800px; }
.policy-body section { padding-top: 40px; }
.policy-body h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.policy-body h3 { font-size: 1.25rem; margin-top: 1.6em; }
.callout {
  background: var(--white);
  border: 2px solid var(--ink);
  border-left-width: 10px;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 20px 0;
}
.callout.moon { border-left-color: var(--moon); }
.callout.blush { border-left-color: var(--accent); }
.callout.grass { border-left-color: var(--grass); }
.callout p:last-child { margin-bottom: 0; }
.table-wrap { overflow-x: auto; margin: 18px 0; border: 2px solid var(--ink); border-radius: var(--radius-md); background: var(--white); }
table { border-collapse: collapse; width: 100%; font-size: .95rem; }
th, td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line-paper); vertical-align: top; }
th { background: var(--paper-2); color: var(--brand-deep); font-weight: 800; }
tr:last-child td { border-bottom: 0; }
td b { color: var(--ink); }

/* ---------- misc ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.moon-divider { display: flex; justify-content: center; padding: 0; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--moon);
  color: var(--ink);
  font-weight: 800;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
}
.skip-link:focus { left: 8px; }

/* firefly bloom burst from the paw spot */
.bloom {
  position: fixed;
  z-index: 70;
  width: 10px; height: 10px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #FFF6D8 0%, var(--moon) 45%, transparent 72%);
}

/* ---------- reduced motion: everything non-essential off ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .paw-spot { animation: none; }
  .sticker { animation: none; }
}
