/* ====================================================
   abonnement-iptv.to — Landing Page
   Light + sporty design system
   Type: Archivo Black (display) + Archivo (body)
   Color: OKLCH, brand-tinted neutrals
   ==================================================== */

:root {
  /* ---- Brand ---- */
  --brand:        oklch(63% 0.235 25);
  --brand-deep:   oklch(54% 0.230 25);
  --brand-soft:   oklch(63% 0.235 25 / 0.10);
  --brand-2:      oklch(70% 0.215 38);
  --brand-grad:   linear-gradient(112deg, oklch(63% 0.235 25) 0%, oklch(70% 0.215 38) 100%);

  /* ---- Accents ---- */
  --accent:  oklch(78% 0.150 220);   /* electric cyan */
  --gold:    oklch(82% 0.165 80);    /* trophy gold   */
  --success: oklch(72% 0.180 155);

  /* ---- Surfaces (warm-tinted toward brand hue 25) ---- */
  --bg:           oklch(99%  0.005 25);
  --surface:      oklch(97%  0.008 25);
  --surface-2:    oklch(95%  0.010 25);
  --surface-3:    oklch(93%  0.012 25);
  --border:       oklch(91%  0.012 25);
  --border-strong:oklch(85%  0.018 25);

  /* ---- Text (warm near-blacks) ---- */
  --text:         oklch(18% 0.020 25);
  --text-2:       oklch(36% 0.018 25);
  --text-3:       oklch(54% 0.015 25);
  --text-on-brand:oklch(99% 0.005 25);

  /* ---- Type ---- */
  --font-display: 'Archivo Black', 'Archivo', system-ui, sans-serif;
  --font-body:    'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

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

  /* ---- Layout ---- */
  --container: 1280px;
  --r-sm: 6px;
  --r:    14px;
  --r-lg: 24px;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --d-fast: 180ms;
  --d:      320ms;
  --d-slow: 560ms;
}

/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--brand); font-family: var(--font-display); }

/* Selection */
::selection { background: var(--brand); color: var(--text-on-brand); }

/* Focus — uses --accent cyan, not brand red.
   Functionally distinct from "action" color, high contrast on warm light bg,
   and naturally rare since it only appears on keyboard focus. */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--text);
  color: var(--text-on-brand);
  padding: var(--s-3) var(--s-4);
  font-weight: 700;
  z-index: 200;
}
.skip-link:focus { left: var(--s-4); top: var(--s-4); }

/* ==================== LAYOUT ==================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
  position: relative;
}
.section__header {
  max-width: 760px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--s-5);
}
.section__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-2);
  max-width: 65ch;
  line-height: 1.6;
}
.section__header--light .section__title { color: var(--text-on-brand); }
.section__header--light .section__lead  { color: oklch(99% 0.005 25 / 0.82); }

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.96;
  color: var(--text);
}

/* Eyebrow chip */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  padding: 7px 14px 7px 12px;
  background: var(--brand-soft);
  border-radius: 100px;
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.4s var(--ease-out) infinite;
}
.eyebrow--light {
  color: var(--text-on-brand);
  background: oklch(99% 0.005 25 / 0.18);
}
.eyebrow--light::before { background: var(--text-on-brand); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.55; }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  white-space: nowrap;
  transition: transform var(--d-fast) var(--ease-out),
              background var(--d-fast) var(--ease-out),
              box-shadow var(--d-fast) var(--ease-out),
              color var(--d-fast) var(--ease-out);
}
.btn--lg    { padding: 18px 34px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--brand);
  color: var(--text-on-brand);
  box-shadow: 0 4px 0 var(--brand-deep);
}
.btn--primary:hover {
  background: oklch(58% 0.240 25);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--brand-deep);
}
.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--brand-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn--ghost:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }

.btn--outline {
  background: var(--bg);
  color: var(--text);
  border: 2px solid var(--text);
  box-shadow: 0 3px 0 var(--text);
}
.btn--outline:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--text);
}

.btn--white {
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 4px 0 oklch(85% 0.015 25);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 6px 0 oklch(85% 0.015 25); }

