/* ============================================================
   TURTLE METHOD — design system
   Warm editorial calm. Palette derived from the logo (#5856D6).
   Display: Bricolage Grotesque 800 · Body: Instrument Sans
   Quotes/soft emphasis: Source Serif 4 italic
   LeanShield keeps its green identity across the group.
   ============================================================ */

:root {
  /* paper + ink */
  --paper: #FBF8F2;
  --paper-deep: #F4EDE2;
  --ink: #232047;
  --ink-soft: #565378;

  /* brand (exact logo periwinkle) */
  --brand: #5856D6;
  --brand-deep: #4341B8;
  --lilac: #ECEBFA;
  --lilac-deep: #DDDBF6;

  /* warm accent */
  --apricot: #E0795A;
  --apricot-soft: #FAEADF;

  /* LeanShield greens + bands (group DNA: LeanShield is always green) */
  --leaf: #2E9E6B;
  --leaf-bright: #3FBF85;
  --caution: #D99A2B;
  --risk: #C75048;

  --line: #E7E1D4;
  --line-dark: rgba(255, 255, 255, .14);

  --display: "Bricolage Grotesque", "Instrument Sans", sans-serif;
  --body: "Instrument Sans", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 10px rgba(35, 32, 71, .07);
  --shadow-lg: 0 16px 44px -12px rgba(35, 32, 71, .18);
  --container: 1140px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; margin: 0 0 .6em; letter-spacing: -.015em; }
