/*!
 * Family-F stylesheet — the ONLY stylesheet.
 *
 * The static build this replaced kept its `:root` block, its reset and its
 * header/footer rules in FOUR places: assets/css/style.css plus a 1,556-line
 * inline <style> in index.html, 486 lines in the channel-list page and 292 in
 * the setup guide. They had already drifted before the site shipped. There is
 * now one file; every page links it through f_asset() so an edit becomes a new
 * cache entry at the Cloudflare edge.
 *
 * Single dark theme by design — the brand is a dark product and a light variant
 * would be a second design to maintain, not a setting. Colours are declared as
 * tokens anyway so that decision is reversible in one block.
 *
 * ORDER: tokens · reset · a11y · buttons · header · sections (in page order) ·
 *        subpages · footer · rail · utilities · responsive.
 */

/* ══════════ Tokens ══════════ */
:root {
  /* Ground: near-black pulled a few degrees toward the accent, so the green
     sits ON something instead of floating over neutral grey. Each step up is a
     real elevation, not a tint of the one below. */
  --bg:            #050807;
  --bg-2:          #0b100e;   /* raised surface */
  --bg-3:          #0e1512;   /* pressed / code */
  --bg-4:          #121b17;   /* highest raise */
  --ink:           #ffffff;
  --ink-2:         #9fb3a8;   /* body copy on dark */
  /* 5.3:1 on --bg-2. The old #808285 was 3.9:1, which failed AA on every
     caption, stat label and reviewer city on the site. */
  --ink-3:         #778c81;   /* captions, meta */
  --line:          rgba(255, 255, 255, 0.07);
  --line-2:        rgba(255, 255, 255, 0.12);
  --line-a:        rgba(18, 226, 126, 0.26);  /* accent hairline */

  /* One hue at four luminosities: depth comes from luminosity, not from a
     second colour. Mint highlights, accent carries, emerald anchors a
     gradient, forest is the atmosphere behind it. */
  --mint:          #6ef7b8;
  --accent:        #12e27e;
  --accent-2:      #0aa85e;
  --forest:        #046e3d;
  /* Dark ink ON the accent. This was #ffffff, which was fine on the old blue
     but is 1.9:1 on green — every primary button would have failed AA. */
  --accent-ink:    #01120a;
  --accent-soft:   rgba(18, 226, 126, 0.13);
  --glow:          rgba(18, 226, 126, 0.30);
  --glow-hard:     rgba(18, 226, 126, 0.55);
  --grad-accent:   linear-gradient(180deg, var(--mint) -22%, var(--accent) 46%, var(--accent-2) 100%);

  --wa:            #25d366;   /* WhatsApp brand green */
  --tg:            #229ed9;   /* Telegram brand blue  */
  --star:          #12e27e;

  /* System stack. The page is set in the reader's own UI face, and dropping
     the webfont removes two preconnects plus a render-blocking Google Fonts
     stylesheet from every page — the cheapest LCP win left on this template,
     and one less third party in the request chain. */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display",
               "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow:    0 26px 60px -22px rgba(0, 0, 0, 0.92);
  --shadow-sm: 0 10px 24px -10px rgba(0, 0, 0, 0.7);

  --wrap: 1240px;
  --gutter: clamp(18px, 4vw, 48px);
  --section-y: clamp(64px, 8vw, 110px);

  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════ Reset ══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  /* The fixed header is 72–84px tall; every page needs to clear it. Pages that
     open with the full-bleed hero slide under it on purpose and reset this. */
  padding-top: 84px;
}
body.is-hero { padding-top: 0; }

a { color: inherit; text-decoration: none; transition: color var(--t); }
ul, ol { list-style: none; }
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; text-wrap: balance; }
p { text-wrap: pretty; }

/* ══════════ Accessibility ══════════ */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--accent); color: var(--accent-ink);
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700; transition: top var(--t);
}
.skip-link:focus { top: 0; }

/* One visible focus ring for the whole site. The static build had none, so
   keyboard users had no idea where they were. */
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.ico { width: 1em; height: 1em; flex: none; }

/* ══════════ Buttons ══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; letter-spacing: 0.2px;
  white-space: nowrap; cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t);
}
.btn .ico { width: 18px; height: 18px; }
.btn-lg { padding: 17px 36px; font-size: 16px; }

.btn-primary {
  background: var(--grad-accent); color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 0 0 1px var(--line-a),
              0 10px 26px -10px var(--glow-hard);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-2px); }

.btn-ghost { background: rgba(255, 255, 255, 0.07); color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.13); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-outline:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* ══════════ Header ══════════ */
#f-desktop-header {
  display: none; position: fixed; inset: 0 0 auto 0; z-index: 1000;
  align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px var(--gutter);
  background: rgba(5, 8, 7, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--t), box-shadow var(--t);
}
#f-desktop-header.scrolled { background: rgba(5, 8, 7, 0.97); box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45); }
.header-logo img { width: 172px; height: auto; }

