/* ==========================================================================
   IPTVFIND — "Trust Blue" design system
   Clean white ground, professional blue primary, navy text, soft borders,
   gentle shadows, 8–12px radii, normal-case headings. Calm and credible.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
	--white: #ffffff;
	--paper: #f7f9fc;
	--tint: #eff4ff;
	--border: #e4e9f2;
	--border-strong: #cbd5e1;
	--ink: #0f172a;
	--slate: #334155;
	--muted: #64748b;
	--faint: #94a3b8;
	--blue: #2563eb;
	--blue-dark: #1d4ed8;
	--blue-soft: #dbeafe;
	--green: #059669;
	--green-soft: #ecfdf5;
	--amber: #d97706;

	--font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

	--shell: 1200px;
	--gutter: clamp(1.25rem, 4vw, 2.5rem);
	--section-y: clamp(3.5rem, 6.5vw, 6.5rem);

	--r-sm: 8px;
	--r-md: 10px;
	--r-lg: 14px;

	--shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
	--shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
	--shadow-md: 0 4px 12px rgba(15, 23, 42, 0.07), 0 1px 3px rgba(15, 23, 42, 0.05);
	--shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.09), 0 2px 8px rgba(15, 23, 42, 0.05);
	--shadow-blue: 0 6px 18px rgba(37, 99, 235, 0.22);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--blue);
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}

a:hover { color: var(--blue-dark); }

:focus-visible {
	outline: 3px solid rgba(37, 99, 235, 0.45);
	outline-offset: 2px;
	border-radius: 4px;
}

::selection {
	background: var(--blue-soft);
	color: var(--ink);
}

/* --------------------------------------------------------------------------
   3. Typography — normal case, generous sizing
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-sans);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.022em;
	margin: 0 0 0.5em;
	color: var(--ink);
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.125rem, 1.4rem + 2.9vw, 3.75rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

h2 { font-size: clamp(1.75rem, 1.3rem + 1.9vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); letter-spacing: -0.018em; }
h4 { font-size: 1.125rem; letter-spacing: -0.012em; }

h1 strong, h2 strong { font-weight: 700; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* Small label. Deliberately normal case and sentence-length — no tracked
   uppercase stamping anywhere in this system. */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--blue);
	background: var(--tint);
	border: 1px solid var(--blue-soft);
	border-radius: 999px;
	padding: 0.4em 0.9em;
	margin: 0 0 1.25rem;
}

.eyebrow--plain {
	background: none;
	border: 0;
	padding: 0;
	color: var(--muted);
}

.eyebrow--plain::before { display: none; }

.sec-head {
	max-width: 46rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.sec-head > .wp-block-heading { margin-bottom: 0.7em; }

.sec-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.sec-lede {
	font-size: clamp(1.02rem, 0.97rem + 0.3vw, 1.16rem);
	line-height: 1.65;
	color: var(--muted);
	max-width: 42rem;
	margin: 0;
}

.sec-head--center .sec-lede { margin-left: auto; margin-right: auto; }

.lede-lg {
	font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.25rem);
	line-height: 1.6;
	color: var(--muted);
}