.btn--ghost-light {
  background: transparent;
  color: var(--text-on-brand);
  border: 2px solid oklch(99% 0.005 25 / 0.5);
}
.btn--ghost-light:hover {
  background: oklch(99% 0.005 25 / 0.12);
  border-color: var(--text-on-brand);
}

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(99% 0.005 25 / 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--d) var(--ease-out),
              box-shadow var(--d) var(--ease-out),
              background var(--d) var(--ease-out);
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 12px 32px -16px oklch(18% 0.020 25 / 0.12);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: var(--s-5);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
  flex-shrink: 0;
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  background: var(--brand);
  color: var(--text-on-brand);
  border-radius: 9px;
  transform: rotate(-6deg);
  box-shadow: 2px 2px 0 var(--text);
}
.logo__mark svg { width: 18px; height: 18px; }
.logo__text { white-space: nowrap; }
.logo__tld { color: var(--brand); }
.logo--footer { color: var(--text-on-brand); }
.logo--footer .logo__mark { background: var(--brand); color: var(--text-on-brand); box-shadow: 2px 2px 0 var(--bg); }
.logo--footer .logo__tld  { color: var(--brand-2); }

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav ul {
  display: flex;
  gap: var(--s-7);
}
.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-2);
  position: relative;
  padding: 8px 0;
  transition: color var(--d-fast);
}
.nav a:hover { color: var(--text); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 3px;
  background: var(--brand);
  transition: right var(--d) var(--ease-out);
}
.nav a:hover::after { right: 0; }

.header__cta { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  width: 24px; height: 3px;
  background: var(--text);
  transition: transform var(--d-fast), opacity var(--d-fast);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--s-5);
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.mobile-menu a:not(.btn) {
  display: block;
  font-weight: 600;
  font-size: 17px;
  padding: var(--s-3) 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 90px,
    oklch(63% 0.235 25 / 0.025) 90px,
    oklch(63% 0.235 25 / 0.025) 91px
  );
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, oklch(63% 0.235 25 / 0.10), transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 6.8vw, 92px);
  line-height: 0.90;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-5);
}
.hero__title-line,
.hero__title-highlight,
.hero__title-sub { display: block; }
.hero__title-line { color: var(--text); }
.hero__title-highlight {
  color: var(--brand);
  position: relative;
  display: inline-block;
  margin-top: 4px;
}
.hero__title-highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 0.18em;
  background: var(--gold);
  z-index: -1;
  transform: skewX(-6deg);
  opacity: 0.55;
}
.hero__title-sub {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.42em;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--text-2);
  text-transform: uppercase;
  margin-top: var(--s-3);
}
.hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-2);
  max-width: 56ch;
  margin-bottom: var(--s-6);
  line-height: 1.65;
}
.hero__proofs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-5);
  margin-bottom: var(--s-6);
}
.hero__proofs li {
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--text);
}
.hero__proofs li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}
.hero__ctas {
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 14px;
  color: var(--text-3);
}
.hero__trust strong { color: var(--text); }
.hero__trust-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--brand);
  flex-shrink: 0;
}
.hero__trust-icon svg { width: 100%; height: 100%; }

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}
.hero__image-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid var(--text);
  box-shadow: -18px 18px 0 var(--brand);
  transform: rotate(-1.5deg);
  background: var(--surface-2);
}
.hero__image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  background: var(--bg);
  padding: 14px 20px;
  border-radius: var(--r);
  border: 3px solid var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 4px 4px 0 var(--text);
  z-index: 3;
}
.hero__badge--top {
  top: 6%;
  right: -12px;
  transform: rotate(4deg);
}
.hero__badge--bottom {
  bottom: 14%;
  left: -16px;
  transform: rotate(-4deg);
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--brand);
}
.hero__badge-num small { font-size: 0.6em; }
.hero__badge-label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-2);
  margin-top: 4px;
}
.hero__sticker {
  position: absolute;
  top: 42%;
  right: -28px;
  background: var(--text);
  color: var(--text-on-brand);
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.05;
  text-align: left;
  padding: 12px 16px;
  border-radius: 50%;
  width: 88px; height: 88px;
  display: grid;
  place-items: center;
  transform: rotate(8deg);
  border: 3px solid var(--bg);
  box-shadow: 0 6px 24px -6px oklch(18% 0.020 25 / 0.4);
  z-index: 3;
}
.hero__sticker > span:not(.hero__sticker-dot) {
  display: block;
}
.hero__sticker-dot {
  position: absolute;
  top: 12px; right: 12px;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

/* ==================== TRUST BAR ==================== */
.trust {
  background: var(--text);
  color: var(--text-on-brand);
  padding: clamp(48px, 6vw, 76px) 0;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 70px,
    oklch(99% 0.005 25 / 0.04) 70px,
    oklch(99% 0.005 25 / 0.04) 71px
  );
  pointer-events: none;
}
.trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  position: relative;
}
.trust__stats li {
  position: relative;
  padding: var(--s-2) 0 var(--s-2) var(--s-5);
  display: flex;
  flex-direction: column;
}
.trust__stats li:first-child { padding-left: 0; }
.trust__stats li:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: oklch(99% 0.005 25 / 0.18);
}
.trust__num-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}
.trust__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  color: var(--text-on-brand);
  font-variant-numeric: tabular-nums;
}
.trust__plus {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1;
  color: var(--brand);
}
.trust__label {
  margin-top: var(--s-3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: oklch(99% 0.005 25 / 0.65);
}

/* ==================== BENEFITS ==================== */
.benefits { background: var(--bg); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
}
.benefit {
  position: relative;
  padding: var(--s-7) var(--s-5) var(--s-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: transform var(--d) var(--ease-out),
              border-color var(--d) var(--ease-out),
              background var(--d) var(--ease-out);
  overflow: hidden;
}
.benefit::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--brand-soft);
  border-radius: 0 0 0 100%;
  opacity: 0;
  transition: opacity var(--d) var(--ease-out);
}
.benefit:hover {
  transform: translateY(-6px);
  border-color: var(--text);
  background: var(--bg);
}
.benefit:hover::after { opacity: 1; }
.benefit__num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--brand);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 1;
}
.benefit__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: var(--s-3);
  color: var(--text);
  position: relative;
  z-index: 1;
}
.benefit p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ==================== SPORTS ==================== */
.sports {
  background: var(--text);
  position: relative;
  overflow: hidden;
}
.sports__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sports__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.4);
}
.sports::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(18% 0.020 25 / 0.92), oklch(18% 0.020 25 / 0.96)),
    repeating-linear-gradient(115deg, transparent 0, transparent 80px, oklch(99% 0.005 25 / 0.025) 80px, oklch(99% 0.005 25 / 0.025) 81px);
  z-index: 1;
}
.sports .container { position: relative; z-index: 2; }

