/* =========================================================================
   LEARNING DESK — Landing Page Styles
   Design: dark "data terminal" — credibility for a lead-database product.
   No frameworks. Kept under 20KB uncompressed.
   ========================================================================= */

/* ---------------------------------------------------------------- TOKENS */
:root {
  /* surfaces */
  --bg:            #08090C;
  --bg-2:          #0D0F14;
  --surface:       #12151C;
  --surface-2:     #171B24;
  --line:          #232833;
  --line-soft:     #1B202A;

  /* text */
  --text:          #F2F4F7;
  --text-2:        #A8B0BF;
  /* text-3 is the lowest-contrast tone. Kept at >=4.5:1 against --surface-2
     (the lightest surface it ever sits on) so small text stays WCAG AA. */
  --text-3:        #8892A4;

  /* brand */
  --lime:          #C8F751;
  --lime-dim:      #A8D63C;
  --lime-glow:     rgba(200, 247, 81, .16);
  --cyan:          #4DD8E0;
  --amber:         #FFB84D;
  --red:           #FF6B6B;

  /* type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  /* layout */
  --maxw: 1140px;
  --pad: 24px;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;

  /* How often each CTA vibrates to re-attract attention. */
  --cta-cycle: 2s;

  --shadow: 0 18px 50px -12px rgba(0,0,0,.7);
}

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; color: inherit; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.022em; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--lime); color: #0A0C10; padding: 12px 18px;
  font-weight: 700; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* --------------------------------------------------------------- LAYOUT */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

.center { text-align: center; }
.stack { display: grid; gap: 16px; }

/* ----------------------------------------------------------------- TEXT  */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime); background: var(--lime-glow);
  border: 1px solid rgba(200,247,81,.28);
  padding: 6px 13px; border-radius: 100px;
}
.h2 { font-size: clamp(27px, 4.4vw, 40px); }
.h3 { font-size: clamp(18px, 2.4vw, 21px); }
.lede { font-size: clamp(15.5px, 2vw, 18px); color: var(--text-2); line-height: 1.65; }
.muted { color: var(--text-2); }
.small { font-size: 14px; }
.tiny  { font-size: 12.5px; }
.mono  { font-family: var(--mono); }
.acc   { color: var(--lime); }
.acc-c { color: var(--cyan); }

.sec-head { max-width: 660px; margin: 0 auto 46px; text-align: center; }
.sec-head .h2 { margin: 18px 0 14px; }

/* --------------------------------------------------------------- BUTTONS */
.btn {
  --btn-bg: var(--lime);
  --btn-fg: #0A0C10;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: 17px 30px; border: 0; border-radius: 12px;
  font-size: 16.5px; font-weight: 700; letter-spacing: -.01em;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 6px 22px -6px rgba(200,247,81,.5);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(200,247,81,.62); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 20px 40px; font-size: 18.5px; border-radius: 14px; }
.btn--block { display: flex; width: 100%; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border: 1px solid var(--line); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--text-3); box-shadow: none; }
/* Compact variant. Also gives the footer CTA a real box, which it needs:
   `transform` does not animate on inline elements, so the pulse would be a
   no-op on a bare text link. */
.btn--sm { padding: 11px 18px; font-size: 14px; border-radius: 9px; }

.btn-sub {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 8px 18px; margin-top: 16px;
  font-size: 13.5px; color: var(--text-3); font-family: var(--mono);
}
.btn-sub span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-3); flex: none; }

