/* =========================================================================
   Privflix — Premium Adult IPTV (2026)
   Single hand-authored stylesheet. No framework, no runtime, fully static.
   Sections: 1 Reset · 2 Tokens · 3 Base/Type · 4 Layout · 5 Buttons
   6 Nav · 7 Hero · 8 Badges/Pills · 9 Cards · 10 Plans · 11 Gallery
   12 Steps · 13 Devices · 14 Testimonials · 15 FAQ · 16 Prose
   17 Sticky CTA · 18 Footer · 19 Modal · 20 Reveal/Motion · 21 Utilities
   ========================================================================= */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- 2. Design tokens ---------- */
:root {
  /* Surfaces — warm plum-black derived from the content imagery */
  --bg:            #0b0810;
  --surface-1:     #15101c;
  --surface-2:     #1d1626;
  --glass:         rgba(255,255,255,0.04);
  --glass-strong:  rgba(255,255,255,0.06);
  --border:        rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.20);

  /* Brand — rose-magenta accent + violet, matching the imagery */
  --accent:        #ff3d85;
  --accent-600:    #f02873;
  --accent-700:    #d11a60;
  --accent-soft:   rgba(255,61,133,0.14);
  --violet:        #a855f7;   /* secondary depth accent */

  /* Text */
  --text:          #ffffff;
  --text-70:       rgba(255,255,255,0.72);
  --text-60:       rgba(255,255,255,0.60);
  --text-50:       rgba(255,255,255,0.50);
  --text-40:       rgba(255,255,255,0.40);
  --ink:           #14060d;   /* dark text on accent */

  /* Type */
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --fs-900: clamp(2.6rem, 6vw, 4.6rem);   /* hero h1 */
  --fs-800: clamp(2rem, 4vw, 2.75rem);    /* section h2 */
  --fs-700: 1.75rem;
  --fs-600: 1.3rem;
  --fs-500: 1.125rem;
  --fs-400: 1rem;
  --fs-300: 0.9375rem;
  --fs-200: 0.8125rem;
  --fs-100: 0.6875rem;

  /* Spacing (8pt) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  /* Radius / shadow / layout */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-pill: 999px;
  --shadow-1: 0 10px 30px -12px rgba(0,0,0,0.5);
  --shadow-2: 0 25px 50px -12px rgba(0,0,0,0.55);
  --shadow-accent: 0 10px 24px -6px rgba(255,61,133,0.40);
  --maxw: 1320px;
  --nav-h: 76px;
}

