/* ===========================================================================
   French IPTV — website styles. Links the design-system tokens (styles.css)
   and builds the static-site components on top. Plain CSS, no JS required.
   =========================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text-body); font-family: var(--font-sans); font-size: var(--fs-body); line-height: var(--lh-body); -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
img { height: auto; }
.media img, .post-hero img, .split .media img { width: 100%; height: auto; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-strong); font-weight: var(--fw-display); line-height: var(--lh-heading); letter-spacing: var(--ls-display); margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
::selection { background: var(--blue-200); color: var(--ink-900); }
:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--r-sm); }

/* Layout ---------------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--space-section) 0; }
.section--tight { padding: var(--space-8) 0; }
.band { background: var(--paper-3); }
.band-soft { background: var(--paper-2); }
.center { text-align: center; }

/* Eyebrow --------------------------------------------------------------- */
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-sans); font-size: var(--text-eyebrow); font-weight: var(--fw-semibold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--brand); }
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.eyebrow--accent { color: var(--accent); }
.eyebrow--plain::before { display: none; }

/* Section heading ------------------------------------------------------- */
.sec-head { max-width: 660px; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { font-size: var(--text-h2); margin: .8rem 0 0; }
.sec-head .lead { margin: 1rem 0 0; font-size: var(--text-lead); line-height: var(--lh-relaxed); color: var(--text-muted); }

/* Buttons --------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; height: 46px; padding: 0 1.25rem; font-family: var(--font-sans); font-size: var(--fs-body); font-weight: var(--fw-semibold); line-height: 1; border-radius: var(--r-md); border: 1px solid transparent; cursor: pointer; white-space: nowrap; transition: transform var(--dur-fast) var(--ease-out), background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(.5px) scale(.99); }
.btn svg { width: 16px; height: 16px; }
.btn--lg { height: 54px; padding: 0 1.6rem; font-size: var(--text-body-lg); }
.btn--sm { height: 38px; padding: 0 .9rem; font-size: var(--text-sm); }
.btn--block { width: 100%; }
.btn--primary { background: var(--btn-primary-bg); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--btn-primary-bg-hov); box-shadow: var(--shadow-md); color: #fff; }
.btn--brand { background: var(--btn-brand-bg); color: #fff; box-shadow: var(--shadow-sm); }
.btn--brand:hover { background: var(--btn-brand-bg-hov); box-shadow: var(--shadow-md); color: #fff; }
.btn--accent { background: var(--btn-accent-bg); color: #fff; box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--btn-accent-bg-hov); box-shadow: var(--shadow-md); color: #fff; }
.btn--secondary { background: var(--surface); color: var(--text-strong); border-color: var(--border-strong); }
.btn--secondary:hover { border-color: var(--ink-900); color: var(--text-strong); }
.btn--ghost { background: transparent; color: var(--text-strong); }
.btn--ghost:hover { background: rgba(15,28,58,.05); color: var(--text-strong); }
.btn--on-ink { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--on-ink:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Badges ---------------------------------------------------------------- */
.badge { display: inline-flex; align-items: center; gap: .35rem; padding: .25rem .6rem; font-size: var(--text-xs); font-weight: var(--fw-semibold); letter-spacing: .02em; line-height: 1; border-radius: var(--r-pill); }
.badge--accent { background: var(--rouge-50); color: var(--rouge-700); box-shadow: inset 0 0 0 1px rgba(215,36,54,.2); }
.badge--brand { background: var(--blue-50); color: var(--blue-700); box-shadow: inset 0 0 0 1px rgba(11,84,176,.18); }
.badge--success { background: var(--success-bg); color: var(--success); box-shadow: inset 0 0 0 1px rgba(31,138,91,.22); }

/* Header ---------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: linear-gradient(rgba(10,19,38,.82), rgba(10,19,38,.90)), var(--ink-950); background-size: cover; background-position: center; backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.10); }
.site-header.has-bg { background-image: linear-gradient(rgba(10,19,38,.78), rgba(10,19,38,.88)), url("assets/header-bg.png"); }
.site-header .bar { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img.brand-logo { height: 30px; width: auto; display: block; }
.site-footer .brand img.brand-logo { height: 32px; }
.brand .wm { display: flex; align-items: center; }
.brand .wm-name { font-family: var(--font-sans); font-size: 19px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-900); white-space: nowrap; }
.brand { flex: none; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { padding: 8px 13px; border-radius: var(--r-sm); font-size: var(--text-sm); font-weight: 500; color: var(--text-on-ink-muted); }
.nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav a.is-active { color: #fff; font-weight: 600; background: rgba(255,255,255,.12); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.site-header .ghost-link { color: #fff !important; }
.site-header .btn--primary { background: var(--blue-600); }
.site-header .btn--primary:hover { background: var(--blue-700); }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.lang-switch .lang { display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--text-on-ink-muted); line-height: 1; }
.lang-switch a.lang:hover { color: #fff; background: rgba(255,255,255,.12); }
.lang-switch .lang.is-active { background: #fff; color: var(--ink-900); }
.lang-switch .flag { display: inline-flex; align-items: center; line-height: 1; }
.lang-switch .flag svg { display: block; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.nav-toggle, .nav-toggle-label { display: none; }

/* Hero ------------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; background: var(--ink-950); }
.hero__glow { position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(110% 80% at 78% 18%, rgba(23,105,212,.34) 0%, rgba(10,19,38,0) 55%),
  radial-gradient(80% 70% at 8% 95%, rgba(215,36,54,.16) 0%, rgba(10,19,38,0) 60%); }
.hero__grain { position: absolute; inset: 0; pointer-events: none; opacity: .5; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: var(--space-10) 0 var(--space-8); }
.hero h1 { font-size: var(--text-display); color: #fff; margin: 20px 0 0; max-width: 600px; }
.hero h1 .accent { color: var(--blue-400); font-style: italic; }
.hero .lead { margin: 22px 0 0; max-width: 500px; font-size: var(--text-lead); line-height: var(--lh-relaxed); color: var(--text-on-ink-muted); }
.hero .pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; border-radius: var(--r-pill); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #cdd6f4; font-size: 12.5px; font-weight: 600; }
.hero .pill .tag { padding: 3px 8px; border-radius: var(--r-pill); background: var(--rouge-600); color: #fff; font-size: 11px; font-weight: 700; }
.hero .word { display: inline-block; margin-right: .28em; animation: fi-word-in .6s var(--ease-out); }

/* Hero video frame */
.heroviz { position: relative; }
.heroviz__glow { position: absolute; inset: -28px; border-radius: 50%; background: radial-gradient(closest-side, rgba(23,105,212,.45), rgba(23,105,212,0) 70%); filter: blur(18px); }
.heroviz__frame { position: relative; border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,.10); }
.heroviz__frame video, .heroviz__frame img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.heroviz .live { position: absolute; left: 16px; top: 16px; display: inline-flex; align-items: center; gap: 7px; background: rgba(10,19,38,.55); backdrop-filter: blur(6px); padding: 7px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; color: #fff; }
.heroviz .live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rouge-500); animation: fi-pulse 2s var(--ease-out) infinite; }
.heroviz .chip { position: absolute; right: -18px; bottom: 34px; background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 12px 16px; display: flex; align-items: center; gap: 10px; animation: fi-float 4.5s var(--ease-in-out) infinite; }
.heroviz .chip svg { width: 20px; height: 20px; color: var(--blue-600); }
.heroviz .chip .t { font-size: 13px; font-weight: 700; color: var(--ink-900); }
.heroviz .chip .s { font-size: 11px; color: var(--text-muted); }

