:root {
  --bg: #0a0c10;
  --bg-elevated: #12151c;
  --panel: #171b24;
  --panel-hover: #1d2330;
  --text: #f2f4f7;
  --muted: #9aa3b2;
  --accent: #c9a227;
  --accent-soft: #d4b84a;
  --accent-dim: rgba(201, 162, 39, 0.14);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --header-h: 72px;
  --font: system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 12% -8%, #2a2312 0%, transparent 55%),
    radial-gradient(700px 360px at 92% 4%, #152033 0%, transparent 50%),
    var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-soft);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #f0d56a;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  background: linear-gradient(145deg, #e0c35a, #9a7810);
  color: #14110a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.brand-mark[hidden] {
  display: none;
}

.brand-logo {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  object-fit: cover;
  background: #111;
}

.brand-logo[hidden] {
  display: none;
}

.brand-text {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-cta {
  display: inline-flex;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.store-badge[hidden],
[data-play-button][hidden] {
  display: none !important;
}

.store-badge img {
  width: 155px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.store-badge--lg img {
  width: 180px;
  max-height: 54px;
}

.page-spacer {
  height: 3rem;
}

main.container,
main.prose {
  padding-bottom: 3rem;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle__bars {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0.2rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.header-cta {
  margin-left: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

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

.btn--primary {
  background: linear-gradient(180deg, #dfc255 0%, #c9a227 100%);
  color: #15120a;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.28);
}

.btn--primary:hover {
  color: #0f0d08;
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(201, 162, 39, 0.45);
  background: var(--accent-dim);
  color: var(--text);
}

.btn--sm {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid rgba(201, 162, 39, 0.28);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 span {
  display: block;
  margin-top: 0.35rem;
  color: var(--accent-soft);
  font-size: 0.58em;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.hero-lead {
  margin: 1.25rem 0 1.75rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tv-mock {
  position: relative;
  border-radius: 22px;
  padding: 0.7rem;
  background: linear-gradient(160deg, #2a303c, #12151c 55%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.tv-mock__screen {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.08), transparent 40%),
    linear-gradient(135deg, #1a2030 0%, #0d1016 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tv-mock__screen--ui {
  padding: 1rem;
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 0.75rem;
}

.tv-mock__screen--photo {
  display: grid;
  place-items: center;
  background: #0b0d12;
  padding: 0;
}

.tv-mock__screen--photo[hidden],
.tv-mock__screen--ui[hidden] {
  display: none;
}

.tv-mock__screen--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.tv-mock.has-banner {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.tv-mock.has-banner .tv-mock__stand {
  display: none;
}

.tv-mock.has-banner .tv-mock__screen--photo {
  aspect-ratio: 1024 / 500;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  background: #0b0d12;
}

.tv-mock__rail,
.tv-mock__stage {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tv-mock__rail {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.55rem;
}

.tv-mock__chip {
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tv-mock__chip.is-active {
  background: linear-gradient(90deg, var(--accent), transparent);
  width: 78%;
}

.tv-mock__stage {
  position: relative;
  display: grid;
  place-items: end stretch;
  padding: 0.75rem;
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 162, 39, 0.18), transparent 40%),
    linear-gradient(180deg, #243048, #10141d);
}

.tv-mock__osd {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(8px);
}

.tv-mock__osd strong {
  display: block;
  font-size: 0.85rem;
}

.tv-mock__osd span {
  color: var(--muted);
  font-size: 0.75rem;
}

.tv-mock__stand {
  width: 36%;
  height: 0.55rem;
  margin: 0.7rem auto 0;
  border-radius: 999px;
  background: #2a303a;
}

.section {
  padding: 3.25rem 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section--compact {
  padding: 2.25rem 0;
}

.section--cta {
  padding: 2.75rem 0 3.25rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.35rem;
}

.section-head--inline {
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.product-card:hover {
  background: var(--panel-hover);
  border-color: rgba(201, 162, 39, 0.28);
}

.product-card__icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.9rem;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent-soft);
}

.product-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.4rem 1.3rem 1.3rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #15120a;
  font-weight: 800;
  font-size: 0.9rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.why-list li {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 550;
}

.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.shot {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0d1016;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.shot__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0d1016;
}

@media (hover: hover) and (pointer: fine) {
  .shot:not(.shot--placeholder) {
    transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  }

  .shot:not(.shot--placeholder):hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
  }
}

.shot--placeholder,
.shot.shot--placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent 45%),
    var(--panel);
}

.shot-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 6, 10, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__image {
  max-width: min(96vw, 1120px);
  max-height: min(82vh, 720px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: #0b0d12;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.lightbox__close:hover {
  border-color: rgba(201, 162, 39, 0.4);
}

body.lightbox-open {
  overflow: hidden;
}

.tv-points {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.point-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.point-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--border);
}

.point-list svg {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--accent-soft);
}

.notice {
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.notice h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--accent-soft);
}

.notice p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.notice p:last-child {
  margin-bottom: 0;
}

.cta-band {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(600px 200px at 10% 0%, rgba(201, 162, 39, 0.18), transparent 60%),
    var(--panel);
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-band h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer-note,
.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-content: start;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.meta-line {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.prose {
  max-width: 48rem;
  padding-bottom: 3.5rem;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.faq {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span {
  color: var(--accent-soft);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item.is-open .faq-trigger span {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.faq-panel[hidden] {
  display: none;
}

.contact-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.contact-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.error-page {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.error-page h1 {
  margin: 0 0 0.75rem;
  font-size: 3rem;
}

.error-page p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero__grid,
  .tv-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    order: 2;
  }

  .header-cta {
    display: none !important;
  }

  .brand {
    order: 1;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: rgba(10, 12, 16, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 0.85rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: var(--panel);
  }

  .site-nav .nav-cta-mobile {
    margin-top: 0.5rem;
    width: 100%;
  }

  .nav-cta-mobile {
    display: flex;
  }

  .nav-cta-mobile .btn,
  .nav-cta-mobile .store-badge {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 2.5rem;
  }

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

@media (min-width: 761px) {
  .nav-cta-mobile {
    display: none;
  }
}
