:root {
  color-scheme: dark;
  --bg: #07080a;
  --panel: #101318;
  --panel-2: #171b22;
  --text: #f7f8fb;
  --muted: #a8b0bd;
  --soft: #d7dce5;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #ec2f8c;
  --blue: #179df2;
  --green: #48d06d;
  --yellow: #ffd451;
  --max: 1180px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(236, 47, 140, 0.18), transparent 30%),
    radial-gradient(circle at 85% 14%, rgba(23, 157, 242, 0.16), transparent 32%),
    linear-gradient(180deg, #07080a 0%, #0d0f13 48%, #07080a 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 12, 16, 0.68);
}

nav a {
  padding: 9px 12px;
  color: var(--soft);
  text-decoration: none;
  font-size: 0.88rem;
  border-radius: 6px;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 22px 0 64px;
  border-top: 1px solid var(--line);
}

.trust-strip span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 54px;
  width: min(100% - 36px, var(--max));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 44px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.development-note {
  max-width: 690px;
  margin: 18px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 212, 81, 0.34);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 212, 81, 0.08);
  line-height: 1.55;
}

.development-note strong {
  color: var(--yellow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  color: white;
  box-shadow: 0 18px 38px rgba(23, 157, 242, 0.22);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 0;
}

.hero-stats div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-stats dt {
  margin-bottom: 8px;
  font-weight: 900;
  color: #fff;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.product-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.54);
}

.visual-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.visual-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.visual-topbar span:nth-child(2) {
  background: var(--yellow);
}

.visual-topbar span:nth-child(3) {
  background: var(--green);
}

.visual-topbar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 540px;
}

.visual-grid aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.56);
}

.visual-grid aside img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
}

.visual-grid aside b {
  margin-bottom: 8px;
}

.visual-grid aside span {
  padding: 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.visual-grid aside .active {
  color: white;
  background: linear-gradient(90deg, rgba(236, 47, 140, 0.52), rgba(23, 157, 242, 0.38));
}

.screen {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 14px;
  padding: 18px;
}

.player {
  display: grid;
  place-items: center;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 157, 242, 0.28), rgba(236, 47, 140, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.28));
}

.play-dot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.play-dot::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 28px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid white;
}

.player p {
  margin: 10px 0 0;
  color: white;
  font-weight: 800;
}

.guide {
  padding: 16px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.guide span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
}

.guide strong {
  display: block;
  margin-top: 6px;
}