.num,
.data { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

.mono { font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }

.rule { border: 0; border-top: 1px solid var(--border); margin: 0; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.shell--narrow { max-width: 820px; }

.sec {
	padding-block: var(--section-y);
	position: relative;
}

.sec--tight { padding-block: clamp(2.5rem, 4.5vw, 4rem); }
.sec--white { background: var(--white); }
.sec--tint,
.sec--soft { background: var(--paper); }

.sec--blue {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: #fff;
}

.sec--blue h1,
.sec--blue h2,
.sec--blue h3,
.sec--blue h4 { color: #fff; }

.sec--blue .sec-lede,
.sec--blue .lede-lg { color: rgba(255, 255, 255, 0.86); }

.sec--blue .eyebrow {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.sec--blue a { color: #fff; }

.sec--hairline { border-top: 1px solid var(--border); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55em;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.005em;
	line-height: 1;
	padding: 0.9em 1.6em;
	border-radius: var(--r-sm);
	border: 1px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
		border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn--cobalt,
.btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: var(--shadow-blue);
}

.btn--cobalt:hover,
.btn--primary:hover {
	background: var(--blue-dark);
	color: #fff;
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
}

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

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

.btn--ghost {
	background: var(--white);
	color: var(--ink);
	border-color: var(--border-strong);
}

.btn--ghost:hover {
	background: var(--paper);
	color: var(--ink);
	border-color: var(--faint);
}

.btn--white {
	background: #fff;
	color: var(--ink);
	box-shadow: var(--shadow-sm);
}

.btn--white:hover { background: #fff; color: var(--blue-dark); box-shadow: var(--shadow-md); }

.btn--soft {
	background: var(--tint);
	color: var(--blue-dark);
	border-color: var(--blue-soft);
}

.btn--soft:hover { background: var(--blue-soft); color: var(--blue-dark); }

.btn--sm { font-size: 0.875rem; padding: 0.75em 1.25em; }
.btn--block { width: 100%; }

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.btn-row--center { justify-content: center; }

/* Core Buttons block adopts the same shell. */
.wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin: 0;
}

.wp-block-buttons .wp-block-button { margin: 0; }

.wp-block-buttons .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55em;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	padding: 0.9em 1.6em;
	border-radius: var(--r-sm);
	border: 1px solid transparent;
	text-decoration: none;
	transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
		border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.wp-block-buttons .wp-block-button__link:active { transform: translateY(1px); }

.wp-block-button.is-style-signal .wp-block-button__link {
	background: var(--blue);
	color: #fff;
	box-shadow: var(--shadow-blue);
}

.wp-block-button.is-style-signal .wp-block-button__link:hover,
.wp-block-button.is-style-signal .wp-block-button__link:focus {
	background: var(--blue-dark);
	color: #fff;
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
}

.wp-block-button.is-style-ghost .wp-block-button__link {
	background: var(--white);
	color: var(--ink);
	border-color: var(--border-strong);
}

.wp-block-button.is-style-ghost .wp-block-button__link:hover,
.wp-block-button.is-style-ghost .wp-block-button__link:focus {
	background: var(--paper);
	color: var(--ink);
	border-color: var(--faint);
}

/* Solid white button, for the blue slab. */
.wp-block-button.btn--white .wp-block-button__link {
	background: #fff;
	color: var(--ink);
	box-shadow: var(--shadow-sm);
}

.wp-block-button.btn--white .wp-block-button__link:hover,
.wp-block-button.btn--white .wp-block-button__link:focus {
	background: #fff;
	color: var(--blue-dark);
	box-shadow: var(--shadow-md);
}

/* Text link with a blue underline that slides in. */
.tlink {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--blue);
	text-decoration: none;
	padding-bottom: 2px;
	background-image: linear-gradient(var(--blue), var(--blue));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0% 2px;
	transition: background-size 0.28s var(--ease), color 0.2s var(--ease);
}

.tlink:hover { color: var(--blue-dark); background-size: 100% 2px; }
.tlink span[aria-hidden] { transition: transform 0.24s var(--ease); }
.tlink:hover span[aria-hidden] { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. Block integration
   -------------------------------------------------------------------------- */
.shell,
.hero-grid,
.hero-copy,
.split,
.split-body,
.split-media,
.cta-grid,
.cta-panel,
.sec-head,
.trust-inner,
.header-inner,
.footer-grid,
.footer-col,
.footer-bot,
.pricing-head,
.rating-summary,
.bento-cell,
.chan,
.plan,
.conn,
.step,
.stat,
.device,
.tst,
.tst-foot,
.faq-item,
.post-body,
.post-grid {
	--wp--style--block-gap: 0px;
}

.wp-block-group,
.wp-block-columns,
.wp-block-buttons,
.wp-block-navigation {
	margin-top: 0;
	margin-bottom: 0;
}

.wp-block-navigation.main-nav {
	margin-left: auto;
	flex: 1 1 auto;
	justify-content: flex-end;
}

.main-nav .wp-block-navigation__container {
	display: flex;
	align-items: center;
	gap: clamp(0.75rem, 2vw, 1.75rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-nav .wp-block-navigation-item { margin: 0; }

.main-nav .wp-block-navigation-item__content {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--slate);
	text-decoration: none;
	padding-block: 0.4rem;
	position: relative;
	transition: color 0.2s var(--ease);
}

.main-nav .wp-block-navigation-item__content:hover,
.main-nav .current-menu-item .wp-block-navigation-item__content { color: var(--blue); }

.main-nav .wp-block-navigation__responsive-container-open,
.main-nav .wp-block-navigation__responsive-container-close { display: none; }

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(150%) blur(10px);
	-webkit-backdrop-filter: saturate(150%) blur(10px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow 0.25s var(--ease);
}

.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.header-inner {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.25rem);
	min-height: 76px;
	padding-block: 0.6rem;
}

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

.brand-mark { width: 32px; height: 32px; flex: none; }

.brand-word {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: 1.375rem;
	letter-spacing: -0.045em;
	line-height: 1;
}

.brand-word i { font-style: normal; color: var(--blue); }
.brand:hover { color: var(--ink); }

.header-cta { flex: none; margin-left: 1rem; }

.nav-toggle {
	display: none;
	margin-left: auto;
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--r-sm);
	width: 44px;
	height: 44px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	padding: 0;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
	background: linear-gradient(180deg, #eff4ff 0%, #ffffff 100%);
	padding-block: clamp(2.75rem, 5vw, 4.5rem) clamp(3rem, 5.5vw, 5rem);
	border-bottom: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: clamp(2rem, 4.5vw, 4rem);
	align-items: center;
}

.hero-copy,
.hero-head,
.hero-body { min-width: 0; }

.hero h1 {
	margin-bottom: 0.5em;
	font-size: clamp(2.125rem, 1.35rem + 3vw, 3.625rem);
	overflow-wrap: break-word;
}

.hero h1 em {
	font-style: normal;
	color: var(--blue);
}

.hero-copy .wp-block-heading { margin-bottom: 0.5em; }
.hero-copy > .wp-block-paragraph:first-child { margin-bottom: 0; }

.hero-lede {
	font-size: clamp(1.02rem, 0.96rem + 0.34vw, 1.19rem);
	line-height: 1.62;
	color: var(--muted);
	max-width: 34rem;
	margin-bottom: 1.75rem;
}

.hero-copy .wp-block-buttons { margin-bottom: 1.5rem; }

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 1.25rem;
	font-size: 0.875rem;
	color: var(--muted);
}

.hero-proof strong { color: var(--ink); font-weight: 600; }

.dot-sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--border-strong);
	flex: none;
}

.star-rating {
	display: inline-flex;
	gap: 1px;
	font-size: 0.9rem;
	line-height: 1;
	color: var(--border-strong);
}

.star-rating .star.is-on { color: var(--amber); }

/* Live player */
/* .epg-live is shared with the sports section, so it stays outside .tv */
.epg-live {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--green);
}

.epg-live i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	animation: pulse-dot 2s var(--ease) infinite;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.8); }
}

.tv {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.tv-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 1.1rem;
	border-bottom: 1px solid var(--border);
	background: var(--paper);
}

.tv-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--muted);
}

.tv-brand::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue);
	animation: pulse-dot 2.4s var(--ease) infinite;
}

