/* =================================================================
   MELERN — Playful brain-health & learning brand
   Design system: neo-brutalist-soft, warm cream + candy accents
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Surface */
  --cream:    #FFF7EC;
  --cream-2:  #FBEAD4;
  --paper:    #FFFDF8;
  --ink:      #241B2E;
  --ink-soft: #4A4057;

  /* Candy accents */
  --coral:  #FF6B5C;
  --sun:    #FFC24B;
  --mint:   #29CFA6;
  --sky:    #6E8BFF;
  --pink:   #FF8FBE;
  --grape:  #7A5CFF;

  /* Tints */
  --coral-soft: #FFE2DD;
  --sun-soft:   #FFEFC9;
  --mint-soft:  #CFF6EC;
  --sky-soft:   #DCE4FF;
  --pink-soft:  #FFE0EE;
  --grape-soft: #E5DDFF;

  /* System */
  --line: 2.5px;
  --radius: 22px;
  --radius-lg: 36px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --maxw: 1180px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  /* layered atmosphere: dotted grid + warm glow blobs + grain */
  background-image:
    radial-gradient(var(--cream-2) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  background-position: -13px -13px;
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: hidden;
  position: relative;
}

/* grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .04;
  background-image: 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.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

.hand {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--coral);
  font-size: 1.5em;
  line-height: 1;
}
em.serif { font-family: var(--font-display); font-style: italic; }

/* highlighter / squiggle marks */
.mark-sun  { background: linear-gradient(transparent 58%, var(--sun) 58%); padding: 0 .08em; }
.mark-mint { background: linear-gradient(transparent 58%, var(--mint-soft) 58%); padding: 0 .08em; }
.mark-pink { background: linear-gradient(transparent 58%, var(--pink-soft) 58%); padding: 0 .08em; }

.squiggle { position: relative; white-space: nowrap; }
.squiggle::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -.18em;
  height: .32em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12'%3E%3Cpath d='M2 8 C 20 2, 30 12, 48 7 S 80 2, 98 8 S 116 11, 118 6' fill='none' stroke='%23FF6B5C' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
  background-size: 120px 12px;
}

/* ---------- Layout ---------- */
.wrap { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
.center { text-align: center; }
.stack > * + * { margin-top: 1.2rem; }
.grid { display: grid; gap: 1.6rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: var(--line) solid var(--ink);
  border-radius: 100px;
  padding: .4rem .9rem;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: .6rem; height: .6rem; border-radius: 50%; background: var(--coral); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  border: var(--line) solid var(--ink);
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn--coral { background: var(--coral); color: #fff; }
.btn--mint  { background: var(--mint); color: var(--ink); }
.btn--sun   { background: var(--sun); color: var(--ink); }
.btn--grape { background: var(--grape); color: #fff; }
.btn--ghost { background: transparent; box-shadow: none; }
.btn--ghost:hover { background: var(--paper); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.1rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: var(--line) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translate(-3px, -3px) rotate(-.6deg); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border: var(--line) solid var(--ink);
  border-radius: 18px;
  font-size: 1.9rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.tile-coral { background: var(--coral-soft); }
.tile-sun   { background: var(--sun-soft); }
.tile-mint  { background: var(--mint-soft); }
.tile-sky   { background: var(--sky-soft); }
.tile-pink  { background: var(--pink-soft); }
.tile-grape { background: var(--grape-soft); }

.fill-coral { background: var(--coral); }
.fill-sun   { background: var(--sun); }
.fill-mint  { background: var(--mint); }
.fill-sky   { background: var(--sky); }
.fill-pink  { background: var(--pink); }
.fill-grape { background: var(--grape); }

/* sticker badge */
.sticker {
  position: absolute;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--sun);
  border: var(--line) solid var(--ink);
  border-radius: 14px;
  padding: .3rem .9rem;
  box-shadow: var(--shadow-sm);
  transform: rotate(-7deg);
  z-index: 5;
}

/* blob behind images */
.blob-img { position: relative; }
.blob-img::before {
  content: "";
  position: absolute;
  inset: -8% -8% 8% 8%;
  background: var(--mint);
  border-radius: 42% 58% 63% 37% / 47% 36% 64% 53%;
  z-index: -1;
}
.blob-img img {
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 247, 236, .82);
  backdrop-filter: blur(10px);
  border-bottom: var(--line) solid var(--ink);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: -.02em; }
.brand__mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--coral); color: #fff;
  border: var(--line) solid var(--ink); border-radius: 13px;
  box-shadow: var(--shadow-sm); font-size: 1.3rem;
  transform: rotate(-6deg);
}
.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__links a {
  font-weight: 700; font-size: .95rem; padding: .45rem .75rem; border-radius: 100px;
  border: 2.5px solid transparent; transition: all .15s ease;
}
.nav__links a:hover { background: var(--paper); border-color: var(--ink); }
.nav__links a.active { background: var(--sun); border-color: var(--ink); box-shadow: var(--shadow-sm); }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__toggle { display: none; background: var(--paper); border: var(--line) solid var(--ink); border-radius: 12px; width: 46px; height: 46px; font-size: 1.4rem; box-shadow: var(--shadow-sm); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink); color: var(--cream);
  border-top: var(--line) solid var(--ink);
  border-bottom: var(--line) solid var(--ink);
  overflow: hidden; padding: .7rem 0;
}
.marquee__track { display: flex; gap: 2.5rem; width: max-content; animation: slide 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; display: inline-flex; align-items: center; gap: 2.5rem; white-space: nowrap; }
.marquee__track span::after { content: "✦"; color: var(--sun); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); border-top: var(--line) solid var(--ink); padding: 3.5rem 0 2rem; }
.footer a { color: var(--cream); opacity: .82; transition: opacity .15s, color .15s; }
.footer a:hover { opacity: 1; color: var(--sun); }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2rem; }
.footer h4 { color: var(--sun); font-family: var(--font-body); font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul li { margin-bottom: .55rem; }
.footer .brand { color: var(--cream); }
.footer__bottom { margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.18); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; opacity: .75; }
.footer__legalnote { font-size: .8rem; opacity: .6; margin-top: 1rem; max-width: 60ch; }

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem,6vw,5rem); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero h1 span.line { display: block; }
.hero__art { position: relative; }
.float { position: absolute; border: var(--line) solid var(--ink); box-shadow: var(--shadow-sm); }

