:root {
  --bg: #030715;
  --bg-soft: #071024;
  --panel: rgba(10, 18, 39, .72);
  --panel-strong: rgba(13, 24, 52, .9);
  --line: rgba(147, 197, 253, .18);
  --text: #f8fbff;
  --muted: #b9c4d6;
  --purple: #8b45ff;
  --blue: #1b7cff;
  --cyan: #18d7ff;
  --green: #7cff3a;
  --orange: #ff9d2f;
  --shadow: 0 28px 80px rgba(0, 0, 0, .44);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 80% 5%, rgba(139, 69, 255, .34), transparent 26rem),
    radial-gradient(circle at 16% 35%, rgba(24, 215, 255, .16), transparent 28rem),
    linear-gradient(180deg, #030614 0%, #061026 46%, #030715 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.72), transparent 68%);
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(147, 197, 253, .12);
  background: rgba(3, 7, 21, .74);
  backdrop-filter: blur(20px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  display: block;
  width: clamp(150px, 15vw, 196px);
  height: auto;
}

.brand > span:last-child span {
  color: var(--purple);
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-block;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 0 24px rgba(27, 124, 255, .38), inset 0 0 20px rgba(139, 69, 255, .18);
}

.play-mark {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--cyan);
  filter: drop-shadow(0 0 12px rgba(24, 215, 255, .78));
}

.node {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: rgba(124, 255, 58, .18);
}

.node-one { right: -7px; bottom: 10px; }
.node-two { right: -1px; bottom: 2px; }
.node-three { right: -9px; bottom: -4px; }

.nav-panel {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(248, 251, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.nav-panel a {
  transition: color .2s ease, text-shadow .2s ease;
}

.nav-panel a:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(24, 215, 255, .75);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 16px 36px rgba(91, 69, 255, .36);
}

.button-secondary {
  background: rgba(9, 18, 41, .62);
  border-color: rgba(248, 251, 255, .26);
  box-shadow: inset 0 0 28px rgba(24, 215, 255, .05);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(24, 215, 255, .22), 0 0 34px rgba(139, 69, 255, .26);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(248, 251, 255, .18);
  border-radius: var(--radius);
  background: rgba(10, 18, 39, .78);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 86px 0 90px;
}

.hero-splash {
  min-height: clamp(640px, calc(100vh - 78px), 900px);
  display: grid;
  align-items: center;
  padding: 96px 0;
  background: #020613;
}

.hero-splash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg, rgba(3, 7, 21, .96) 0%, rgba(3, 7, 21, .82) 34%, rgba(3, 7, 21, .18) 68%, rgba(3, 7, 21, .04) 100%),
    linear-gradient(180deg, rgba(3, 7, 21, .1), rgba(3, 7, 21, .3));
}

.hero-splash-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-splash-content {
  position: relative;
  z-index: 2;
}

.hero-splash .hero-copy {
  max-width: 590px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 69% 48%, rgba(27, 124, 255, .36), transparent 17rem),
    radial-gradient(circle at 79% 31%, rgba(139, 69, 255, .46), transparent 20rem),
    linear-gradient(90deg, rgba(3, 7, 21, .98) 0%, rgba(3, 7, 21, .78) 43%, rgba(3, 7, 21, .18) 100%);
}

.hero.hero-splash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg, rgba(3, 7, 21, .96) 0%, rgba(3, 7, 21, .82) 34%, rgba(3, 7, 21, .18) 68%, rgba(3, 7, 21, .04) 100%),
    linear-gradient(180deg, rgba(3, 7, 21, .1), rgba(3, 7, 21, .3));
}