.sports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
.sport-card {
  background: oklch(99% 0.005 25 / 0.06);
  border: 1px solid oklch(99% 0.005 25 / 0.14);
  border-radius: var(--r);
  padding: var(--s-5) var(--s-5) var(--s-5);
  transition: transform var(--d) var(--ease-out),
              background var(--d) var(--ease-out),
              border-color var(--d) var(--ease-out);
}
.sport-card:hover {
  background: oklch(99% 0.005 25 / 0.10);
  border-color: var(--brand);
  transform: translateY(-4px);
}
.sport-card__icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: var(--s-4);
  color: var(--brand-2);
  transition: color var(--d) var(--ease-out),
              transform var(--d) var(--ease-out);
}
.sport-card__icon svg { width: 100%; height: 100%; display: block; }
.sport-card:hover .sport-card__icon {
  color: var(--brand);
  transform: rotate(-6deg) scale(1.06);
}
.sport-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-on-brand);
  margin-bottom: var(--s-2);
  line-height: 1;
}
.sport-card p {
  font-size: 13px;
  color: oklch(99% 0.005 25 / 0.7);
  line-height: 1.55;
}

.sports__channels {
  background: oklch(99% 0.005 25 / 0.04);
  border: 1px solid oklch(99% 0.005 25 / 0.12);
  border-radius: var(--r);
  padding: var(--s-5) var(--s-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
}
.sports__channels-label {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  flex-shrink: 0;
}
.sports__channels ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.sports__channels li {
  font-size: 13px;
  font-weight: 600;
  color: oklch(99% 0.005 25 / 0.85);
  padding: 6px 12px;
  background: oklch(99% 0.005 25 / 0.06);
  border: 1px solid oklch(99% 0.005 25 / 0.12);
  border-radius: 100px;
}

/* Sports section CTA card — loudest hierarchy.
   Brand-red background, hard offset shadow, two buttons. */
.sports__cta {
  margin-top: var(--s-7);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 48px);
  background: var(--brand);
  border: 3px solid var(--text-on-brand);
  border-radius: var(--r);
  box-shadow: 8px 8px 0 var(--text-on-brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.sports__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 60px,
    oklch(99% 0.005 25 / 0.10) 60px,
    oklch(99% 0.005 25 / 0.10) 61px
  );
  pointer-events: none;
}
.sports__cta-text {
  position: relative;
  z-index: 1;
  flex: 1 1 320px;
  min-width: 0;
}
.sports__cta-text .eyebrow { margin-bottom: var(--s-3); }
.sports__cta h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.0;
  color: var(--text-on-brand);
  letter-spacing: -0.015em;
}
.sports__cta-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ==================== CATEGORIES ==================== */
.categories { background: var(--surface); }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
}

/* Categories inline CTA — medium hierarchy.
   Single outline button, centered, follows the 6 category cards. */
.categories__cta {
  margin-top: clamp(40px, 5vw, 64px);
  text-align: center;
}
.categories__cta .btn span { transition: transform var(--d-fast) var(--ease-out); }
.categories__cta .btn:hover span { transform: translateX(4px); }
.category {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s-6) var(--s-5);
  transition: transform var(--d) var(--ease-out),
              border-color var(--d) var(--ease-out),
              box-shadow var(--d) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.category:hover {
  transform: translateY(-4px);
  border-color: var(--text);
  box-shadow: 0 12px 32px -16px oklch(18% 0.020 25 / 0.18);
}
.category__count {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--brand);
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
}
.category__count small {
  font-size: 0.55em;
  color: var(--brand-2);
}
.category h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: var(--s-2);
  color: var(--text);
}
.category p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