/* ------------------------------------------------------------------ NAV */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(8,9,12,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; min-width: 0; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: linear-gradient(145deg, var(--lime), #6FBF1F);
  color: #0A0C10; display: grid; place-items: center;
  font-weight: 800; font-size: 15px; letter-spacing: -.04em;
}
.brand__txt { min-width: 0; }
.brand__name { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.brand__sub { font-family: var(--mono); font-size: 10.5px; color: var(--text-3); letter-spacing: .04em; }
.nav__cta { padding: 12px 20px; font-size: 14.5px; border-radius: 10px; }

/* ----------------------------------------------------------------- HERO */
.hero { position: relative; padding: 68px 0 72px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 420px at 50% -8%, rgba(200,247,81,.14), transparent 68%),
    linear-gradient(to bottom, rgba(8,9,12,.4), var(--bg) 82%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(760px 460px at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(760px 460px at 50% 0%, #000 20%, transparent 78%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero__mid { max-width: 830px; margin: 0 auto; text-align: center; }
.hero h1 {
  font-size: clamp(33px, 6.6vw, 62px);
  margin: 22px 0 20px; letter-spacing: -.035em;
}
.hero h1 .hl {
  background: linear-gradient(180deg, var(--lime) 30%, #7FBF1F 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { max-width: 620px; margin: 0 auto; }
.hero__cta { margin-top: 30px; }
.hero__proof {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px;
  margin-top: 26px;
}
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600; color: var(--text-2);
}
.chip svg { color: var(--lime); flex: none; }

/* ---------------------------------------------------------------- VIDEO
   Click-to-load YouTube facade. See the comment in index.html for why the
   real <iframe> is not in the markup. The thumbnail is a CSS background so
   a blocked or 404 image degrades to a clean gradient rather than a broken
   image icon. */
.video { margin-top: 52px; }
.video__poster {
  display: block; width: 100%; position: relative;
  aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden; padding: 0;
  color: var(--text); text-align: left; font: inherit; cursor: pointer;
  box-shadow: var(--shadow);
  transition: border-color .2s ease, transform .2s ease;
}
.video__poster:hover { border-color: rgba(200,247,81,.42); transform: translateY(-2px); }
.video__poster:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.video__thumb {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,12,.25), rgba(8,9,12,.88)),
    url("https://img.youtube.com/vi/vgu7A5E_DLE/hqdefault.jpg") center / cover no-repeat,
    linear-gradient(140deg, #1B2330, #0D1015 60%, #141A22);
  transform: scale(1.01);
  transition: transform .45s ease;
}
.video__poster:hover .video__thumb { transform: scale(1.05); }

.video__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--lime); color: #0A0C10;
  padding-left: 4px;
  box-shadow: 0 10px 34px -6px rgba(200,247,81,.6);
  transition: transform .2s ease;
}
.video__poster:hover .video__play { transform: translate(-50%, -50%) scale(1.08); }

.video__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; gap: 3px; align-items: flex-start;
  padding: 40px 22px 20px; text-align: left;
  /* Heavy scrim: this thumbnail is a bright white spreadsheet, so a light
     gradient left the caption unreadable. Keep it opaque enough to carry text
     over any frame, and add a text-shadow as a backstop. */
  background: linear-gradient(180deg, transparent, rgba(8,9,12,.82) 34%, rgba(8,9,12,.97) 68%);
}
.video__cap b { font-size: 16.5px; font-weight: 700; letter-spacing: -.015em; text-shadow: 0 1px 10px rgba(0,0,0,.9); }
.video__cap .tiny { color: var(--text-2); font-weight: 500; text-shadow: 0 1px 8px rgba(0,0,0,.85); }

/* the iframe that replaces the poster */
.video iframe {
  display: block; width: 100%; aspect-ratio: 16 / 9;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: #000; box-shadow: var(--shadow);
}

/* ---------------------------------------------------------------- STATS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stat { background: var(--surface); padding: 28px 20px; text-align: center; }
.stat__n { font-size: clamp(25px, 3.6vw, 34px); font-weight: 800; letter-spacing: -.035em; color: var(--lime); }
.stat__l { font-size: 13px; color: var(--text-2); margin-top: 6px; }

/* --------------------------------------------------------------- COMPARE */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cmp__col { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; background: var(--surface); }
.cmp__col--good { border-color: rgba(200,247,81,.34); background: linear-gradient(180deg, rgba(200,247,81,.055), var(--surface) 45%); }
.cmp__t { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.cmp__t svg { flex: none; }
.cmp__col--bad .cmp__t svg { color: var(--red); }
.cmp__col--good .cmp__t svg { color: var(--lime); }
.cmp li { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line-soft); font-size: 14.5px; color: var(--text-2); }
.cmp li svg { flex: none; margin-top: 4px; }
.cmp__col--bad li svg { color: var(--red); }
.cmp__col--good li svg { color: var(--lime); }
.cmp li b { color: var(--text); font-weight: 600; }

/* --------------------------------------------------------------- INSIDE */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px;
  background: var(--surface); transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: #2E3542; transform: translateY(-3px); }
.card__ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--lime-glow); border: 1px solid rgba(200,247,81,.24); color: var(--lime);
  margin-bottom: 16px;
}
.card h3 { font-size: 16.5px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }

