:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --surface: #121a23;
  --surface-2: #151f2a;
  --border: #223040;
  --text: #e7eef7;
  --muted: #a8b3c2;
  --accent: #ff7a18;
  --accent-strong: #ff9a4a;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --font: "Segoe UI Variable", "Segoe UI", "Tahoma", "Geneva", system-ui, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 12% -10%, rgba(255, 122, 24, 0.12), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(90, 140, 255, 0.08), transparent 55%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: #140900;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 15, 20, 0.92);
  border-bottom: 1px solid rgba(34, 48, 64, 0.6);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__lockup {
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.brand__text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text);
  display: none;
}

.brand__lockup:not([src]) + .brand__text,
.brand__lockup.is-missing + .brand__text {
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #ff9a4a);
  color: #1a0f05;
  box-shadow: 0 14px 30px rgba(255, 122, 24, 0.25);
}

.store-link.is-coming-soon {
  opacity: 0.62;
  cursor: not-allowed;
  filter: grayscale(0.15);
  pointer-events: none;
}

.store-link.is-coming-soon.button {
  box-shadow: none;
}

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

.button--ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(18, 26, 35, 0.4);
}

.button--ghost:hover {
  border-color: rgba(255, 154, 74, 0.5);
}

.button:focus-visible,
.nav-link:focus-visible,
.shot:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(255, 154, 74, 0.7);
  outline-offset: 3px;
}

.hero {
  padding: 70px 0 50px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 2.8vw + 1rem, 3.4rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--accent-strong);
  margin: 0 0 12px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-meta span::before {
  content: "\2022";
  margin-right: 10px;
  color: var(--border);
}

.hero-meta span:first-child::before {
  content: "";
  margin: 0;
}

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

.media {
  position: relative;
  background: linear-gradient(145deg, rgba(34, 48, 64, 0.35), rgba(12, 18, 26, 0.6));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.media--icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  background: transparent;
  border: none;
}

.media--icon-sm {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

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

.media__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 12px;
  text-align: center;
  background: linear-gradient(140deg, rgba(11, 15, 20, 0.6), rgba(11, 15, 20, 0.2));
}

.media.is-loaded .media__label,
.media--icon .media__label {
  opacity: 0;
}

.media.is-missing img {
  display: none;
}

.ratio-16x10 {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.features,
.who,
.screens {
  padding: 40px 0;
}

h2 {
  font-size: clamp(1.6rem, 1.4vw + 1rem, 2.2rem);
  margin: 0 0 18px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-sm);
  min-height: 180px;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 122, 24, 0.15);
  display: grid;
  place-items: center;
  color: var(--accent-strong);
}

.icon {
  width: 24px;
  height: 24px;
}

.bullet-list,
.trust-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.bullet-list li,
.trust-grid li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(18, 26, 35, 0.6);
  border: 1px solid rgba(34, 48, 64, 0.6);
}

.trust-band {
  background: linear-gradient(135deg, rgba(18, 26, 35, 0.85), rgba(21, 31, 42, 0.6));
  border-top: 1px solid rgba(34, 48, 64, 0.6);
  border-bottom: 1px solid rgba(34, 48, 64, 0.6);
  padding: 42px 0;
}

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.screens-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.muted {
  color: var(--muted);
}

.screens-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.screen {
  margin: 0;
}

.shot {
  border: none;
  padding: 0;
  background: transparent;
  width: 100%;
  cursor: pointer;
}

.shot .media {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.shot:hover .media {
  transform: translateY(-2px);
  border-color: rgba(255, 154, 74, 0.6);
}

.screen figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 34px 0 50px;
  border-top: 1px solid rgba(34, 48, 64, 0.6);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand p {
  margin: 0;
}

.footer-brand a {
  color: inherit;
}

.footer-brand a:hover,
.footer-brand a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.footer-brand p + p {
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 14, 0.8);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  width: min(96vw, 1320px);
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow);
}

.lightbox__figure {
  margin: 0;
}

.lightbox__figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox__figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(34, 48, 64, 0.8);
  background: rgba(11, 15, 20, 0.8);
  color: var(--text);
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(34, 48, 64, 0.8);
  background: rgba(11, 15, 20, 0.45);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.lightbox__prev {
  left: 6px;
}

.lightbox__next {
  right: 6px;
}

.lightbox__nav:disabled {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .screens-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 1024px) {
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-media,
  .feature-card,
  .screen,
  .trust-band {
    animation: rise 0.7s ease both;
  }

  .feature-card:nth-child(2) {
    animation-delay: 0.05s;
  }

  .feature-card:nth-child(3) {
    animation-delay: 0.1s;
  }

  .feature-card:nth-child(4) {
    animation-delay: 0.15s;
  }

  .screen:nth-child(2) {
    animation-delay: 0.08s;
  }

  .screen:nth-child(3) {
    animation-delay: 0.16s;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
