:root {
  --bg: #050505;
  --bg-soft: #101010;
  --panel: #111111;
  --panel-strong: #181818;
  --line: #2d2d2d;
  --text: #f5f5f5;
  --muted: #a1a1a1;
  --primary: #ffffff;
  --primary-deep: #d8d8d8;
  --secondary: #cfcfcf;
  --secondary-soft: #b8b8b8;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  top: 80px;
  right: -12vw;
  width: 78vw;
  height: 72vh;
  pointer-events: none;
  background:
    linear-gradient(rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.78)),
    url("./app-screenshot.png") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.46;
  transform: perspective(1100px) rotateX(58deg) rotateZ(-23deg) translateY(-6vh);
  transform-origin: center;
  filter: saturate(0.25) contrast(1.05);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  z-index: 0;
}

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

button,
a.button,
.feature-card,
.experience-card {
  cursor: pointer;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
  padding: 0 0 72px;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
  padding: 14px 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.brand-text,
.eyebrow,
h1,
h2,
h3 {
  font-family: "Russo One", sans-serif;
  letter-spacing: 0.02em;
}

.text-highlight {
  color: var(--primary);
}

.text-highlight-secondary {
  color: var(--secondary-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.18);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #dcdcdc;
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: #111111;
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #9a9a9a;
  background: #1b1b1b;
}

.button-block {
  width: 100%;
}

.hero,
.section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.hero {
  display: block;
  min-height: calc(100vh - 140px);
  padding: 96px 0 24px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.76rem;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1.02;
}

.hero-text,
.section-copy p,
.section-heading p,
.feature-card p,
.experience-card p,
.catalog-copy p,
.stat-card span,
.pricing-copy p,
.pricing-list {
  color: var(--muted);
  line-height: 1.6;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 0.98rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.experience-card,
.feature-card,
.stat-card,
.catalog-board,
.catalog-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.05rem;
}

.catalog-panel {
  display: flex;
  gap: 12px;
}

.card-kicker,
.pricing-badge {
  margin: 0 0 10px;
  color: var(--secondary-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-item,
.pricing-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-list li + li,
.catalog-item + .catalog-item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.section {
  padding: 110px 0 0;
}

.split-section,
.catalog-panel,
.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.catalog-copy h2,
.pricing-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.section-copy p:last-child,
.section-heading p:last-child,
.catalog-copy p:last-child,
.pricing-copy p:last-child {
  margin-top: 18px;
}

.experience-grid,
.feature-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 26px;
  align-items: start;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-row-bar {
  width: 8px;
  min-height: 50px;
  border-radius: 999px;
  background: var(--text);
  box-shadow: none;
}

.feature-row h3 {
  margin: 0 0 10px;
  font-size: 0.96rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.remote-play-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.remote-play-panel {
  width: 100%;
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.remote-play-label {
  margin: 0 0 26px;
  color: var(--secondary-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.remote-play-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.08;
  max-width: 12ch;
}

.remote-play-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.feature-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  margin-top: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-card,
.feature-card,
.stat-card {
  padding: 24px;
  border-radius: 24px;
}

.experience-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--panel-strong);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--text);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-panel {
  padding: 28px;
  border-radius: 34px;
}

.catalog-board {
  padding: 24px;
  border-radius: 28px;
}

.catalog-search {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-strong);
  color: var(--muted);
}

.catalog-list {
  margin-top: 18px;
}

.catalog-item {
  padding: 18px 0;
}

.catalog-item span {
  color: var(--secondary-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.faq-item {
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item a {
  color: var(--text);
  text-decoration: underline;
}

.pricing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0;
}

.app-store-link {
  display: inline-flex;
  flex: 0 0 auto;
  transition: opacity 200ms ease;
}

.app-store-link:hover,
.app-store-link:focus-visible {
  opacity: 0.84;
}

.app-store-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.18);
  border-radius: 12px;
}

.app-store-link img {
  display: block;
  width: 180px;
  height: auto;
}

.pricing-list {
  display: grid;
  gap: 0;
  margin-bottom: 22px;
}

.pricing-list li {
  justify-content: flex-start;
  position: relative;
  padding-left: 18px;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text);
  transform: translateY(-50%);
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: #020202;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 48px;
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
  padding: 64px 8px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.footer-nav h2 {
  margin: 0 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-nav a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-nav a + a {
  margin-top: 12px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-delay,
  .button {
    transition: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero,
  .split-section,
  .catalog-panel {
    grid-template-columns: 1fr;
  }

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

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

  .remote-play-panel {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body::after {
    top: 120px;
    right: -48vw;
    width: 130vw;
    height: 48vh;
    opacity: 0.28;
    transform: perspective(900px) rotateX(58deg) rotateZ(-20deg);
  }

  .page-shell {
    width: min(calc(100% - 20px), 1320px);
  }

  .site-header-inner {
    width: min(calc(100% - 20px), 1320px);
    padding: 12px 0;
  }

  .site-header .button {
    display: none;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.7rem);
  }

  .experience-grid,
  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 88px;
  }

  .catalog-panel {
    padding: 22px;
  }

  .pricing-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-inner,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    width: min(calc(100% - 20px), 1320px);
    gap: 34px;
    padding: 48px 0;
  }

  .footer-brand {
    gap: 24px;
  }
}

@media (max-width: 540px) {
  .hero-copy {
    min-width: 0;
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