.desktop-menu { display: flex; align-items: center; gap: 26px; }
.desktop-menu a {
  position: relative; font-size: 14.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.4px; color: var(--ink); padding: 6px 0;
}
.desktop-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent-2); transition: width var(--t);
}
.desktop-menu a:hover::after,
.desktop-menu a[aria-current="page"]::after { width: 100%; }
.desktop-menu a[aria-current="page"] { color: var(--accent-2); }

.header-right { display: flex; align-items: center; gap: 14px; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-accent); color: var(--accent-ink); font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: var(--r-pill); transition: var(--t);
}
.header-cta .ico { width: 17px; height: 17px; }
.header-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* Language picker — a <details>, so it works with JS disabled. */
.lang-picker { position: relative; }
.lang-picker > summary {
  display: flex; align-items: center; gap: 7px; list-style: none; cursor: pointer;
  padding: 9px 13px; border: 1px solid var(--line-2); border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 700; color: var(--ink-2); transition: var(--t);
}
.lang-picker > summary::-webkit-details-marker { display: none; }
.lang-picker > summary:hover { border-color: var(--accent-2); color: var(--ink); }
.lang-picker .ico { width: 16px; height: 16px; }
.lang-caret { transition: transform var(--t); }
.lang-picker[open] .lang-caret { transform: rotate(180deg); }

/* The flag's size is stated absolutely on the clip AND on the drawing. A
   percentage-sized SVG resolved its height correctly in Chrome but computed a
   width of a few pixels, leaving a squeezed flag inside a full-size outline. */
.lang-flag {
  width: 26px; height: 18px; flex: none; display: block;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.lang-flag svg { display: block; width: 26px; height: 18px; }

.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 1100;
  /* Sized to its own content. A fixed 210px left a dead column down the whole
     panel, and so did the two-letter code chip this replaced — a badge that is
     hidden or empty still reserves its width on every row. max-content hugs
     the longest endonym and nothing more.
     NOTHING inside may take a percentage width: that makes max-content cyclic
     and Chrome resolves it by inflating the panel. */
  width: max-content; min-width: 100%; max-width: 88vw;
  max-height: min(74vh, 520px); overflow-y: auto; overscroll-behavior: contain;
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--r); box-shadow: var(--shadow); padding: 6px;
}
.lang-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--r-sm);
  font-size: 14px; white-space: nowrap; color: var(--ink-2); transition: var(--t);
}
.lang-menu a:hover { background: rgba(255, 255, 255, 0.055); color: var(--ink); }
/* Current language marked with COLOUR, not a tick or a code in a right-hand
   column — colour costs no horizontal space. */
.lang-menu a.is-active { background: var(--accent-soft); }
.lang-menu a.is-active .lang-menu-name { color: var(--accent); font-weight: 600; }

/* Mobile header */
#f-mobile-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 12px 18px;
  background: rgba(5, 8, 7, 0.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-logo img { width: 146px; height: auto; }
.mobile-head-actions { display: flex; align-items: center; gap: 8px; }
.mobile-head-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--wa); color: #06281a;
}
.mobile-head-wa .ico { width: 21px; height: 21px; }
.mobile-menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid var(--line-2); color: var(--ink);
}
.mobile-menu-toggle .ico { width: 22px; height: 22px; }

.mobile-drawer-overlay {
  position: fixed; inset: 0; z-index: 1400;
  background: rgba(0, 0, 0, 0.62); opacity: 0; transition: opacity var(--t);
}
.mobile-drawer-overlay.open { opacity: 1; }

.mobile-drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 1500;
  width: min(340px, 88vw); overflow-y: auto;
  background: var(--bg-2); border-left: 1px solid var(--line-2);
  transform: translateX(100%); transition: transform var(--t);
  display: flex; flex-direction: column; gap: 6px; padding-bottom: 28px;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer[hidden], .mobile-drawer-overlay[hidden] { display: none; }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.mobile-drawer-header img { width: 146px; height: auto; }
.mobile-drawer-close {
  display: inline-flex; width: 38px; height: 38px; border-radius: var(--r-sm);
  align-items: center; justify-content: center; border: 1px solid var(--line-2);
}
.mobile-drawer-close .ico { width: 20px; height: 20px; }

.mobile-nav { display: flex; flex-direction: column; padding: 8px 0; }
.mobile-nav a {
  padding: 13px 20px; font-size: 15.5px; font-weight: 600; color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--accent-2); }

