:root {
  --font-display: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ink: #e8eef4;
  --muted: #9aabbc;
  --faint: #6e8094;
  --bg: #0b1220;
  --panel: #121a2b;
  --border: #1e2a3c;
  --border-strong: #2a3a52;
  --accent: #14b8a6;
  --accent-hover: #2dd4bf;
  --accent-soft: rgba(20, 184, 166, 0.14);
  --accent-glow: rgba(20, 184, 166, 0.28);
  --brand-light: #7dd3c0;
  --success: #14b8a6;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius: 10px;
  --radius-lg: 16px;
  --wrap: 1100px;
  --nav-h: 64px;
  color-scheme: dark;
}

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

html {
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

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

button,
input {
  font: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* —— Nav —— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.is-solid {
  background: rgba(11, 18, 32, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand:hover {
  color: #fff;
  text-decoration: none;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.nav-brand-text {
  display: inline-flex;
  letter-spacing: -0.03em;
}

.nav-brand-accent {
  color: var(--brand-light);
}

.site-nav.is-solid .nav-brand,
.site-nav.menu-open .nav-brand {
  color: var(--ink);
}

.site-nav.is-solid .nav-brand:hover,
.site-nav.menu-open .nav-brand:hover {
  color: var(--ink);
}

.site-nav.is-solid .nav-brand-accent,
.site-nav.menu-open .nav-brand-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  white-space: nowrap;
}

.site-nav.is-solid .nav-links a,
.site-nav.menu-open .nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-nav.is-solid .nav-links a:hover,
.site-nav.menu-open .nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.nav-cta {
  margin-left: 6px;
  background: var(--accent);
  color: #fff !important;
  padding: 8px 14px;
}

.nav-links a.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 8px;
}

.site-nav.is-solid .nav-toggle,
.site-nav.menu-open .nav-toggle {
  color: var(--ink);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transform: scale(1.05);
  animation: hero-drift 20s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 28, 48, 0.55) 0%, rgba(8, 28, 48, 0.28) 42%, rgba(8, 28, 48, 0.92) 100%),
    linear-gradient(105deg, rgba(8, 28, 48, 0.82) 0%, rgba(8, 28, 48, 0.35) 48%, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 20px 72px;
  text-align: left;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0 0 22px;
  animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-brand-mark {
  color: #fff;
}

.hero-brand-accent {
  color: var(--brand-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 16px;
  max-width: 14ch;
  animation: hero-rise 0.85s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-em {
  color: var(--brand-light);
  font-weight: 700;
}

.hero-copy {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
  margin: 0 0 32px;
  line-height: 1.55;
  animation: hero-rise 0.9s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  animation: hero-rise 0.95s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions .lp-btn-primary {
  min-width: 168px;
  height: 52px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.hero-actions .lp-btn-ghost {
  height: 52px;
  min-width: 140px;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions .lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

/* —— Buttons —— */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
  line-height: 1;
}

.lp-btn:hover {
  text-decoration: none;
}

.lp-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}

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

.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

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

.lp-btn-crypto {
  width: 100%;
  height: 44px;
  background: #0a2540;
  color: #fff;
  border-color: #143352;
  font-size: 14px;
}

.lp-btn-crypto:hover {
  background: #143352;
  color: #fff;
  border-color: var(--accent);
}

.lp-btn-card {
  width: 100%;
  height: 44px;
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
  font-size: 14px;
}

.lp-btn-card:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
  background: var(--accent-soft);
}

.lp-btn-sm {
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

/* —— Sections —— */
.section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 36px;
  max-width: 540px;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-kicker i {
  font-size: 12px;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.55;
}

/* —— Featured —— */
.featured {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 40px;
  overflow: hidden;
}

.featured .section-head {
  margin-bottom: 24px;
}

.movie-slider {
  overflow: hidden;
  margin: 0 -4px;
}

.movie-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 8px 20px 16px;
  animation: marquee 50s linear infinite;
}

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

.movie-track.is-static {
  animation: none;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.movie-card {
  flex: 0 0 140px;
  width: 140px;
}

.movie-poster {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #1a2438;
  box-shadow: var(--shadow);
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: transform 0.4s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.04);
}

.movie-info {
  padding-top: 8px;
}

.movie-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-year {
  font-size: 12px;
  color: var(--faint);
  margin-top: 2px;
}

.tmdb-credit {
  margin-top: 4px;
  font-size: 12px;
  color: var(--faint);
}

.tmdb-credit a {
  color: var(--faint);
  text-decoration: underline;
}

.loading-state {
  padding: 32px 20px;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 12px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

/* —— Pricing —— */
/* —— Connections selector —— */
.connections-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto 36px;
  max-width: 420px;
  text-align: center;
}

.connections-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.connections-label i {
  color: var(--accent);
  font-size: 14px;
}

.connections-pills {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.conn-pill {
  width: 44px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

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

.conn-pill.is-active {
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--border-strong), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.conn-pill:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.connections-hint {
  font-size: 12px;
  color: var(--faint);
  line-height: 1.45;
  max-width: 34ch;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding-top: 8px;
}

.plan {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

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

.plan.is-popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  padding-top: 36px;
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
}

.plan-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.plan.is-popular .plan-icon {
  background: var(--accent);
  color: #fff;
}

.plan-name {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 4px;
}

.plan-price .amount {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-price .period {
  font-size: 14px;
  color: var(--faint);
  font-weight: 500;
}

.plan-month {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.plan-features i {
  width: 18px;
  color: var(--accent);
  margin-top: 2px;
  font-size: 13px;
  flex-shrink: 0;
  text-align: center;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-actions .lp-btn {
  text-decoration: none;
}

.plan-actions a.lp-btn-crypto {
  color: #fff !important;
}

.plan-actions a.lp-btn-card {
  color: var(--ink);
}

.plan-actions a.lp-btn-card:hover {
  color: var(--accent-hover);
}

/* —— Channels —— */
.channels {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.channel-search {
  max-width: 560px;
  margin: 0 auto 32px;
}

.search-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: var(--shadow);
}

.search-field {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  margin: 0;
}

.search-row .search-ico {
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: var(--faint);
  font-size: 14px;
  flex-shrink: 0;
}

.search-row input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  font-size: 16px; /* avoids iOS zoom-on-focus */
  color: var(--ink);
  outline: none;
}

.search-row input::placeholder {
  color: var(--faint);
}

.search-row button {
  border: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
}

.search-row button:hover {
  background: var(--accent-hover);
}

.search-hint {
  font-size: 12px;
  color: var(--faint);
  margin-top: 8px;
  text-align: center;
}

.search-results {
  margin-top: 14px;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}

.results-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.results-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.results-list mark {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0 2px;
  border-radius: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.channel-category {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  min-width: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.category-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.channel-category .category-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.channel-tag {
  display: inline-block;
  padding: 5px 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* —— Platforms —— */
.platforms-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.platform-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.platform-group-title i {
  color: var(--accent);
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-align: left;
  min-width: 0;
}

.platform-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.platform-info h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.platform-info p {
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 8px;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.platform-tags .tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 999px;
}

.platform-btn {
  margin-top: auto;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.platform-card:hover .platform-btn {
  background: var(--accent-hover);
}

/* —— Footer —— */
.site-footer {
  background: #070d18;
  color: rgba(255, 255, 255, 0.65);
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  border-radius: 7px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

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

.footer-copy {
  font-size: 13px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
}

.footer-contact {
  width: 100%;
  margin-top: 8px;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.footer-contact-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 14px;
  max-width: 42ch;
  line-height: 1.5;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.15s, border-color 0.15s;
}

.footer-contact-btn:hover {
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(20, 184, 166, 0.45);
  color: #fff !important;
}

.footer-contact-btn i {
  color: var(--brand-light);
}

/* —— Custom modal —— */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lp-modal.is-open {
  display: flex;
}

.lp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.lp-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.lp-modal-dialog h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.lp-modal-dialog p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.lp-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-modal-actions .lp-btn-card {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}

.lp-modal-actions .lp-btn-card:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.lp-modal-actions .lp-btn-primary {
  color: #fff !important;
  background: var(--accent);
}

.lp-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.lp-modal-close:hover {
  color: var(--ink);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
}

body.modal-open {
  overflow: hidden;
}

body.nav-menu-open {
  overflow: hidden;
}

/* —— Motion —— */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.2%, -0.8%, 0); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand,
  .hero-title,
  .hero-copy,
  .hero-actions,
  .hero-media img,
  .movie-track {
    animation: none !important;
  }
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-h: 56px;
  }

  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav.menu-open {
    background: var(--bg);
    border-bottom-color: var(--border);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 12px 14px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
    padding: 13px 14px;
    color: var(--muted);
    font-size: 15px;
  }

  .nav-links a.nav-cta {
    margin-left: 0;
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    animation: none;
    transform: scale(1.02);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 28, 48, 0.72) 0%, rgba(8, 28, 48, 0.45) 38%, rgba(8, 28, 48, 0.96) 100%),
      linear-gradient(105deg, rgba(8, 28, 48, 0.88) 0%, rgba(8, 28, 48, 0.5) 55%, transparent 85%);
  }

  .hero-content {
    padding: calc(var(--nav-h) + 36px) 16px 48px;
  }

  .hero-brand {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    margin-bottom: 14px;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    margin-bottom: 12px;
  }

  .hero-copy {
    max-width: none;
    font-size: 0.98rem;
    margin-bottom: 22px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .lp-btn-primary,
  .hero-actions .lp-btn-ghost {
    min-width: 0;
    height: 48px;
    flex: 1 1 auto;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .section-sub {
    font-size: 0.95rem;
  }

  .featured {
    padding: 40px 0 28px;
  }

  .movie-card {
    flex: 0 0 112px;
    width: 112px;
  }

  .movie-track {
    gap: 10px;
    padding: 6px 16px 12px;
  }

  .connections-control {
    margin-bottom: 28px;
    max-width: none;
    width: 100%;
    padding: 0 2px;
  }

  .connections-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    border-radius: 14px;
    gap: 4px;
  }

  .conn-pill {
    flex: 1 1 44px;
    min-width: 44px;
    max-width: 56px;
  }

  .connections-hint {
    max-width: 34ch;
    line-height: 1.45;
    padding: 0 8px;
  }

  .plans {
    max-width: none;
    gap: 14px;
  }

  .plan {
    padding: 22px 18px 18px;
  }

  .plan.is-popular {
    padding-top: 32px;
  }

  .plan-price .amount {
    font-size: 2rem;
  }

  .plan-actions .lp-btn {
    height: 46px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .platform-cards {
    grid-template-columns: 1fr;
  }

  .channel-search {
    max-width: none;
    margin-bottom: 28px;
  }

  .search-row {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  .search-field {
    min-height: 44px;
    border-radius: 8px;
    background: var(--panel);
    border: 1px solid var(--border);
  }

  .search-row input {
    padding: 12px 12px 12px 4px;
  }

  .search-row button {
    width: 100%;
    height: 44px;
    padding: 0;
  }

  .search-hint {
    font-size: 12px;
    line-height: 1.4;
    padding: 0 4px;
  }

  .search-results {
    padding: 12px;
  }

  .results-list {
    gap: 6px;
  }

  .results-list .channel-tag {
    font-size: 12px;
    padding: 6px 10px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .channel-category {
    padding: 14px;
  }

  .channel-list {
    gap: 6px;
  }

  .channel-tag {
    font-size: 12px;
    padding: 6px 10px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    gap: 10px 14px;
  }

  .footer-copy {
    padding-top: 14px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: calc(var(--nav-h) + 28px) 14px 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .conn-pill {
    height: 38px;
    font-size: 14px;
  }

  .movie-card {
    flex: 0 0 100px;
    width: 100px;
  }

  .movie-title {
    font-size: 12px;
  }

  .plan-features li {
    font-size: 13px;
  }
}