/* =========================================================
   E1 IPTV UK — Light theme, cyan trust-brand design system
   ========================================================= */

:root {
  /* Brand */
  --brand-50:  #ECFEFF;
  --brand-100: #CFFAFE;
  --brand-200: #A5F3FC;
  --brand-300: #67E8F9;
  --brand-400: #22D3EE;
  --brand-500: #06B6D4;
  --brand-600: #0891B2;
  --brand-700: #0E7490;
  --brand-800: #155E75;
  --brand-900: #164E63;

  /* Surfaces */
  --bg:        #F8FAFC;
  --bg-alt:    #F1F5F9;
  --bg-soft:   #ECFEFF;
  --surface:   #FFFFFF;
  --border:    #E2E8F0;
  --border-strong: #CBD5E1;

  /* Text */
  --text:      #0F172A;
  --text-2:    #334155;
  --text-3:    #64748B;
  --text-muted:#94A3B8;
  --on-brand:  #FFFFFF;

  /* States */
  --success:   #10B981;
  --warning:   #F59E0B;
  --danger:    #EF4444;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, .06), 0 2px 6px rgba(15, 23, 42, .04);
  --shadow-lg: 0 18px 40px -12px rgba(8, 145, 178, .18), 0 8px 16px rgba(15, 23, 42, .05);
  --shadow-brand: 0 10px 30px -8px rgba(6, 182, 212, .45);

  --gradient-brand: linear-gradient(135deg, #06B6D4 0%, #0891B2 50%, #0E7490 100%);
  --gradient-soft:  linear-gradient(180deg, #ECFEFF 0%, #F8FAFC 100%);
  --gradient-text:  linear-gradient(135deg, #0891B2, #06B6D4 60%, #22D3EE);

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Layout */
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --container: 1180px;

  /* Motion */
  --t-fast: 150ms ease;
  --t:      220ms cubic-bezier(.4,0,.2,1);
  --t-slow: 380ms cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--brand-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand-600); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--text); letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-2); }

::selection { background: var(--brand-200); color: var(--brand-900); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand-700); color: #fff; padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) 0; z-index: 9999;
}
.skip-link:focus { left: 0; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: 56px 0; position: relative; }
section.tight { padding: 40px 0; }
section.spacious { padding: 80px 0; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-tag {
  display: inline-block;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  padding: 6px 14px; border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 14px; }
.section-subtitle { color: var(--text-3); font-size: 1.05rem; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .98rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--gradient-brand);
  color: var(--on-brand);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { color: var(--on-brand); transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(6,182,212,.55); }
.btn--outline {
  background: var(--surface);
  color: var(--brand-700);
  border-color: var(--brand-200);
}
.btn--outline:hover { background: var(--brand-50); border-color: var(--brand-300); color: var(--brand-700); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text-2); }
.btn--ghost:hover { background: var(--bg-alt); color: var(--text); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe57; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(37,211,102,.5); }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--sm { padding: 9px 16px; font-size: .85rem; }