.mobile-drawer-langs { padding: 16px 20px 4px; }
.drawer-lang-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px;
}
.drawer-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.drawer-lang-grid a {
  display: flex; align-items: center; gap: 8px; min-width: 0;
  padding: 8px 10px; border-radius: var(--r-sm); font-size: 13.5px;
  color: var(--ink-2); background: rgba(255, 255, 255, 0.04);
}
/* Target the NAME, not a bare span: the flag is a span too, and a descendant
   rule here would stretch or recolour it as well. */
.drawer-lang-grid a > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drawer-lang-grid a > .lang-flag { overflow: hidden; }
.drawer-lang-grid a.is-active { color: var(--accent-2); font-weight: 700; background: var(--accent-soft); }

.mobile-drawer-cta { display: flex; flex-direction: column; gap: 10px; padding: 18px 20px 0; }
.mobile-nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 20px; border-radius: var(--r-pill);
  background: var(--wa); color: #06281a; font-weight: 700;
}
.mobile-nav-cta .ico { width: 19px; height: 19px; }
.mobile-nav-cta--tg { background: var(--tg); color: #04283a; }

/* ══════════ Section furniture ══════════ */
.section-header { text-align: center; max-width: 760px; margin: 0 auto 44px; padding: 0 var(--gutter); }
.section-eyebrow {
  display: inline-block; position: relative;
  font-size: 12px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 14px; padding-bottom: 8px;
}
.section-eyebrow::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 42px; height: 2px; background: var(--accent);
}
.section-main-title { font-size: clamp(27px, 4vw, 42px); margin-bottom: 12px; }
.section-main-title span { color: var(--accent-2); }
.section-sub { color: var(--ink-2); font-size: 16px; }

/* ══════════ Hero ══════════ */
.hero-section {
  position: relative; min-height: min(92vh, 820px);
  display: flex; align-items: center; overflow: hidden;
  padding: 140px var(--gutter) 80px;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; animation: kenBurns 18s ease-in-out infinite alternate; }
@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.09); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.96) 0%, rgba(5, 8, 7, 0.82) 46%, rgba(5, 8, 7, 0.45) 100%),
    linear-gradient(0deg, var(--bg) 2%, rgba(5, 8, 7, 0) 42%);
}
.hero-content { position: relative; width: 100%; max-width: var(--wrap); margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); border: 1px solid rgba(18, 226, 126, 0.40);
  color: var(--mint); font-size: 13px; font-weight: 700;
  padding: 7px 15px; border-radius: var(--r-pill); margin-bottom: 20px;
}
.hero-eyebrow .ico { width: 15px; height: 15px; }
.hero-title { font-size: clamp(34px, 6vw, 62px); font-weight: 900; letter-spacing: -0.5px; max-width: 15ch; }
.hero-lede { color: var(--ink-2); font-size: clamp(15.5px, 1.9vw, 18.5px); max-width: 54ch; margin-top: 18px; }

.hero-list { display: flex; flex-direction: column; gap: 11px; margin: 26px 0 30px; }
.hero-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; color: var(--ink-2); }
.hero-list .ico { width: 20px; height: 20px; color: var(--wa); margin-top: 2px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-note {
  display: flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: 13.5px; color: var(--ink-3);
}
.hero-note .ico { width: 16px; height: 16px; color: var(--wa); }

/* ══════════ Stat strip ══════════ */
.stats-strip { border-block: 1px solid var(--line); background: var(--bg-2); }
.stats-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 26px var(--gutter);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: clamp(20px, 2.6vw, 30px); font-weight: 900; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-lbl { font-size: 12.5px; color: var(--ink-3); letter-spacing: 0.3px; }

/* ══════════ Reviews ══════════ */
.reviews-section { padding: var(--section-y) 0; }
.reviews-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.review-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--t), border-color var(--t);
}
.review-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.review-stars { display: flex; gap: 3px; }
.review-stars .ico { width: 17px; height: 17px; color: var(--star); fill: var(--star); }
.review-text { color: var(--ink-2); font-size: 15px; flex: 1; }
.review-who { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 900; font-size: 17px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
}
.review-meta { display: flex; flex-direction: column; }
.review-name { font-weight: 700; font-size: 14.5px; }
.review-loc { font-size: 12.5px; color: var(--ink-3); }