/* floating decorative shapes */
.deco { position: absolute; z-index: 0; pointer-events: none; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-14px) rotate(var(--r, 0deg)); } }
.bob { animation: bob 5s ease-in-out infinite; }
.bob-slow { animation: bob 8s ease-in-out infinite; }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat { text-align: center; padding: 1.4rem 1rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; }
.stat__label { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-top: .5rem; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 56ch; margin-bottom: 2.6rem; }
.sec-head.center { margin-inline: auto; }

/* ---------- Pills / tags ---------- */
.pill { display: inline-block; font-weight: 800; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .8rem; border: var(--line) solid var(--ink); border-radius: 100px; }

/* ---------- FAQ ---------- */
.faq { border: var(--line) solid var(--ink); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); overflow: hidden; }
.faq__item + .faq__item { border-top: var(--line) solid var(--ink); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 1.3rem 1.5rem; font-weight: 800; font-size: 1.1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; color: var(--ink); }
.faq__q .plus { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border: 2.5px solid var(--ink); border-radius: 50%; font-size: 1.3rem; transition: transform .2s ease, background .2s; }
.faq__item[open] .faq__q .plus { transform: rotate(45deg); background: var(--sun); }
.faq__a { padding: 0 1.5rem 1.4rem; }
.faq__a p { margin-top: -.2rem; }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

/* ---------- Testimonials ---------- */
.quote { padding: 2rem; }
.quote p { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--ink); line-height: 1.35; }
.quote__by { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.quote__by img { width: 52px; height: 52px; border-radius: 50%; border: 2.5px solid var(--ink); object-fit: cover; }
.quote__by b { display: block; }
.quote__by small { color: var(--ink-soft); }

/* ---------- Avatar row ---------- */
.avatars { display: flex; }
.avatars img { width: 46px; height: 46px; border-radius: 50%; border: 2.5px solid var(--ink); object-fit: cover; margin-left: -12px; background: var(--paper); }
.avatars img:first-child { margin-left: 0; }

/* ---------- Banner / CTA box ---------- */
.cta-box {
  border: var(--line) solid var(--ink); border-radius: var(--radius-lg);
  background: var(--grape); color: #fff; box-shadow: var(--shadow-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem); text-align: center; position: relative; overflow: hidden;
}
.cta-box h2 { color: #fff; }
.cta-box p { color: rgba(255,255,255,.85); }

/* ---------- Page header (interior pages) ---------- */
.page-head { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem,4vw,3rem); position: relative; }
.page-head .eyebrow { margin-bottom: 1.2rem; }

/* ---------- Steps / process ---------- */
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step__num { flex: none; width: 56px; height: 56px; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.6rem; border: var(--line) solid var(--ink); border-radius: 16px; box-shadow: var(--shadow-sm); }

/* ---------- Forms ---------- */
.field { margin-bottom: 1.2rem; }
.field label { font-weight: 800; font-size: .9rem; display: block; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: var(--line) solid var(--ink); border-radius: 14px;
  background: var(--paper); transition: box-shadow .15s, transform .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; box-shadow: var(--shadow-sm); transform: translate(-2px,-2px); }

/* ---------- Pricing ---------- */
.price { font-family: var(--font-display); font-size: clamp(2.6rem,5vw,3.4rem); line-height: 1; }
.price small { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--ink-soft); }
.plan { display: flex; flex-direction: column; }
.plan ul.feats { margin: 1.4rem 0; }
.plan ul.feats li { padding: .5rem 0; border-bottom: 1px dashed rgba(36,27,46,.2); display: flex; gap: .6rem; align-items: flex-start; }
.plan ul.feats li::before { content: "✦"; color: var(--coral); font-weight: 900; }
.plan--featured { transform: scale(1.03); }