/* ==================== HOW IT WORKS ==================== */
.how { background: var(--bg); }
.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
  counter-reset: step;
}

.step {
  position: relative;
  padding: var(--s-7) var(--s-5) var(--s-6);
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: transform var(--d) var(--ease-out), border-color var(--d) var(--ease-out);
}
.step:hover { transform: translateY(-4px); border-color: var(--text); }
.step__num {
  position: absolute;
  top: -22px;
  left: var(--s-5);
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  background: var(--brand);
  color: var(--text-on-brand);
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: 14px;
  border: 3px solid var(--bg);
  box-shadow: 3px 3px 0 var(--text);
  transform: rotate(-4deg);
}
.step h3 {
  font-size: 22px;
  margin: var(--s-5) 0 var(--s-2);
  color: var(--text);
}
.step p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ==================== PRICING ==================== */
.pricing { background: var(--surface); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-5);
  align-items: stretch;
  margin-bottom: var(--s-6);
}
.pricing-card {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  transition: transform var(--d) var(--ease-out),
              border-color var(--d) var(--ease-out),
              box-shadow var(--d) var(--ease-out);
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--text);
  box-shadow: 0 18px 40px -20px oklch(18% 0.020 25 / 0.22);
}
.pricing-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.pricing-card__header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
}
.pricing-card__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 100px;
}
.pricing-card__tag--gold {
  background: oklch(82% 0.165 80 / 0.18);
  color: oklch(50% 0.18 80);
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--s-2);
}
.pricing-card__currency {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 76px);
  line-height: 0.9;
  color: var(--text);
  letter-spacing: -0.03em;
}
.pricing-card__amount small {
  /* Cents — about half size, baseline-aligned with euros for that
     supermarket-display "29,⁹⁹" effect that reads instantly as a price. */
  font-size: 0.52em;
  letter-spacing: -0.02em;
}
.pricing-card__strike {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  margin-top: 4px;
  margin-bottom: var(--s-5);
}
.pricing-card__strike s {
  color: var(--brand);
  font-weight: 800;
  font-size: 15px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-left: 4px;
}
.pricing-card__period {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  margin-left: 4px;
}
.pricing-card__equiv {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: var(--s-5);
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-4) 0;
  margin-bottom: var(--s-5);
  border-top: 1px solid var(--border);
  flex-grow: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 14px;
  color: var(--text-2);
  padding: 2px 0;
}
.pricing-card__features li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 18px; height: 18px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  font-weight: 900;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card__features li strong {
  color: var(--brand);
  font-weight: 800;
}

/* Featured (popular) — corner ribbon, NOT a left border stripe */
.pricing-card--featured {
  border: 3px solid var(--brand);
  background: linear-gradient(180deg, var(--brand-soft), var(--bg) 40%);
  transform: scale(1.04);
  z-index: 2;
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card__ribbon {
  position: absolute;
  top: 22px;
  right: -52px;
  background: var(--brand);
  color: var(--text-on-brand);
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 56px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px -4px oklch(18% 0.020 25 / 0.3);
  z-index: 2;
}

.pricing__note {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
}

/* ==================== DEVICES ==================== */
.devices { background: var(--bg); }

/* Roster — typographic team-sheet layout for device compatibility.
   Asymmetric 1.4fr / 1fr / 1fr because the dominant category (TV) carries
   more weight; numbered prefixes give the row that scoreboard/lineup feel. */
.devices__roster {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: var(--s-7);
}
.roster-col { position: relative; }
.roster-col__title {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-2);
  border-bottom: 2px solid var(--text);
}
.roster-col__list {
  display: flex;
  flex-direction: column;
}
.roster-col__list li {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--d) var(--ease-out);
}
.roster-col__list li:last-child { border-bottom: 0; }
.roster-col__list li:hover {
  padding-left: var(--s-2);
}
.roster-col__list li:hover .roster-col__name { color: var(--brand); }

.roster-col__num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  flex-shrink: 0;
  width: 22px;
  font-variant-numeric: tabular-nums;
}
.roster-col__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color var(--d) var(--ease-out);
}

/* Apps strip — visually subordinate to the roster.
   Light surface, asymmetric inline layout, pill row of recommended apps. */
.devices__apps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
  padding: clamp(20px, 2.5vw, 32px) clamp(24px, 3vw, 40px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.devices__apps-text {
  flex: 1 1 280px;
  min-width: 0;
}
.devices__apps-text .eyebrow {
  margin-bottom: var(--s-2);
}
.devices__apps-text p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.55;
  margin: 0;
  max-width: 50ch;
}
.devices__apps-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.devices__apps-list li {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text);
}