.reviews-shots-title {
  text-align: center; font-size: 15px; font-weight: 700; letter-spacing: 0.4px;
  color: var(--ink-3); margin: 52px 0 20px; text-transform: uppercase;
}
.reviews-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews-track { display: flex; gap: 18px; width: max-content; animation: marqueeL 64s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.review-shot { width: 236px; flex: none; }
.review-shot img {
  width: 100%; height: auto; border-radius: var(--r);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
@keyframes marqueeL { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════ Pricing ══════════ */
.pricing-section { padding: var(--section-y) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.pricing-container { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.tier-switch {
  display: flex; justify-content: center; gap: 6px; margin: 0 auto 34px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 6px; width: max-content; max-width: 100%;
  flex-wrap: wrap;
}
.tier-btn {
  padding: 10px 26px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 14.5px; color: var(--ink-3); transition: var(--t);
}
.tier-btn:hover { color: var(--ink); }
.tier-btn.is-active { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 22px; align-items: start; }
.pricing-card {
  position: relative; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 28px 30px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.pricing-card.is-featured {
  border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  background: linear-gradient(180deg, rgba(18, 226, 126, 0.11), transparent 55%), var(--bg);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  /* Dark ink, not #fff. White on the old blue was fine; on the accent green it
     measures 1.72:1, and this badge is 11.5px uppercase — the smallest,
     tightest text on the page and the least forgiving of low contrast. */
  background: var(--accent); color: var(--accent-ink); font-size: 11.5px; font-weight: 800;
  letter-spacing: 1.1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r-pill); white-space: nowrap;
}
.pricing-period { font-size: 15px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink-3); }
.pricing-price { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.price-for { display: none; font-size: clamp(32px, 4.4vw, 44px); font-weight: 900; font-variant-numeric: tabular-nums; }
.price-for.is-shown { display: inline; }
.pricing-price .per { font-size: 14px; color: var(--ink-3); font-weight: 500; }
.pricing-permonth { font-size: 13.5px; color: var(--accent-2); font-weight: 700; margin-top: -6px; }
.permonth-for { display: none; }
.permonth-for.is-shown { display: inline; }

.pricing-features { display: none; flex-direction: column; gap: 11px; margin: 6px 0 4px; }
.pricing-features.is-shown { display: flex; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.pricing-features .ico { width: 18px; height: 18px; color: var(--wa); margin-top: 2px; flex: none; }

.pricing-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: auto; padding: 14px 22px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-2);
  font-weight: 700; transition: var(--t);
}
.pricing-btn .ico { width: 18px; height: 18px; }
.pricing-btn:hover { background: var(--grad-accent); color: var(--accent-ink); border-color: transparent; transform: translateY(-2px); }
.pricing-card.is-featured .pricing-btn { background: var(--grad-accent); color: var(--accent-ink); border-color: transparent; }
.pricing-card.is-featured .pricing-btn:hover { filter: brightness(1.06); }

.pricing-foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 30px; font-size: 14px; color: var(--ink-3);
}
.pricing-foot .ico { width: 17px; height: 17px; color: var(--accent); }

/* Platform chips under the prices. Content-width chips with a fixed LOGO
   height and width:auto — the artwork is not a uniform set (Netflix is wide,
   Apple TV nearly square), so a fixed box would squash the wide marks. */
.plan-platforms { margin-top: 40px; text-align: center; }
.plan-platforms-title {
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 18px;
}
.plan-platforms-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.platform-chip {
  height: 46px; padding: 0 18px; display: grid; place-items: center;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.platform-chip img { height: 22px; width: auto; opacity: 0.78; transition: opacity var(--t); }
.platform-chip:hover { border-color: var(--line-a); background: var(--bg-3); transform: translateY(-2px); }
.platform-chip:hover img { opacity: 1; }
@media (max-width: 520px) {
  .platform-chip { height: 40px; padding: 0 13px; }
  .platform-chip img { height: 18px; }
}

/* ══════════ Long-term deals ══════════ */
.deals-section { padding: var(--section-y) 0; }
.deals-container { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 20px; }
.deal-card {
  position: relative; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 11px; text-align: center;
  transition: transform var(--t), border-color var(--t);
}
.deal-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.deal-card.is-featured { border-color: var(--star); background: linear-gradient(180deg, rgba(18, 226, 126, 0.09), transparent 55%), var(--bg-2); }
.deal-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--star); color: var(--accent-ink); font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 15px; border-radius: var(--r-pill);
}
.deal-name { font-size: 20px; letter-spacing: 0.4px; }
.deal-price { display: flex; align-items: baseline; justify-content: center; gap: 10px; }
.deal-now { font-size: clamp(28px, 3.6vw, 38px); font-weight: 900; font-variant-numeric: tabular-nums; }
.deal-was { font-size: 16px; color: var(--ink-3); text-decoration: line-through; }
.deal-save { font-size: 13px; font-weight: 800; letter-spacing: 0.6px; color: var(--wa); text-transform: uppercase; }
.deal-note { font-size: 14px; color: var(--ink-2); flex: 1; }
.deal-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 6px; padding: 13px 22px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-2); font-weight: 700;
  transition: var(--t);
}
.deal-btn .ico { width: 18px; height: 18px; }
.deal-btn:hover { background: var(--grad-accent); color: var(--accent-ink); border-color: transparent; }

