:root {
  --bg: #050507;
  --bg-soft: #0b0910;
  --panel: rgba(21, 17, 29, 0.76);
  --panel-strong: #131019;
  --line: rgba(255,255,255,0.08);
  --text: #f6f4fb;
  --muted: #aaa4b5;
  --purple: #8b5cf6;
  --purple-bright: #a879ff;
  --purple-deep: #4b237d;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 5%, rgba(112, 52, 180, 0.18), transparent 32%),
    #050507;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5,5,7,0.78);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #a879ff, #5b27a4);
  box-shadow: 0 0 30px rgba(139,92,246,.35);
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}

.btn-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-bright), #6f3dd6);
  box-shadow: 0 14px 40px rgba(127,74,214,.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline,
.btn-ghost {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.03);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  margin: 16px 0 22px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -.055em;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg,#fff,#b98cff);
  -webkit-background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  color: #b996ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-meta {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #817b8b;
  font-size: 13px;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
}

.hero-glow-one {
  right: 7%;
  top: 4%;
  background: #672db2;
}

.hero-glow-two {
  right: 24%;
  bottom: -30%;
  background: #32156d;
}

.tv-shell {
  position: relative;
  border: 10px solid #1c1b20;
  border-bottom-width: 16px;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
}

.tv-screen {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 75% 30%, rgba(167,100,255,.35), transparent 22%),
    linear-gradient(135deg,#11111a,#09070d 60%,#251038);
}

.tv-topbar {
  height: 44px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #cbc6d3;
}

.tv-logo {
  font-weight: 800;
}

.tv-hero-art {
  position: relative;
  min-height: 58%;
  padding: 36px 32px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg,rgba(5,5,8,.9),rgba(5,5,8,.2)),
    radial-gradient(circle at 70% 30%, rgba(109,43,179,.8), transparent 24%),
    linear-gradient(135deg,#17121f,#08080b);
}

.art-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(168,121,255,.16);
  color: #d5bfff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.art-copy span {
  font-size: 9px;
  letter-spacing: .16em;
  color: #aaa2b7;
}

.art-copy h2 {
  margin: 6px 0 2px;
  font-size: 30px;
}

.art-copy p {
  margin: 0;
  color: #b7b0c1;
  font-size: 11px;
}

.tv-cards {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 9px;
}

.tv-card {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  background: rgba(12,10,16,.82);
  color: #aaa3b3;
  font-size: 10px;
}

.tv-card.active {
  border-color: rgba(170,124,255,.45);
  background: linear-gradient(135deg,rgba(145,91,235,.28),rgba(56,27,86,.72));
  color: #fff;
}

.tv-stand {
  width: 30%;
  height: 34px;
  margin: 0 auto -40px;
  border-bottom: 8px solid #1c1b20;
}

.section {
  padding: 100px 0;
}

.section-tight {
  padding-top: 65px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 44px;
}

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

.section-heading h2,
.split-grid h2,
.beta-panel h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px,4vw,54px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-heading p,
.split-grid p,
.beta-panel p {
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg,rgba(27,22,35,.9),rgba(13,11,18,.86));
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}

.feature-card-large {
  grid-column: span 2;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  background: rgba(148,94,237,.16);
  color: #c7a9ff;
}

.feature-kicker {
  color: #9c79da;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.feature-card h3 {
  margin: 10px 0 10px;
  font-size: 28px;
}

.feature-card p {
  max-width: 600px;
  color: var(--muted);
}

.feature-preview {
  margin-top: 24px;
}

.epg-row {
  display: grid;
  grid-template-columns: 50px 130px 1fr 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 7px;
  font-size: 11px;
}

.epg-channel,
.epg-name,
.epg-program {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  color: #aaa4b3;
}

.epg-program.active {
  background: linear-gradient(90deg,#5d2e98,#8046c6);
  color: #fff;
}

.ways-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
}

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

.way-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(20,17,26,.6);
}

.way-item strong,
.way-item span {
  display: block;
}

.way-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

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

.personal-row {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.personal-row:last-child {
  border-bottom: 0;
}

.personal-row span {
  color: var(--muted);
}

.personal-row strong {
  color: #d9c8fa;
}

.beta-section {
  padding-top: 60px;
}

.beta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(165,111,255,.25);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 50%,rgba(124,61,191,.25),transparent 30%),
    linear-gradient(135deg,#15101d,#09080c);
}