@media (max-width: 920px) {
  .devices__roster {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
  }
  .roster-col--lg { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .devices__roster { grid-template-columns: 1fr; }
}

/* ==================== REVIEWS ==================== */
.reviews { background: var(--surface); }
.reviews__rating {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-4);
  font-size: 15px;
  color: var(--text-2);
}
.reviews__rating strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
}
.reviews__stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-5);
}
.review {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: transform var(--d) var(--ease-out),
              border-color var(--d) var(--ease-out),
              box-shadow var(--d) var(--ease-out);
}
.review:hover {
  transform: translateY(-4px);
  border-color: var(--text);
  box-shadow: 0 12px 32px -16px oklch(18% 0.020 25 / 0.18);
}
.review__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.review p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  flex-grow: 1;
}
.review footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
}
.review footer strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
}
.review footer span {
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* ==================== FAQ ==================== */
.faq { background: var(--bg); }
.faq__container { max-width: 920px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

/* FAQ help card — quietest hierarchy.
   Light surface, asymmetric layout, post-info reassurance. */
.faq__help {
  margin-top: var(--s-6);
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.faq__help-text {
  flex: 1 1 280px;
  min-width: 0;
}
.faq__help-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}
.faq__help-text p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.faq__help-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--d) var(--ease-out),
              background var(--d) var(--ease-out);
}
.faq__item[open] {
  border-color: var(--text);
  background: var(--bg);
  box-shadow: 0 8px 24px -12px oklch(18% 0.020 25 / 0.14);
}
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--text);
  line-height: 1.2;
  transition: color var(--d-fast);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--brand); }

.faq__icon {
  position: relative;
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--text);
  color: var(--text-on-brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform var(--d) var(--ease-out), background var(--d) var(--ease-out);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-on-brand);
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after  { width: 2px; height: 12px; transition: transform var(--d) var(--ease-out); }
.faq__item[open] .faq__icon { background: var(--brand); transform: rotate(180deg); }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }

.faq__body {
  padding: 0 var(--s-5) var(--s-5);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 75ch;
}

/* ==================== CTA BAND ==================== */
.cta-band {
  background: var(--brand);
  color: var(--text-on-brand);
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 128px) 0;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 80px,
    oklch(99% 0.005 25 / 0.06) 80px,
    oklch(99% 0.005 25 / 0.06) 81px
  );
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, oklch(82% 0.165 80 / 0.22), transparent 65%);
}
.cta-band__inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  z-index: 1;
}
.cta-band__inner .eyebrow { margin-bottom: var(--s-5); }
.cta-band__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 0.95;
  margin-bottom: var(--s-4);
  color: var(--text-on-brand);
}
.cta-band__inner p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: oklch(99% 0.005 25 / 0.85);
  margin-bottom: var(--s-6);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band__buttons {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--text);
  color: oklch(99% 0.005 25 / 0.7);
  padding-top: clamp(64px, 8vw, 96px);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
}
.footer__brand p {
  font-size: 14px;
  margin-top: var(--s-4);
  max-width: 32ch;
  line-height: 1.6;
}
.footer__col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-brand);
  margin-bottom: var(--s-4);
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer__col li, .footer__col a {
  font-size: 14px;
  color: oklch(99% 0.005 25 / 0.65);
  transition: color var(--d-fast);
}
.footer__col a:hover { color: var(--text-on-brand); }
.footer__col a {
  border-bottom: 1px solid transparent;
  transition: border-color var(--d-fast), color var(--d-fast);
}
.footer__col a:hover { border-color: var(--brand); }

.footer__bottom {
  border-top: 1px solid oklch(99% 0.005 25 / 0.1);
  padding: var(--s-5) 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  font-size: 13px;
  color: oklch(99% 0.005 25 / 0.55);
}

/* ==================== LEGAL PAGES ====================
   Used by mentions-legales.html, cgv.html,
   politique-confidentialite.html, politique-remboursement.html.
   Single-column editorial layout with prose typography. */
.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 40px) clamp(72px, 10vw, 128px);
}
.legal__hero {
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 2px solid var(--text);
}
.legal__hero .eyebrow {
  margin-bottom: var(--s-4);
}
.legal__hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--s-3);
}
.legal__date {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.legal__lead {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: var(--s-4);
  max-width: 65ch;
}

.legal__content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 70ch;
}
.legal__content > * + * { margin-top: var(--s-4); }
.legal__content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-top: var(--s-8);
  margin-bottom: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}