/* ══════════ Brand carousel ══════════ */
.brands-section { padding: 46px 0; border-block: 1px solid var(--line); background: var(--bg-2); }
.brands-title { text-align: center; font-size: 13.5px; color: var(--ink-3); margin-bottom: 22px; padding: 0 var(--gutter); }
.brands-wrapper { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brands-track { display: flex; align-items: center; gap: 52px; width: max-content; animation: marqueeL 42s linear infinite; }
.brands-track figure { flex: none; opacity: 0.62; transition: opacity var(--t); }
.brands-track figure:hover { opacity: 1; }
.brands-track img { width: 128px; height: auto; filter: grayscale(1) brightness(1.7); }

/* ══════════ Channel carousel ══════════ */
.channels-section { padding: var(--section-y) 0; }
.channels-inner { max-width: var(--wrap); margin: 0 auto; }
.channels-viewport { overflow: hidden; padding: 4px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.channels-track { display: flex; gap: 16px; width: max-content; animation: marqueeL 78s linear infinite; }
.channels-viewport:hover .channels-track,
.channels-track.is-paused { animation-play-state: paused; }
.channels-track figure { flex: none; width: 168px; }
.channels-track img {
  width: 100%; height: auto; aspect-ratio: 350 / 495; object-fit: cover;
  border-radius: var(--r-sm); border: 1px solid var(--line);
  transition: transform var(--t), border-color var(--t);
}
.channels-track figure:hover img { transform: scale(1.05); border-color: var(--accent-2); }

.channels-controls { display: flex; justify-content: center; gap: 12px; margin-top: 26px; }
.ch-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--ink); transition: var(--t);
}
.ch-btn .ico { width: 20px; height: 20px; }
.ch-btn:hover { background: var(--accent); border-color: var(--accent); }
.channels-more { text-align: center; margin-top: 26px; }

/* ══════════ Services / feature grid ══════════ */
.services-section { padding: var(--section-y) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.services-container { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.service-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; transition: transform var(--t), border-color var(--t);
}
.service-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.service-icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; background: var(--accent-soft); color: var(--accent-2); margin-bottom: 17px;
}
.service-icon .ico { width: 26px; height: 26px; }
.service-title { font-size: 18.5px; margin-bottom: 9px; }
.service-desc { font-size: 14.5px; color: var(--ink-2); }

/* ══════════ Devices ══════════ */
.devices-section { padding: var(--section-y) 0; }
.devices-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.devices-title { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 10px; }
.devices-sub { color: var(--ink-2); margin-bottom: 34px; }
.devices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.device-item {
  display: flex; flex-direction: column; align-items: center; gap: 11px;
  padding: 24px 14px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--bg-2); font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  transition: transform var(--t), border-color var(--t), color var(--t);
}
.device-item:hover { transform: translateY(-4px); border-color: var(--accent); color: var(--ink); }
.device-item .ico { width: 30px; height: 30px; color: var(--accent-2); }

/* ══════════ Sports banner ══════════ */
.sports-banner {
  position: relative; padding: var(--section-y) 0;
  background: linear-gradient(120deg, #0a1a12 0%, var(--bg) 62%);
  border-block: 1px solid var(--line); overflow: hidden;
}
.sports-banner-inner {
  position: relative; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center;
}
.sports-banner-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 12px;
}
.sports-banner-title { font-size: clamp(26px, 4vw, 42px); margin-bottom: 16px; }
.sports-banner-desc { color: var(--ink-2); font-size: 16px; margin-bottom: 26px; max-width: 56ch; }
.sports-banner-ctas { display: flex; flex-wrap: wrap; gap: 13px; }
.sports-banner-image img { width: 100%; height: auto; border-radius: var(--r-lg); }

/* ══════════ How it works ══════════ */
.how-section { padding: var(--section-y) 0; }
.steps-container { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 20px; counter-reset: none; }
.step-card {
  position: relative; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 34px 26px 28px;
  transition: transform var(--t), border-color var(--t);
}
.step-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.step-number {
  position: absolute; top: 18px; right: 22px;
  font-size: 42px; font-weight: 900; line-height: 1;
  color: rgba(255, 255, 255, 0.07); font-variant-numeric: tabular-nums;
}
.step-title { font-size: 18.5px; margin-bottom: 9px; }
.step-desc { font-size: 14.5px; color: var(--ink-2); }
.steps-cta { text-align: center; margin-top: 32px; }