.beta-actions {
  min-width: 220px;
}

.downloader-code {
  margin-top: 16px;
  padding: 14px 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 12px;
}

.downloader-code strong {
  display: block;
  color: #fff;
  font-size: 24px;
  letter-spacing: .08em;
}

.roadmap-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.roadmap-step {
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18,15,24,.6);
}

.roadmap-step span {
  color: #7b7288;
  font-size: 12px;
}

.roadmap-step strong {
  display: block;
  margin-top: 28px;
}

.roadmap-step.complete {
  border-color: rgba(107,77,143,.4);
}

.roadmap-step.active {
  border-color: rgba(159,107,244,.45);
  background: linear-gradient(145deg,rgba(109,57,171,.27),rgba(18,14,24,.8));
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #040405;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-inner p {
  margin-left: auto;
  color: #77717d;
  font-size: 13px;
}

.footer-status {
  color: #9e7dd6;
  font-size: 12px;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .beta-panel {
    grid-template-columns: 1fr;
  }

  .hero-tv-wrap {
    margin-top: 30px;
  }

  .feature-grid,
  .ways-grid,
  .roadmap-strip {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: auto;
  }

  .epg-row {
    grid-template-columns: 42px 100px 1fr;
  }

  .epg-row .epg-program:last-child {
    display: none;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

  .footer-inner p {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav-wrap {
    min-height: 66px;
  }

  .nav-wrap .btn {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-copy h1 {
    font-size: 55px;
  }

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

  .feature-card,
  .beta-panel {
    padding: 24px;
  }
}

/* ===== Stage 3 visual refinement ===== */

.hero {
  padding: 118px 0 128px;
}

.hero-grid {
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(66px, 7.4vw, 104px);
  line-height: .9;
  letter-spacing: -.06em;
}

.hero-intro {
  font-size: 20px;
  line-height: 1.65;
}

.hero-tv-wrap {
  position: relative;
}

.hero-tv-wrap::before {
  content: "";
  position: absolute;
  inset: 10% -6% -10% 10%;
  background: radial-gradient(circle, rgba(145, 78, 244, .34), transparent 63%);
  filter: blur(45px);
  z-index: -1;
}

.tv-shell {
  border-width: 12px;
  border-bottom-width: 18px;
  border-radius: 24px;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  box-shadow:
    0 55px 140px rgba(0,0,0,.68),
    0 0 80px rgba(118,63,197,.2);
}

.tv-screen {
  background:
    radial-gradient(circle at 77% 28%, rgba(191, 119, 255, .42), transparent 18%),
    radial-gradient(circle at 72% 60%, rgba(76, 28, 126, .36), transparent 26%),
    linear-gradient(135deg,#15111d 0%,#09080d 58%,#1e0f2b 100%);
}

.tv-topbar {
  height: 50px;
  padding: 0 22px;
}

.tv-logo {
  letter-spacing: .16em;
}

.tv-hero-art {
  min-height: 61%;
  padding: 44px 38px;
  background:
    linear-gradient(90deg, rgba(4,4,7,.94) 0%, rgba(6,5,9,.68) 40%, rgba(7,5,11,.08) 72%),
    radial-gradient(circle at 76% 33%, rgba(159, 85, 247, .72), transparent 18%),
    radial-gradient(circle at 66% 65%, rgba(67, 22, 111, .58), transparent 24%),
    linear-gradient(145deg,#191321,#0a090e 62%,#21102f);
}

.tv-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(4,4,7,.78) 100%),
    radial-gradient(circle at 78% 40%, rgba(255,255,255,.08), transparent 12%);
  pointer-events: none;
}

.art-badge {
  top: 24px;
  right: 24px;
  padding: 7px 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(190,145,255,.22);
}

.art-copy {
  position: relative;
  z-index: 2;
}

.art-copy h2 {
  font-size: 38px;
  letter-spacing: -.04em;
}

.art-copy p {
  font-size: 12px;
}

.tv-cards {
  left: 24px;
  right: 24px;
  bottom: 18px;
  gap: 10px;
}

.tv-card {
  min-height: 62px;
  border-radius: 11px;
  background:
    linear-gradient(180deg,rgba(23,18,31,.92),rgba(10,9,13,.92));
}

.tv-card.active {
  box-shadow:
    inset 0 0 0 1px rgba(198,155,255,.16),
    0 0 24px rgba(137,80,226,.16);
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.split-grid h2,
.beta-panel h2 {
  font-size: clamp(38px, 4.4vw, 60px);
}

.feature-grid {
  gap: 20px;
}

.feature-card {
  min-height: 310px;
  padding: 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(110,61,180,.09), transparent 34%),
    linear-gradient(145deg,rgba(27,22,35,.96),rgba(12,10,17,.94));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(164,109,255,.2);
}

.feature-card-large {
  min-height: 360px;
}

.feature-card h3 {
  font-size: 30px;
  letter-spacing: -.03em;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(170,115,255,.15);
  box-shadow: inset 0 0 24px rgba(128,74,210,.08);
}

.epg-preview {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 18px;
}

.epg-row {
  grid-template-columns: 52px 150px 1fr 1fr;
  gap: 9px;
}

.epg-channel,
.epg-name,
.epg-program {
  min-height: 40px;
  display: flex;
  align-items: center;
}

.epg-program.active {
  background: linear-gradient(90deg,#532783,#7440b4,#5d3191);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
}

.ways-grid {
  gap: 16px;
}

.way-item {
  min-height: 110px;
  padding: 26px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(114,65,179,.09), transparent 42%),
    rgba(20,17,26,.68);
}

.way-item strong {
  font-size: 18px;
}

.personal-panel {
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.beta-panel {
  padding: 56px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.roadmap-step {
  min-height: 155px;
}

.site-footer {
  padding: 40px 0;
}

@media (max-width: 900px) {
  .hero {
    padding: 84px 0 96px;
  }

  .hero-grid {
    gap: 46px;
  }

  .tv-shell {
    transform: none;
  }
}

/* ===== Real hero artwork ===== */

.tv-hero-art {
  overflow: hidden;
  isolation: isolate;
  background: #0b0810;
}

.tv-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 17%;
  z-index: 0;
  transform: scale(1.02);
}

.tv-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4,4,7,.96) 0%,
      rgba(5,4,8,.75) 30%,
      rgba(5,4,8,.20) 58%,
      rgba(5,4,8,.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4,4,7,.04) 0%,
      rgba(4,4,7,.08) 55%,
      rgba(4,4,7,.90) 100%
    );
}

.tv-hero-art::after {
  display: none;
}

.art-badge {
  z-index: 3;
}

.art-copy {
  z-index: 3;
}


/* ===== Beyond Horizon hero crop ===== */

.tv-hero-image {
  object-fit: cover;
  object-position: 62% 48%;
  transform: scale(1.01);
}

@media (max-width: 900px) {
  .tv-hero-image {
    object-position: 66% 50%;
  }
}

/* ===== Stage 3B - Live TV preview ===== */

.feature-card-large {
  position: relative;
  overflow: hidden;
}

.feature-card-large::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -150px;
  border-radius: 50%;
  background: rgba(132, 67, 221, .12);
  filter: blur(50px);
  pointer-events: none;
}