/* ---------- 3. Base / typography ---------- */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: var(--fs-400);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--ink); }
h1, h2, h3, h4 { line-height: 1.1; font-weight: 600; }
.display { font-family: var(--font-display); letter-spacing: -0.03em; font-weight: 600; }
.h1 { font-size: var(--fs-900); letter-spacing: -0.04em; }
.h2 { font-size: var(--fs-800); letter-spacing: -0.03em; }
.h3 { font-size: var(--fs-700); letter-spacing: -0.02em; }
.lead { font-size: var(--fs-500); color: var(--text-70); }
.muted { color: var(--text-60); }
.accent-text { color: var(--accent); }
.eyebrow {
  display: inline-block; font-size: var(--fs-200); font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
}

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-8); }
.section--divider { border-top: 1px solid var(--border); }
.section-head { max-width: 640px; margin: 0 auto var(--sp-7); text-align: center; }
.section-head .h2 { margin-top: var(--sp-2); }
.section-head p { margin-top: var(--sp-3); color: var(--text-70); }
.grid { display: grid; gap: var(--sp-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flow > * + * { margin-top: var(--sp-4); }
.center { text-align: center; }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  height: 52px; padding-inline: var(--sp-6);
  font-weight: 600; font-size: var(--fs-400); white-space: nowrap;
  border-radius: var(--r-pill); border: 1px solid transparent;
  background: var(--btn-bg); cursor: pointer;
  transition: transform .18s cubic-bezier(.4,0,.2,1), background .18s, box-shadow .18s, border-color .18s;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn--primary { --btn-bg: var(--accent); color: var(--ink); }
.btn--primary:hover { --btn-bg: var(--accent-600); box-shadow: var(--shadow-accent); }
.btn--light { --btn-bg: #fff; color: var(--ink); }
.btn--light:hover { --btn-bg: rgba(255,255,255,.9); }
.btn--ghost { border-color: var(--border-strong); color: var(--text); }
.btn--ghost:hover { background: var(--glass-strong); }
.btn--sm { height: 42px; padding-inline: var(--sp-5); font-size: var(--fs-300); }
.btn--block { display: flex; width: 100%; }
.btn--lg { height: 58px; font-size: var(--fs-500); }

/* ---------- 6. Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,20,0.85); backdrop-filter: blur(18px);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: var(--sp-5); }
.brand { display: inline-flex; align-items: center; gap: var(--sp-3); }
.brand__mark {
  width: 38px; height: 38px; border-radius: 12px; background: var(--accent);
  display: grid; place-items: center; color: var(--ink); flex: none;
}
.brand__mark svg { width: 20px; height: 20px; }
.brand__name { font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; letter-spacing: -0.02em; }
.nav__links { display: flex; align-items: center; gap: var(--sp-6); font-size: var(--fs-300); font-weight: 500; }
.nav__links a { color: var(--text-70); transition: color .15s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--accent); }
.nav__actions { display: flex; align-items: center; gap: var(--sp-3); }
.nav__toggle { display: none; background: none; border: 0; padding: var(--sp-2); cursor: pointer; color: var(--text); }
.nav__toggle svg { width: 26px; height: 26px; }
.nav__mobile { display: none; border-top: 1px solid var(--border); background: var(--bg); padding: var(--sp-4) var(--sp-5); }
.nav__mobile[data-open="true"] { display: block; }
.nav__mobile a { display: block; padding: var(--sp-3) 0; border-bottom: 1px solid var(--border); color: var(--text-70); }
.nav__mobile a:last-of-type { border-bottom: 0; }

/* ---------- 7. Hero ---------- */
.hero { padding-block: var(--sp-8) var(--sp-7); }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-8); align-items: center; }
.hero__title { margin-top: var(--sp-5); }
.hero__title .accent-text { display: block; }
.hero p.lead { margin-top: var(--sp-5); max-width: 34rem; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero__cta { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.hero__social { margin-top: var(--sp-6); display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-300); color: var(--text-60); }
.avatars { display: flex; }
.avatars span { width: 26px; height: 26px; border-radius: var(--r-pill); background: linear-gradient(135deg, var(--violet), var(--accent)); box-shadow: 0 0 0 2px var(--bg); margin-left: -8px; }
.avatars span:first-child { margin-left: 0; }

.hero__media { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/11; box-shadow: var(--shadow-2); }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top right, rgba(0,0,0,.78), rgba(0,0,0,.25) 45%, transparent); }
.hero__caption { position: absolute; left: var(--sp-5); bottom: var(--sp-5); z-index: 1; }
.hero__caption .tag { color: var(--accent); font-size: var(--fs-200); letter-spacing: 0.18em; font-weight: 600; }
.hero__caption .title { font-family: var(--font-display); font-size: var(--fs-700); margin-top: 2px; }
.hero__caption .sub { font-size: var(--fs-300); color: var(--text-70); }

/* ---------- 8. Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--border);
  font-size: var(--fs-200); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.badge { position: absolute; top: -12px; right: 18px; background: var(--accent); color: var(--ink);
  font-size: var(--fs-100); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-pill); }
.badge--18 { background: var(--violet); color: #fff; }

/* ---------- 9. Cards (glass / feature / generic) ---------- */
.card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  backdrop-filter: blur(20px);
  transition: transform .3s cubic-bezier(.4,0,.2,1), border-color .3s, box-shadow .3s;
}
.card--hover:hover { transform: translateY(-4px); border-color: rgba(0,229,160,0.5); box-shadow: var(--shadow-1); }
.card__icon { width: 48px; height: 48px; color: var(--accent); margin-bottom: var(--sp-4); }
.card__icon svg { width: 100%; height: 100%; }
.card h3 { font-size: var(--fs-600); }
.card p { margin-top: var(--sp-2); color: var(--text-70); font-size: var(--fs-300); }

/* trust bar */
.trust { border-block: 1px solid var(--border); background: rgba(0,0,0,0.3); }
.trust__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-4); padding-block: var(--sp-5); text-align: center; }
.trust__num { font-size: var(--fs-600); font-weight: 700; color: var(--accent); }
.trust__lbl { font-size: var(--fs-300); color: var(--text-60); }