/* ══════════ FAQ ══════════ */
.faq-section { padding: var(--section-y) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.faq-container { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq-item[open] { border-color: var(--accent); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 700;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-caret { width: 20px; height: 20px; flex: none; color: var(--accent-2); transition: transform var(--t); }
.faq-item[open] .faq-caret { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { color: var(--ink-2); font-size: 15px; }
.faq-more { text-align: center; margin-top: 26px; color: var(--ink-3); font-size: 15px; }
.faq-more a { color: var(--accent-2); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ══════════ Closing CTA band ══════════ */
.cta-band {
  padding: var(--section-y) 0;
  background: linear-gradient(135deg, rgba(18, 226, 126, 0.20), rgba(10, 168, 94, 0.07));
  border-block: 1px solid var(--line);
}
.cta-band-inner { max-width: 800px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.cta-band-inner h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 13px; }
.cta-band-inner > p { color: var(--ink-2); font-size: 16.5px; margin-bottom: 28px; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }
.cta-band-note { margin-top: 20px; font-size: 13.5px; color: var(--ink-3); }

/* ══════════ Subpages ══════════ */
.page-hero {
  padding: clamp(52px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  background: radial-gradient(1100px 420px at 18% -12%, rgba(18, 226, 126, 0.18), transparent 62%), var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero--slim { padding-bottom: clamp(30px, 4vw, 48px); }
.page-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); }
.page-hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 13px;
}
.page-hero-title { font-size: clamp(30px, 5vw, 50px); font-weight: 900; letter-spacing: -0.4px; }
.page-hero-lede { color: var(--ink-2); font-size: clamp(15.5px, 1.8vw, 18px); margin-top: 16px; max-width: 62ch; }
.page-hero .hero-ctas { margin-top: 26px; }
.e404-links { margin-top: 22px; font-size: 14px; color: var(--ink-3); }
.e404-links a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }

.prose-section { padding: clamp(44px, 6vw, 76px) 0; }
.prose-inner { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.prose-inner h2 { font-size: clamp(21px, 2.7vw, 28px); margin: 34px 0 13px; }
.prose-inner h2:first-child { margin-top: 0; }
.prose-inner p { color: var(--ink-2); font-size: 16px; margin-bottom: 15px; }
.legal-updated { margin-top: 16px; font-size: 13.5px; color: var(--ink-3); }
.legal-body h2 { font-size: clamp(19px, 2.3vw, 23px); }
.legal-body p:last-of-type { margin-bottom: 26px; }

.list-section { padding: clamp(44px, 6vw, 76px) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.list-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.list-inner .section-sub { margin-bottom: 30px; }
.pill-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 11px; text-align: left; margin-top: 26px;
}
.pill-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 17px; border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--bg); font-size: 14.5px; color: var(--ink-2);
}
.pill-list .ico { width: 17px; height: 17px; color: var(--wa); flex: none; }
.pill-list--compact { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

.tiles-section { padding: clamp(44px, 6vw, 76px) 0; }
.tiles-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.tiles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px; margin-top: 30px;
}
.tile img {
  width: 100%; height: auto; aspect-ratio: 350 / 495; object-fit: cover;
  border-radius: var(--r-sm); border: 1px solid var(--line);
  transition: transform var(--t), border-color var(--t);
}
.tile:hover img { transform: translateY(-4px); border-color: var(--accent-2); }

/* Contact page */
.contact-section { padding: clamp(44px, 6vw, 76px) 0; }
.contact-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.contact-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 11px; align-items: flex-start;
  transition: transform var(--t), border-color var(--t);
}
.contact-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.contact-card--primary { border-color: var(--wa); background: linear-gradient(180deg, rgba(37, 211, 102, 0.09), transparent 55%), var(--bg-2); }
.contact-card-icon {
  display: inline-grid; place-items: center; width: 50px; height: 50px;
  border-radius: 14px; background: rgba(255, 255, 255, 0.06); color: var(--accent-2);
}
.contact-card-icon .ico { width: 25px; height: 25px; }
.contact-card h2 { font-size: 19px; }
.contact-card-desc { font-size: 14.5px; color: var(--ink-2); flex: 1; }
.contact-card-value { font-size: 15px; font-weight: 700; word-break: break-word; }
.contact-card-value a:hover { color: var(--accent-2); }
.contact-card .btn { margin-top: 6px; }
.contact-hours { margin-top: 44px; text-align: center; }
.contact-hours h2 { font-size: clamp(21px, 2.7vw, 28px); margin-bottom: 11px; }
.contact-hours > p { color: var(--ink-2); max-width: 62ch; margin: 0 auto; }

/* ══════════ Footer ══════════ */
.footer-section { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); }
.footer-bg-overlay { position: absolute; inset: 0; background: radial-gradient(900px 340px at 82% 0%, rgba(18, 226, 126, 0.13), transparent 62%); pointer-events: none; }
.footer-container { position: relative; max-width: var(--wrap); margin: 0 auto; padding: clamp(48px, 6vw, 72px) var(--gutter) 40px; }
.footer-top { display: grid; grid-template-columns: 1.25fr 2fr; gap: 44px; }
.footer-logo img { width: 182px; height: auto; }
.footer-desc { color: var(--ink-2); font-size: 14.5px; margin: 16px 0 20px; max-width: 46ch; }