h1 { font-weight: 800; }
h2 { font-weight: 800; font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
h3 { font-weight: 700; font-size: 1.22rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Grain overlay — warmth, not noise. Sits above everything, never intercepts. */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: .05;
  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='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Shared bits ---------- */
.kicker {
  font-family: var(--display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.kicker__inf { color: var(--apricot); font-size: 1.05em; margin-right: 2px; }
.kicker--light { color: #B9B7F2; }

.section-title { max-width: 18ch; }
.section-lede { color: var(--ink-soft); max-width: 52ch; margin-bottom: 40px; }
.section-lede--wide { max-width: 68ch; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--apricot-soft); color: var(--ink);
  border: 1px solid #F0D9C8;
  font-size: .85rem; font-weight: 600;
  padding: 7px 15px; border-radius: 999px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: .98rem;
  padding: 12px 26px; border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--solid { background: var(--brand); color: #fff; box-shadow: 0 8px 22px -8px rgba(88, 86, 214, .55); }
.btn--solid:hover { background: var(--brand-deep); }
.btn--outline { border: 2px solid var(--lilac-deep); color: var(--ink); }
.btn--outline:hover { border-color: var(--brand); }

/* Store buttons (App Store / Google Play) — ink pills, same pattern as parrotpal.com */
.store {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  padding: 11px 22px 11px 18px; border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.store:hover { transform: translateY(-2px); text-decoration: none; }
.store__icon { width: 21px; height: 25px; flex: none; }
.store--play .store__icon { width: 19px; height: 21px; }
.store__txt { display: flex; flex-direction: column; line-height: 1.08; text-align: left; }
.store__txt small { font-size: .62rem; opacity: .85; letter-spacing: .02em; }
.store__txt strong { font-size: 1.12rem; font-weight: 600; letter-spacing: -.01em; }
.store--light { background: #fff; color: var(--ink); box-shadow: 0 14px 36px -12px rgba(20, 18, 50, .5); }

.stars { color: var(--apricot); letter-spacing: 2px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(251, 248, 242, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 40px; width: auto; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { color: var(--ink); font-weight: 500; font-size: .97rem; }
.nav__links a:hover { color: var(--brand); text-decoration: none; }
.nav__cta { padding: 10px 22px; }
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 64px 0 90px; overflow: hidden; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero__glow--a { width: 560px; height: 560px; top: -180px; right: -120px; background: rgba(88, 86, 214, .14); }
.hero__glow--b { width: 460px; height: 460px; bottom: -200px; left: -140px; background: rgba(224, 121, 90, .13); }

.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 48px; align-items: center;
}
.hero__title { font-size: clamp(2.9rem, 6.4vw, 4.6rem); margin-bottom: 22px; }
.hero__sub { font-size: 1.18rem; color: var(--ink-soft); max-width: 50ch; margin-bottom: 30px; }
.hero__sub em { font-family: var(--serif); font-style: italic; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__proof { color: var(--ink-soft); font-size: .97rem; }
.hero__proof strong { color: var(--ink); }

/* hand-drawn underline that draws itself in */
.u-draw { position: relative; display: inline-block; }
.u-draw__line { position: absolute; left: 0; right: 0; bottom: -6px; width: 100%; height: 14px; overflow: visible; }
.u-draw__line path {
  fill: none; stroke: var(--apricot); stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: drawline 1.1s .9s ease-out forwards;
}
@keyframes drawline { to { stroke-dashoffset: 0; } }

/* phone + floating chips */
.hero__visual { display: flex; justify-content: center; }
.hero__phone-wrap { position: relative; }
/* Device frame — wraps the raw app screenshot so it reads as a phone */
.hero__device {
  width: min(300px, 74vw);
  padding: 9px;
  background: #15131e;
  border-radius: 46px;
  box-shadow: 0 34px 64px -14px rgba(35, 32, 71, .34), inset 0 0 0 1px rgba(255, 255, 255, .05);
  animation: bob 7s ease-in-out infinite;
}
.hero__phone {
  display: block; width: 100%; height: auto;
  border-radius: 38px;
}
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  animation: bob 7s ease-in-out infinite;
}
.float-chip small { display: block; font-size: .68rem; color: var(--ink-soft); }
.float-chip strong { font-size: .9rem; }
.float-chip--checkin { right: -58px; bottom: 20%; animation-delay: 1.6s; }
.float-chip__emoji { font-size: 1.4rem; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Stats strip ---------- */
.strip { background: var(--ink); color: #fff; padding: 34px 0; }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.strip__stat { text-align: center; }
.strip__stat strong { display: block; font-family: var(--display); font-weight: 800; font-size: 1.7rem; letter-spacing: -.01em; }
.strip__stat span:last-child { font-size: .85rem; opacity: .75; }

/* ---------- The Turtle way ---------- */
.way { padding: 96px 0 90px; }
.way__title { font-size: clamp(2rem, 4.8vw, 3.2rem); max-width: 22ch; }
.way__title em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--brand-deep); }
.way__lede { color: var(--ink-soft); max-width: 58ch; font-size: 1.12rem; margin-bottom: 48px; }
.way__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.way__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.way__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.way__num {
  display: inline-block; font-family: var(--display); font-weight: 800;
  color: var(--apricot); font-size: .9rem; letter-spacing: .1em; margin-bottom: 12px;
}
.way__card p { color: var(--ink-soft); margin: 0; font-size: .99rem; }

/* ---------- Features ---------- */
.features { padding: 90px 0; background: var(--paper-deep); border-block: 1px solid var(--line); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 16px;
  background: var(--lilac); font-size: 1.45rem; margin-bottom: 16px;
}
.feature:nth-child(even) .feature__icon { background: var(--apricot-soft); }
.feature p { color: var(--ink-soft); margin: 0; font-size: .97rem; }

/* ---------- LeanShield ---------- */
.shield { position: relative; background: var(--ink); color: #EDEBFF; padding: 100px 0; overflow: hidden; }
.shield__glow {
  position: absolute; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 191, 133, .16) 0%, transparent 65%);
  top: 50%; right: -200px; transform: translateY(-50%);
  pointer-events: none;
}
.shield__grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.shield__title { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.1rem); }
.shield__copy p { color: #C9C6EC; max-width: 56ch; }
.shield__copy em { font-family: var(--serif); font-style: italic; color: #fff; }
.shield__copy a { color: var(--leaf-bright); }

.badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; font-size: .9rem; color: #C9C6EC; }
.badges li { display: inline-flex; align-items: center; gap: 7px; }
.badges__tm {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border: 1px solid var(--line-dark); border-radius: 50%;
  font-size: .6rem;
}

.shield__visual { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.score { position: relative; width: 230px; height: 230px; }
.score svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score__track { fill: none; stroke: rgba(255, 255, 255, .12); stroke-width: 11; }
.score__fill {
  fill: none; stroke: var(--leaf-bright); stroke-width: 11; stroke-linecap: round;
  stroke-dasharray: 364.4; stroke-dashoffset: 364.4; /* 2πr, r=58 — JS reveals to data-score */
  transition: stroke-dashoffset 1.6s cubic-bezier(.22, .8, .35, 1);
  filter: drop-shadow(0 0 10px rgba(63, 191, 133, .45));
}
.score--on { animation: scoreflex 4.5s 1.8s ease-in-out infinite; }
@keyframes scoreflex {
  0%, 100% { transform: scale(1); }
  6% { transform: scale(1.04); }
  14% { transform: scale(1); }
}
.score__label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.score__label strong { font-family: var(--display); font-weight: 800; font-size: 3.4rem; color: #fff; line-height: 1; }
.score__label span { font-size: .92rem; color: var(--leaf-bright); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.bands { display: flex; gap: 20px; font-size: .88rem; color: #C9C6EC; }
.bands__item { display: inline-flex; align-items: center; gap: 7px; }
.bands__item i { width: 10px; height: 10px; border-radius: 50%; }
.bands__item--protected i { background: var(--leaf-bright); }
.bands__item--caution i { background: var(--caution); }
.bands__item--risk i { background: var(--risk); }

/* ---------- How it works ---------- */
.how { padding: 96px 0; }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.how__step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 28px 28px;
}
.how__num {
  position: absolute; top: -20px; left: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 8px 18px -6px rgba(88, 86, 214, .55);
}
.how__step h3 { margin-top: 6px; }
.how__step p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--lilac); border-block: 1px solid var(--lilac-deep); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  margin: 0; background: #fff; border: 1px solid #E2E0F5; border-radius: var(--radius);
  padding: 26px 26px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review blockquote {
  margin: 0; font-family: var(--serif); font-style: italic;
  font-size: 1.04rem; line-height: 1.55; color: var(--ink);
  flex: 1;
}
.review figcaption strong { display: block; font-family: var(--display); font-weight: 700; font-size: .95rem; }
.review figcaption span { font-size: .85rem; color: var(--ink-soft); }
.reviews__more { text-align: center; margin: 36px 0 0; font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing { padding: 96px 0; }
.pricing__includes {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  max-width: 760px; margin-bottom: 44px;
}
.pricing__includes li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: .9rem; font-weight: 500; color: var(--ink);
}
.pricing__includes li::before { content: "✓ "; color: var(--leaf); font-weight: 700; }
.pricing__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 22px; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.plan--featured { border: 2px solid var(--brand); box-shadow: var(--shadow-lg); }
.plan__badge {
  position: absolute; top: -15px; left: 26px;
  background: var(--apricot); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .03em;
  padding: 5px 14px; border-radius: 999px; margin: 0;
}
.plan h3 { margin-bottom: 2px; }
.plan__price { font-family: var(--display); font-weight: 800; font-size: 2.6rem; letter-spacing: -.02em; margin: 0; }
.plan__price span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0; }
.plan__note { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }
.plan .btn { width: 100%; }
.pricing__smallprint { color: var(--ink-soft); font-size: .85rem; margin-top: 26px; }

/* ---------- Group ---------- */
.group { padding: 90px 0; background: var(--paper-deep); border-block: 1px solid var(--line); }
.group__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.group__card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px; color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.group__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand); text-decoration: none; }
.group__card p { color: var(--ink-soft); font-size: .95rem; }
.group__link { font-weight: 600; color: var(--brand-deep); font-size: .95rem; }

/* ---------- Final CTA ---------- */
.cta { position: relative; background: var(--brand); color: #fff; padding: 96px 0; overflow: hidden; }
.cta__glow {
  position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .16) 0%, transparent 65%);
  top: -260px; right: -160px; pointer-events: none;
}
.cta__inner { position: relative; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.2rem); }
.cta h2 em { font-family: var(--serif); font-style: italic; font-weight: 500; opacity: .92; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 34px 0 20px; }
.cta__proof { opacity: .85; font-size: .95rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #C9C6E4; padding: 70px 0 36px; }
.footer a { color: #fff; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px; padding-bottom: 44px;
}
.brand__logo--light { filter: brightness(0) invert(1); opacity: .95; }
.footer__tag { margin: 18px 0 8px; font-size: .95rem; }
.footer__awards { font-size: .85rem; opacity: .8; margin-bottom: 20px; }
.footer__apps { font-size: .88rem; border-top: 1px solid var(--line-dark); padding-top: 16px; }
.footer__apps p { margin: 0 0 6px; }
.footer__apps-label {
  font-family: var(--display); font-weight: 700; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; opacity: .6;
  margin-top: 12px !important;
}
.footer__col h4 {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: #8E8BB8; margin-bottom: 16px;
}
.footer__col a { display: block; margin-bottom: 10px; font-size: .94rem; color: #DDDBF0; }
.footer__col a:hover { color: #fff; }
.footer__legal {
  border-top: 1px solid var(--line-dark); padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: .8rem; opacity: .65;
}
.footer__legal p { margin: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s ease var(--d, 0s), transform .7s ease var(--d, 0s);
}
.reveal--in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__copy { text-align: center; }
  .hero__sub, .section-lede { margin-inline: auto; }
  .hero__actions, .hero__proof { justify-content: center; }
  .section-title, .way__title, .way__lede, .kicker { text-align: center; margin-inline: auto; }
  .pricing__includes { justify-content: center; margin-inline: auto; }
  .pricing__grid { justify-content: center; }
  .float-chip--checkin { right: -14px; }
  .shield__grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .shield__copy p { margin-inline: auto; }
  .badges { justify-content: center; }
  .way__grid, .features__grid, .how__steps, .reviews__grid, .group__grid { grid-template-columns: 1fr 1fr; }
  .strip__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(251, 248, 242, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 18px;
  }
  .nav--open .nav__links { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta { margin-left: auto; }
  .nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 10px;
    background: none; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  }
  .nav__burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
  .nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav--open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .way__grid, .features__grid, .how__steps, .reviews__grid, .group__grid, .pricing__grid { grid-template-columns: 1fr; }
  .how__steps { gap: 34px; }
  .strip__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__legal { flex-direction: column; }
  .float-chip--checkin { right: -6px; bottom: 14%; }
  .hero { padding: 40px 0 70px; }
  .way, .how, .pricing { padding: 70px 0; }
  .features, .reviews, .group, .shield, .cta { padding: 70px 0; }
}

/* ---------- Reduced motion: kill everything ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__device, .float-chip, .score--on { animation: none; }
  .u-draw__line path { animation: none; stroke-dashoffset: 0; }
  .score__fill { transition: none; }
  .btn, .store, .way__card, .feature, .review, .group__card { transition: none; }
}