/* ---- Screen ---- */
.tv-screen {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0b1220;
}

.tv-feed {
	position: absolute;
	inset: -12%;
	background:
		radial-gradient(52% 72% at 24% 28%, rgba(59, 130, 246, 0.95), transparent 60%),
		radial-gradient(46% 62% at 76% 30%, rgba(34, 211, 238, 0.62), transparent 62%),
		radial-gradient(60% 84% at 54% 94%, rgba(29, 78, 216, 0.95), transparent 64%),
		linear-gradient(140deg, #070c17, #16233f 52%, #070c17),
		radial-gradient(96% 82% at 50% 44%, transparent 46%, rgba(7, 12, 23, 0.7) 100%);
	background-size: 180% 180%, 170% 170%, 190% 190%, 100% 100%, 100% 100%;
	animation: tv-feed 18s ease-in-out infinite alternate;
}

@keyframes tv-feed {
	0% { background-position: 0% 40%, 100% 30%, 50% 100%, 0 0, 50% 50%; }
	50% { background-position: 42% 68%, 58% 62%, 22% 58%, 0 0, 50% 50%; }
	100% { background-position: 88% 22%, 12% 78%, 78% 18%, 0 0, 50% 50%; }
}

/* Test-card flash played on every channel change */
.tv-bars {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	opacity: 0;
	pointer-events: none;
}

.tv-bars i:nth-child(1) { background: #cbd5e1; }
.tv-bars i:nth-child(2) { background: #facc15; }
.tv-bars i:nth-child(3) { background: #22d3ee; }
.tv-bars i:nth-child(4) { background: #4ade80; }
.tv-bars i:nth-child(5) { background: #f472b6; }
.tv-bars i:nth-child(6) { background: #ef4444; }
.tv-bars i:nth-child(7) { background: #3b82f6; }

.tv-screen.is-tuning .tv-bars { animation: tv-tune 620ms steps(1, end); }

@keyframes tv-tune {
	0% { opacity: 0.92; }
	55% { opacity: 0.5; }
	100% { opacity: 0; }
}

.tv-scan {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 3px);
	opacity: 0.5;
	animation: tv-scan 6s linear infinite;
	pointer-events: none;
}

@keyframes tv-scan {
	from { transform: translateY(0); }
	to { transform: translateY(3px); }
}

.tv-hud {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 1.9rem 1rem 0.95rem;
	background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.86));
}

.tv-play {
	position: relative;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	color: var(--blue);
	display: grid;
	place-items: center;
	flex: none;
}

.tv-play svg { width: 12px; height: 12px; }

.tv-play::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.65);
	animation: tv-ring 2.6s var(--ease) infinite;
}

@keyframes tv-ring {
	0% { transform: scale(1); opacity: 0.75; }
	70%, 100% { transform: scale(1.75); opacity: 0; }
}

.tv-meta { min-width: 0; }

.tv-meta b {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tv-meta span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.66); }

.tv-badge {
	margin-left: auto;
	flex: none;
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 0.25em 0.5em;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.tv-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.18);
}

.tv-progress i {
	display: block;
	height: 100%;
	width: 0;
	background: var(--blue);
	animation: tv-progress 3.2s linear infinite;
}

@keyframes tv-progress {
	from { width: 0; }
	to { width: 100%; }
}

/* ---- Channel rail ---- */
.tv-rail-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 1.1rem 0.15rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--faint);
}

.tv-count { font-variant-numeric: tabular-nums; }

.tv-channels { list-style: none; margin: 0; padding: 0 0.55rem 0.6rem; }

.tv-channels li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.8125rem;
	color: var(--slate);
	padding: 0.5rem 0.55rem;
	border-radius: var(--r-sm);
	transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.tv-channels li.is-active { background: var(--tint); color: var(--ink); }

.tv-channels li.is-active::before {
	content: "";
	position: absolute;
	left: 0;
	top: 22%;
	bottom: 22%;
	width: 3px;
	border-radius: 2px;
	background: var(--blue);
}

.tv-channels .ch {
	flex: none;
	width: 2.6em;
	color: var(--faint);
	font-variant-numeric: tabular-nums;
}

.tv-channels li.is-active .ch { color: var(--blue); }