.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-socials a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: var(--r-pill);
  border: 1px solid var(--line-2); font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  transition: var(--t);
}
.footer-socials .ico { width: 17px; height: 17px; }
.footer-socials a:hover { border-color: var(--accent-2); color: var(--ink); transform: translateY(-2px); }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col-title { font-size: 13px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink); margin-bottom: 15px; }
.footer-col ul { display: flex; flex-direction: column; gap: 4px; }
/* inline-block + vertical padding so the hit area clears the 24px minimum —
   as bare inline links these measured 18px tall, which is a miss on a phone. */
.footer-col a { display: inline-block; padding: 4px 0; font-size: 14.5px; color: var(--ink-2); }
.footer-col a:hover { color: var(--accent-2); }

.footer-trust { margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--line); text-align: center; }
.footer-trust-label { font-size: 13px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 9px; }
.footer-trust-copy { color: var(--ink-3); font-size: 14px; max-width: 60ch; margin: 0 auto 22px; }
.footer-trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.footer-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.footer-trust-item .ico { width: 16px; height: 16px; color: var(--ink-3); }
.footer-trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 22px; }
.footer-trust-badges span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-3); }
.footer-trust-badges .ico { width: 16px; height: 16px; color: var(--wa); }

.footer-bottom {
  position: relative; border-top: 1px solid var(--line);
  padding: 20px var(--gutter); text-align: center;
  display: flex; flex-direction: column; gap: 5px; align-items: center;
  font-size: 13px; color: var(--ink-3);
}
.footer-xlink a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.footer-xlink a:hover { color: var(--accent-2); }

/* ══════════ Floating rail + scroll top ══════════ */
/* One rail, vertically centred on the right: two brand circles and a rounded
   square for back-to-top. WhatsApp and Telegram keep their OWN brand colours
   rather than the page accent — recolouring them green would cost the instant
   recognition that is the entire reason a floating rail earns its space. */