.hero-orbit {
  position: absolute;
  right: -130px;
  top: -170px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(139, 69, 255, .28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(27, 124, 255, .035), inset 0 0 0 140px rgba(139, 69, 255, .035);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: 54px;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(248, 251, 255, .78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--cyan);
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(50px, 6.2vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 span,
.section-heading h2 span {
  background: linear-gradient(120deg, #fff 0%, var(--cyan) 24%, var(--purple) 64%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.tv-frame {
  position: absolute;
  right: 0;
  top: 22px;
  width: min(100%, 670px);
  aspect-ratio: 16 / 9;
  border: 3px solid rgba(139, 69, 255, .8);
  border-radius: var(--radius);
  background: #020612;
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .62),
    0 0 80px rgba(27, 124, 255, .45),
    0 0 110px rgba(139, 69, 255, .38);
}

.tv-screen {
  position: absolute;
  inset: 13px;
  overflow: hidden;
  border-radius: 5px;
  background:
    radial-gradient(circle at 24% 24%, rgba(24, 215, 255, .24), transparent 16rem),
    radial-gradient(circle at 72% 10%, rgba(139, 69, 255, .35), transparent 18rem),
    linear-gradient(135deg, #050b1c, #0b1737 52%, #030714);
}

.tv-screen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(27, 124, 255, .28), transparent);
}

.screen-status {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 26px 28px;
  color: rgba(248, 251, 255, .86);
  font-size: 12px;
  font-weight: 800;
}

.screen-status span:not(:first-child) {
  width: 18px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.screen-dashboard {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
  padding: 32px 34px;
}

.screen-dashboard article {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(147, 197, 253, .16);
  border-radius: var(--radius);
  background: rgba(4, 10, 25, .66);
  box-shadow: inset 0 0 26px rgba(24, 215, 255, .05);
}

.screen-dashboard .welcome-tile {
  grid-row: span 2;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(139, 69, 255, .14), rgba(3, 7, 21, .2)),
    radial-gradient(circle at 75% 10%, rgba(24, 215, 255, .22), transparent 10rem),
    linear-gradient(135deg, rgba(23, 58, 124, .86), rgba(139, 69, 255, .48));
}

.screen-dashboard span,
.screen-dashboard small {
  color: rgba(248, 251, 255, .7);
  font-size: 12px;
  font-weight: 700;
}

.screen-dashboard strong {
  display: block;
  margin-top: 8px;
  font-size: 16px;
}

.welcome-tile strong {
  font-size: 26px;
}

.tile-icon,
.feature-icon,
.mode-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(24, 215, 255, .08);
  box-shadow: 0 0 28px rgba(24, 215, 255, .2);
}

.tile-icon::before,
.feature-icon::before,
.mode-icon::before {
  content: "";
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.game-icon::before,
.mode-games .mode-icon::before {
  border-radius: 999px;
  box-shadow: 12px 0 0 -7px currentColor, -12px 0 0 -7px currentColor;
}

.calendar-icon::before,
.mode-events .mode-icon::before,
.mode-tickets .mode-icon::before {
  border-radius: 4px;
  border-top-width: 6px;
}

.menu-icon::before,
.mode-menu .mode-icon::before,
.mode-retail .mode-icon::before {
  height: 16px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: 0 -8px 0 -6px currentColor, 0 8px 0 -6px currentColor;
}

.gear-icon::before,
.mode-custom .mode-icon::before {
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(24, 215, 255, .08);
}

.mode-adv .mode-icon::before {
  width: 26px;
  height: 18px;
  border-radius: 1px 12px 12px 1px;
  transform: skewY(-12deg);
}

.mode-checkin .mode-icon::before {
  border-radius: 50% 50% 6px 6px;
}

.mode-hospitality .mode-icon::before {
  border-radius: 14px 14px 4px 4px;
  border-bottom-width: 4px;
}

.tv-leg {
  position: absolute;
  bottom: -35px;
  width: 118px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(24, 215, 255, .8), transparent);
}

.tv-leg-left {
  left: 35%;
  transform: rotate(-21deg);
}

.tv-leg-right {
  right: 18%;
  transform: rotate(21deg);
}

.phone-frame {
  position: absolute;
  left: 10px;
  bottom: 4px;
  width: 168px;
  min-height: 252px;
  padding: 16px 14px;
  border: 1px solid rgba(24, 215, 255, .46);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(5, 12, 28, .94), rgba(9, 20, 45, .94));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .48), 0 0 42px rgba(24, 215, 255, .2);
  transform: rotate(10deg);
}

.phone-top {
  margin-bottom: 16px;
  text-align: center;
  color: rgba(248, 251, 255, .78);
  font-size: 11px;
  font-weight: 800;
}

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

.phone-grid span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(147, 197, 253, .15);
  border-radius: var(--radius);
  color: rgba(248, 251, 255, .82);
  background: rgba(10, 18, 39, .82);
  font-size: 10px;
  font-weight: 800;
}

.section-pad {
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading h2 {
  background: linear-gradient(120deg, #fff, #d7e7ff 42%, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p,
.feature-card p,
.step-card p,
.mode-card p,
.cta-section p {
  color: var(--muted);
}

.section-heading p {
  margin: 16px auto 0;
  max-width: 610px;
  font-size: 18px;
}

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

.mode-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 44%);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02)),
    var(--mode-image) center / cover no-repeat,
    var(--panel);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, .025), 0 20px 50px rgba(0, 0, 0, .24);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, filter .24s ease;
}

.mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 21, .06) 0%, rgba(3, 7, 21, .18) 36%, rgba(3, 7, 21, .78) 68%, rgba(3, 7, 21, .97) 100%),
    linear-gradient(90deg, rgba(3, 7, 21, .18), transparent 46%),
    radial-gradient(circle at 20% 18%, color-mix(in srgb, var(--accent), transparent 70%), transparent 10rem);
  opacity: .96;
}

.mode-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, .2) 43%, transparent 44% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .1), transparent 22%);
}

.mode-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent), white 14%);
  box-shadow: 0 26px 80px color-mix(in srgb, var(--accent), transparent 72%);
}