.tv-channels .nm {
	flex: 1;
	min-width: 0;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tv-channels .tag {
	flex: none;
	font-size: 0.625rem;
	font-weight: 700;
	padding: 0.2em 0.45em;
	border-radius: 4px;
	background: var(--paper);
	color: var(--muted);
}

.tv-channels .tag--hd { background: var(--tint); color: var(--blue-dark); }
.tv-channels .tag--uhd { background: var(--blue); color: #fff; }
.tv-channels .tag--live { background: var(--green-soft); color: var(--green); }

/* ---- Transport controls ---- */
.tv-controls {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.65rem 1.1rem;
	border-top: 1px solid var(--border);
	background: var(--paper);
}

.tv-eq {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	height: 14px;
	flex: none;
}

.tv-eq i {
	width: 3px;
	border-radius: 2px;
	background: var(--blue);
	height: 40%;
	animation: tv-eq 1.15s ease-in-out infinite;
}

.tv-eq i:nth-child(2) { animation-delay: 0.18s; }
.tv-eq i:nth-child(3) { animation-delay: 0.36s; }
.tv-eq i:nth-child(4) { animation-delay: 0.54s; }

@keyframes tv-eq {
	0%, 100% { height: 30%; }
	50% { height: 100%; }
}

.tv-time {
	flex: none;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

.tv-signal {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 14px;
	flex: 1;
	margin-left: 0.2rem;
}

.tv-signal i {
	flex: 1;
	border-radius: 2px;
	background: var(--border);
	height: 40%;
	animation: tv-signal 2.4s var(--ease) infinite;
}

.tv-signal i:nth-child(2) { height: 62%; animation-delay: 0.12s; }
.tv-signal i:nth-child(3) { height: 80%; animation-delay: 0.24s; }
.tv-signal i:nth-child(4) { height: 92%; background: var(--blue); animation-delay: 0.36s; }
.tv-signal i:nth-child(5) { height: 70%; background: var(--blue-soft); animation-delay: 0.48s; }
.tv-signal i:nth-child(6) { height: 84%; background: var(--blue-soft); animation-delay: 0.6s; }

@keyframes tv-signal {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.45; }
}

.tv-signal-val {
	flex: none;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   9b. Country pages
   -------------------------------------------------------------------------- */
.country-panel {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.country-panel-head {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1.25rem 1.35rem;
	background: var(--tint);
	border-bottom: 1px solid var(--blue-soft);
}

.country-flag { font-size: 2.25rem; line-height: 1; flex: none; }

.country-panel-head b {
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--ink);
}

.country-panel-head span { font-size: 0.8125rem; color: var(--muted); }

.country-facts { padding: 0.35rem 0; margin: 0; }

.country-fact {
	display: grid;
	grid-template-columns: 7.5rem minmax(0, 1fr);
	gap: 0.9rem;
	padding: 0.72rem 1.35rem;
	font-size: 0.875rem;
}

.country-fact + .country-fact { border-top: 1px solid var(--border); }
.country-fact dt { color: var(--muted); font-weight: 600; margin: 0; }
.country-fact dd { margin: 0; color: var(--ink); }

.country-panel-foot {
	padding: 0.9rem 1.35rem;
	background: var(--paper);
	border-top: 1px solid var(--border);
	font-size: 0.8125rem;
	color: var(--muted);
}

/* Region index */
.region-block { margin-bottom: 2.5rem; }

.region-block h2 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--ink);
}

.country-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.country-list a {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.6rem 0.75rem;
	border: 1px solid var(--border);
	border-radius: var(--r-sm);
	font-size: 0.9375rem;
	color: var(--ink);
	text-decoration: none;
	transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}

.country-list a:hover { border-color: var(--blue); background: var(--tint); color: var(--blue-dark); }
.country-list .flag { font-size: 1.0625rem; line-height: 1; flex: none; }

@media (max-width: 1080px) {
	.country-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
	.country-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.country-fact { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* --------------------------------------------------------------------------
   10. Trust bar
   -------------------------------------------------------------------------- */
.trust-bar {
	background: var(--white);
	border-bottom: 1px solid var(--border);
}

.trust-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 2rem;
	padding-block: 1.15rem;
}

.trust-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--slate);
}

.trust-item svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.stat {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 1.75rem 1.5rem;
}

.stat-val {
	font-size: clamp(1.875rem, 1.4rem + 1.6vw, 2.5rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.035em;
	color: var(--blue);
	font-variant-numeric: tabular-nums;
	display: block;
	margin-bottom: 0.6rem;
}

.stat-val sup {
	font-size: 0.5em;
	color: var(--blue);
	top: -0.7em;
	position: relative;
	letter-spacing: 0;
}

.stat-label {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--ink);
	display: block;
	margin-bottom: 0.4rem;
}

.stat-note {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--muted);
	margin: 0;
}

/* --------------------------------------------------------------------------
   11. Feature bento
   -------------------------------------------------------------------------- */
.bento {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1.25rem;
}

.bento-cell {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: clamp(1.5rem, 2.4vw, 2rem);
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.bento-cell:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.bento-cell--lead {
	grid-column: span 4;
	background: linear-gradient(135deg, #eff4ff 0%, #ffffff 100%);
	border-color: var(--blue-soft);
}

.bento-cell--wide { grid-column: span 3; }
.bento-cell--half { grid-column: span 3; }
.bento-cell--third { grid-column: span 2; }

.bento-icon {
	width: 40px;
	height: 40px;
	color: var(--blue);
	margin-bottom: 0.35rem;
	flex: none;
	background: var(--tint);
	border-radius: var(--r-sm);
	padding: 8px;
}

.bento-cell h3 { margin-bottom: 0.1rem; }

.bento-cell p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
}

.bento-kpi {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--blue);
	margin-top: auto;
	padding-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   12. Channel mosaic
   -------------------------------------------------------------------------- */
.chan-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.chan {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 1.5rem 1.35rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.chan:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.chan-count {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: -0.025em;
	font-variant-numeric: tabular-nums;
	display: block;
	margin-bottom: 0.15rem;
}

.chan-name {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.012em;
	line-height: 1.25;
	color: var(--ink);
}

.chan-blurb {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--muted);
	margin: 0;
}

/* --------------------------------------------------------------------------
   13. Split sections
   -------------------------------------------------------------------------- */
.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 4.5vw, 4rem);
	align-items: center;
}

.split--reverse .split-media { order: -1; }

.split-body h2 { margin-bottom: 0.45em; }

.checklist {
	list-style: none;
	margin: 1.6rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.checklist li {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
	font-size: 0.9688rem;
	line-height: 1.6;
	color: var(--muted);
}

.checklist li::before {
	content: "";
	flex: none;
	width: 18px;
	height: 18px;
	margin-top: 0.16em;
	border-radius: 50%;
	background: var(--green-soft)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.2 11.4 2.8 8l1.3-1.3 2.1 2.1 5.7-5.7L13.2 4.4z' fill='%23059669'/%3E%3C/svg%3E")
		center/12px 12px no-repeat;
}

.checklist strong { color: var(--ink); font-weight: 600; }

/* Resolution panel */
.res-panel {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.res-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.35rem;
	border-bottom: 1px solid var(--border);
	background: var(--paper);
}

.res-head h4 { margin: 0; font-size: 1rem; font-weight: 600; }

.res-head .mono,
.res-head .data {
	font-size: 0.8125rem;
	color: var(--muted);
}

.res-rows { padding: 0.5rem 0; }

.res-row {
	display: grid;
	grid-template-columns: 4.6rem 1fr auto;
	align-items: center;
	gap: 0.9rem;
	padding: 0.7rem 1.35rem;
	font-size: 0.875rem;
}

.res-row + .res-row { border-top: 1px solid var(--border); }

.res-row .tag {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--blue-dark);
}