.legal__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal__content h3 {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.2;
  color: var(--text);
  margin-top: var(--s-5);
  margin-bottom: var(--s-3);
}
.legal__content p {
  margin-bottom: var(--s-4);
}
.legal__content ul,
.legal__content ol {
  margin: var(--s-3) 0 var(--s-4);
  padding-left: var(--s-5);
}
.legal__content ul { list-style: disc; }
.legal__content ol { list-style: decimal; }
.legal__content li {
  margin-bottom: var(--s-2);
  padding-left: var(--s-2);
}
.legal__content li::marker {
  color: var(--brand);
}
.legal__content strong {
  color: var(--text);
  font-weight: 700;
}
/* Inline prose links — scoped to NON-button links so .btn--primary etc.
   inside the article body keep their own color and don't get an underline. */
.legal__content a:not(.btn) {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color var(--d-fast) var(--ease-out);
}
.legal__content a:not(.btn):hover {
  color: var(--brand-deep);
}
.legal__content .placeholder {
  display: inline-block;
  background: oklch(82% 0.165 80 / 0.22);
  color: oklch(36% 0.18 80);
  padding: 1px 8px;
  border-radius: 3px;
  font-size: 0.92em;
  font-weight: 600;
  font-family: var(--font-body);
}
.legal__content .legal-callout {
  background: var(--surface);
  padding: var(--s-5) var(--s-6);
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin: var(--s-5) 0;
  font-size: 15px;
}
.legal__content .legal-callout strong {
  display: block;
  margin-bottom: var(--s-2);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal__back {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}
.legal__back a {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  transition: color var(--d-fast), gap var(--d-fast);
}
.legal__back a:hover {
  color: var(--brand-deep);
  gap: var(--s-3);
}

/* ==================== BLOG INDEX ====================
   Used by blog.html. Card grid of articles with featured image,
   category tag, meta, title, excerpt, and read link. */
.blog {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 40px) clamp(72px, 10vw, 128px);
}
.blog__hero {
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 2px solid var(--text);
}
.blog__hero .eyebrow { margin-bottom: var(--s-4); }
.blog__hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--s-4);
}
.blog__hero p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  max-width: 60ch;
  line-height: 1.65;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--d) var(--ease-out),
              border-color var(--d) var(--ease-out),
              box-shadow var(--d) var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--text);
  box-shadow: 0 18px 40px -20px oklch(18% 0.020 25 / 0.22);
}
.blog-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.blog-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
}
.blog-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease-out);
}
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__category {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  background: var(--brand);
  color: var(--text-on-brand);
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 1;
}
.blog-card__body {
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  gap: var(--s-3);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: var(--s-3);
}
.blog-card__meta span + span::before {
  content: '·';
  margin-right: var(--s-2);
  color: var(--border-strong);
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 var(--s-3);
}
.blog-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 var(--s-5);
  flex: 1;
}
.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  align-self: flex-start;
  transition: gap var(--d-fast) var(--ease-out);
}
.blog-card:hover .blog-card__read { gap: var(--s-3); }

/* ==================== ARTICLE PAGE ====================
   Used by individual blog article pages. Reuses .legal__content
   for prose. Adds breadcrumb, meta, featured image, pull quotes,
   inline CTA card, and author bio. */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 40px) clamp(72px, 10vw, 128px);
}
.article__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: var(--s-7);
}
.article__breadcrumb a {
  color: var(--brand);
  border-bottom: 1px solid transparent;
  transition: border-color var(--d-fast);
}
.article__breadcrumb a:hover { border-color: var(--brand); }
.article__breadcrumb span { margin: 0 var(--s-2); color: var(--text-3); }

.article__category {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  padding: 6px 14px;
  background: var(--brand-soft);
  border-radius: 100px;
  margin-bottom: var(--s-4);
}
.article__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 var(--s-5);
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  align-items: center;
  font-size: 13px;
  color: var(--text-3);
  padding-bottom: var(--s-6);
  margin-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--border);
}
.article__meta strong {
  color: var(--text);
  font-weight: 700;
}

.article__featured {
  margin: 0 calc(-1 * clamp(20px, 4vw, 40px)) clamp(32px, 4vw, 56px);
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
}
.article__featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.article__lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: clamp(32px, 4vw, 48px);
  font-weight: 500;
  max-width: 65ch;
}

/* Pull quote — full-width emphasized statement */
.article__pullquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: clamp(40px, 5vw, 64px) 0;
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  text-align: left;
}