.contact-rail {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 900;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.rail-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  box-shadow: 0 10px 22px -8px rgba(0, 0, 0, 0.55), 0 2px 6px -2px rgba(0, 0, 0, 0.35),
              inset 0 1.5px 0 rgba(255, 255, 255, 0.25), inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.rail-btn .ico { width: 36px; height: 36px; }
.rail-btn:hover { transform: translateX(-2px) scale(1.06); }
.rail-btn:active { transform: translateX(-1px) scale(0.96); }
.rail-wa { background: var(--wa); color: #06281a; }
.rail-wa:hover { background: #1ebe5b; box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.7); }
.rail-tg { background: var(--tg); color: #04283a; }
.rail-tg:hover { background: #1b8bbf; box-shadow: 0 14px 30px -8px rgba(34, 158, 217, 0.7); }

.scroll-top {
  position: relative; margin-top: 22px;
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(14, 21, 18, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-2); color: var(--ink);
  box-shadow: 0 10px 22px -8px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t), background var(--t), border-color var(--t);
}
.scroll-top .ico { width: 26px; height: 26px; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--bg-4); border-color: var(--line-a); transform: translateY(-1px); }

.rail-tip {
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%) translateX(6px); white-space: nowrap;
  font-size: 12.5px; font-weight: 600; padding: 6px 10px;
  background: var(--bg-3); border: 1px solid var(--line-2); border-radius: 8px;
  color: var(--ink); opacity: 0; pointer-events: none;
  box-shadow: var(--shadow-sm); transition: opacity var(--t), transform var(--t);
}
.rail-btn:hover .rail-tip, .scroll-top:hover .rail-tip,
.rail-btn:focus-visible .rail-tip, .scroll-top:focus-visible .rail-tip {
  opacity: 1; transform: translateY(-50%);
}

/* ══════════ Limited-offer bar ══════════
   Sized to its CONTENT and centred, never stretched edge to edge: pinned at
   left:16/right:16 it leaves a wall of empty bar between the sentence and the
   button on any wide screen. Nothing inside may take a percentage width or
   max-content goes cyclic. */
.deal-bar {
  position: fixed; left: 50%; bottom: 16px; z-index: 950;
  width: max-content; max-width: calc(100vw - 32px);
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px 12px 18px;
  background: linear-gradient(135deg, rgba(6, 26, 16, 0.95) 0%, rgba(8, 13, 11, 0.95) 100%);
  border: 1px solid var(--line-a); border-radius: var(--r);
  box-shadow: var(--shadow), 0 0 60px -22px var(--glow-hard);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  color: var(--ink-2); font-size: 14px;
  transform: translate(-50%, 150%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.deal-bar[data-state="visible"] { transform: translate(-50%, 0); }
.deal-bar[data-state="dismissed"] { display: none; }
.deal-bar-time {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--accent-soft); border: 1px solid var(--line-a); font-weight: 600;
}
.deal-bar-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: dealPulse 1.6s ease-out infinite;
}
@keyframes dealPulse {
  0%   { box-shadow: 0 0 0 0 rgba(18, 226, 126, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(18, 226, 126, 0); }
}
.deal-bar-lbl { font-size: 12.5px; color: var(--ink-3); }
/* tabular-nums so the clock does not jitter as its digits change. */
.deal-bar-val { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.deal-bar-text { color: var(--ink); font-weight: 500; }
.deal-bar-text strong { color: var(--accent); font-weight: 800; }
.deal-bar-cta {
  display: inline-flex; align-items: center; gap: 7px; flex: none;
  padding: 10px 18px; border-radius: var(--r-pill);
  background: var(--grad-accent); color: var(--accent-ink);
  font-weight: 700; font-size: 14px; white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 8px 20px -10px var(--glow-hard);
  transition: transform var(--t), filter var(--t);
}
.deal-bar-cta:hover { transform: translateY(-1px); filter: brightness(1.06); }
.deal-bar-cta .ico { width: 14px; height: 14px; }
.deal-bar-x {
  width: 28px; height: 28px; flex: none; border-radius: 8px;
  border: 1px solid var(--line-2); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center; transition: var(--t);
}
.deal-bar-x:hover { background: rgba(255, 255, 255, 0.08); color: var(--ink); }
.deal-bar-x .ico { width: 14px; height: 14px; }
/* Keep the footer reachable: the bar is fixed, so without this it permanently
   covers the last strip of every page. */
body.has-deal { padding-bottom: 96px; }

/* ══════════ pSEO + blog: light-on-dark shared engine ══════════
   The shared pSEO stylesheet is written for a dark ground, which this family
   already is — unlike Family-D, no override sheet is needed. These few rules
   only align its container width and heading rhythm with ours. */
body.is-pseo .ps, body.is-blog .cms-post { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
body.is-pseo main, body.is-blog main { padding-block: clamp(40px, 6vw, 72px); }

/* ══════════ Responsive ══════════ */
@media (min-width: 992px) {
  #f-mobile-header { display: none; }
  #f-desktop-header { display: flex; }
}
@media (max-width: 991px) {
  body { padding-top: 66px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .sports-banner-inner { grid-template-columns: 1fr; gap: 30px; }
  .sports-banner-image { order: -1; max-width: 380px; }
}
@media (max-width: 991px) {
  .contact-rail { right: 10px; gap: 10px; }
  .rail-btn { width: 50px; height: 50px; }
  .rail-btn .ico { width: 30px; height: 30px; }
  .scroll-top { width: 42px; height: 42px; border-radius: 12px; margin-top: 16px; }
}
@media (max-width: 768px) {
  /* Tooltips are a pointer affordance; on touch they fire on tap and sit in
     the way of the thing they describe. */
  .rail-tip { display: none; }
  /* The one-row bar cannot fit a phone, so it becomes a three-row card. The
     centring lives in `transform`, which also carries the slide-in, so both
     states have to be restated here rather than only the visible one. */
  .deal-bar {
    left: 16px; right: 16px; width: auto; max-width: none;
    transform: translateY(150%);
    display: grid; grid-template-columns: 1fr auto;
    grid-template-areas: "time close" "text text" "cta cta";
    gap: 10px; padding: 12px 14px;
  }
  .deal-bar[data-state="visible"] { transform: none; }
  .deal-bar-time { grid-area: time; justify-self: start; background: none; border: none; padding: 0; }
  .deal-bar-x    { grid-area: close; justify-self: end; }
  .deal-bar-text { grid-area: text; text-align: center; line-height: 1.45; font-size: 13.5px; }
  .deal-bar-cta  { grid-area: cta; width: 100%; justify-content: center; padding: 12px 18px; }
  body.has-deal { padding-bottom: 188px; }

  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 22px 12px; }
  .stats-inner .stat:nth-child(4) { grid-column: 1 / 2; }
  .stats-inner .stat:nth-child(5) { grid-column: 2 / 4; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero-section { min-height: auto; padding-top: 116px; }
  .hero-overlay { background: linear-gradient(0deg, var(--bg) 4%, rgba(5, 8, 7, 0.72) 58%, rgba(5, 8, 7, 0.86) 100%); }
  .review-shot { width: 190px; }
  .channels-track figure { width: 132px; }
  .tier-switch { width: 100%; justify-content: stretch; }
  .tier-btn { flex: 1; padding: 10px 12px; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero-ctas .btn, .cta-band-btns .btn { width: 100%; }
  .contact-rail { right: 8px; gap: 8px; }
}