.res-row .nm { color: var(--muted); }

.res-row .pct {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

.res-bar {
	grid-column: 1 / -1;
	height: 6px;
	background: var(--paper);
	border-radius: 999px;
	overflow: hidden;
	margin-top: -0.2rem;
}

.res-bar i {
	display: block;
	height: 100%;
	background: var(--blue);
	border-radius: 999px;
	width: 0;
	transition: width 1s var(--ease);
}

.res-row.is-in .res-bar i { width: var(--w, 50%); }

/* Fixtures */
.fixtures {
	list-style: none;
	margin: 0;
	padding: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-top: 0;
	border-radius: 0 0 var(--r-lg) var(--r-lg);
	overflow: hidden;
}

.fixtures li {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.8rem 1.35rem;
	font-size: 0.875rem;
}

.fixtures li + li { border-top: 1px solid var(--border); }

.fixtures .time {
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--ink);
	flex: none;
	width: 3.2em;
}

.fixtures .what { color: var(--slate); flex: 1; min-width: 0; }

.fixtures .where {
	font-size: 0.8125rem;
	color: var(--faint);
	flex: none;
}

.fixtures .pill {
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 0.22em 0.5em;
	border-radius: 4px;
	background: var(--tint);
	color: var(--blue-dark);
	flex: none;
}

/* --------------------------------------------------------------------------
   14. Connections
   -------------------------------------------------------------------------- */
.conn-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.conn {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 1.5rem 1.35rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.conn:hover { box-shadow: var(--shadow-md); border-color: var(--blue-soft); }

.conn-screens { display: flex; gap: 4px; margin-bottom: 0.5rem; }

.conn-screens i {
	width: 20px;
	height: 14px;
	border-radius: 3px;
	background: var(--paper);
	border: 1px solid var(--border);
}

.conn-screens i.is-on { background: var(--blue); border-color: var(--blue); }

.conn h3 { font-size: 1.125rem; margin: 0; }

.conn .from {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--blue);
}

.conn p {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
}

.conn-best {
	font-size: 0.8125rem;
	color: var(--faint);
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   15. Pricing
   -------------------------------------------------------------------------- */
.pricing-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.tier-tabs {
	display: inline-flex;
	gap: 4px;
	padding: 4px;
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	flex-wrap: wrap;
}

.tier-tab {
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--muted);
	background: none;
	border: 0;
	border-radius: 6px;
	padding: 0.6em 1.1em;
	cursor: pointer;
	transition: background-color 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
	white-space: nowrap;
}

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

.tier-tab[aria-selected="true"] {
	background: var(--white);
	color: var(--blue-dark);
	box-shadow: var(--shadow-xs);
}

.plan-note {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--muted);
	max-width: 46rem;
	margin: 0 0 1.75rem;
}

.plan-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.plan {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 1.6rem 1.35rem 1.5rem;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.plan:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--border-strong);
	transform: translateY(-2px);
}

.plan-term {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 0.85rem;
	display: block;
}

.plan-price {
	font-size: clamp(1.875rem, 1.5rem + 1.2vw, 2.375rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.035em;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
	display: block;
}

.plan-cycle {
	font-size: 0.8125rem;
	color: var(--faint);
	display: block;
	margin-top: 0.4rem;
	min-height: 1.1em;
}

.plan-monthly {
	font-size: 0.8125rem;
	color: var(--muted);
	margin: 0.9rem 0 0;
	padding-top: 0.9rem;
	border-top: 1px solid var(--border);
}

.plan-monthly b { color: var(--ink); font-weight: 600; }

.plan-conns {
	font-size: 0.8125rem;
	color: var(--faint);
	margin-top: 0.25rem;
	display: block;
}

.plan .btn { margin-top: 1.35rem; }

/* Recommended plan — blue border and tint, never inverted. */
.plan.is-featured {
	border-color: var(--blue);
	border-width: 2px;
	box-shadow: var(--shadow-md);
}

.plan.is-featured:hover { border-color: var(--blue-dark); }

.plan-flag {
	position: absolute;
	top: -0.7rem;
	left: 1.35rem;
	font-size: 0.6875rem;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	padding: 0.3em 0.65em;
	border-radius: 999px;
}

.plan.is-featured .plan-price { color: var(--blue-dark); }

.pricing-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 2rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
}

.pricing-foot .trust-item { font-size: 0.875rem; color: var(--muted); }

.pricing-reseller {
	margin-top: 2rem;
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 1.35rem 1.6rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.pricing-reseller p { margin: 0; font-size: 0.9375rem; color: var(--muted); }
.pricing-reseller strong { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   16. Comparison table
   -------------------------------------------------------------------------- */
.cmp-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
}

.cmp {
	width: 100%;
	min-width: 660px;
	border-collapse: collapse;
	font-size: 0.9375rem;
}

.cmp th,
.cmp td {
	padding: 1rem 1.35rem;
	text-align: left;
	border-bottom: 1px solid var(--border);
	vertical-align: middle;
}

.cmp thead th {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--muted);
	background: var(--paper);
	border-bottom: 1px solid var(--border);
	white-space: nowrap;
}