/* --------------------------------------------------------- FOLDER TREE  */
.tree {
  font-family: var(--mono); font-size: 13px; line-height: 2.05;
  border: 1px solid var(--line); border-radius: var(--r);
  background: #0A0C11; padding: 24px; overflow-x: auto; color: var(--text-2);
}
.tree .dir  { color: var(--cyan); }
.tree .file { color: var(--text); }
.tree .cnt  { color: var(--lime); }
.tree .r    { color: var(--text-3); }
.tree .cmt  { color: var(--text-3); font-size: 12px; }

/* ---------------------------------------------------------------- STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: s; }
.step { position: relative; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 24px 26px; background: var(--surface); }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; top: -15px; left: 24px;
  width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--lime); color: #0A0C10; font-weight: 800; font-size: 15px;
}
.step h3 { font-size: 17px; margin: 10px 0 8px; }
.step p { font-size: 14.5px; color: var(--text-2); }

/* ---------------------------------------------------------------- PROOF */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { border: 1px solid var(--line); border-radius: var(--r); padding: 24px; background: var(--surface); display: flex; flex-direction: column; }
.quote__stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.quote p { font-size: 15px; line-height: 1.6; margin: 14px 0 18px; flex: 1; }
.quote__by { display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 700; color: var(--lime); font-family: var(--mono);
}
.quote__n { font-size: 13.5px; font-weight: 600; }
.quote__r { font-size: 11.5px; color: var(--text-3); }

/* ------------------------------------------------------------------- FAQ */
.faq { max-width: 740px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; gap: 16px; padding: 21px 4px;
  cursor: pointer; font-size: 16px; font-weight: 600; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--lime); }
.faq summary .pm {
  margin-left: auto; flex: none; color: var(--text-3); font-size: 20px; line-height: 1.2;
  transition: transform .2s ease, color .2s ease;
}
.faq details[open] summary .pm { transform: rotate(45deg); color: var(--lime); }
.faq summary:focus-visible { outline-offset: -2px; }
.faq__a { padding: 0 44px 22px 4px; color: var(--text-2); font-size: 15px; line-height: 1.68; }
.faq__a code {
  font-family: var(--mono); font-size: 13.5px; background: var(--surface-2);
  padding: 2px 7px; border-radius: 5px; color: var(--cyan);
}

/* ------------------------------------------------------------- FINAL CTA */
.final {
  position: relative; overflow: hidden; text-align: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(680px 300px at 50% 118%, rgba(200,247,81,.17), transparent 70%);
}
.final > .wrap { position: relative; }
.final .h2 { font-size: clamp(27px, 5vw, 45px); margin: 20px 0 16px; }

.price-row { display: inline-flex; align-items: baseline; gap: 12px; margin: 26px 0 6px; }
.price-now { font-size: 46px; font-weight: 800; letter-spacing: -.04em; color: var(--lime); line-height: 1; }
.price-was { font-size: 20px; color: var(--text-3); text-decoration: line-through; }
.price-off {
  font-family: var(--mono); font-size: 11px; font-weight: 700; color: #0A0C10;
  background: var(--lime); padding: 3px 8px; border-radius: 5px; margin-left: 4px;
  vertical-align: middle; letter-spacing: .02em;
}

/* ------------------------------------------------------------ PAYMENT UI */
.pay-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin-top: 30px; }
.pay-strip span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-2); }
.pay-strip svg { color: var(--text-3); flex: none; }

/* --------------------------------------------------------------- FOOTER */
.foot { border-top: 1px solid var(--line); background: var(--bg-2); padding: 46px 0 40px; font-size: 13.5px; color: var(--text-3); }
.foot__top { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; }
.foot h3 { font-size: 13px; color: var(--text-2); margin-bottom: 12px; }
.foot a { color: var(--text-2); text-decoration: none; }
.foot a:hover { color: var(--lime); }
.foot__links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot__bot { border-top: 1px solid var(--line-soft); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: 12.5px; }