/* ---------- 10. Plans ---------- */
.term-toggle { display: flex; justify-content: center; margin-bottom: var(--sp-6); }
.term-toggle__inner { display: inline-flex; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px; }
.term-btn { border: 0; background: transparent; color: var(--text-60); padding: 10px 20px; border-radius: var(--r-pill); font-weight: 500; cursor: pointer; transition: .2s; font-size: var(--fs-300); }
.term-btn[aria-pressed="true"] { background: #fff; color: var(--ink); }
.plans { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-4); align-items: start; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-6); transition: transform .3s, box-shadow .3s, border-color .3s; }
.plan--featured { border-color: rgba(0,229,160,0.5); background: linear-gradient(180deg, rgba(0,229,160,0.06), var(--glass)); }
.plan--hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.plan__name { font-weight: 600; font-size: var(--fs-500); display: flex; align-items: center; gap: var(--sp-2); }
.plan__desc { font-size: var(--fs-200); color: var(--text-60); margin-top: 2px; }
.plan__price { margin-top: var(--sp-5); }
.plan__price .amt { font-size: 3rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.plan__price .amt::before { content: "$"; font-size: 1.6rem; vertical-align: super; margin-right: 2px; color: var(--text-70); }
.plan__price .per { color: var(--text-60); font-size: var(--fs-300); }
.plan__features { margin-top: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); font-size: var(--fs-300); color: var(--text-70); }
.plan__features li { display: flex; gap: var(--sp-2); }
.plan__features svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.plan .btn { margin-top: var(--sp-6); }
.plan__foot { margin-top: var(--sp-5); text-align: center; font-size: var(--fs-200); color: var(--text-50); }

/* ---------- 11. Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--sp-3); }
.gallery figure { overflow: hidden; border-radius: var(--r-md); border: 1px solid var(--border); background: var(--surface-1); }
.gallery img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { padding: var(--sp-2) var(--sp-3); font-size: var(--fs-200); color: var(--text-60); }
.section-flex-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-5); }

/* wide media band (used in article showcases + video bands) */
.media-band { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/7; background: var(--surface-1); }
.media-band img, .media-band video { width: 100%; height: 100%; object-fit: cover; }
.media-band__cap { position: absolute; left: var(--sp-5); bottom: var(--sp-5); z-index: 1; }
.media-band__cap .tag { color: var(--accent); font-size: var(--fs-200); letter-spacing: 0.16em; font-weight: 600; }
.media-band__cap .title { font-family: var(--font-display); font-size: var(--fs-600); }
.media-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 55%); pointer-events: none; }

/* portrait movie-poster row (2:3) — correct orientation for tall posters */
.poster-row { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--sp-3); }
.poster-row figure { overflow: hidden; border-radius: var(--r-md); border: 1px solid var(--border); background: var(--surface-1); }
.poster-row img { width: 100%; aspect-ratio: 2/3; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.poster-row figure:hover img { transform: scale(1.05); }
@media (max-width: 760px) { .poster-row { grid-template-columns: repeat(3,1fr); } }

/* ---------- 12. Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); }
.step { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-6); transition: transform .3s; }
.step:hover { transform: translateX(6px); }
.step__num { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-family: var(--font-display); font-size: var(--fs-500); margin-bottom: var(--sp-4); }
.step h3 { font-size: var(--fs-500); }
.step p { margin-top: var(--sp-2); color: var(--text-70); font-size: var(--fs-300); }

/* ---------- 13. Devices ---------- */
.devices { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-3); }
.device { display: flex; align-items: center; gap: var(--sp-3); background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--sp-4); font-size: var(--fs-300); transition: border-color .3s, transform .3s; }
.device:hover { border-color: rgba(0,229,160,0.4); transform: translateY(-2px); }
.device svg { width: 22px; height: 22px; color: var(--accent); flex: none; }

/* players row */
.players { display: grid; grid-template-columns: repeat(6,1fr); gap: var(--sp-3); }
.player { display: flex; align-items: center; gap: var(--sp-3); background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4); font-size: var(--fs-300); font-weight: 500; }
.player img { width: 36px; height: 36px; border-radius: 9px; flex: none; object-fit: contain; }
.player { color: var(--text); transition: border-color .3s, transform .3s; }
.player.card--hover:hover { border-color: rgba(255,61,133,0.45); transform: translateY(-3px); }
.player--stack { flex-direction: column; text-align: center; padding: var(--sp-4); }
.player--stack img { width: 44px; height: 44px; }