/* ========== Top announcement bar ========== */
.topbar {
  background: linear-gradient(90deg, #0E7490 0%, #0891B2 25%, #06B6D4 50%, #0891B2 75%, #0E7490 100%);
  background-size: 200% 100%;
  animation: topbar-shimmer 14s linear infinite;
  color: #fff;
  font-size: .82rem;
  padding: 9px 0;
  position: relative;
  z-index: 1001;
  letter-spacing: .005em;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
@keyframes topbar-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.topbar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.topbar__live {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  font-size: .72rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 3px 10px; border-radius: 999px;
}
.topbar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FCD34D;
  box-shadow: 0 0 0 0 rgba(252, 211, 77, .9);
  animation: topbar-pulse 1.6s infinite;
}
@keyframes topbar-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252, 211, 77, .9); }
  70%      { box-shadow: 0 0 0 7px rgba(252, 211, 77, 0); }
}
.topbar__msg strong { font-weight: 700; }
.topbar__cta {
  color: #fff; font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, .65);
  padding-bottom: 1px;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.topbar__cta:hover { color: #fff; border-bottom-color: #fff; }
.topbar__close {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  cursor: pointer; line-height: 1;
  font-size: 14px; font-weight: 600;
  display: grid; place-items: center;
  transition: background var(--t-fast);
}
.topbar__close:hover { background: rgba(255, 255, 255, .28); }
@media (max-width: 720px) {
  .topbar { font-size: .76rem; padding: 8px 32px 8px 12px; }
  .topbar__inner { gap: 10px; }
  .topbar__msg { display: none; }
}

/* ========== Transparent header (lives inside hero) ========== */
.header {
  position: sticky; top: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, .08), 0 1px 0 rgba(226, 232, 240, .8);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  padding: 0;
  position: relative;
}

/* ----- Logo (hex mark with channel-bar E1) ----- */
.nav__logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.nav__logo:hover .nav__logo-mark { transform: rotate(-6deg) scale(1.06); }

.nav__logo-mark {
  width: 42px; height: 42px;
  display: inline-block;
  flex-shrink: 0;
  font-size: 0; /* hide fallback "E1" text */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0%25' stop-color='%2322D3EE'/><stop offset='55%25' stop-color='%230891B2'/><stop offset='100%25' stop-color='%230E7490'/></linearGradient></defs><path d='M20 1.5 L35.5 10 L35.5 30 L20 38.5 L4.5 30 L4.5 10 Z' fill='url(%23g)'/><rect x='10.5' y='12' width='12' height='3' rx='1.5' fill='%23ffffff'/><rect x='10.5' y='18' width='7' height='3' rx='1.5' fill='%23ffffff'/><rect x='10.5' y='24' width='12' height='3' rx='1.5' fill='%23ffffff'/><rect x='25.5' y='12' width='3' height='15' rx='1.5' fill='%23ffffff'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--t);
}

/* Wordmark — big, distinctive, brand-gradient */
.nav__logo > span:not(.nav__logo-mark) {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -.035em;
  line-height: 1;
  background: linear-gradient(120deg, #0E7490 0%, #0891B2 35%, #06B6D4 70%, #22D3EE 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
  transition: filter var(--t);
}
.nav__logo:hover > span:not(.nav__logo-mark) {
  filter: brightness(1.08) saturate(1.1);
}
@media (max-width: 880px) {
  .nav__logo > span:not(.nav__logo-mark) { font-size: 1.2rem; }
}

/* ----- Nav links with sliding underline ----- */
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__link {
  display: inline-flex; align-items: center;
  color: var(--text-2); font-weight: 500; font-size: .92rem;
  padding: 9px 14px; border-radius: 999px;
  position: relative;
  transition: color var(--t-fast);
}
.nav__link:not(.nav__link--cta)::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t);
}
.nav__link:not(.nav__link--cta):hover { color: var(--brand-700); }
.nav__link:not(.nav__link--cta):hover::after { transform: scaleX(1); }

.nav__link--cta {
  background: var(--gradient-brand);
  color: #fff !important;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 16px -4px rgba(6, 182, 212, .55);
  display: inline-flex; align-items: center;
  margin-left: 6px;
}
.nav__link--cta::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M12 5l7 7-7 7'/></svg>");
  background-size: contain; background-repeat: no-repeat; background-position: center;
  transition: transform var(--t);
}
.nav__link--cta:hover { color: #fff !important; transform: translateY(-1px); box-shadow: 0 12px 28px -6px rgba(6, 182, 212, .65); }
.nav__link--cta:hover::after { transform: translateX(3px); }

/* ----- Mobile toggle ----- */
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-right: 4px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav { height: 64px; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute; top: calc(100% + 6px); left: 12px; right: 12px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    flex-direction: column; align-items: stretch;
    padding: 12px; gap: 2px;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform var(--t), opacity var(--t);
  }
  .nav__menu.is-active { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 12px 16px; font-size: .98rem; border-radius: 12px; }
  .nav__link:not(.nav__link--cta)::after { display: none; }
  .nav__link:not(.nav__link--cta):hover { background: var(--brand-50); }
  .nav__link--cta { justify-content: center; margin: 6px 0 0; padding: 14px 18px; border-radius: 12px; }
  .nav__logo-mark { width: 36px; height: 36px; }
}

/* Hero */
.hero {
  padding: 56px 0 64px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(6,182,212,.15), transparent 60%),
    radial-gradient(700px 400px at 5% 110%, rgba(34,211,238,.10), transparent 60%);
  pointer-events: none;
}
.hero__container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--brand-200);
  border-radius: 999px;
  color: var(--brand-700);
  font-weight: 600; font-size: .82rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}
.hero__badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16,185,129,.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,.08); }
}

.hero__title { margin-bottom: 20px; }
.hero__description {
  font-size: 1.12rem; color: var(--text-2);
  margin-bottom: 28px; max-width: 540px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 540px;
}
.hero__stat { text-align: left; }
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--brand-700);
  display: block; line-height: 1;
}
.hero__stat-label {
  font-size: .82rem; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .04em;
  margin-top: 6px; display: block;
}