/* Marquee --------------------------------------------------------------- */
.marquee { position: relative; border-top: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02); padding: 16px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: fi-marquee 34s linear infinite; }
.marquee__group { display: flex; align-items: center; }
.marquee__item { display: inline-flex; align-items: center; gap: 22px; padding: 0 22px; font-family: var(--font-display); font-size: 20px; color: rgba(238,243,251,.62); }
.marquee__item .d { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-400); }

/* Features -------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 40px; margin-top: 48px; }
.feature { display: flex; gap: .9rem; align-items: flex-start; }
.feature__icon { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--r-md); }
.feature__icon svg { width: 22px; height: 22px; }
.feature__icon--brand { background: var(--blue-50); color: var(--blue-600); box-shadow: inset 0 0 0 1px rgba(11,84,176,.14); }
.feature__icon--accent { background: var(--rouge-50); color: var(--rouge-600); box-shadow: inset 0 0 0 1px rgba(215,36,54,.16); }
.feature__icon--ink { background: var(--neutral-100); color: var(--ink-900); box-shadow: inset 0 0 0 1px rgba(15,28,58,.10); }
.feature h3 { font-family: var(--font-sans); font-weight: var(--fw-semibold); font-size: var(--text-body-lg); color: var(--text-strong); line-height: 1.3; margin: 0 0 .2rem; }
.feature p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.55; }

/* Steps ----------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step { background: var(--surface); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.step .n { font-family: var(--font-display); font-size: 40px; color: var(--blue-200); line-height: 1; }
.step h3 { font-size: var(--text-h3); margin: 12px 0 8px; }
.step p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

/* Plan cards ------------------------------------------------------------ */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.plans--2 { grid-template-columns: 1fr 1fr; }
.plan { position: relative; display: flex; flex-direction: column; padding: 28px 26px; background: var(--surface); color: var(--text-body); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.plan--featured { background: var(--ink-900); color: var(--text-on-ink); border-color: var(--ink-700); box-shadow: var(--shadow-lg); }
.plan__head { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.plan__name { font-family: var(--font-display); font-size: var(--text-h3); color: var(--text-strong); margin: 0; }
.plan--featured .plan__name { color: #fff; }
.plan__term { font-size: var(--text-sm); color: var(--text-muted); }
.plan--featured .plan__term { color: var(--text-on-ink-muted); }
.plan__price { display: flex; align-items: flex-end; gap: .35rem; margin: 16px 0 2px; }
.plan__price .cur { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-strong); line-height: 1.4; }
.plan__price .amt { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 2.8rem; line-height: 1; color: var(--text-strong); letter-spacing: var(--ls-tight); }
.plan__price .per { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 4px; }
.plan--featured .plan__price .cur, .plan--featured .plan__price .amt { color: #fff; }
.plan--featured .plan__price .per { color: var(--text-on-ink-muted); }
.plan__note { font-size: var(--text-sm); color: var(--text-muted); margin: .15rem 0 0; }
.plan--featured .plan__note { color: var(--text-on-ink-muted); }
.plan__rule { height: 1px; background: var(--border); margin: 22px 0; }
.plan--featured .plan__rule { background: var(--border-ink); }
.plan__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.plan__features li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--text-sm); color: var(--text-body); }
.plan--featured .plan__features li { color: var(--text-on-ink); }
.plan__features li svg { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--blue-600); }
.plan--featured .plan__features li svg { color: #9db8f0; }
.plan .btn { margin-top: 26px; }
.ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: .3rem .75rem; background: var(--rouge-600); color: #fff; font-size: var(--text-xs); font-weight: 600; letter-spacing: .04em; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); white-space: nowrap; }

/* Comparison table ------------------------------------------------------ */
.cmp-wrap { margin-top: 40px; overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-sm); }
.cmp { width: 100%; border-collapse: collapse; }
.cmp thead tr { background: var(--ink-900); }
.cmp th { padding: 16px 14px; color: var(--text-on-ink); font-size: var(--text-sm); font-weight: 600; }
.cmp th:first-child { text-align: left; padding-left: 20px; }
.cmp th.is-feat { color: #fff; font-weight: 700; }
.cmp th .lab { display: block; font-size: 10px; color: var(--blue-400); font-weight: 600; letter-spacing: .04em; margin-top: 2px; }
.cmp td { padding: 14px; text-align: center; font-size: var(--text-sm); border-top: 1px solid var(--border); }
.cmp td:first-child { text-align: left; padding-left: 20px; font-weight: 500; color: var(--text-body); }
.cmp tbody tr:nth-child(even) { background: var(--surface-sunken); }
.cmp svg { width: 18px; height: 18px; color: var(--success); vertical-align: middle; }
.cmp .no { color: var(--text-faint); }

/* Callouts -------------------------------------------------------------- */
.callout { display: flex; gap: .85rem; padding: 16px 18px; border-radius: var(--r-md); border-left: 3px solid; }
.callout h4 { font-family: var(--font-sans); font-weight: var(--fw-semibold); font-size: var(--fs-body); color: var(--text-strong); margin: 0 0 .2rem; }
.callout p { font-size: var(--text-sm); line-height: var(--lh-relaxed); }
.callout svg { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.callout--info { background: var(--blue-50); border-color: var(--blue-600); color: var(--ink-800); }
.callout--info svg { color: var(--blue-600); }
.callout--legal { background: var(--paper-3); border-color: var(--ink-700); color: var(--ink-800); }
.callout--legal svg { color: var(--ink-700); }
.callout--note { background: var(--neutral-50); border-color: var(--neutral-400); color: var(--text-body); }
.callout--success { background: var(--success-bg); border-color: var(--success); color: var(--neutral-800); }
.callout--success svg { color: var(--success); }
.callout-stack { display: flex; flex-direction: column; gap: 16px; }

/* Trust row ------------------------------------------------------------- */
.trust { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; align-items: center; }
.trust.center { justify-content: center; }
.trust span { display: inline-flex; align-items: center; gap: .55rem; font-size: var(--text-sm); font-weight: 500; color: var(--text-body); }
.trust svg { width: 20px; height: 20px; color: var(--blue-600); }
.trust--on-ink span { color: var(--text-on-ink); }
.trust--on-ink svg { color: #9db8f0; }

/* Media figure / two-col ------------------------------------------------ */
.media { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split--rev { grid-template-columns: .95fr 1.05fr; }
.split h2 { font-size: var(--text-h2); margin: 16px 0 14px; max-width: 440px; }
.split p { font-size: var(--text-body-lg); color: var(--text-muted); line-height: 1.65; max-width: 440px; }

/* Key takeaways --------------------------------------------------------- */
.takeaways { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--r-xl); padding: 26px 30px; }
.takeaways .lab { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-700); margin-bottom: 14px; }
.takeaways ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.takeaways li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-sm); color: var(--ink-800); line-height: 1.5; }
.takeaways li svg { flex: none; width: 16px; height: 16px; margin-top: 2px; color: var(--blue-600); }