/* ------------------------------------------------------------ STICKY CTA */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(8,9,12,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 11px var(--pad) calc(11px + env(safe-area-inset-bottom));
  transform: translateY(105%); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sticky.is-on { transform: translateY(0); }
.sticky__in { display: flex; align-items: center; gap: 14px; max-width: var(--maxw); margin-inline: auto; }
.sticky__info { min-width: 0; flex: 1; }
.sticky__p { font-size: 17px; font-weight: 800; color: var(--lime); line-height: 1.2; }
.sticky__t { font-family: var(--mono); font-size: 11px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky .btn { flex: none; }

/* ------------------------------------------------------------------ MISC */
/* ------------------------------------------------------------- CTA VIBRATE
   Ported from the old landing page's `cta-vibrate`: scale to 1.04, lift 3px,
   then a left/right wobble before settling back. Same 2s cycle and easing as
   before, so it feels identical to the version your buyers already saw.

   One deliberate change: the old glow was rgba(20,107,58,...) — green, to
   match the old *green* button. This page's button is lime, so the glow is
   re-tinted to rgba(200,247,81,...). Motion is identical; only the hue moved.

   No separate halo pseudo-element: the old page animated the button's own
   box-shadow, and the wobble reads much better without a second ring.      */
@keyframes cta-vibrate {
  0%   { transform: scale(1)    translateY(0);   box-shadow: 0 4px 24px rgba(200,247,81,.30); }
  20%  { transform: scale(1.04) translateY(-3px); box-shadow: 0 10px 36px rgba(200,247,81,.45); }
  40%  { transform: scale(1.04) translateY(-3px) translateX(-2px); box-shadow: 0 10px 36px rgba(200,247,81,.45); }
  50%  { transform: scale(1.04) translateY(-3px) translateX(2px);  box-shadow: 0 10px 36px rgba(200,247,81,.45); }
  60%  { transform: scale(1.04) translateY(-3px) translateX(-2px); box-shadow: 0 10px 36px rgba(200,247,81,.45); }
  70%  { transform: scale(1.04) translateY(-3px) translateX(2px);  box-shadow: 0 10px 36px rgba(200,247,81,.45); }
  80%  { transform: scale(1.04) translateY(-3px) translateX(-1px); box-shadow: 0 10px 36px rgba(200,247,81,.45); }
  90%  { transform: scale(1.02) translateY(-1px); box-shadow: 0 6px 28px rgba(200,247,81,.38); }
  100% { transform: scale(1)    translateY(0);   box-shadow: 0 4px 24px rgba(200,247,81,.30); }
}

.pulse { position: relative; }
.js .pulse { animation: cta-vibrate var(--cta-cycle) cubic-bezier(.4,0,.2,1) infinite; }
/* Settle into the normal hover state instead of shaking under the cursor —
   when someone is actually hovering they are about to click. */
.pulse:hover, .pulse:focus-visible { animation-play-state: paused; }
.pulse:hover, .pulse:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(200,247,81,.62);
}

.hl-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 22px; margin-top: 22px; font-size: 12.5px; color: var(--text-3); font-family: var(--mono); }
.hl-bar b { color: var(--text-2); font-weight: 500; }
.risk { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-3); margin-top: 14px; }
.risk svg { color: var(--lime); flex: none; }

/* reveal on scroll
   Gated behind an html.js class that is added by an inline script in <head>.
   If JavaScript is disabled or fails, `.js` is never added, so content stays
   fully visible. Never hide content by default. */
.js .rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.4,0,.2,1); }
.js .rv.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ RESPONSIVE */
@media (max-width: 960px) {
  .grid-3, .quotes, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  :root { --pad: 20px; }
  .section { padding: 62px 0; }
  .section--tight { padding: 46px 0; }
  .cmp, .grid-3, .grid-2, .quotes, .steps { grid-template-columns: 1fr; }
  .hero { padding: 46px 0 56px; }
  .hero__cta .btn { width: 100%; }
  .btn--lg { font-size: 17px; padding: 18px 26px; }
  .card { padding: 22px 20px; }
  .cmp__col { padding: 24px 20px; }
  .foot__top { flex-direction: column; gap: 22px; }
  .body-lock { overflow: hidden; }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 12px; }
  .brand__sub { display: none; }
}

/* ------------------------------------------------------- REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .rv { opacity: 1; transform: none; }
  .js .pulse { animation: none !important; }
}

/* ------------------------------------------------------------ PRINT/SEO */
@media print { .nav, .sticky, .hero::after { display: none; } }