.cmp thead th.is-us { color: var(--blue-dark); background: var(--tint); }

.cmp tbody tr:last-child th,
.cmp tbody tr:last-child td { border-bottom: 0; }

.cmp tbody th {
	font-weight: 500;
	color: var(--slate);
	width: 32%;
}

.cmp td { color: var(--faint); }
.cmp td.is-us { color: var(--ink); font-weight: 600; background: #fbfcfe; }

.cmp .yes::before { content: "✓ "; color: var(--green); font-weight: 700; }
.cmp .no::before { content: "— "; color: var(--faint); }

/* --------------------------------------------------------------------------
   17. Steps
   -------------------------------------------------------------------------- */
.steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.step {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: clamp(1.5rem, 2.6vw, 2.25rem);
	position: relative;
}

.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--tint);
	color: var(--blue-dark);
	font-size: 0.9375rem;
	font-weight: 700;
	margin-bottom: 1rem;
	font-variant-numeric: tabular-nums;
}

.step h3 { margin-bottom: 0.45rem; }

.step p {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--muted);
	margin: 0;
}

.step-meta {
	font-size: 0.8125rem;
	color: var(--faint);
	margin-top: 1.15rem;
	padding-top: 1.15rem;
	border-top: 1px solid var(--border);
	display: block;
}

.sec--blue .step {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.22);
}

.sec--blue .step-num { background: rgba(255, 255, 255, 0.18); color: #fff; }
.sec--blue .step h3 { color: #fff; }
.sec--blue .step p { color: rgba(255, 255, 255, 0.86); }
.sec--blue .step-meta { color: rgba(255, 255, 255, 0.7); border-top-color: rgba(255, 255, 255, 0.2); }

/* --------------------------------------------------------------------------
   18. Devices
   -------------------------------------------------------------------------- */
.device-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.device {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 1.35rem 1.25rem;
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.device:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.device-ic {
	width: 34px;
	height: 34px;
	flex: none;
	color: var(--blue);
	background: var(--tint);
	border-radius: var(--r-sm);
	padding: 6px;
}

.device b {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.3;
	color: var(--ink);
	margin-bottom: 0.2rem;
}

.device span span {
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--muted);
	display: block;
}

/* --------------------------------------------------------------------------
   19. Testimonials
   -------------------------------------------------------------------------- */
.tst-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.tst {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: clamp(1.5rem, 2.4vw, 2rem);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
	box-shadow: var(--shadow-xs);
}

.tst-mark {
	font-size: 2.5rem;
	line-height: 0.6;
	font-weight: 700;
	color: var(--blue-soft);
	display: block;
	height: 0.6em;
}

.tst blockquote {
	margin: 0;
	font-size: clamp(1rem, 0.96rem + 0.3vw, 1.125rem);
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: -0.008em;
	color: var(--slate);
	text-wrap: pretty;
}

.tst-foot {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.tst-who b {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--ink);
	display: block;
}

.tst-who span { font-size: 0.8125rem; color: var(--muted); }

.tst-rating { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
.tst-foot .star-rating { color: var(--border-strong); }
.tst-foot .star-rating .star.is-on { color: var(--amber); }

.rating-summary {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 2rem;
	padding: 1.5rem 1.75rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	margin-bottom: 2rem;
}

.rating-summary .big {
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--ink);
}

.rating-summary .meta {
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.55;
	display: block;
	margin-top: 0.35rem;
}

.rating-summary .meta strong { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   20. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q { margin: 0; font-size: inherit; }

.faq-btn {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	background: none;
	border: 0;
	padding: 1.35rem 0;
	text-align: left;
	cursor: pointer;
	font-family: var(--font-sans);
	font-size: clamp(1rem, 0.96rem + 0.32vw, 1.125rem);
	font-weight: 600;
	letter-spacing: -0.012em;
	line-height: 1.45;
	color: var(--ink);
	transition: color 0.18s var(--ease);
}

.faq-btn:hover { color: var(--blue); }
.faq-btn::-webkit-details-marker { display: none; }

.faq-ic {
	flex: none;
	width: 22px;
	height: 22px;
	margin-top: 0.12em;
	position: relative;
	border-radius: 50%;
	background: var(--paper);
	transition: background-color 0.18s var(--ease);
}

.faq-btn:hover .faq-ic { background: var(--tint); }

.faq-ic::before,
.faq-ic::after {
	content: "";
	position: absolute;
	background: var(--blue);
	border-radius: 2px;
	transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.faq-ic::before { top: 50%; left: 27%; width: 46%; height: 2px; transform: translateY(-50%); }
.faq-ic::after { left: 50%; top: 27%; height: 46%; width: 2px; transform: translateX(-50%); }

.faq-btn[aria-expanded="true"] .faq-ic::after { transform: translateX(-50%) scaleY(0); opacity: 0; }

.faq-a {
	overflow: hidden;
	height: 0;
	transition: height 0.32s var(--ease);
}

.faq-a-inner {
	padding: 0 3rem 1.5rem 0;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--muted);
}

.faq-a-inner p { margin: 0 0 1rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   21. Final CTA — blue slab
   -------------------------------------------------------------------------- */
.cta-final {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: #fff;
	border-radius: var(--r-lg);
	padding: clamp(2.25rem, 5vw, 4rem);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.cta-final::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -10%;
	width: 420px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	pointer-events: none;
}

.cta-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
	position: relative;
	z-index: 1;
}

.cta-final h2 { color: #fff; margin-bottom: 0.4em; }
.cta-final .eyebrow {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}
.cta-final p { color: rgba(255, 255, 255, 0.88); }

.cta-panel {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--r-md);
	padding: 1.5rem 1.4rem;
}

.cta-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; }

.cta-panel li {
	display: flex;
	gap: 0.65rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.cta-panel li svg { width: 17px; height: 17px; flex: none; color: #fff; margin-top: 0.22em; }
.cta-panel li strong { color: #fff; font-weight: 700; }

/* --------------------------------------------------------------------------
   22. Footer — light and clean
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--paper);
	border-top: 1px solid var(--border);
	padding-top: clamp(2.5rem, 5vw, 3.75rem);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
	gap: clamp(1.75rem, 4vw, 3rem);
	padding-bottom: 2.5rem;
}

.footer-brand .brand { margin-bottom: 1rem; }

.footer-brand p {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--muted);
	max-width: 30rem;
}

.footer-col h4 {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 1rem;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }

.footer-col a {
	font-size: 0.9375rem;
	color: var(--muted);
	text-decoration: none;
	transition: color 0.18s var(--ease);
}

.footer-col a:hover { color: var(--blue); }

.footer-bot {
	border-top: 1px solid var(--border);
	padding-block: 1.35rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	font-size: 0.8125rem;
	color: var(--muted);
}

.footer-bot p { margin: 0; }

.footer-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   23. Content pages, blog, archive
   -------------------------------------------------------------------------- */
.page-hero {
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem) clamp(1.75rem, 3.5vw, 2.75rem);
	border-bottom: 1px solid var(--border);
	background: linear-gradient(180deg, #eff4ff 0%, #ffffff 100%);
}

.page-hero h1 { margin-bottom: 0.3em; }
.page-hero .wp-block-post-title { margin-bottom: 0.3em; }
.page-hero .wp-block-query-title { margin-bottom: 0.3em; }
.page-hero .breadcrumbs { margin-bottom: 1rem; }
.page-hero .wp-block-post-title { font-size: clamp(1.875rem, 1.4rem + 2.2vw, 3rem); }

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	color: var(--faint);
}

.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs .sep { color: var(--border-strong); }

.entry {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--slate);
}

.entry > * + * { margin-top: 1.35em; }

.entry h2,
.entry h3,
.entry h4 { color: var(--ink); margin-top: 2em; margin-bottom: 0.55em; }

.entry h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.125rem); }
.entry h3 { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.4rem); }