.epg-preview {
  position: relative;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  background: rgba(4,4,7,.52);
}

.epg-row {
  margin: 0 0 8px;
}

.epg-row:last-child {
  margin-bottom: 0;
}

.epg-channel {
  justify-content: center;
  color: #8c8298;
}

.epg-name {
  color: #fff;
  font-weight: 800;
}

.epg-program {
  transition: .2s ease;
}

.epg-program.active {
  background:
    linear-gradient(
      100deg,
      rgba(92,39,150,.95),
      rgba(128,63,199,.95),
      rgba(91,42,145,.95)
    );
  box-shadow:
    inset 0 1px rgba(255,255,255,.08),
    0 7px 22px rgba(92,40,150,.15);
}


/* ===== Stage 3C - On Demand / Movies ===== */

.media-showcase {
  overflow: hidden;
  position: relative;
}

.media-showcase::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: rgba(124, 58, 190, .12);
  filter: blur(45px);
}

.poster-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.poster {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

.poster span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.poster-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      transparent 34%,
      rgba(5,5,7,.18) 55%,
      rgba(5,5,7,.92) 100%
    );
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .95;
}

.poster-one::after {
  background:
    radial-gradient(circle at 72% 28%, #d197ff 0 3%, transparent 4%),
    radial-gradient(circle at 70% 34%, rgba(177,92,245,.78), transparent 22%),
    linear-gradient(150deg,#100d18,#4a1c72 58%,#0b0911);
}

.poster-two::after {
  background:
    radial-gradient(circle at 52% 25%, rgba(236,87,191,.82), transparent 18%),
    linear-gradient(150deg,#101525,#172b4a 50%,#511a58);
}

.poster-three::after {
  background:
    radial-gradient(circle at 65% 36%, rgba(101,200,162,.45), transparent 25%),
    linear-gradient(150deg,#0f1718,#1a4c42 50%,#08100e);
}

.poster-four::after {
  background:
    linear-gradient(25deg,transparent 40%,rgba(211,89,251,.35)),
    radial-gradient(circle at 72% 28%, rgba(209,77,255,.8), transparent 20%),
    linear-gradient(145deg,#10101a,#4c155c);
}

.poster-five::after {
  background:
    radial-gradient(circle at 67% 27%, #d5b3ff 0 4%, transparent 5%),
    radial-gradient(circle at 64% 32%, rgba(124,84,230,.52), transparent 18%),
    linear-gradient(160deg,#080b17,#17244f 58%,#100c1f);
}

.poster-six::after {
  background:
    radial-gradient(circle at 58% 37%, rgba(255,178,89,.58), transparent 22%),
    linear-gradient(145deg,#17100b,#65331b 52%,#170b09);
}

.poster:hover {
  transform: translateY(-3px);
  border-color: rgba(176,119,255,.25);
}

.poster {
  transition: transform .2s ease, border-color .2s ease;
}

@media (max-width: 560px) {
  .poster-row {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .poster {
    min-height: 150px;
  }
}


/* ===== Stage 3D - Watch Anywhere ===== */

.device-showcase {
  position: relative;
  overflow: hidden;
}

.device-showcase::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 260px;
  right: -60px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(116,57,191,.15);
  filter: blur(55px);
}

.device-stage {
  position: relative;
  z-index: 3;
  height: 210px;
  margin-top: 22px;
}

.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #08070b;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-screen-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6,5,9,.02),
      rgba(6,5,9,.12) 55%,
      rgba(6,5,9,.68)
    );
}

.device-totalis {
  position: absolute;
  left: 12px;
  top: 10px;
  color: white;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.device-tv {
  position: absolute;
  width: 62%;
  height: 145px;
  left: 5%;
  top: 8px;
  padding: 6px;
  border-radius: 10px;
  background: #202025;
  box-shadow: 0 20px 45px rgba(0,0,0,.42);
}

.device-tv .device-screen {
  border-radius: 5px;
}

.device-tv-neck {
  position: absolute;
  width: 24px;
  height: 18px;
  left: calc(50% - 12px);
  bottom: -18px;
  background: #202025;
}

.device-tv-base {
  position: absolute;
  width: 72px;
  height: 5px;
  left: calc(50% - 36px);
  bottom: -23px;
  border-radius: 8px;
  background: #29282e;
}

.device-tablet {
  position: absolute;
  z-index: 4;
  width: 37%;
  height: 112px;
  right: 8%;
  top: 72px;
  padding: 5px;
  border-radius: 9px;
  background: #29282e;
  box-shadow: 0 18px 38px rgba(0,0,0,.42);
}

.device-tablet .device-screen {
  border-radius: 5px;
}

.device-phone {
  position: absolute;
  z-index: 5;
  width: 52px;
  height: 102px;
  right: 2%;
  top: 93px;
  padding: 4px;
  border-radius: 10px;
  background: #29282e;
  box-shadow: 0 15px 30px rgba(0,0,0,.45);
}

.device-phone .device-screen {
  border-radius: 7px;
}

.device-tablet img {
  object-position: 64% 50%;
}

.device-phone img {
  object-position: 70% 50%;
}

@media (max-width: 560px) {
  .device-stage {
    height: 190px;
  }

  .device-tv {
    width: 68%;
  }

  .device-tablet {
    width: 40%;
  }
}


/* ===== Public Beta Coming Soon ===== */

.beta-coming-soon {
  cursor: pointer;
}

.beta-coming-soon.coming-soon-active {
  background: rgba(139,92,246,.12);
  border-color: rgba(180,132,255,.35);
  color: #d7c0ff;
  box-shadow: none;
  transform: none;
}