.mode-card > * {
  position: relative;
  z-index: 2;
}

.mode-icon {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  color: var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04)),
    color-mix(in srgb, var(--accent), transparent 86%);
  border-color: color-mix(in srgb, var(--accent), white 12%);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, .05),
    0 0 34px color-mix(in srgb, var(--accent), transparent 66%);
  backdrop-filter: blur(12px);
}

.mode-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.mode-card p {
  min-height: 54px;
  margin: 0;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 800;
}

.explore-link::after {
  content: "→";
  transition: transform .2s ease;
}

.mode-card:hover .explore-link::after {
  transform: translateX(4px);
}

.feature-section,
.works-section {
  border-top: 1px solid rgba(147, 197, 253, .12);
  background:
    radial-gradient(circle at 15% 20%, rgba(24, 215, 255, .13), transparent 26rem),
    linear-gradient(180deg, rgba(3, 7, 21, .08), rgba(10, 18, 39, .24));
}

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

.feature-card,
.step-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
  box-shadow: inset 0 0 30px rgba(24, 215, 255, .035);
}

.feature-card h3,
.step-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.feature-card p,
.step-card p {
  margin: 0;
}

.tv-icon::before { border-radius: 4px; }
.tablet-icon::before { width: 16px; height: 24px; border-radius: 5px; }
.remote-icon::before { width: 14px; height: 26px; border-radius: 999px; }
.live-icon::before { border-radius: 999px; box-shadow: 0 0 0 7px rgba(24, 215, 255, .08); }

.steps-grid {
  counter-reset: steps;
}

.step-card {
  min-height: 250px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(24, 215, 255, .42);
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(24, 215, 255, .08);
  font-weight: 900;
}

.cta-section {
  padding: 84px 0;
  border-top: 1px solid rgba(139, 69, 255, .45);
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 69, 255, .28), transparent 18rem),
    radial-gradient(circle at 70% 70%, rgba(27, 124, 255, .18), transparent 22rem),
    linear-gradient(135deg, rgba(13, 24, 52, .86), rgba(3, 7, 21, .98));
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.cta-section h2 {
  max-width: 600px;
}

.cta-section p {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 18px;
}

.cta-actions {
  display: grid;
  min-width: 290px;
  gap: 14px;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(147, 197, 253, .12);
  background: rgba(3, 7, 21, .86);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
  color: rgba(248, 251, 255, .72);
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .2s; }

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 79px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 11, 26, .96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-splash {
    min-height: 720px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero.hero-splash::before {
    background:
      linear-gradient(90deg, rgba(3, 7, 21, .94) 0%, rgba(3, 7, 21, .72) 52%, rgba(3, 7, 21, .22) 100%),
      linear-gradient(180deg, rgba(3, 7, 21, .16), rgba(3, 7, 21, .4));
  }

  .hero-splash-image {
    object-position: 64% center;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero p,
  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
  }

  .tv-frame {
    left: 50%;
    right: auto;
    width: min(90vw, 650px);
    transform: translateX(-50%) perspective(900px) rotateY(-4deg);
  }

  .phone-frame {
    left: 8%;
  }

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

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

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

  .cta-actions {
    width: min(100%, 360px);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 150px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .play-mark {
    top: 8px;
    left: 10px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-splash {
    min-height: 690px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero.hero-splash::before {
    background:
      linear-gradient(180deg, rgba(3, 7, 21, .88) 0%, rgba(3, 7, 21, .76) 48%, rgba(3, 7, 21, .46) 100%),
      linear-gradient(90deg, rgba(3, 7, 21, .88) 0%, rgba(3, 7, 21, .5) 100%);
  }

  .hero-splash-image {
    object-position: 70% center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h1 span {
    display: block;
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: 28px;
  }

  .eyebrow {
    max-width: 300px;
    justify-content: center;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero p,
  .section-heading p,
  .cta-section p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    min-height: 318px;
  }

  .tv-frame {
    top: 16px;
    width: 96vw;
  }

  .screen-dashboard {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 14px;
  }

  .screen-dashboard .welcome-tile {
    min-height: 128px;
  }

  .screen-dashboard article {
    min-height: 58px;
    padding: 10px;
  }

  .screen-dashboard article:nth-child(n+4) {
    display: none;
  }

  .welcome-tile strong {
    font-size: 18px;
  }

  .screen-status {
    padding: 14px;
  }

  .phone-frame {
    width: 116px;
    min-height: 174px;
    left: 0;
    bottom: 8px;
    border-radius: 22px;
  }

  .phone-grid {
    gap: 6px;
  }

  .phone-grid span {
    min-height: 30px;
    font-size: 8px;
  }

  .section-pad {
    padding: 74px 0;
  }

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

  .mode-grid,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .mode-card {
    min-height: 280px;
  }

  .feature-card,
  .step-card {
    min-height: auto;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