/* FAQ (native details) -------------------------------------------------- */
.faqs { background: var(--surface); border-radius: var(--r-xl); border: 1px solid var(--border); box-shadow: var(--shadow-sm); padding: 4px 26px; }
.faq { border-bottom: 1px solid var(--border); }
.faq:last-child { border-bottom: none; }
.faq > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem .25rem; font-family: var(--font-display); font-weight: var(--fw-display); font-size: var(--text-h4); color: var(--text-strong); letter-spacing: var(--ls-tight); }
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary .ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: var(--r-pill); background: var(--neutral-100); color: var(--text-muted); font-size: 1.1rem; transition: all var(--dur) var(--ease-out); }
.faq[open] > summary .ic { background: var(--ink-900); color: #fff; }
.faq[open] > summary .ic .plus { display: none; }
.faq .ic .minus { display: none; }
.faq[open] .ic .minus { display: inline; }
.faq__body { padding: 0 2.5rem 1.3rem .25rem; font-size: var(--fs-body); color: var(--text-body); line-height: var(--lh-relaxed); }

/* CTA band -------------------------------------------------------------- */
.cta-band { background: var(--ink-900); }
.cta-band .inner { padding: var(--space-9) 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: var(--text-h1); max-width: 640px; margin: 0 auto; }
.cta-band p { color: var(--text-on-ink-muted); font-size: var(--text-lead); max-width: 520px; margin: 16px auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }

/* Prose (legal / article) ---------------------------------------------- */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: var(--text-h2); margin-top: 2.6rem; }
.prose h3 { font-size: var(--text-h3); margin-top: 1.8rem; }
.prose p, .prose li { font-size: var(--text-body-lg); line-height: 1.75; color: var(--text-body); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .5rem; }
.prose a { font-weight: 500; }
.prose .meta { font-size: var(--text-sm); color: var(--text-muted); }

