/* YAM — IPTV Canada · thème True North */
:root {
  --ink: #0b1c3a;
  --ink-soft: #1a3358;
  --mist: #e7eef6;
  --snow: #f7fafc;
  --paper: #ffffff;
  --line: rgba(11, 28, 58, 0.12);
  --muted: #4d6178;
  --accent: #d80621;
  --accent-deep: #a80018;
  --ice: #245a8c;
  --ice-soft: #dceaf5;
  --gold-save: #0f6b4c;
  --north: #071633;
  --flag-white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 28, 58, 0.12);
  --radius: 2px;
  --font-display: "Bebas Neue", Impact, system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maple-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='%23d80621' fill-opacity='0.035' d='M60 18l5.5 17 9-13.5 1 18.5 14.5-9-6 17.5 17.5-2-11 14.5 16 7.5-17 5 4.5 17.5-16-4.5-1 18L60 78.5 53 92.5l-1-18-16 4.5 4.5-17.5-17-5 16-7.5-11-14.5 17.5 2-6-17.5 14.5 9 1-18.5 9 13.5L60 18z'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--snow);
  background-image:
    linear-gradient(90deg, rgba(216, 6, 33, 0.06) 0, rgba(216, 6, 33, 0.06) 6%, transparent 6%, transparent 94%, rgba(216, 6, 33, 0.06) 94%, rgba(216, 6, 33, 0.06) 100%),
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(36, 90, 140, 0.16), transparent 60%),
    var(--maple-pattern),
    linear-gradient(180deg, #ffffff 0%, var(--snow) 35%, var(--mist) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.canada-stripe {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent) 0 28%, var(--flag-white) 28% 72%, var(--accent) 72% 100%);
  position: sticky;
  top: 0;
  z-index: 110;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ice);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin: 0 0 0.6em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 4px;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(11, 28, 58, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
}