/* Inline CTA card — dark band promoting the offer mid-article */
.article__cta-card {
  margin: clamp(40px, 5vw, 64px) 0;
  padding: clamp(28px, 4vw, 40px);
  background: var(--text);
  color: var(--text-on-brand);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
.article__cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 60px,
    oklch(99% 0.005 25 / 0.04) 60px,
    oklch(99% 0.005 25 / 0.04) 61px
  );
}
.article__cta-card > * { position: relative; z-index: 1; }
.article__cta-card .eyebrow { margin-bottom: var(--s-3); }
.article__cta-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.1;
  color: var(--text-on-brand);
  margin: 0 0 var(--s-3);
}
.article__cta-card p {
  color: oklch(99% 0.005 25 / 0.85);
  margin: 0 0 var(--s-4);
  font-size: 15px;
  line-height: 1.55;
}

/* Author bio at bottom of article */
.article__author {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: var(--s-5);
}
.article__author-avatar {
  width: 64px;
  height: 64px;
  background: var(--brand);
  color: var(--text-on-brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  flex-shrink: 0;
  border: 3px solid var(--bg);
  box-shadow: 3px 3px 0 var(--text);
}
.article__author-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text);
  margin-bottom: 4px;
}
.article__author-info p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 600px) {
  .article__featured {
    margin-left: calc(-1 * clamp(20px, 4vw, 40px));
    margin-right: calc(-1 * clamp(20px, 4vw, 40px));
  }
  .article__pullquote {
    font-size: clamp(20px, 5vw, 26px);
  }
}

/* ==================== INSTALLATION GUIDE ====================
   Used by guide-installation.html. Extends .legal layout with
   step-by-step section cards, sport-scoreboard numbering, and
   a credentials reference band. */
.guide { max-width: 980px; }

/* Quick-start checklist — light surface, 3-column grid */
.guide__quickstart {
  margin-bottom: clamp(40px, 5vw, 64px);
  padding: clamp(28px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.guide__quickstart h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--text);
  margin: 0 0 var(--s-4);
  border: 0;
  padding: 0;
}
.guide__quickstart-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide__quickstart-list li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
}
.guide__quickstart-list strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.guide__quickstart-list .qs-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--brand);
  color: var(--text-on-brand);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  transform: rotate(-4deg);
  box-shadow: 2px 2px 0 var(--text);
}

/* Credentials reference — dark band showing what fields are in the email */
.guide__credentials {
  margin: clamp(40px, 5vw, 64px) 0;
  padding: clamp(28px, 4vw, 40px);
  background: var(--text);
  color: var(--text-on-brand);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
.guide__credentials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 60px,
    oklch(99% 0.005 25 / 0.04) 60px,
    oklch(99% 0.005 25 / 0.04) 61px
  );
}
.guide__credentials > * { position: relative; z-index: 1; }
.guide__credentials .eyebrow {
  margin-bottom: var(--s-3);
}
.guide__credentials h2 {
  font-family: var(--font-display);
  color: var(--text-on-brand);
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 0 0 var(--s-3);
  border: 0;
  padding: 0;
}
.guide__credentials > p {
  color: oklch(99% 0.005 25 / 0.85);
  margin-bottom: var(--s-4);
  font-size: 15px;
}
.guide__credentials dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: var(--s-3) var(--s-5);
  margin: 0;
  padding: var(--s-4) 0 0;
  border-top: 1px solid oklch(99% 0.005 25 / 0.15);
}
.guide__credentials dt {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  align-self: baseline;
}
.guide__credentials dd {
  font-size: 14px;
  color: oklch(99% 0.005 25 / 0.9);
  margin: 0;
  line-height: 1.55;
}

/* Table of contents — horizontal pill row with jump links */
.guide__toc {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
  padding: var(--s-5) 0;
  margin: 0 0 clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guide__toc-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-right: var(--s-3);
}
.guide__toc a {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text);
  transition: background var(--d-fast), border-color var(--d-fast), color var(--d-fast);
}
.guide__toc a:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--text-on-brand);
}

/* Per-device guide section */
.guide__section {
  margin: clamp(40px, 5vw, 64px) 0;
  padding: clamp(32px, 4vw, 48px);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  scroll-margin-top: 100px;
}
.guide__section-header {
  display: flex;
  align-items: flex-start;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--border);
}
.guide__num {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--brand);
  color: var(--text-on-brand);
  font-family: var(--font-display);
  font-size: 22px;
  border-radius: 14px;
  border: 3px solid var(--bg);
  box-shadow: 3px 3px 0 var(--text);
  transform: rotate(-4deg);
}
.guide__section-meta {
  flex: 1;
  min-width: 0;
}
.guide__section-meta .eyebrow {
  margin-bottom: var(--s-2);
}
.guide__section-meta h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.05;
  color: var(--text);
  margin: 0 0 var(--s-2);
  border: 0;
  padding: 0;
}
.guide__app {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
}
.guide__app strong {
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 900;
}

