/* ==========================================================================
   Keep Connect — NSA Router Reboot resource + store
   Brand: Keep Connect by Johnson Creative  |  Accent #4EBAD7
   Single stylesheet, no external dependencies (Netlify-ready)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --brand:      #4EBAD7;   /* Keep Connect cyan */
  --brand-600:  #2f9fc0;
  --brand-700:  #1f7d98;
  --brand-050:  #eef8fb;

  --ink:        #0d2430;   /* deep teal-navy, authoritative headings */
  --ink-2:      #12313f;
  --slate:      #43555f;   /* body text */
  --muted:      #6b7c86;

  --alert:      #e13b40;   /* urgency red */
  --alert-700:  #b21f24;
  --alert-050:  #fdecec;
  --warn:       #e8912b;
  --ok:         #1f9d63;

  --bg:         #ffffff;
  --bg-soft:    #f4f9fb;
  --bg-soft-2:  #eaf3f7;
  --line:       #e0e8ec;
  --line-2:     #d0dde3;

  --container:  1160px;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(13,36,48,.06), 0 2px 6px rgba(13,36,48,.05);
  --shadow:     0 6px 20px rgba(13,36,48,.08), 0 2px 6px rgba(13,36,48,.05);
  --shadow-lg:  0 24px 60px rgba(13,36,48,.16), 0 8px 20px rgba(13,36,48,.08);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Source Sans Pro", system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-700); text-decoration: none; }
a:hover { color: var(--brand-600); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1rem + .8vw, 1.5rem); }
p { text-wrap: pretty; }
strong { color: var(--ink-2); font-weight: 700; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 4vw + 40px, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: clamp(40px, 3vw + 24px, 72px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-700);
}
.section-head { max-width: 720px; margin-bottom: clamp(32px, 3vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.12rem; color: var(--slate); }
.lead { font-size: 1.18rem; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--brand); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--_bg); color: var(--_fg);
  font: inherit; font-weight: 750; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: 0 8px 18px rgba(78,186,215,.32); transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
  white-space: nowrap;
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(78,186,215,.42); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--ghost { --_bg: transparent; --_fg: var(--ink); box-shadow: none; border: 1.5px solid var(--line-2); }
.btn--ghost:hover { --_fg: var(--ink); background: var(--bg-soft); box-shadow: none; border-color: var(--brand); }
.btn--ink { --_bg: var(--ink); box-shadow: 0 8px 18px rgba(13,36,48,.28); }
.btn--ink:hover { box-shadow: 0 12px 26px rgba(13,36,48,.36); }
.btn--alert { --_bg: var(--alert); box-shadow: 0 8px 18px rgba(225,59,64,.32); }
.btn--alert:hover { box-shadow: 0 12px 26px rgba(225,59,64,.42); }
.btn--block { width: 100%; }
.btn-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }

/* ---------- Alert bar ---------- */
.alertbar {
  background: linear-gradient(90deg, var(--alert-700), var(--alert));
  color: #fff; font-size: .92rem; font-weight: 600;
}
.alertbar .container { display: flex; align-items: center; justify-content: center; gap: 12px; padding-block: 9px; text-align: center; flex-wrap: wrap; }
.alertbar strong { color: #fff; }
.alertbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 750; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 1.8s infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7);} 70% { box-shadow: 0 0 0 9px rgba(255,255,255,0);} 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0);} }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: 20px; min-height: 70px; }
.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav a.navlink { color: var(--ink-2); font-weight: 650; font-size: .96rem; }
.nav a.navlink:hover { color: var(--brand-700); }
.header-cta { display: flex; align-items: center; gap: 12px; margin-left: 6px; }

/* Logo */
.logo { display: inline-flex; align-items: baseline; gap: 0; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.logo .lk { color: var(--brand); font-size: 1.5rem; }
.logo .lc { color: var(--ink); font-size: 1.5rem; }
.logo .plug { color: var(--brand); }
.logo small { display: block; }
.brandmark { display: inline-flex; align-items: center; gap: 10px; }
.brandmark svg { flex: none; }
.brandmark .bm-text { display: flex; flex-direction: column; line-height: 1; }
.brandmark .bm-top { font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; }
.brandmark .bm-top .kc-k { color: var(--brand); }
.brandmark .bm-top .kc-c { color: var(--ink); }
.brandmark .bm-sub { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 3px; }

/* Mobile nav */
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 3vw + 30px, 78px) 0 clamp(48px, 4vw, 96px); background:
  radial-gradient(1100px 520px at 78% -8%, var(--brand-050), transparent 60%),
  radial-gradient(760px 420px at 0% 108%, #f2fafc, transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 4vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.05rem, 1.2rem + 3.6vw, 3.5rem); color: var(--ink); }
.hero h1 .hl { color: var(--brand-700); }
.hero .sub { margin-top: 20px; font-size: clamp(1.06rem, 1rem + .5vw, 1.28rem); color: var(--slate); max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 1rem; }

.badge-warn {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
  background: var(--alert-050); color: var(--alert-700);
  border: 1px solid #f6cccd; padding: 7px 15px 7px 12px; border-radius: 999px;
  font-weight: 750; font-size: .84rem; letter-spacing: .01em;
}
.badge-warn .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--alert); }