.brand-mark svg {
  display: block;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.lang-slide {
  --lang-pad: 0.2rem;
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 5.75rem;
  height: 2.15rem;
  padding: var(--lang-pad);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(40, 40, 40, 0.95), rgba(10, 10, 10, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 18px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  flex-shrink: 0;
}

.lang-slide-thumb {
  position: absolute;
  top: var(--lang-pad);
  left: var(--lang-pad);
  width: calc(50% - var(--lang-pad));
  height: calc(100% - (var(--lang-pad) * 2));
  border-radius: 999px;
  background: linear-gradient(180deg, #ff2a36, var(--accent));
  box-shadow: 0 4px 14px rgba(229, 9, 20, 0.45);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

.lang-slide.is-en .lang-slide-thumb {
  transform: translateX(100%);
}

.lang-slide-opt {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none !important;
  transition: color 0.2s ease;
  user-select: none;
}

.lang-slide-opt.is-active,
.lang-slide-opt:hover {
  color: #fff;
}

.lang-btn {
  display: none;
}

.lang-switch {
  display: none;
}

.mobile-lang {
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

@media (max-width: 960px) {
  .header-actions .header-cta {
    display: none;
  }

  .header-actions {
    margin-right: 0.35rem;
  }
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.35rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}

.btn-secondary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink-soft);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Hero — double section + waving flag */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - var(--header-h) - 4px);
  min-height: calc(100dvh - var(--header-h) - 4px);
  overflow: hidden;
  padding: 0;
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem;
}

.hero-panel-copy {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(216, 6, 33, 0.22), transparent 55%),
    linear-gradient(145deg, var(--north) 0%, #0d274f 55%, #1a1020 100%);
  color: #fff;
}

.hero-panel-flag {
  background:
    radial-gradient(circle at 70% 40%, rgba(216, 6, 33, 0.08), transparent 45%),
    linear-gradient(180deg, #f4f8fc 0%, #e6eef6 100%);
  flex-direction: column;
  gap: 1.5rem;
  border-left: 1px solid rgba(11, 28, 58, 0.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin: 0;
  padding: 0;
  max-width: none;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero-brand {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.35em;
  line-height: 1.02;
  max-width: 14ch;
  animation: brand-in 0.9s var(--ease) both;
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 0.85em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: none;
  letter-spacing: 0;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.stars {
  color: #ffd200;
  letter-spacing: 0.05em;
}

.flag-stage {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-left: 1.1rem;
  filter: drop-shadow(0 18px 28px rgba(11, 28, 58, 0.18));
}

.flag-pole {
  position: absolute;
  left: 0;
  top: -0.4rem;
  width: 10px;
  height: calc(100% + 3.5rem);
  border-radius: 999px;
  background: linear-gradient(90deg, #8a93a0, #d7dde5 45%, #6f7885);
  box-shadow: inset -2px 0 0 rgba(0, 0, 0, 0.15);
}

.flag-finial {
  position: absolute;
  left: -3px;
  top: -1rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff3a8, #c9a227 55%, #8a7010);
  z-index: 2;
}

.canada-flag {
  --flag-w: min(420px, 78vw);
  --flag-h: calc(var(--flag-w) * 0.5);
  width: var(--flag-w);
  height: var(--flag-h);
  transform-origin: left center;
  animation: flag-sway 4.5s ease-in-out infinite;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.flag-svg {
  display: block;
  width: 100%;
  height: 100%;
  animation: flag-ripple 2.8s ease-in-out infinite;
  will-change: transform;
}

.flag-wave {
  display: none;
}

.flag-segment {
  display: none;
}

@keyframes flag-ripple {
  0%,
  100% {
    transform: translateY(0) skewY(0deg) scaleY(1);
  }
  25% {
    transform: translateY(5px) skewY(2.2deg) scaleY(0.985);
  }
  50% {
    transform: translateY(-4px) skewY(-1.6deg) scaleY(1.015);
  }
  75% {
    transform: translateY(6px) skewY(1.8deg) scaleY(0.98);
  }
}

@keyframes flag-sway {
  0%,
  100% {
    transform: rotate(-1.2deg);
  }
  50% {
    transform: rotate(1.8deg);
  }
}

.flag-caption {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.reveal {
  animation: rise 0.8s var(--ease) both;
}

.hero-eyebrow.reveal { animation-delay: 0.1s; }
.hero-brand.reveal { animation-delay: 0.05s; }
.hero-tagline.reveal { animation-delay: 0.2s; }
.hero-lead.reveal { animation-delay: 0.3s; }
.hero-actions.reveal { animation-delay: 0.4s; }
.hero-trust.reveal { animation-delay: 0.5s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections common */
section:not(.hero) {
  padding: 5.5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto  auto;
  margin-bottom: 2.75rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice);
  margin: 0 0 0.75rem;
}

.section-head h2,
.why-copy h2,
.privacy h2,
.trial h2,
.cta h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
}

.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

/* Catalogue */
.catalogue {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.poster-rail {
  margin: 0 0 1.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.poster-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: rail 45s linear infinite;
  padding-inline: 1.25rem;
}

.poster-rail:hover .poster-track {
  animation-play-state: paused;
}

@keyframes rail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.poster {
  margin: 0;
  width: 160px;
  flex-shrink: 0;
}

.poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(1.05) contrast(1.05);
}

.poster figcaption {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.category-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.marquee-track span::after {
  content: "·";
  margin-left: 2.5rem;
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Defer offscreen paint work for PageSpeed */
.catalogue,
.why,
.pricing,
.features,
.sports,
.privacy,
.steps,
.trial,
.compare,
.faq,
.local-cities,
.home-seo,
.cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* Why */
.why {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.65) 20%, rgba(255, 255, 255, 0.65) 80%, transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.why-sub {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.check-list {
  margin: 1rem 0 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--accent);
  clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 18%, 82% 0, 38% 62%);
}

.why-visual {
  position: relative;
}

.why-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.why-visual::after {
  content: "";
  position: absolute;
  inset: auto -8% -8% auto;
  width: 55%;
  height: 35%;
  background: var(--ice-soft);
  z-index: -1;
  border-radius: 2px;
}

/* Pricing */
.pricing {
  background:
    linear-gradient(180deg, rgba(12, 26, 36, 0.03), transparent 30%),
    transparent;
}

.screen-toggle {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  gap: 0.15rem;
}

.screen-toggle button {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}

.screen-toggle button.is-active {
  background: var(--ink);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  z-index: 1;
}

.plan-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 0.35rem 0.6rem;
  margin-bottom: 1rem;
}

.plan-badge.muted {
  background: var(--ink);
}

.plan h3 {
  font-size: 1.55rem;
  margin-bottom: 0.35em;
}

.plan-desc {
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 2.8em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.5rem 0 0.15rem;
  font-family: var(--font-display);
}

.plan-price .currency {
  font-size: 1rem;
  font-weight: 700;
}

.plan-price .amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-price .period {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.plan-monthly {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.plan-save {
  color: var(--gold-save);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.plan-save.invisible {
  visibility: hidden;
}

.plan ul {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.plan li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan-note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.pricing-legal {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.feature-grid article {
  padding-top: 1.25rem;
  border-top: 2px solid var(--ink);
}

.feature-grid h3 {
  font-size: 1.2rem;
}

.feature-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

/* Sports */
.sports {
  background:
    linear-gradient(160deg, var(--north) 0%, #0d274f 55%, #1a0a12 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.sports::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--maple-pattern);
  opacity: 0.55;
  pointer-events: none;
}

.sports .container {
  position: relative;
  z-index: 1;
}

.sports .eyebrow {
  color: #ffb3bc;
}

.sports .section-lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 40rem;
}

.sports .section-lead strong {
  color: #fff;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.sports-grid article {
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, background 0.25s;
}

.sports-grid article:hover {
  border-color: rgba(216, 6, 33, 0.75);
  background: rgba(216, 6, 33, 0.16);
}

.sports-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}

.sports-grid p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.sports-grid span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffb3bc;
}

/* Privacy */
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.privacy-pills span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  background: var(--ice-soft);
  color: var(--ink);
  border-radius: 2px;
}

/* Steps */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.steps-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
}

.steps-list h3 {
  font-size: 1.25rem;
}

.steps-list p {
  color: var(--muted);
  margin: 0;
}

/* Trial */
.trial {
  padding: 0 0 5.5rem;
}

.trial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  background:
    linear-gradient(120deg, var(--ice-soft), #fff 50%, rgba(196, 18, 47, 0.08));
  border: 1px solid var(--line);
}

.trial-inner h2 {
  max-width: 28rem;
}

.trial-inner p {
  color: var(--muted);
  margin: 0;
  max-width: 28rem;
}

/* Compare */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--paper);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 640px;
}

th, td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

thead th {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  border-bottom: 0;
}

thead th:nth-child(2) {
  background: var(--accent);
}

tbody th {
  font-weight: 600;
  color: var(--ink-soft);
}

tbody td:nth-child(2) {
  font-weight: 700;
  color: var(--accent-deep);
  background: rgba(196, 18, 47, 0.04);
}

.compare-save {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

blockquote {
  margin: 0;
  padding: 1.5rem;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  border: 1px solid var(--line);
  border-left-width: 3px;
  border-left-color: var(--accent);
}

blockquote p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

blockquote footer {
  font-size: 0.9rem;
  color: var(--muted);
}

blockquote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0 1.15rem;
}

summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  padding-right: 1.5rem;
}

/* CTA */
.cta {
  background:
    linear-gradient(135deg, var(--north) 0%, #102a52 45%, #5c0a16 100%);
  color: #fff;
  text-align: center;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(216, 6, 33, 0.35) 0, rgba(216, 6, 33, 0.35) 8%, transparent 8%, transparent 92%, rgba(216, 6, 33, 0.35) 92%, rgba(216, 6, 33, 0.35) 100%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta .eyebrow {
  color: #ffb3bc;
}

.cta-inner {
  max-width: 640px;
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
}

.cta .hero-actions {
  justify-content: center;
}

.cta .hero-trust {
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.site-footer {
  background: var(--north);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 0;
  border-top: 4px solid var(--accent);
}

.site-footer .brand-text,
.site-footer .brand {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 28rem;
}

.site-footer h3 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(216, 6, 33, 0.35);
  transition: transform 0.25s var(--ease), background 0.25s;
}

.whatsapp-fab:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Legal pages */
.legal-page {
  padding: 4rem 0 5rem;
}

.legal-page h1,
.legal-page h2,
.legal-page h3,
.dmca-card h3,
.feature-grid h3,
.plan h3,
.steps-list h3,
.sports-grid h3,
blockquote cite {
  text-transform: none;
  letter-spacing: -0.01em;
}

.legal-page h1,
.section-head h2,
.why-copy h2,
.privacy h2,
.trial h2,
.cta h2,
.hero-brand {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  display: grid;
  gap: 0.4rem;
}

.legal-page h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.65rem;
}

.dmca-nav {
  margin: 1.75rem 0 2rem;
  padding: 1.25rem 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.dmca-nav-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.dmca-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.dmca-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}

.dmca-nav a:hover {
  color: var(--accent);
}

.dmca-card {
  margin: 1rem 0;
  padding: 1.15rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}

.dmca-card h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.dmca-card h3 span {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.dmca-card ul {
  margin-bottom: 0;
}

.dmca-note,
.dmca-commitment,
.dmca-warning {
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  background: var(--ice-soft);
  color: var(--ink-soft);
}

.dmca-warning {
  background: rgba(196, 18, 47, 0.08);
  border-color: rgba(196, 18, 47, 0.25);
}

.dmca-steps {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  counter-reset: dmca-step;
}

.dmca-steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
}

.dmca-steps li::before {
  counter-increment: dmca-step;
  content: counter(dmca-step);
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
}

.dmca-steps strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.dmca-submit {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background:
    linear-gradient(120deg, var(--ice-soft), #fff 55%, rgba(196, 18, 47, 0.06));
  border: 1px solid var(--line);
}

.dmca-contact {
  margin: 1rem 0 1.35rem;
}

.dmca-contact p {
  margin: 0 0 0.35rem;
  color: var(--ink-soft);
}

.dmca-back {
  margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 960px) {
  .nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .why-grid,
  .privacy-grid,
  .pricing-grid,
  .feature-grid,
  .sports-grid,
  .steps-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .plan-featured {
    order: 0;
  }

  .trial-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    padding: 3rem 1.25rem;
  }

  .hero-panel-flag {
    border-left: 0;
    border-top: 1px solid rgba(11, 28, 58, 0.08);
    min-height: 320px;
  }

  .hero-content {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  section:not(.hero) {
    padding: 3.75rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel-copy {
    padding: 2.75rem 1.15rem 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .flag-wave {
    --flag-w: min(300px, 82vw);
  }

  .poster {
    width: 130px;
  }

  .whatsapp-fab {
    right: 0.85rem;
    bottom: 0.85rem;
    font-size: 0.8rem;
    padding: 0.7rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .canada-flag,
  .flag-segment {
    animation: none !important;
  }
}

/* Theme Netflix */
:root {
  --ink: #ffffff;
  --ink-soft: #e5e5e5;
  --mist: #141414;
  --snow: #141414;
  --paper: #1a1a1a;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #b3b3b3;
  --accent: #e50914;
  --accent-deep: #b20710;
  --ice: #e50914;
  --ice-soft: #2a2a2a;
  --gold-save: #46d369;
  --north: #000000;
  --flag-white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --radius: 4px;
  --netflix-black: #141414;
  --netflix-dark: #000000;
}

body {
  color: var(--ink);
  background: #141414;
  background-image: none;
}

.canada-stripe,
.netflix-bar {
  height: 3px;
  background: var(--accent);
}

.site-header,
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(20, 20, 20, 0.82));
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.brand,
.brand:hover,
.nav a,
.mobile-nav a {
  color: #fff;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
}

.nav a:hover {
  color: #fff;
  opacity: 1;
}

.brand {
  gap: 0;
}

.brand-mark {
  display: none;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #e50914 !important;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.35),
    0 6px 18px rgba(229, 9, 20, 0.55);
  transform: scaleY(1.18);
  transform-origin: center;
  padding: 0 0.05em;
}

.site-header .brand-text {
  transition: text-shadow 0.3s var(--ease), filter 0.3s var(--ease);
}

.brand:hover .brand-text {
  filter: brightness(1.12);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.35),
    0 8px 26px rgba(229, 9, 20, 0.75);
}

.mobile-nav {
  background: #000;
}

.btn {
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.btn-secondary {
  background: rgba(109, 109, 110, 0.7);
  border-color: transparent;
}

.btn-secondary:hover {
  background: rgba(109, 109, 110, 0.4);
}

.btn-whatsapp {
  color: #fff;
  background: #17b968;
  border-color: #17b968;
}

.btn-whatsapp:hover {
  color: #fff;
  background: #119b56;
  border-color: #119b56;
}

.btn-outline {
  background: rgba(109, 109, 110, 0.4);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(109, 109, 110, 0.25);
  color: #fff;
}

.hero {
  width: min(1200px, calc(100% - 2rem));
  min-height: 640px;
  margin: 0.75rem auto 3rem;
  grid-template-columns: 1.1fr 0.9fr;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, #141414 28%, rgba(20, 20, 20, 0.55) 58%, transparent 78%),
    radial-gradient(circle at 78% 40%, rgba(229, 9, 20, 0.2), transparent 42%),
    #141414;
  box-shadow: none;
  overflow: visible;
}

.hero::before {
  display: none;
}

.hero-panel {
  z-index: 1;
  padding: 3.25rem 2rem;
}

.hero-panel-copy,
.hero-panel-flag {
  background: transparent;
  border: 0;
}

.hero-content {
  width: 100%;
}

.hero-eyebrow {
  color: #e50914;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-brand {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.hero-brand span {
  color: #fff;
  display: inline;
}

.hero-tagline {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-lead {
  color: #b3b3b3;
  font-size: 1.02rem;
  max-width: 34rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.hero-features li {
  padding: 0.4rem 0.75rem;
  color: #e5e5e5;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.35);
}

.hero-features li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.4rem;
  vertical-align: 0.05em;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
}

.hero-actions {
  gap: 0.65rem;
}

.hero-actions .btn {
  padding: 0.85rem 1.35rem;
  font-size: 0.92rem;
  border-radius: 4px;
}

.hero-trust {
  color: #808080;
  font-size: 0.8rem;
}

.hero-trust li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
}

.flag-stage,
.flag-caption {
  display: none;
}

.hero-visual {
  position: relative;
  width: 100%;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 20, 20, 0.92));
}

.hero-visual picture {
  display: block;
  width: 100%;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  background: #000;
  filter: contrast(1.03) saturate(1.05);
  transition: transform 0.6s var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.04);
}

.visual-live,
.visual-quality {
  position: absolute;
  z-index: 2;
  top: 1rem;
  padding: 0.35rem 0.6rem;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}

.visual-live {
  left: 1rem;
  background: var(--accent);
}

.visual-live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: #fff;
  animation: live-pulse 1.4s infinite;
}

.visual-quality {
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-caption {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.15rem;
  display: flex;
  flex-direction: column;
}

.visual-caption strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.visual-caption span {
  color: #b3b3b3;
  font-size: 0.8rem;
}

@keyframes live-pulse {
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 400;
}

.section-head h2,
.why-copy h2,
.cta h2,
.trial h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  color: var(--accent);
}

.section-lead,
.plan-desc,
.plan-monthly,
.feature-grid p,
.check-list li,
.pricing-legal,
.plan-note {
  color: var(--muted);
}

.catalogue,
.why,
.pricing,
.features,
.privacy,
.steps,
.compare,
.reviews,
.faq {
  background: transparent;
}

.poster {
  transition: transform 0.25s var(--ease);
}

.poster:hover {
  transform: scale(1.08);
  z-index: 2;
}

.poster img {
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.poster figcaption {
  color: #b3b3b3;
}

.category-marquee {
  background: #000;
  border-color: #222;
}

.marquee-track {
  color: #e5e5e5;
}

.marquee-track span::after {
  color: var(--accent);
}

.category-marquee,
.plan,
.feature-grid article,
.steps-list li,
blockquote,
details,
.table-wrap,
.trial-inner {
  background-color: #1a1a1a;
  border-color: #2a2a2a;
}

.plan {
  border-radius: 6px;
  color: #fff;
}

.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  background: linear-gradient(180deg, #2a0a0c, #1a1a1a 40%);
}

.plan-badge {
  background: var(--accent);
  border-radius: 2px;
  color: #fff !important;
}

.plan-badge.muted {
  background: #333 !important;
  color: #fff !important;
}

.plan h3,
.plan .currency,
.plan .amount,
.plan .period,
.plan-desc,
.plan-monthly,
.plan-save,
.plan-note,
.plan li,
.plan p {
  color: #fff !important;
}

.plan-desc,
.plan-monthly,
.plan .period,
.plan-note,
.plan li {
  color: #cfcfcf !important;
}

.plan-save {
  color: #46d369 !important;
}

.plan h3,
.feature-grid h3,
.steps-list h3,
blockquote cite,
.section-head h2,
.why-copy h2 {
  color: #fff;
}

.plan .amount {
  color: #fff !important;
}

/* Comparison table readability */
.table-wrap {
  background: #1a1a1a;
}

table {
  color: #fff;
}

thead th {
  background: #000 !important;
  color: #fff !important;
}

thead th:nth-child(2) {
  background: var(--accent) !important;
  color: #fff !important;
}

tbody th,
tbody td {
  color: #e5e5e5 !important;
  border-bottom-color: #2a2a2a;
}

tbody td:nth-child(2) {
  color: #fff !important;
  background: rgba(229, 9, 20, 0.12);
  font-weight: 700;
}

.compare-save {
  color: #fff;
}

.feature-grid article {
  background: transparent;
  border-top: 3px solid var(--accent);
  padding-top: 1rem;
}

.why {
  background: linear-gradient(180deg, transparent, rgba(229, 9, 20, 0.06), transparent);
}

.why-visual img {
  border-radius: 6px;
}

.sports {
  background: #000;
}

.sports-grid article {
  background: #1a1a1a;
  border-color: #2f2f2f;
  border-radius: 4px;
}

.sports-grid article:hover {
  border-color: var(--accent);
  background: #221014;
}

.sports .eyebrow,
.sports-grid span {
  color: #ff6b73;
}

.cta {
  background: linear-gradient(90deg, #000 0%, #1a0507 55%, #000 100%);
}

.cta .eyebrow {
  color: #ff6b73;
}

.trial-inner {
  background: linear-gradient(120deg, #1a1a1a, #2a0a0c);
  border-color: #333;
}

.site-footer {
  background: #000;
  border-top: 3px solid var(--accent);
}

.site-footer .brand-text {
  color: var(--accent) !important;
}

.whatsapp-fab {
  background: var(--accent);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
}

.whatsapp-fab:hover {
  background: var(--accent-deep);
}

thead th {
  background: #000 !important;
}

thead th:nth-child(2) {
  background: var(--accent) !important;
}

tbody td:nth-child(2) {
  color: #fff;
  background: rgba(229, 9, 20, 0.08);
}

details summary::after {
  color: var(--accent);
}

blockquote {
  border-left-color: var(--accent);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 1.25rem));
    background: #141414;
  }

  .hero-panel {
    padding: 2.5rem 1.5rem;
  }

  .hero-panel-flag {
    min-height: auto;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    margin-top: 0.5rem;
    border-radius: 0;
  }

  .hero-panel {
    padding: 2rem 1.15rem;
  }

  .hero-panel-flag {
    padding-top: 0;
    padding-bottom: 1.2rem;
  }

  .hero-brand {
    font-size: clamp(2.8rem, 14vw, 3.6rem);
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* ——— SEO / IPTV Canada local pages ——— */
.local-cities {
  padding: 3rem 0 1.5rem;
}

.home-seo {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-seo .section-head {
  margin-bottom: 1.5rem;
}

.home-seo .seo-article p:last-child {
  margin-bottom: 0;
}

.seo-page {
  padding: 2rem 0 4.5rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: #b3b3b3;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.seo-hero {
  margin-bottom: 2.75rem;
  max-width: 48rem;
}

.seo-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0.35rem 0 1rem;
  color: #fff;
}

.seo-lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.seo-lead a,
.seo-article a,
.seo-note a,
.city-link-list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.seo-lead a:hover,
.seo-article a:hover {
  color: var(--accent);
}

.seo-section {
  margin: 2.75rem 0;
}

.seo-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: #fff;
}

.seo-article p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.1rem;
  max-width: 48rem;
  font-size: 1.02rem;
}

.seo-article h2 {
  margin-top: 0.5rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.city-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(160deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.2s, transform 0.2s;
}

.city-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.city-card strong {
  font-size: 0.98rem;
}

.city-card span {
  font-size: 0.78rem;
  color: var(--muted);
}

.seo-pricing {
  margin-top: 1.5rem;
}

.seo-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-disclosure {
  max-width: 48rem;
  margin: -1rem 0 2rem;
  padding: 0.9rem 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border-left: 3px solid var(--line);
  font-size: 0.9rem;
  line-height: 1.55;
}

.seo-checks {
  max-width: 40rem;
}

.city-link-list {
  columns: 2;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.city-link-list li {
  margin-bottom: 0.45rem;
}

.pack-compare {
  margin: 1.25rem 0 2rem;
}

@media (max-width: 640px) {
  .city-link-list {
    columns: 1;
  }
}

/* ——— Blog ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.blog-card {
  padding: 1.35rem 1.4rem;
  background: linear-gradient(160deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.15;
}

.blog-card h2 a {
  color: #fff;
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--accent);
}

.blog-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  font-size: 0.95rem;
  flex: 1;
}

.blog-meta {
  font-size: 0.78rem;
  color: #8a8a8a;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}

.blog-meta span {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-read {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.blog-read:hover {
  color: var(--accent);
}

.blog-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 1.75rem 0 0.75rem;
  color: #fff;
}

.blog-body ul,
.blog-body ol {
  color: var(--muted);
  padding-left: 1.25rem;
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.4rem;
  line-height: 1.6;
}

.blog-cta {
  margin: 2.5rem 0 1rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(229, 9, 20, 0.35);
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.12), rgba(0, 0, 0, 0.4));
  border-radius: 6px;
}

.blog-cta h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  color: #fff;
}

.blog-cta p {
  color: var(--muted);
  margin: 0 0 1rem;
}

@media (max-width: 800px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Language-specific blocks */
html[data-lang="en"] [data-lang-only="fr"] {
  display: none !important;
}
html[data-lang="fr"] [data-lang-only="en"],
html:not([data-lang="en"]) [data-lang-only="en"] {
  display: none !important;
}
html[data-lang="en"] [data-lang-only="en"] {
  display: block !important;
}

/* Homepage keyword targets */
.keyword-targets {
  padding: 3.5rem 0 2rem;
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
  max-width: 920px;
  margin: 0 auto;
}

.keyword-cloud a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.keyword-cloud a:hover {
  border-color: var(--accent);
  background: rgba(229, 9, 20, 0.12);
  color: #fff;
}