.entry ul,
.entry ol { padding-left: 1.35em; }
.entry li + li { margin-top: 0.45em; }

.entry blockquote {
	margin: 2em 0;
	padding-left: 1.25rem;
	border-left: 3px solid var(--blue);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--ink);
}

.entry img { border-radius: var(--r-md); }

.entry code {
	font-size: 0.875em;
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 0.15em 0.4em;
}

.entry pre {
	background: var(--ink);
	color: #e2e8f0;
	padding: 1.25rem 1.4rem;
	border-radius: var(--r-md);
	overflow-x: auto;
	font-size: 0.875rem;
}

.entry pre code { background: none; border: 0; padding: 0; color: inherit; }

.entry table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	overflow: hidden;
}

.entry th,
.entry td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); text-align: left; }
.entry th { font-size: 0.8125rem; font-weight: 600; color: var(--muted); background: var(--paper); }

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.post-card:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--border-strong);
	transform: translateY(-2px);
}

.post-thumb { aspect-ratio: 16 / 10; background: var(--paper); overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin: 0;
	font-size: 0.8125rem;
	color: var(--faint);
}

.post-meta a { color: var(--faint); text-decoration: none; }
.post-meta a:hover { color: var(--blue); }
.post-meta .wp-block-post-date,
.post-meta .wp-block-post-terms,
.post-meta .wp-block-post-author-name { margin: 0; }

.post-card h3 { font-size: 1.125rem; margin: 0; }

.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h3 a:hover { color: var(--blue); }

.post-card p { font-size: 0.9375rem; line-height: 1.6; color: var(--muted); margin: 0; }
.post-card .tlink { margin-top: auto; }

.wp-block-read-more { margin-top: auto; }

.wp-block-read-more a {
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--blue);
	text-decoration: none;
	background-image: linear-gradient(var(--blue), var(--blue));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0% 2px;
	transition: background-size 0.28s var(--ease);
	padding-bottom: 2px;
}

.wp-block-read-more a:hover { background-size: 100% 2px; color: var(--blue-dark); }

/* Core block support */
[hidden] { display: none !important; }

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
	padding: 0;
}

.wp-block-post-template { list-style: none; margin: 0; padding: 0; }
.wp-block-post-template .wp-block-post { margin: 0; }

.wp-block-query-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.wp-block-query-pagination a,
.wp-block-query-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.8rem;
	border: 1px solid var(--border);
	border-radius: var(--r-sm);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--slate);
	text-decoration: none;
	background: var(--white);
	transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.wp-block-query-pagination a:hover { border-color: var(--blue); color: var(--blue); }

.wp-block-query-pagination .current {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.wp-block-query-pagination .wp-block-query-pagination-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.wp-block-post-featured-image { margin: 0; }
.wp-block-post-featured-image img { border-radius: var(--r-md); }

.wp-block-search {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-items: stretch;
	max-width: 32rem;
	margin-top: 1.5rem;
}

.wp-block-search__inside-wrapper { display: flex; flex: 1; gap: 0.6rem; }

.wp-block-search .wp-block-search__input {
	flex: 1;
	font-family: var(--font-sans);
	font-size: 1rem;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-sm);
	padding: 0.8em 0.95em;
}

.wp-block-search .wp-block-search__input::placeholder { color: var(--faint); }

.wp-block-search .wp-block-search__button {
	flex: none;
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	font-weight: 600;
	color: #fff;
	background: var(--blue);
	border: 1px solid var(--blue);
	border-radius: var(--r-sm);
	padding: 0.8em 1.5em;
	cursor: pointer;
	transition: background-color 0.18s var(--ease);
}