/* Hero product panel */
.hero-media { position: relative; }
.product-panel {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px;
  background-image: radial-gradient(420px 300px at 70% 0%, var(--brand-050), #fff 70%);
}
.product-panel img { border-radius: 12px; }
.float-badge {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: 12px 16px; font-size: .9rem; font-weight: 700; color: var(--ink);
}
.float-badge .fb-lg { display: block; font-size: 1.5rem; font-weight: 800; color: var(--brand-700); letter-spacing: -.02em; }
.float-badge .fb-sm { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.float-badge.price { top: 16px; right: -12px; }
.float-badge.rating { bottom: 18px; left: -14px; }
.float-badge.rating .stars { font-size: .92rem; }

/* ---------- Logo/press strip ---------- */
.pressstrip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.pressstrip .container { display: flex; align-items: center; gap: 14px 34px; flex-wrap: wrap; justify-content: center; padding-block: 18px; }
.pressstrip .label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.pressstrip .outlet { font-weight: 800; color: #8a9aa4; letter-spacing: -.01em; font-size: 1.05rem; }

/* ---------- Stat row ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.stat .num { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.5rem); font-weight: 850; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.stat .num .unit { color: var(--brand-700); }
.stat .lbl { margin-top: 10px; font-size: .96rem; color: var(--slate); }

/* ---------- Callout / alert boxes ---------- */
.callout {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  border-radius: var(--radius); padding: 22px 24px; border: 1px solid var(--line);
  background: var(--bg-soft);
}
.callout .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--brand-050); color: var(--brand-700); }
.callout.alert { background: var(--alert-050); border-color: #f6cccd; }
.callout.alert .ico { background: #fbdcdd; color: var(--alert-700); }
.callout h3 { margin-bottom: 6px; }
.callout p { color: var(--slate); }

.quote-nsa {
  border-left: 4px solid var(--brand); background: var(--bg-soft);
  padding: 22px 26px; border-radius: 0 12px 12px 0; margin: 6px 0;
}
.quote-nsa p { font-size: 1.15rem; color: var(--ink-2); font-style: italic; }
.quote-nsa cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; color: var(--muted); font-size: .9rem; }

/* ---------- Two-col media rows ---------- */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.media-row.reverse .media-txt { order: 2; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.media-txt h2 { margin-bottom: 16px; }
.media-txt p + p { margin-top: 14px; }

/* Check / cross lists */
.ticks { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 13px; }
.ticks li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; color: var(--slate); }
.ticks li svg { margin-top: 3px; }
.tick-ok { color: var(--ok); } .tick-no { color: var(--alert); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px 24px; box-shadow: var(--shadow-sm); }
.step .n { position: absolute; top: -18px; left: 22px; width: 40px; height: 40px; border-radius: 12px; background: var(--brand); color: #fff; font-weight: 800; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(78,186,215,.4); }
.step h3 { font-size: 1.12rem; margin: 6px 0 8px; }
.step p { font-size: .96rem; color: var(--slate); }

/* ---------- Product comparison ---------- */
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.pcard { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pcard.featured { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(78,186,215,.28), var(--shadow-lg); }
.pcard .pc-media { background: linear-gradient(180deg, var(--brand-050), #fff); padding: 26px; text-align: center; }
.pcard .pc-media img { margin-inline: auto; max-height: 240px; width: auto; object-fit: contain; }
.pcard .pc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.pc-tag { position: absolute; top: 16px; right: 16px; background: var(--brand); color: #fff; font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; z-index: 2; }
.pc-tag.grey { background: var(--ink); }
.pcard h3 { font-size: 1.4rem; }
.pc-sub { color: var(--muted); font-size: .96rem; margin-top: 4px; }
.pc-price { margin: 16px 0 4px; font-size: 2.1rem; font-weight: 850; color: var(--ink); letter-spacing: -.03em; }
.pc-price small { font-size: .95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.pc-feats { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 11px; }
.pc-feats li { position: relative; padding-left: 30px; font-size: .96rem; color: var(--slate); }
.pc-feats li svg { position: absolute; left: 0; top: 4px; color: var(--brand-600); }
.pcard .btn { margin-top: auto; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; background: #fff; }
table.compare th, table.compare td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); }
table.compare thead th { background: var(--ink); color: #fff; font-size: .9rem; letter-spacing: .02em; }
table.compare thead th:first-child { border-top-left-radius: var(--radius); }
table.compare thead th:last-child { border-top-right-radius: var(--radius); }
table.compare tbody th { font-weight: 650; color: var(--ink-2); background: var(--bg-soft); }
table.compare td { color: var(--slate); text-align: center; font-weight: 600; }
table.compare tbody tr:last-child td, table.compare tbody tr:last-child th { border-bottom: 0; }
.cell-yes { color: var(--ok); font-weight: 800; }
.cell-no { color: var(--muted); }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.feature .fico { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-050); color: var(--brand-700); display: grid; place-items: center; margin-bottom: 14px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 7px; }
.feature p { font-size: .96rem; color: var(--slate); }

/* ---------- Dark band / CTA ---------- */
.band-ink { background: linear-gradient(160deg, var(--ink), #0a1c26); color: #cfe0e7; }
.band-ink h2 { color: #fff; }
.band-ink .eyebrow { color: var(--brand); }
.cta-band { text-align: center; }
.cta-band p { max-width: 620px; margin: 16px auto 0; color: #b9cdd5; font-size: 1.12rem; }
.cta-band .hero-cta { justify-content: center; margin-top: 30px; }

/* ---------- Timeline (article) ---------- */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 15px; top: 6px; bottom: 6px; width: 2px; background: var(--line-2); }
.timeline li { position: relative; padding: 0 0 26px 52px; }
.timeline li::before { content: ""; position: absolute; left: 8px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); }
.timeline .t-date { font-weight: 800; color: var(--brand-700); font-size: .92rem; letter-spacing: .02em; }
.timeline h3 { font-size: 1.1rem; margin: 4px 0 6px; }
.timeline p { color: var(--slate); font-size: .98rem; }

/* ---------- Article / prose ---------- */
.prose { max-width: 760px; }
.prose p { margin-top: 18px; font-size: 1.06rem; }
.prose h2 { margin-top: 44px; }
.prose h3 { margin-top: 30px; margin-bottom: 6px; }
.prose ul, .prose ol { margin-top: 16px; padding-left: 22px; display: grid; gap: 9px; }
.prose li { padding-left: 4px; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.article-head { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--brand-700); font-weight: 650; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--ink-2); font-weight: 600; }
.breadcrumb span[aria-hidden] { color: var(--line-2); }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; margin-top: 16px; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Checklist cards (protect page) */
.checklist { display: grid; gap: 20px; counter-reset: c; }
.check-item { display: grid; grid-template-columns: auto 1fr; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.check-item .cnum { counter-increment: c; width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 800; font-size: 1.15rem; display: grid; place-items: center; }
.check-item .cnum::before { content: counter(c); }
.check-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.check-item p { color: var(--slate); }
.check-item .tip { margin-top: 12px; font-size: .94rem; background: var(--brand-050); border-left: 3px solid var(--brand); padding: 10px 14px; border-radius: 0 8px 8px 0; color: var(--ink-2); }
.check-item .tip strong { color: var(--brand-700); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq details[open] { border-color: var(--brand); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; transition: transform .25s var(--ease); color: var(--brand-600); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--slate); }
.faq .faq-body p + p { margin-top: 12px; }

/* ---------- Pills / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; font-size: .88rem; font-weight: 650; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.chip svg { color: var(--brand-600); }

/* ---------- Sources ---------- */
.sources { display: grid; gap: 10px; margin-top: 20px; }
.sources a { display: flex; gap: 12px; align-items: baseline; padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); font-weight: 600; color: var(--ink-2); }
.sources a:hover { border-color: var(--brand); }
.sources a .src-out { color: var(--muted); font-weight: 600; font-size: .88rem; margin-left: auto; white-space: nowrap; }

/* ---------- Disclaimer ---------- */
.disclaimer { background: var(--bg-soft-2); border-top: 1px solid var(--line); }
.disclaimer .container { padding-block: 22px; }
.disclaimer p { font-size: .84rem; color: var(--muted); max-width: 960px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9fb4bd; padding: clamp(48px, 4vw, 72px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.site-footer a { color: #9fb4bd; display: block; padding: 5px 0; font-size: .96rem; }
.site-footer a:hover { color: var(--brand); }
.site-footer .f-brand p { margin-top: 14px; font-size: .95rem; max-width: 34ch; color: #8ba3ac; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #7d95a0; }
.footer-logo .bm-sub { color: #7d95a0; }
.footer-logo .bm-top .kc-c { color: #fff; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.nowrap { white-space: nowrap; }
.hide-mobile { display: initial; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .media-row { grid-template-columns: 1fr; gap: 30px; }
  .media-row.reverse .media-txt { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 10px 22px 20px;
    transform: translateY(-140%); transition: transform .28s var(--ease); margin-left: 0; }
  .nav.open { transform: translateY(0); }
  .nav a.navlink { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .header-cta { width: 100%; margin: 12px 0 0; }
  .header-cta .btn { width: 100%; }
  .nav-toggle { display: inline-flex; }
  .header-shop-desktop { display: none; }
  .products { grid-template-columns: 1fr; }
  .float-badge.price { right: 6px; } .float-badge.rating { left: 6px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .steps, .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-band .btn { width: 100%; }
  .check-item { grid-template-columns: 1fr; }
  .check-item .cnum { margin-bottom: 4px; }
}