/* Page hero (inner pages) ---------------------------------------------- */
.page-hero { background: linear-gradient(180deg, var(--paper-2), var(--paper)); border-bottom: 1px solid var(--border); }
.page-hero .inner { padding: var(--space-9) 0 var(--space-7); }
.page-hero h1 { font-size: var(--text-h1); margin: 14px 0 0; max-width: 680px; }
.page-hero.center .inner { text-align: center; }
.page-hero.center h1, .page-hero.center .lead { margin-inline: auto; }
.page-hero .lead { margin: 18px 0 0; max-width: 620px; font-size: var(--text-lead); line-height: var(--lh-relaxed); color: var(--text-muted); }

/* Breadcrumb ------------------------------------------------------------ */
.crumbs { font-size: var(--text-sm); color: var(--text-muted); padding: 16px 0 0; }
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--brand); }

/* Footer ---------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: var(--text-on-ink); }
.site-footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 40px; }
.site-footer .brand .wm-name { color: #eef3fb; }
.site-footer .blurb { font-size: var(--text-sm); color: var(--text-on-ink-muted); line-height: 1.6; max-width: 300px; margin-top: 16px; }
.site-footer h4 { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-on-ink-muted); margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: var(--text-sm); color: var(--text-on-ink); opacity: .85; }
.site-footer ul a:hover { opacity: 1; color: #fff; }
.site-footer .legal-row { border-top: 1px solid var(--border-ink); }
.site-footer .legal-row .inner { padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: var(--text-xs); color: var(--text-on-ink-muted); }

/* WhatsApp float -------------------------------------------------------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px; border-radius: var(--r-pill); background: #25d366; color: #08361b; font-family: var(--font-sans); font-weight: 700; font-size: var(--text-sm); box-shadow: var(--shadow-lg); transition: transform var(--dur) var(--ease-out); }
.wa-float:hover { transform: translateY(-2px); color: #08361b; }
.wa-float svg { width: 22px; height: 22px; }

/* Blog ------------------------------------------------------------------ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-3); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .cat { font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.post-card h3 { font-size: var(--text-h4); }
.post-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.55; flex: 1; }
.post-card .more { font-size: var(--text-sm); font-weight: 600; color: var(--brand); }
.post-hero { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); margin: 28px 0 8px; }
.post-meta { font-size: var(--text-sm); color: var(--text-muted); }
@media (max-width: 940px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* Animations ------------------------------------------------------------ */
@keyframes fi-word-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fi-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fi-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(239,65,53,.45); } 50% { box-shadow: 0 0 0 6px rgba(239,65,53,0); } }
@keyframes fi-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes fi-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.anim-rise { animation: fi-rise .7s var(--ease-out); }
.anim-rise.d1 { animation-delay: .08s; }
.anim-rise.d2 { animation-delay: .16s; }
.anim-rise.d3 { animation-delay: .24s; }
.anim-rise.d4 { animation-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .word, .anim-rise, .marquee__track, .heroviz .live .dot, .heroviz .chip { animation: none !important; }
}