/* Step list — counter ::before circles, hard offset */
.guide__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.guide__steps > li {
  counter-increment: step;
  position: relative;
  padding: var(--s-4) 0 var(--s-4) 52px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
}
.guide__steps > li:last-child { border-bottom: 0; padding-bottom: 0; }
.guide__steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: var(--s-4);
  width: 34px;
  height: 34px;
  background: var(--bg);
  border: 1.5px solid var(--text);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.guide__steps strong { color: var(--text); font-weight: 700; }
.guide__steps code {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", monospace;
  font-size: 13px;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
}

/* Astuce / tip callout — gold soft tint, no left stripe */
.guide__tip {
  margin-top: var(--s-5);
  padding: var(--s-4) var(--s-5);
  background: oklch(82% 0.165 80 / 0.10);
  border: 1px solid oklch(82% 0.165 80 / 0.32);
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
}
.guide__tip strong {
  display: block;
  margin-bottom: 4px;
  color: oklch(48% 0.18 80);
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Sub-headings inside steps (Option A / Option B etc.) */
.guide__section h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text);
  margin: var(--s-5) 0 var(--s-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.guide__section h3:first-child { margin-top: 0; }

/* Help CTA at bottom of guide */
.guide__help {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 48px);
  background: var(--brand);
  color: var(--text-on-brand);
  border-radius: var(--r);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guide__help::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 60px,
    oklch(99% 0.005 25 / 0.08) 60px,
    oklch(99% 0.005 25 / 0.08) 61px
  );
}
.guide__help > * { position: relative; z-index: 1; }
.guide__help h2 {
  font-family: var(--font-display);
  color: var(--text-on-brand);
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 var(--s-3);
  border: 0;
  padding: 0;
}
.guide__help p {
  color: oklch(99% 0.005 25 / 0.9);
  margin: 0 auto var(--s-5);
  max-width: 50ch;
}

/* ==================== REVEAL ANIMATION ==================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--d-slow) var(--ease-out),
              transform var(--d-slow) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .mobile-menu.is-open { display: block; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--s-7);
  }
  .hero__visual {
    margin: 0 auto;
    max-width: 420px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .trust__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6) var(--s-4);
  }
  .trust__stats li:nth-child(3) { padding-left: 0; }
  .trust__stats li:nth-child(3)::before { display: none; }

  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }

  .footer__inner { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer__brand { grid-column: auto; }

  .footer__bottom-inner { justify-content: center; text-align: center; }

  .hero__proofs { grid-template-columns: 1fr; }
  .hero__sticker { display: none; }

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

  /* Sports CTA — title block + actions stack vertically */
  .sports__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-5);
  }
  .sports__cta-actions { width: 100%; }

  /* Guide page — big numbered badge moves above the heading */
  .guide__section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-3);
  }
  .guide__num {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  /* FAQ help card — stack text + actions, full-width buttons */
  .faq__help {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq__help-actions { width: 100%; }
  .faq__help-actions .btn { width: 100%; }

  /* Guide credentials reference — stack the dl rows vertically.
     French labels are too long to share a row with the description on phones. */
  .guide__credentials dl {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .guide__credentials dt {
    margin-top: var(--s-4);
    padding-top: var(--s-3);
    border-top: 1px solid oklch(99% 0.005 25 / 0.12);
  }
  .guide__credentials dt:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .guide__credentials dd { margin-top: var(--s-1); }
}

@media (max-width: 480px) {
  .hero__badge--top { right: 0; }
  .hero__badge--bottom { left: 0; }
  .hero__image-frame { box-shadow: -10px 10px 0 var(--brand); }

  .pricing-card { padding: var(--s-5) var(--s-4); }

  /* Tighten the giant pricing number so "29,99" with cents fits comfortably */
  .pricing-card__amount {
    font-size: clamp(48px, 14vw, 60px);
  }

  .cta-band__buttons .btn { width: 100%; }

  /* Sports CTA buttons stack vertically and go full-width on smallest screens */
  .sports__cta-actions {
    flex-direction: column;
  }
  .sports__cta-actions .btn { width: 100%; }
  .sports__cta { box-shadow: 6px 6px 0 var(--text-on-brand); }

  /* Guide page — tighter padding inside cards on small phones */
  .guide__section { padding: var(--s-5) var(--s-4); }
  .guide__quickstart { padding: var(--s-5) var(--s-4); }
  .guide__credentials { padding: var(--s-5) var(--s-4); }
  .guide__help { padding: var(--s-7) var(--s-4); }

  /* Guide steps — pull the number circle in tighter */
  .guide__steps > li { padding-left: 44px; }
  .guide__steps > li::before {
    width: 30px;
    height: 30px;
    font-size: 12px;
    top: var(--s-4);
  }

  /* Guide TOC label hides on smallest to give pills more room */
  .guide__toc-label { display: none; }
}