.progress {
  height: 7px;
  margin-top: 13px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.progress i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tiles span {
  padding: 18px 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}

.logo-band,
.section,
.workflow,
.install {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.logo-band {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0 82px;
  border-top: 1px solid var(--line);
}

.logo-band img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.logo-band p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.1rem;
  font-style: italic;
}

.logo-band strong {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.demo-section {
  padding-top: 40px;
}

.demo-shell {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 10%, rgba(236, 47, 140, 0.16), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(23, 157, 242, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.demo-sidebar {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.demo-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--soft);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.demo-tab.active,
.demo-tab:hover {
  color: white;
  border-color: rgba(72, 208, 109, 0.48);
  background: linear-gradient(90deg, rgba(236, 47, 140, 0.42), rgba(23, 157, 242, 0.36));
}

.demo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  padding: 18px;
}

.demo-browser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0f14;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.demo-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.demo-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.demo-bar span:nth-child(2) {
  background: var(--yellow);
}

.demo-bar span:nth-child(3) {
  background: var(--green);
}

.demo-bar b {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.demo-app {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  min-height: 520px;
}

.demo-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.demo-nav img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.demo-nav button {
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  font: inherit;
  cursor: default;
}

.demo-nav .on {
  color: white;
  background: rgba(23, 157, 242, 0.28);
  border-color: rgba(23, 157, 242, 0.24);
}

.demo-content {
  padding: 18px;
  min-width: 0;
}

.demo-panel {
  display: none;
}

.demo-panel.active {
  display: block;
}

.demo-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.demo-title span {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-title strong {
  font-size: clamp(1.1rem, 2vw, 1.65rem);
}

.tv-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 14px;
}

.tv-player {
  display: grid;
  place-items: center;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(23, 157, 242, 0.28), rgba(236, 47, 140, 0.22)),
    #121722;
}

.tv-player i {
  width: 70px;
  height: 70px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  position: relative;
}

.tv-player i::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 28px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid white;
}

.tv-player b,
.tv-player small {
  display: block;
}

.tv-player small {
  color: var(--muted);
}

.channel-list,
.epg-list,
.record-grid,
.library-grid,
.user-cards,
.settings-list {
  display: grid;
  gap: 10px;
}

.channel-list button,
.epg-list article,
.record-grid article,
.library-grid article,
.user-cards article,
.settings-list p {
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
}

.channel-list button {
  text-align: left;
  font: inherit;
}

.channel-list .selected {
  color: white;
  border-color: rgba(72, 208, 109, 0.45);
  background: rgba(72, 208, 109, 0.14);
}

.epg-list article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  align-items: center;
}

.epg-list i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.epg-list time {
  color: var(--yellow);
  font-weight: 900;
}

.epg-list span,
.record-grid span,
.library-grid span,
.user-cards span,
.settings-list span {
  color: var(--muted);
}

.record-grid {
  grid-template-columns: repeat(3, 1fr);
}

.record-grid article i {
  display: block;
  width: 36px;
  height: 36px;
  margin-top: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.library-grid,
.user-cards {
  grid-template-columns: repeat(3, 1fr);
}

.settings-list p {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  margin: 0;
}

.demo-notes {
  align-self: stretch;
  padding: 22px;
  border: 1px solid rgba(72, 208, 109, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(72, 208, 109, 0.12), transparent),
    rgba(0, 0, 0, 0.18);
}

.demo-notes h3 {
  font-size: 1.5rem;
}

.demo-notes p,
.demo-notes li {
  color: var(--soft);
  line-height: 1.65;
}

.demo-notes ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.legal-callout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 42px;
  padding: 54px;
  border: 1px solid rgba(255, 212, 81, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 212, 81, 0.12), rgba(23, 157, 242, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.callout-copy p {
  margin-top: 0;
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.provider-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.provider-roadmap span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(0, 0, 0, 0.18);
  font-weight: 800;
}

.provider-roadmap .ready {
  color: #071108;
  border-color: transparent;
  background: var(--green);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.preview-card {
  min-height: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.preview-card.wide-card {
  grid-row: span 2;
}

.preview-card h3 {
  margin-top: 20px;
}

.preview-card p {
  color: var(--muted);
  line-height: 1.65;
}

.preview-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080b0f;
}

.preview-header {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.preview-header span {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.preview-header .active {
  color: white;
  background: rgba(23, 157, 242, 0.28);
}

.preview-body {
  padding: 14px;
}

.provider-chips,
.mini-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.provider-chips b,
.mini-toolbar span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

.provider-chips .legal {
  color: #071108;
  border-color: transparent;
  background: var(--green);
}

.mini-toolbar span {
  color: var(--yellow);
}

.channel-preview {
  display: grid;
  gap: 8px;
}

.channel-preview p {
  display: grid;
  grid-template-columns: 110px 1fr 28px;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
}

.channel-preview strong {
  color: white;
}

.channel-preview em {
  color: var(--muted);
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-preview i {
  color: var(--pink);
  font-style: normal;
}

.provider-form {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(23, 157, 242, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 157, 242, 0.12), transparent),
    #0b0f14;
}

.provider-form.accent {
  border-color: rgba(236, 47, 140, 0.28);
  background:
    linear-gradient(135deg, rgba(236, 47, 140, 0.12), transparent),
    #0b0f14;
}

.provider-form > span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.provider-form label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px;
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.provider-form b {
  color: var(--soft);
  text-align: right;
}

.provider-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.provider-detail-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.provider-detail-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.provider-detail-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.provider-detail-grid span {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  color: #071108;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.feature-grid article,
.plan {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.048);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: #08100b;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-grid article:nth-child(2) .icon,
.feature-grid article:nth-child(5) .icon,
.feature-grid article:nth-child(8) .icon {
  background: var(--pink);
  color: #fff;
}

.feature-grid article:nth-child(3) .icon,
.feature-grid article:nth-child(6) .icon,
.feature-grid article:nth-child(9) .icon {
  background: var(--blue);
  color: #fff;
}

.feature-grid p,
.audience-list p,
.install p,
.plan-intro {
  color: var(--muted);
  line-height: 1.65;
}

.workflow {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 40px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.workflow li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.workflow li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  color: #111;
  font-weight: 900;
}

.workflow strong,
.workflow span {
  grid-column: 2;
}

.workflow strong {
  margin-top: -52px;
  font-size: 1.05rem;
}

.workflow span {
  color: var(--muted);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 42px;
  align-items: start;
}

.audience-list {
  display: grid;
  gap: 12px;
}

.audience-list p {
  margin: 0;
  padding: 20px;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.045);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.comparison > div {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

.comparison > div:last-child {
  border-bottom: 0;
}

.comparison span,
.comparison b {
  padding: 17px 18px;
}

.comparison span {
  color: white;
}

.comparison b {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
}

.comparison .compare-head {
  background: linear-gradient(90deg, rgba(236, 47, 140, 0.24), rgba(23, 157, 242, 0.2));
}

.comparison .compare-head span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.roadmap-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.roadmap-grid b {
  display: block;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 1.25rem;
}

.roadmap-grid span {
  color: var(--soft);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: white;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--soft);
  line-height: 1.7;
}

.plan {
  position: relative;
  min-height: auto;
  background: var(--panel);
}

.plan.paid {
  border-color: rgba(72, 208, 109, 0.5);
  background:
    linear-gradient(145deg, rgba(72, 208, 109, 0.12), transparent 38%),
    var(--panel);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--green);
  color: #071108;
  font-size: 0.74rem;
  font-weight: 900;
}

.plan h3 {
  font-size: 2rem;
}

.plan ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 26px;
  color: var(--soft);
  line-height: 1.45;
}

.plan li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
}

.paid li::before {
  background: var(--green);
}

.install {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(236, 47, 140, 0.13), rgba(23, 157, 242, 0.1)),
    var(--panel);
}

.install div {
  max-width: 760px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 26px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--yellow);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .workflow,
  .split,
  .demo-stage,
  .legal-callout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-visual {
    max-width: 640px;
  }

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

  .demo-app,
  .tv-layout {
    grid-template-columns: 1fr;
  }

  .demo-nav {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .record-grid,
  .library-grid,
  .user-cards,
  .roadmap-grid,
  .preview-grid,
  .provider-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: clamp(2.35rem, 10vw, 2.95rem);
    line-height: 1.08;
  }

  .hero-stats,
  .feature-grid,
  .pricing,
  .tiles {
    grid-template-columns: 1fr;
  }

  .demo-stage {
    padding: 10px;
  }

  .demo-content {
    padding: 12px;
  }

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

  .epg-list article,
  .settings-list p,
  .comparison > div,
  .channel-preview p {
    grid-template-columns: 1fr;
  }

  .comparison span,
  .comparison b {
    padding: 13px 14px;
  }

  .legal-callout {
    padding: 24px;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-grid aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visual-grid aside img {
    width: 78px;
    height: 78px;
  }

  .logo-band,
  .install,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .install {
    padding: 24px;
  }

  .workflow li {
    grid-template-columns: 48px 1fr;
  }

  .workflow strong {
    margin-top: -48px;
  }
}