/* ---------- 14. Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); }
.tcard { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-6); }
.tcard__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: var(--sp-3); }
.tcard p { font-size: var(--fs-300); }
.tcard__who { margin-top: var(--sp-4); font-size: var(--fs-200); color: var(--text-50); }

/* ---------- 15. FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-2); }
.faq details { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--sp-5); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); cursor: pointer; font-weight: 500; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 18px; height: 18px; color: var(--accent); transition: transform .25s; flex: none; }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details p { margin-top: var(--sp-3); color: var(--text-70); font-size: var(--fs-300); }

/* ---------- 16. Prose (article bodies) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose > * + * { margin-top: var(--sp-5); }
.prose h2 { font-size: var(--fs-800); letter-spacing: -0.02em; margin-top: var(--sp-7); }
.prose h3 { font-size: var(--fs-600); margin-top: var(--sp-5); }
.prose p, .prose li { color: var(--text-70); }
.prose ul { display: flex; flex-direction: column; gap: var(--sp-3); padding-left: var(--sp-5); list-style: disc; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
/* buttons inside prose must keep their own colors (not the link style) */
.prose a.btn { text-decoration: none; }
.prose a.btn--primary, .prose a.btn--light { color: var(--ink); }
.prose a.btn--ghost { color: var(--text); }
.prose img { border-radius: var(--r-lg); border: 1px solid var(--border); margin-inline: auto; }
.callout { background: var(--accent-soft); border: 1px solid rgba(0,229,160,0.3); border-radius: var(--r-md); padding: var(--sp-5); }
.callout strong { color: var(--accent); }

/* related guides */
.related { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); }
.related a { display: block; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--sp-5); transition: border-color .3s, transform .3s; }
.related a:hover { border-color: rgba(0,229,160,0.4); transform: translateY(-3px); }
.related .k { font-size: var(--fs-200); color: var(--accent); }
.related .t { font-weight: 600; margin-top: var(--sp-2); }

/* breadcrumbs */
.crumbs { font-size: var(--fs-200); color: var(--text-50); padding-top: var(--sp-5); }
.crumbs a { color: var(--text-60); }
.crumbs a:hover { color: var(--accent); }
.crumbs span { margin-inline: 6px; }

/* ---------- 17. Sticky mobile CTA ---------- */
.sticky-cta { display: none; position: fixed; inset-inline: 0; bottom: 0; z-index: 60; padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom)); background: rgba(10,10,20,0.92); backdrop-filter: blur(14px); border-top: 1px solid var(--border); }
.fab { display: inline-flex; position: fixed; right: 24px; bottom: 24px; z-index: 55; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--ink); align-items: center; justify-content: center; box-shadow: var(--shadow-accent); transition: transform .2s; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }

/* ---------- 18. Footer ---------- */
.footer { border-top: 1px solid var(--border); padding-block: var(--sp-7); font-size: var(--fs-200); color: var(--text-60); }
.footer__inner { display: flex; flex-wrap: wrap; gap: var(--sp-5); justify-content: space-between; align-items: flex-start; }
.footer__cols { display: flex; flex-wrap: wrap; gap: var(--sp-7); }
.footer__col h4 { font-size: var(--fs-200); text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-50); margin-bottom: var(--sp-3); }
.footer__col a { display: block; color: var(--text-60); padding-block: 3px; }
.footer__col a:hover { color: var(--accent); }
.footer__legal { width: 100%; margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: 1px solid var(--border); color: var(--text-50); }

/* ---------- 19. Modal ---------- */
.modal { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.9); padding: var(--sp-4); }
.modal[data-open="true"] { display: grid; place-items: center; }
.modal__box { width: 100%; max-width: 440px; background: var(--surface-2); border: 1px solid var(--border-strong); border-radius: var(--r-lg); padding: var(--sp-7); }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-4); }
.modal__close { background: none; border: 0; font-size: 1.8rem; line-height: 1; color: var(--text-40); cursor: pointer; }
.modal__close:hover { color: var(--text); }
.field { width: 100%; background: rgba(0,0,0,0.6); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 13px 18px; }
.field::placeholder { color: var(--text-40); }
.field:focus { outline: none; border-color: var(--accent); }
form.flow > * + * { margin-top: var(--sp-4); }

/* ---------- 20. Reveal / motion ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 21. Utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hide-sm { }
.show-sm { display: none !important; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.framed { border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .plans { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .players { grid-template-columns: repeat(3,1fr); }
  .devices { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .grid-2, .grid-3, .grid-4, .steps, .testimonials, .related { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .trust__grid { grid-template-columns: repeat(2,1fr); gap: var(--sp-5); }
  .players { grid-template-columns: repeat(2,1fr); }
  .devices { grid-template-columns: 1fr; }
  .section { padding-block: var(--sp-8); }
  .footer__inner { flex-direction: column; }
  .sticky-cta { display: block; }
  .fab { display: none; }
  body { padding-bottom: 76px; }   /* room for sticky CTA */
  .hide-sm { display: none !important; }
  .show-sm { display: inline-flex !important; }
}