.hero__visual { position: relative; }
.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(-1deg);
  transition: transform var(--t);
}
.hero__card:hover { transform: rotate(0); }
.hero__card-bar { display: flex; gap: 6px; margin-bottom: 20px; }
.hero__card-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.hero__card-bar span:nth-child(1) { background: #FF5F57; }
.hero__card-bar span:nth-child(2) { background: #FEBC2E; }
.hero__card-bar span:nth-child(3) { background: #28C840; }

.hero__channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero__channel {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  background: var(--bg-alt);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; color: var(--text-2);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
  position: relative; overflow: hidden;
}
.hero__channel::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,182,212,.06), transparent 60%);
}
.hero__channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hero__channel--live { background: var(--gradient-brand); color: #fff; border-color: transparent; }
.hero__channel--live::after {
  content: 'LIVE';
  position: absolute; top: 8px; right: 8px;
  background: var(--danger); color: #fff;
  font-size: .55rem; padding: 2px 6px; border-radius: 3px;
  font-weight: 800; letter-spacing: .08em;
}

.hero__caption {
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border);
  font-size: .82rem; color: var(--text-3);
}
.hero__caption strong { color: var(--text); font-weight: 600; }

@media (max-width: 880px) {
  .hero__container { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* Logos / trust row */
.trust-row {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-row__label {
  text-align: center;
  color: var(--text-3);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.trust-row__grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 36px 48px;
}
.trust-row__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-3);
  opacity: .8;
  letter-spacing: -.02em;
  transition: opacity var(--t), color var(--t);
}
.trust-row__item:hover { opacity: 1; color: var(--text-2); }

/* Features */
.features { background: var(--surface); }
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(6,182,212,.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--brand-50);
  border-radius: 12px;
  color: var(--brand-700);
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__title { margin-bottom: 8px; font-size: 1.1rem; }
.feature-card__text { color: var(--text-3); font-size: .95rem; }

@media (max-width: 880px) {
  .features__grid { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1080px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Trust / split */
.split { background: var(--bg); }
.split__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.split__list { margin: 22px 0 28px; list-style: none; display: grid; gap: 12px; }
.split__list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-2); font-size: 1rem;
}
.split__list li::before {
  content: ''; flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230891B2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
  margin-top: 1px;
}
.split__visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.split__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.split__stat {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.split__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand-700);
  margin-bottom: 4px;
}
.split__stat span { font-size: .82rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 880px) {
  .split__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Pricing */
.pricing { background: var(--bg); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 940px;
}

/* Connection toggle (segmented control) */
.pricing__toggle-wrap { display: flex; justify-content: center; margin: 0 auto 36px; }
.pricing__toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
  position: relative;
}
.pricing__toggle-btn {
  border: 0; background: transparent; cursor: pointer;
  padding: 10px 24px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 600; font-size: .92rem;
  color: var(--text-3);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--t), background var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.pricing__toggle-btn:hover { color: var(--text); }
