:root {
  --bg: #050b18;
  --bg-2: #071e3d;
  --card: #101827;
  --card-2: #14233a;
  --line: #263b5e;
  --text: #ffffff;
  --muted: #aab4c8;
  --blue: #1e88ff;
  --cyan: #00b8ff;
  --danger: #ff5252;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 136, 255, .22), transparent 32rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 58%, #061020);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 11, 24, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(38, 59, 94, .7);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px rgba(30, 136, 255, .28);
  overflow: hidden;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav-menu { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-menu a:hover { color: var(--text); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--text); border-radius: 999px; }

.hero { position: relative; overflow: hidden; padding: 94px 0 74px; }
.hero-glow {
  position: absolute;
  inset: 20% -20% auto auto;
  width: 420px;
  height: 420px;
  background: rgba(0, 184, 255, .18);
  filter: blur(90px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3 { margin: 0; }
h1 {
  font-size: clamp(44px, 8vw, 82px);
  line-height: .95;
  letter-spacing: 0;
}
h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.08; }
h3 { font-size: 17px; }
.subtitle { font-size: clamp(18px, 2.2vw, 24px); max-width: 680px; margin: 24px 0 14px; color: #d8e4ff; }
.legal-note { max-width: 620px; margin-bottom: 30px; }
.hero-logo {
  width: clamp(92px, 13vw, 138px);
  height: auto;
  display: block;
  margin-bottom: 18px;
  border-radius: 26px;
  box-shadow: 0 22px 56px rgba(0, 184, 255, .22);
}

.hero-actions, .download-card { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: var(--text); box-shadow: 0 16px 40px rgba(30, 136, 255, .25); }
.btn-secondary { border: 1px solid var(--line); background: rgba(16, 24, 39, .72); color: var(--text); }

.device-frame {
  max-width: 430px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(0, 184, 255, .3);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.device-topbar { width: 90px; height: 6px; border-radius: 99px; background: rgba(170,180,200,.4); margin: 8px auto 18px; }
.app-preview { min-height: 500px; border-radius: 24px; background: #07101e; padding: 22px; border: 1px solid rgba(38,59,94,.8); }
.preview-title { font-size: 14px; color: var(--muted); font-weight: 800; margin-bottom: 18px; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.preview-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  aspect-ratio: 1;
  border-radius: 14px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(38, 59, 94, .9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 12px 28px rgba(0,0,0,.2);
}
.preview-tile::before,
.preview-tile::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.preview-tile::before {
  width: 64px;
  height: 64px;
  right: -22px;
  top: -24px;
  background: rgba(255,255,255,.8);
}
.preview-tile::after {
  width: 58px;
  height: 58px;
  left: -24px;
  bottom: -20px;
  background: rgba(0,184,255,.36);
}
.preview-tile .tile-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.9);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(0,0,0,.28);
}
.preview-tile strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 8px 18px rgba(0,0,0,.28);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-sports { background: linear-gradient(145deg, #0f3460, #1e88ff); }
.preview-movies { background: linear-gradient(145deg, #251447, #8b5cf6); }
.preview-music { background: linear-gradient(145deg, #102a43, #00b8ff); }
.preview-live { background: linear-gradient(145deg, #163a2f, #10b981); }
.preview-news { background: linear-gradient(145deg, #2b213a, #f59e0b); }
.preview-kids { background: linear-gradient(145deg, #293462, #ff5e78); }
.preview-radio { background: linear-gradient(145deg, #312e81, #06b6d4); }
.preview-media { background: linear-gradient(145deg, #2d1b69, #db2777); }
.preview-tv { background: linear-gradient(145deg, #1e293b, #14b8a6); }
.preview-stream { background: linear-gradient(145deg, #0b1120, #2563eb); }
.preview-gaming { background: linear-gradient(145deg, #111827, #6366f1); }
.preview-doc { background: linear-gradient(145deg, #10251e, #22c55e); }
.preview-player {
  margin-top: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  background: rgba(30, 136, 255, .12);
  border: 1px solid rgba(30, 136, 255, .32);
}
.play-dot { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.preview-player small { display: block; color: var(--muted); margin-top: 4px; }

.section { padding: 78px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p { max-width: 650px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .screen-card, .disclaimer-card, .download-card, .contact-card, .legal-card {
  border: 1px solid rgba(38, 59, 94, .9);
  background: rgba(16, 24, 39, .76);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.feature-card { padding: 22px; min-height: 180px; transition: transform .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(0, 184, 255, .8); }
.feature-card .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(30, 136, 255, .16);
  color: var(--cyan);
  font-weight: 900;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin: 0; font-size: 14px; }

.disclaimer-card { padding: clamp(28px, 5vw, 46px); border-color: rgba(0,184,255,.35); }
.disclaimer-card p:last-child { margin-bottom: 0; font-size: 17px; }
.screens-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.screen-card { padding: 14px; overflow: hidden; }
.screen-card picture { display: block; }
.screen-image {
  width: 100%;
  aspect-ratio: 9 / 14;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(0,184,255,.38);
  background: #071E3D;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.screen-card h3 { margin: 14px 4px 6px; text-align: center; }
.screen-card p {
  margin: 0 4px 4px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.download-card {
  justify-content: space-between;
  padding: clamp(26px, 5vw, 42px);
  background: linear-gradient(135deg, rgba(30,136,255,.18), rgba(16,24,39,.86));
}
.download-card p { margin-bottom: 0; }
.contact-card { padding: clamp(26px, 5vw, 42px); text-align: center; }
.contact-link { color: var(--cyan); font-weight: 800; }

.site-footer {
  border-top: 1px solid rgba(38,59,94,.8);
  padding: 28px 0;
  background: rgba(5,11,24,.78);
}
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-grid p { margin: 6px 0 0; font-size: 14px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--text); }

.legal-page { padding: 116px 0 70px; }
.legal-card { padding: clamp(28px, 5vw, 54px); max-width: 900px; }
.legal-card h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 18px; }
.legal-card h2 { font-size: 22px; margin-top: 32px; }
.legal-card a { color: var(--cyan); font-weight: 800; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .feature-grid, .screens-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .screen-image { aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { height: 68px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 18px;
    background: rgba(7, 18, 34, .98);
    border: 1px solid var(--line);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 6px; }
  .hero { padding: 64px 0 52px; }
  .feature-grid, .screens-grid { grid-template-columns: 1fr; }
  .app-preview { min-height: 420px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