/* Responsive ------------------------------------------------------------ */
@media (max-width: 940px) {
  .hero__grid, .split, .split--rev { grid-template-columns: 1fr; gap: 32px; }
  .features { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .takeaways ul { grid-template-columns: 1fr; }
  .heroviz .chip { right: 10px; }
}
@media (max-width: 620px) {
  .nav, .header-cta .ghost-link { display: none; }
  .features, .plans { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .cmp-wrap { overflow-x: auto; }
  .cta-band h2 { font-size: var(--text-h2); }
}


/* ===== Dark full-page theme — hero background across the whole page ===== */
body { background: var(--ink-950); color: var(--text-on-ink); }
body { background-image:
  radial-gradient(120% 60% at 80% 0%, rgba(23,105,212,.16), rgba(10,19,38,0) 60%),
  radial-gradient(90% 50% at 0% 100%, rgba(215,36,54,.10), rgba(10,19,38,0) 60%),
  linear-gradient(rgba(10,19,38,.84), rgba(10,19,38,.92)),
  url("assets/page-bg.png");
  background-size: cover; background-position: center; background-attachment: fixed; }

.section, .section--tight, .band, .band-soft, .page-hero { background: transparent; }
.page-hero { border-bottom: 1px solid rgba(255,255,255,.08); }

.crumbs, .crumbs a { color: var(--text-on-ink-muted); }
.crumbs a:hover { color: #fff; }
.page-hero h1, .sec-head h2, .split h2, .feature h3 { color: #fff; }
.page-hero .lead, .sec-head .lead, .lead, .feature p, .split p { color: var(--text-on-ink-muted); }
.eyebrow { color: #6ea0ef; }
.eyebrow--accent { color: #f08a93; }
.trust span { color: var(--text-on-ink); }
.trust svg { color: #9db8f0; }

.prose h2, .prose h3 { color: #fff; }
.prose p, .prose li { color: var(--text-on-ink); }
.prose .meta, .post-meta { color: var(--text-on-ink-muted) !important; }
.prose a { color: #6ea0ef; }

/* bare headings placed directly on the dark field → light.
   Headings inside light cards keep dark text via their own
   higher-specificity rules in the contrast block below. */
main h2, main h3, main h4 { color: #fff; }

/* primary buttons readable on the dark field (cards still look great in blue) */
.btn--primary { background: var(--blue-600); }
.btn--primary:hover { background: var(--blue-700); }
/* ghost buttons sit on the dark field → light text */
.btn--ghost { color: var(--text-on-ink); }
.btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
/* ===== Contrast fix: dark text inside light-surface components =====
   The full-page dark theme lightens section text, but these components keep
   white/tinted backgrounds, so their text must stay dark. */
.faqs, .faq__body, .faq > summary { color: var(--text-body); }
.faq > summary { color: var(--text-strong); }
.step h3, .plan__name { color: var(--text-strong); }
.step p, .plan__features li, .plan__note { color: var(--text-body); }
.post-card h3 { color: var(--text-strong); }
.post-card p { color: var(--text-muted); }
.cmp td { color: var(--text-body); }
.cmp td:first-child { color: var(--text-body); }
.takeaways li { color: var(--ink-800); }
/* Callouts (light tinted backgrounds) keep their own dark ink */
.callout h4 { color: var(--text-strong); }
.callout--info, .callout--info p { color: var(--ink-800); }
.callout--legal, .callout--legal p { color: var(--ink-800); }
.callout--note, .callout--note p { color: var(--text-body); }
.callout--success, .callout--success p { color: var(--neutral-800); }
.callout a { color: var(--blue-700); }
/* Featured (dark) plan card keeps light text */
.plan--featured .plan__name { color: #fff; }
.plan--featured .plan__features li, .plan--featured .plan__note { color: var(--text-on-ink); }



/* ===== Animated video background (moving theme) ===== */
html { background: #0a1326; }
body { background: transparent !important; }
.page-bg-video { position: fixed; inset: 0; width: 100vw; height: 100vh; object-fit: cover; z-index: -2; }
.page-bg-scrim { position: fixed; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(rgba(10,19,38,.56), rgba(10,19,38,.78)); }
@media (prefers-reduced-motion: reduce) {
  .page-bg-video { display: none; }
  html { background-image: linear-gradient(rgba(10,19,38,.84), rgba(10,19,38,.92)), url("assets/page-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; }
}


/* ===== Channel logo carousel ===== */
.logos { padding: 26px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logos__track { display: flex; width: max-content; animation: fi-marquee 40s linear infinite; }
.logos:hover .logos__track { animation-play-state: paused; }
.logos__group { display: flex; align-items: center; }
.logos__chip { flex: none; height: 66px; width: 124px; margin: 0 12px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 12px 16px; box-shadow: var(--shadow-sm); }
.logos__chip img { max-height: 100%; max-width: 100%; object-fit: contain; display: block; }
@media (prefers-reduced-motion: reduce) { .logos__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ===== Poster showcase (films & séries) ===== */
.showcase { padding: 8px 0 4px; }
.posters { overflow: hidden; padding: 10px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.posters__track { display: flex; width: max-content; gap: 16px; animation: fi-marquee 90s linear infinite; }
.posters__track.rev { animation-direction: reverse; animation-duration: 100s; }
.posters:hover .posters__track { animation-play-state: paused; }
.poster { flex: none; width: 150px; aspect-ratio: 2/3; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 26px -8px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.08); background: var(--ink-800); transition: transform var(--dur) var(--ease-out); }
.poster:hover { transform: translateY(-6px) scale(1.03); }
.poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 620px) { .poster { width: 120px; } }
@media (prefers-reduced-motion: reduce) { .posters__track { animation: none; } }

/* ===== Sport — diagonal showcase (highlighted) ===== */
.sportshow { position: relative; overflow: hidden; padding: 64px 0 70px; background:
  radial-gradient(90% 70% at 80% 10%, rgba(23,105,212,.22), rgba(10,19,38,0) 60%),
  radial-gradient(80% 70% at 5% 100%, rgba(215,36,54,.18), rgba(10,19,38,0) 60%); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.sportshow__head { position: relative; z-index: 3; text-align: center; max-width: 680px; margin: 0 auto 4px; padding: 0 var(--gutter); }
.sportshow__head .badge { margin-bottom: 14px; }
.sportshow__head h2 { color: #fff; font-size: var(--text-h1); }
.sportshow__head .lead { color: var(--text-on-ink-muted); margin-top: 14px; }
.sportshow__stage { position: relative; margin-top: 34px; height: 560px; -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent); }
.sportshow__rows { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-8deg); display: flex; flex-direction: column; gap: 18px; width: 150vw; }
.sportrow { display: flex; gap: 18px; width: max-content; animation: fi-marquee 70s linear infinite; }
.sportrow.rev { animation-direction: reverse; animation-duration: 86s; }
.sportrow.slow { animation-duration: 100s; }
.sportshow:hover .sportrow { animation-play-state: paused; }
.sportcard { flex: none; width: 188px; aspect-ratio: 2/3; border-radius: 14px; overflow: hidden; background: var(--ink-800); box-shadow: 0 16px 36px -10px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.08); transition: transform var(--dur) var(--ease-out); }
.sportcard:hover { transform: scale(1.05); }
.sportcard img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sportshow__cta { position: relative; z-index: 3; text-align: center; margin-top: 30px; }
@media (max-width: 620px) { .sportshow__stage { height: 460px; } .sportcard { width: 148px; } .sportshow__rows { width: 200vw; } }
@media (prefers-reduced-motion: reduce) { .sportrow { animation: none; } }