.pricing__toggle-btn.is-active {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.pricing__toggle-btn .conn-dots { display: inline-flex; gap: 3px; }
.pricing__toggle-btn .conn-dots i {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; display: block;
}
.pricing__panel[hidden] { display: none; }
@media (max-width: 560px) {
  .pricing__toggle-btn { padding: 10px 16px; font-size: .85rem; }
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.price-card--featured {
  background: linear-gradient(180deg, var(--surface), var(--brand-50));
  border-color: var(--brand-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price-card--featured:hover { transform: translateY(-12px); }
.price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: var(--shadow-brand);
}
.price-card__name {
  font-size: 1rem; font-weight: 600;
  color: var(--text-3); margin-bottom: 12px;
  font-family: var(--font-sans);
  letter-spacing: .02em;
}
.price-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-card__currency { font-size: 1.2rem; color: var(--text-2); font-weight: 600; }
.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.price-card__period { color: var(--text-3); font-size: .9rem; margin-left: 4px; }
.price-card__was { color: var(--text-muted); font-size: .85rem; text-decoration: line-through; margin-bottom: 18px; display: block; }
.price-card__features {
  list-style: none;
  display: grid; gap: 9px;
  margin: 18px 0 24px;
  flex-grow: 1;
}
.price-card__features li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-2);
  font-size: .92rem;
}
.price-card__features li::before {
  content: ''; flex-shrink: 0;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230891B2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
  margin-top: 2px;
}
.price-card__save {
  display: inline-block;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .72rem; font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 1080px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 560px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

/* Steps */
.steps { background: var(--surface); }
.steps__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: left;
  transition: transform var(--t), box-shadow var(--t);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step__number {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; margin-bottom: 12px; line-height: 1;
}
.step__title { font-size: 1.15rem; margin-bottom: 8px; }
.step__text { color: var(--text-3); font-size: .94rem; }

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

/* Devices */
.devices { background: var(--bg); }
.devices__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.device {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.device:hover { transform: translateY(-3px); border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.device__icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  display: grid; place-items: center;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 10px;
}
.device__name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
}

@media (max-width: 880px) {
  .devices__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .devices__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Testimonials */
.testimonials { background: var(--surface); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; }
.testimonial__text { color: var(--text-2); font-size: .96rem; line-height: 1.6; flex-grow: 1; }
.testimonial__author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-family: var(--font-display);
}
.testimonial__name { font-weight: 600; font-size: .92rem; color: var(--text); }
.testimonial__meta { font-size: .8rem; color: var(--text-3); }
@media (max-width: 880px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { background: var(--bg); }
.faq__grid { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t);
  overflow: hidden;
}
.faq__item[open] { border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 600; font-size: 1rem;
  color: var(--text);
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon {
  width: 20px; height: 20px;
  color: var(--brand-700);
  flex-shrink: 0;
  transition: transform var(--t);
}
.faq__item[open] .faq__icon { transform: rotate(180deg); }
.faq__answer { padding: 0 24px 22px; color: var(--text-3); font-size: .96rem; line-height: 1.7; }
.faq__answer p + p { margin-top: 10px; }

/* CTA */
.cta {
  background: var(--gradient-brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 10% 100%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(800px 400px at 90% 0%, rgba(255,255,255,.14), transparent 60%);
  pointer-events: none;
}
.cta__content { text-align: center; max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.cta__title { color: #fff; margin-bottom: 16px; }
.cta__title .gradient-text {
  background: linear-gradient(135deg, #fff, #ECFEFF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta__text { color: rgba(255,255,255,.92); font-size: 1.1rem; margin-bottom: 28px; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 16px; }
.cta__note { color: rgba(255,255,255,.78); font-size: .9rem; }
.cta .btn--outline { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.cta .btn--outline:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.5); }

/* Footer */
.footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 60px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand { color: #94A3B8; font-size: .92rem; }
.footer__brand .nav__logo { color: #fff; margin-bottom: 14px; }
.footer__brand .nav__logo:hover { color: var(--brand-300); }
.footer__brand p { color: #94A3B8; font-size: .9rem; margin-bottom: 16px; max-width: 320px; }
.footer__title { color: #F1F5F9; font-family: var(--font-display); font-size: .92rem; font-weight: 700; margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; }
.footer__menu { display: grid; gap: 10px; list-style: none; }
.footer__menu a { color: #94A3B8; font-size: .92rem; transition: color var(--t-fast); }
.footer__menu a:hover { color: var(--brand-300); }
.footer__contact { display: grid; gap: 10px; }
.footer__contact a { color: #94A3B8; font-size: .92rem; }
.footer__contact a:hover { color: var(--brand-300); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid #1E293B;
  font-size: .85rem;
  color: #64748B;
}
.footer__bottom a { color: #64748B; }
.footer__bottom a:hover { color: var(--brand-300); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Page header (for sub-pages) */
.page-header {
  padding: 80px 0 50px;
  background: var(--gradient-soft);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 80% 100%, rgba(6,182,212,.12), transparent 60%);
}
.page-header__inner { position: relative; z-index: 1; text-align: center; max-width: 780px; margin: 0 auto; }
.page-header__breadcrumb {
  display: inline-flex; gap: 6px;
  font-size: .85rem; color: var(--text-3);
  margin-bottom: 14px;
}
.page-header__breadcrumb a { color: var(--brand-700); }
.page-header__title { margin-bottom: 14px; }
.page-header__lede { color: var(--text-3); font-size: 1.06rem; }

/* Article content (legal pages, guides) */
.prose { max-width: 760px; margin: 0 auto; padding: 60px 0 80px; }
.prose h2 { margin: 40px 0 14px; font-size: 1.5rem; }
.prose h3 { margin: 28px 0 10px; font-size: 1.15rem; }
.prose p { margin-bottom: 14px; color: var(--text-2); }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--text-2); }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--brand-700); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }

/* Form */
.form { display: grid; gap: 16px; max-width: 540px; margin: 0 auto; }
.form__field { display: grid; gap: 6px; text-align: left; }
.form__label { font-size: .88rem; font-weight: 600; color: var(--text-2); }
.form__input, .form__select, .form__textarea {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-sans); font-size: 1rem;
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(6,182,212,.15);
}
.form__textarea { min-height: 130px; resize: vertical; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Trial card */
.trial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.trial-card__icon {
  width: 64px; height: 64px;
  background: var(--gradient-brand);
  border-radius: 18px;
  display: grid; place-items: center;
  color: #fff; margin: 0 auto 18px;
  box-shadow: var(--shadow-brand);
}
.trial-card h2 { margin-bottom: 12px; }
.trial-card p { margin-bottom: 24px; color: var(--text-2); }

/* Compare table */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: .94rem;
}
.compare-table th, .compare-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg-alt);
  font-weight: 600; color: var(--text-2);
  font-size: .88rem; letter-spacing: .02em;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td.tick { color: var(--brand-700); font-weight: 600; }
.compare-table .featured { background: var(--brand-50); color: var(--brand-800); font-weight: 600; }

@media (max-width: 720px) {
  .compare-table-wrap { overflow-x: auto; }
}

/* Channel badges */
.channels-row {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 24px 0;
}
.channels-track {
  display: flex; gap: 14px;
  width: max-content;
  animation: scroll-x 40s linear infinite;
}
.channel-badge {
  background: var(--bg-alt);
  color: var(--text-2);
  font-family: var(--font-display); font-weight: 600;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--border);
  white-space: nowrap;
  font-size: .92rem;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* Particles canvas (lightweight, GPU friendly) */
.particles-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}
.hero > .container,
.cta > .container { position: relative; z-index: 2; }

/* Decorative grid background */
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(8,145,178,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,145,178,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Hero illustration (replaces channel grid card) */
.hero__illustration {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(8, 145, 178, .25));
}
.hero__illustration svg { width: 100%; height: auto; display: block; }
.hero__illustration::after {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(6, 182, 212, .35), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

/* Floating orbs (decorative) */
.orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .5;
  animation: orb-float 18s infinite ease-in-out;
}
.orb--1 { width: 320px; height: 320px; top: -80px; left: -80px; background: radial-gradient(circle, #67E8F9, transparent 70%); }
.orb--2 { width: 260px; height: 260px; bottom: -60px; right: -60px; background: radial-gradient(circle, #06B6D4, transparent 70%); animation-delay: -6s; animation-duration: 22s; }
.orb--3 { width: 180px; height: 180px; top: 50%; right: 30%; background: radial-gradient(circle, #A5F3FC, transparent 70%); animation-delay: -3s; animation-duration: 26s; opacity: .35; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.05); }
  66%      { transform: translate(-30px, 30px) scale(.95); }
}

/* Section image (SVG illustrations beside content) */
.illus {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.illus svg { width: 100%; height: auto; display: block; }
.illus--inline { background: transparent; border: 0; padding: 0; box-shadow: none; }

/* Mini feature icons inline list */
.checklist { list-style: none; display: grid; gap: 10px; margin: 16px 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-2); font-size: .95rem;
}
.checklist li::before {
  content: ''; flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230891B2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
  margin-top: 2px;
}

/* Tighten cards slightly */
.feature-card { padding: 22px; }
.feature-card__title { margin-bottom: 6px; font-size: 1.05rem; }
.feature-card__text { font-size: .92rem; line-height: 1.55; }

/* Stat strip (above-fold trust) */
.stat-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.stat-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 28px 0;
}
.stat-strip__cell { text-align: center; }
.stat-strip__num {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block; line-height: 1;
}
.stat-strip__label {
  display: block; margin-top: 6px;
  font-size: .78rem; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .05em;
}
@media (max-width: 640px) {
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* Content blocks (long-form) */
.content-block {
  max-width: 880px; margin: 0 auto;
}
.content-block h2 { text-align: center; margin-bottom: 12px; }
.content-block > p {
  text-align: center; color: var(--text-3);
  font-size: 1rem; margin-bottom: 24px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.content-block__columns {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 24px;
}
.content-block__columns p { font-size: .96rem; }
@media (max-width: 720px) {
  .content-block__columns { grid-template-columns: 1fr; }
}

/* Icon tile (for content sections) */
.icon-tile {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Decorative dots row (TV mockup style) */
.dots-row { display: flex; gap: 5px; margin-bottom: 12px; }
.dots-row span { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
.dots-row span:nth-child(1) { background: #FF5F57; }
.dots-row span:nth-child(2) { background: #FEBC2E; }
.dots-row span:nth-child(3) { background: #28C840; }

/* Live tag */
.live-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(239, 68, 68, .12); color: #DC2626;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase;
}
.live-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #DC2626; animation: live-pulse 1.6s infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .particles-canvas { display: none; }
  .orb { animation: none; }
}