/* ---------- Legal / prose ---------- */
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.legal-toc { position: sticky; top: 90px; border: var(--line) solid var(--ink); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-sm); padding: 1.4rem; }
.legal-toc h4 { font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .8rem; }
.legal-toc li { margin-bottom: .35rem; }
.legal-toc a { font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.legal-toc a:hover { color: var(--coral); }

.prose { background: var(--paper); border: var(--line) solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.6rem, 4vw, 3rem); }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.4rem 0 .8rem; scroll-margin-top: 90px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.25rem; margin: 1.6rem 0 .6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; }
.prose ul li, .prose ol li { margin-bottom: .5rem; list-style: revert; }
.prose a { color: var(--coral); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose hr { border: none; border-top: 2px dashed rgba(36,27,46,.25); margin: 2rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.4rem; }
.prose th, .prose td { border: 2px solid var(--ink); padding: .7rem .9rem; text-align: left; font-size: .95rem; }
.prose th { background: var(--sun-soft); font-weight: 800; }
.callout { border: var(--line) solid var(--ink); border-radius: 16px; padding: 1.2rem 1.4rem; margin: 1.4rem 0; background: var(--sun-soft); }
.callout.warn { background: var(--coral-soft); }
.callout strong { display: block; margin-bottom: .3rem; }

/* ---------- Resource articles ---------- */
.resource-feature,
.resource-card {
  display: block;
  height: 100%;
  color: inherit;
}
.resource-feature:focus-visible,
.resource-card:focus-visible,
.resource-back:focus-visible {
  outline: 4px solid var(--sky);
  outline-offset: 5px;
}
.resource-feature img,
.resource-card img,
.resource-hero-card img {
  width: 100%;
}
.resource-feature > .grid > img {
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
}
.resource-readmore {
  font-weight: 800;
  margin-top: .8rem;
  color: var(--ink-soft);
}
.resource-meta {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 1.2rem;
}
.resource-meta img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  object-fit: cover;
}
.resource-hero-card {
  padding: 0;
  overflow: hidden;
}
.resource-hero-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.resource-back {
  align-self: flex-start;
}
.resource-toc hr {
  border: none;
  border-top: 2px dashed rgba(36,27,46,.25);
  margin: 1rem 0;
}
.resource-toc li {
  position: relative;
  padding-left: 1.15rem;
}
.resource-toc li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 900;
}

/* ---------- Memory mini-game ---------- */
.mem-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.mem-card {
  aspect-ratio: 1; border: var(--line) solid var(--ink); border-radius: 16px;
  background: var(--sky); position: relative; transform-style: preserve-3d;
  transition: transform .35s ease; box-shadow: var(--shadow-sm); padding: 0;
}
.mem-card .mem-front, .mem-card .mem-back {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: clamp(1.4rem, 4vw, 2rem); backface-visibility: hidden; border-radius: 13px;
}
.mem-card .mem-front { color: rgba(255,255,255,.9); font-family: var(--font-display); }
.mem-card .mem-back { background: var(--paper); transform: rotateY(180deg); }
.mem-card.flip { transform: rotateY(180deg); }
.mem-card.done { background: var(--mint); }
.mem-card.done .mem-back { background: var(--mint-soft); }
.mem-card:hover { transform: translateY(-2px); }
.mem-card.flip:hover { transform: rotateY(180deg); }

/* ---------- Reveal animation (progressive enhancement) ---------- */
/* Visible by default; only hidden when JS is active, so no-JS users see everything */
.reveal { transition: opacity .6s ease, transform .6s ease; }
html.js .reveal { opacity: 0; transform: translateY(24px); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.rotate-l { transform: rotate(-2deg); }
.rotate-r { transform: rotate(2deg); }
.mt-0 { margin-top: 0; }
.muted { color: var(--ink-soft); }
.flex { display: flex; }
.gap { gap: 1rem; }
.wrap-gap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.full { width: 100%; }
.tac { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: grid; place-items: center; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: var(--line) solid var(--ink);
    padding: 1rem 1.5rem 1.5rem; gap: .4rem;
  }
  .nav__links.open a { padding: .8rem 1rem; border: var(--line) solid var(--ink); background: var(--paper); }
  .nav__links.open a.active { background: var(--sun); }
  .plan--featured { transform: none; }
}
/* Collapse all multi-column grids on phones. !important is required because
   many grids set grid-template-columns via inline style (higher specificity). */
@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr !important; }
  .stats { grid-template-columns: 1fr 1fr !important; }
  .mem-board { grid-template-columns: repeat(4, 1fr) !important; }
  /* stacked split images: drop side borders that look odd when stacked */
  .card img[style*="border-left"], .card img[style*="border-right"] { border-left: none !important; border-right: none !important; border-bottom: var(--line) solid var(--ink) !important; }
  .prose { overflow-x: auto; }
  .prose table { font-size: .85rem; }
  .plan--featured { transform: none !important; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr !important; }
  body { font-size: 1rem; }
  .sticker { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