.wp-block-search .wp-block-search__button:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.wp-block-list { padding-left: 1.35em; }
.wp-block-list li + li { margin-top: 0.4em; }

.comments-area { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.comment-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }

.comment-list .comment-body {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 1.25rem 1.4rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	font-family: var(--font-sans);
	font-size: 1rem;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-sm);
	padding: 0.75em 0.9em;
}

.comment-form input[type="submit"] {
	margin-top: 0.75rem;
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	font-weight: 600;
	color: #fff;
	background: var(--blue);
	border: 1px solid var(--blue);
	border-radius: var(--r-sm);
	padding: 0.85em 1.6em;
	cursor: pointer;
}

.comment-form input[type="submit"]:hover { background: var(--blue-dark); }

/* 404 */
.err-code {
	font-size: clamp(4rem, 14vw, 9rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.05em;
	color: var(--ink);
	margin: 0;
	font-variant-numeric: tabular-nums;
}

.err-code span { color: var(--blue); }

/* --------------------------------------------------------------------------
   24. Reveal
   -------------------------------------------------------------------------- */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
	transition-delay: var(--d, 0ms);
}

.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Failsafe: if the deferred script never initialises, reveal everything
   rather than leaving whole sections at opacity 0. */
.reveal-failsafe [data-reveal],
.reveal-failsafe .res-row {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.js .res-row { opacity: 0; transition: opacity 0.5s var(--ease); }
.js .res-row.is-in { opacity: 1; }

/* --------------------------------------------------------------------------
   25. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.chan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.device-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
	/* Specificity must beat core's on-demand navigation stylesheet, which is
	   printed after the theme stylesheet. */
	.wp-block-navigation.main-nav,
	.header-cta { display: none; }
	.nav-toggle { display: flex; }

	.site-header.is-open .main-nav {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--white);
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow-md);
		padding: 0.5rem var(--gutter) 1rem;
		margin-left: 0;
	}

	.site-header.is-open .main-nav ul,
	.site-header.is-open .main-nav .wp-block-navigation__container {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-header.is-open .main-nav li { border-bottom: 1px solid var(--border); }
	.site-header.is-open .main-nav li:last-child { border-bottom: 0; }

	.site-header.is-open .main-nav a,
	.site-header.is-open .main-nav .wp-block-navigation-item__content {
		display: block;
		padding: 0.9rem 0;
		font-size: 1rem;
	}

	.hero-grid { grid-template-columns: 1fr; }
	.split { grid-template-columns: 1fr; }
	.split--reverse .split-media { order: 0; }
	.cta-grid { grid-template-columns: 1fr; }

	.stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bento-cell--wide,
	.bento-cell--half,
	.bento-cell--third,
	.bento-cell--lead { grid-column: span 2; }

	.conn-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.steps { grid-template-columns: 1fr; }
	.tst-grid { grid-template-columns: 1fr; }
	.post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tier-tabs { width: 100%; justify-content: center; }
}

@media (max-width: 680px) {
	:root { --section-y: clamp(2.75rem, 8vw, 4rem); }

	.stat-grid { grid-template-columns: 1fr; }
	.bento { grid-template-columns: 1fr; }
	.bento-cell--wide,
	.bento-cell--half,
	.bento-cell--third,
	.bento-cell--lead { grid-column: span 1; }

	.chan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.device-grid { grid-template-columns: 1fr; }
	.conn-grid { grid-template-columns: 1fr; }
	.plan-grid { grid-template-columns: 1fr; }
	.post-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }

	.plan.is-featured { order: -1; }
	.pricing-head { flex-direction: column; align-items: stretch; }
	.hero-actions .btn { width: 100%; }
	.btn-row { width: 100%; }
	.faq-a-inner { padding-right: 1.5rem; }
	.tv-channels li:nth-child(n + 5) { display: none; }
	.cta-final { border-radius: var(--r-md); }
}

/* --------------------------------------------------------------------------
   26. Preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

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

	.tv-progress i { width: 62%; animation: none !important; }
	.tv-bars { display: none; }

	.js [data-reveal],
	.js .res-row { opacity: 1; transform: none; }

	.res-bar i { width: var(--w, 50%) !important; }
}

/* -------------------------------------------------------------------------
	33. Country pages — breadcrumb on the blue hero and related-country links
	--------------------------------------------------------------------- */

.breadcrumbs--hero {
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.breadcrumbs--hero a { color: #fff; }

.breadcrumbs--hero a:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.breadcrumbs--hero .sep { color: rgba(255, 255, 255, 0.45); }

.page-hero-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.page-hero-links a {
	display: inline-block;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--slate);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 999px;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.page-hero-links a:hover {
	color: var(--blue);
	border-color: var(--blue-soft);
	background: var(--tint);
}

.country-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem;
}

.country-link {
	display: flex;
	flex-direction: column;
	padding: 1rem 1.15rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.country-link:hover {
	border-color: var(--blue);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.country-link-flag {
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 0.35rem;
}

.country-link-name {
	font-weight: 700;
	font-size: 0.9375rem;
	color: var(--ink);
}

.country-link-count {
	font-size: 0.8125rem;
	color: var(--muted);
}

@media (max-width: 900px) {
	.country-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
	.country-links { grid-template-columns: 1fr; }
}

@media print {
	.site-header,
	.site-footer,
	.cta-final,
	.nav-toggle { display: none !important; }

	body { background: #fff; }
	.plan.is-featured { box-shadow: none; }

	/* Reveals never fire when printing. */
	[data-reveal],
	.res-row { opacity: 1 !important; transform: none !important; }
}
