@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap");

:root {
  --bg: #050816;
  --bg-soft: rgba(12, 18, 39, 0.78);
  --panel: rgba(10, 17, 35, 0.72);
  --panel-strong: rgba(8, 13, 29, 0.92);
  --line: rgba(84, 182, 255, 0.22);
  --line-strong: rgba(84, 182, 255, 0.48);
  --text: #eef5ff;
  --text-dim: rgba(224, 238, 255, 0.72);
  --cyan: #5de4ff;
  --cyan-strong: #00d9ff;
  --mint: #8dffcf;
  --violet: #8e7dff;
  --amber: #ffcb6d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Orbitron", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(47, 92, 255, 0.14), transparent 36%),
    radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #07101f 0%, #040712 100%);
  overflow-x: hidden;
}

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

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

p,
li {
  color: var(--text-dim);
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.backdrop__gradient {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.5;
}

.backdrop__gradient--a {
  top: -8rem;
  right: -4rem;
  width: 28rem;
  height: 28rem;
  background: rgba(93, 228, 255, 0.2);
  animation: drift 14s ease-in-out infinite;
}

.backdrop__gradient--b {
  bottom: 4rem;
  left: -8rem;
  width: 34rem;
  height: 34rem;
  background: rgba(142, 125, 255, 0.16);
  animation: drift 18s ease-in-out infinite reverse;
}

.backdrop__grid,
.backdrop__noise {
  position: absolute;
  inset: 0;
}

.backdrop__grid {
  background-image:
    linear-gradient(rgba(93, 228, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 228, 255, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.backdrop__noise {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px);
  background-size: 240px 240px;
  opacity: 0.5;
}

.site-header,
main,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  margin-top: 8px;
  backdrop-filter: blur(18px);
}

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

.brand__mark {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 24px rgba(93, 228, 255, 0.42));
}

/* Brand wordmark - replaces the logo.svg image */
.brand__wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
  user-select: none;
}

.brand__void {
  font-family: "Orbitron", sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text);
  text-transform: uppercase;
}

.brand__arc {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--cyan);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 13, 28, 0.62);
}

.site-nav a {
  position: relative;
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.lang-toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
  cursor: pointer;
  font: 700 0.78rem/1 "Orbitron", sans-serif;
  letter-spacing: 0.22em;
  padding: 6px 14px;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  outline: none;
}

main {
  padding: 36px 0 96px;
}

.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(93, 228, 255, 0.12), transparent 28%),
    linear-gradient(320deg, rgba(141, 255, 207, 0.05), transparent 22%);
  pointer-events: none;
}

.panel--hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 40px;
  padding: 56px;
}

.hero__copy,
.hero__visual,
.section,
.panel--cta {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cyan);
}

h1,
h2,
h3,
.hud-chip__value,
.loop-card__index,
.shot-card__label,
.site-footer p:first-child {
  font-family: "Orbitron", sans-serif;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero__lede {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #04111d;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  box-shadow: 0 12px 32px rgba(93, 228, 255, 0.28);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero__facts li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.hero__visual {
  display: grid;
  place-items: center;
}

.orbital-stage {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  border: 1px solid rgba(93, 228, 255, 0.15);
  background:
    radial-gradient(circle at center, rgba(11, 24, 52, 0.8), rgba(2, 5, 12, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 70px rgba(0, 0, 0, 0.42);
}

.orbital-stage::before,
.orbital-stage::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(93, 228, 255, 0.16);
}

.orbital-stage::after {
  inset: 24%;
  border-style: solid;
  opacity: 0.34;
}

.orbital-stage__ring,
.orbital-stage__core,
.orbital-stage__player-orbit {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.orbital-stage__ring {
  border: 1px solid rgba(0, 229, 255, 0.38);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.14);
}

.orbital-stage__ring--outer {
  width: 72%;
  height: 72%;
}

.orbital-stage__ring--mid {
  width: 50%;
  height: 50%;
  border-color: rgba(0, 229, 255, 0.18);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.08);
}

.orbital-stage__ring--inner {
  width: 16%;
  height: 16%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2), transparent 70%);
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.28);
}

/* Trail is inside .orbital-stage__player-orbit - it rotates with the player */
.orbital-stage__trail {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  /* Arc spans roughly 7:30→1:30 (clockwise); dot sits at 1:30 where border-top meets border-right */
  border-top-color: rgba(255, 255, 255, 0.52);
  border-left-color: rgba(255, 255, 255, 0.1);
}

.orbital-stage__core {
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 38% 36%,
      rgba(200, 255, 255, 0.95),
      rgba(0, 229, 255, 0.88));
  box-shadow:
    0 0 10px rgba(0, 229, 255, 0.95),
    0 0 28px rgba(0, 229, 255, 0.6),
    0 0 56px rgba(0, 229, 255, 0.28);
}

.orbital-stage__player-orbit {
  width: 72%;
  height: 72%;
  animation: rotate 4.2s linear infinite;
}

.orbital-stage__player {
  position: absolute;
  top: 15%;
  left: 85%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 5px 2px rgba(255, 255, 255, 0.95),
    0 0 16px rgba(0, 229, 255, 0.9),
    0 0 36px rgba(0, 229, 255, 0.45);
}

.hud-chip {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(5, 10, 22, 0.82);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.hud-chip__label {
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(224, 238, 255, 0.5);
}

.hud-chip__value {
  font-size: 0.94rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
}

.hud-chip--score {
  top: 22px;
  left: 22px;
}

.hud-chip--mode {
  right: 22px;
  top: 88px;
}

.hud-chip--sync {
  bottom: 22px;
  left: 40px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.stat-card,
.loop-card,
.feature-card,
.media-card,
.mode-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
}

.stat-card {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.stat-card strong {
  font-size: 1rem;
  font-weight: 700;
}

.section {
  padding: 42px;
  margin-top: 26px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.section-heading p:last-child {
  margin-top: 14px;
  line-height: 1.75;
}

.loop-grid,
.feature-grid,
.mode-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.loop-card,
.feature-card,
.mode-card {
  padding: 24px;
}

.loop-card__index,
.shot-card__label {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.84rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
}

.loop-card h3,
.feature-card h3,
.media-card h3,
.mode-card h3,
.shot-card strong {
  margin: 0;
  font-size: 1.18rem;
}

.loop-card p,
.feature-card p,
.mode-card p,
.shot-card p,
.media-card p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.video-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.video-row__phone {
  flex-shrink: 0;
  width: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-row__iframe {
  display: block;
  width: 240px;
  height: 427px;
  border: none;
}

.video-row__copy {
  flex: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
}

.video-row__copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.1;
}

.video-row__copy p {
  margin: 0;
  line-height: 1.75;
  color: var(--text-dim);
}

.shot-grid--standalone {
  margin-top: 28px;
}

.shot-grid__header {
  grid-column: 1 / -1;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 4px;
}

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

.shot-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  overflow: hidden;
  background: none;
  border: none;
}

.shot-card__thumb {
  width: 100%;
  aspect-ratio: 1200 / 2608;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  transition: opacity 0.3s ease;
}

.shot-card:hover .shot-card__thumb {
  opacity: 0.85;
}

.shot-card__meta {
  padding: 0 4px 4px;
}

.panel--cta {
  margin-top: 26px;
  padding: 42px;
  text-align: center;
}

.panel--cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.panel--cta p:last-child {
  max-width: 700px;
  margin: 16px auto 0;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 0 0 56px;
  text-align: center;
}

.site-footer__meta {
  margin: 0;
  font-size: 0.92rem;
}

/* ─── Store badges ──────────────────────────────────────── */

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  justify-content: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
}

.store-badge__icon {
  width: 26px;
  height: 26px;
  fill: var(--text);
  flex-shrink: 0;
}

.store-badge__copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.store-badge__sub {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.store-badge__name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
}

/* ─── Playable demo section ─────────────────────────────── */

.demo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 36px 40px;
}

.demo-section__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0;
  opacity: 0.8;
}

.demo-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  text-align: center;
  letter-spacing: 0.04em;
}

.demo-section__lede {
  max-width: 560px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.demo-frame-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(93, 228, 255, 0.18);
  box-shadow: 0 0 64px rgba(93, 228, 255, 0.06);
  position: relative;
  background: var(--bg);
}

.demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: var(--radius-md);
}

.demo-warning {
  font-size: 0.78rem;
  color: var(--cyan);
  opacity: 0.65;
  text-align: center;
  max-width: 420px;
  line-height: 1.6;
  border: 1px solid rgba(93, 228, 255, 0.2);
  border-radius: 4px;
  padding: 8px 16px;
  margin: 0;
}

.demo-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  opacity: 0.55;
  text-align: center;
  max-width: 420px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .demo-frame-wrap {
    max-width: 100%;
  }
}

/* ─── Footer legal links ────────────────────────────────── */

.site-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 4px 0;
  font-size: 0.82rem;
}

.site-footer__links a {
  color: var(--text-dim);
  opacity: 0.72;
  transition:
    opacity 160ms ease,
    color 160ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  opacity: 1;
  color: var(--cyan);
}

.site-footer__links span {
  color: var(--text-dim);
  opacity: 0.4;
}

/* ─── Arena live countdown ──────────────────────────────── */

.arena-live {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(93, 228, 255, 0.04);
  width: fit-content;
  flex-wrap: wrap;
}

.arena-live__label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.arena-live__value {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cyan-strong);
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.50);
}

/* ─── Legal content pages ───────────────────────────────── */

.legal-content {
  padding: 42px;
  margin-top: 26px;
  line-height: 1.75;
}

.legal-content .legal-meta {
  margin: 0 0 28px;
  font-size: 0.85rem;
  opacity: 0.65;
}

.legal-content h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-content h2 {
  margin: 36px 0 10px;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.legal-content h3 {
  margin: 22px 0 6px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  color: var(--text-dim);
  line-height: 1.75;
}

.legal-content a {
  color: var(--cyan);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content ul {
  padding-left: 1.4em;
  margin: 8px 0 16px;
}

.legal-content li+li {
  margin-top: 6px;
}

.legal-content address {
  font-style: normal;
  color: var(--text-dim);
  line-height: 1.75;
  margin: 0 0 16px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
}

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

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, 24px, 0) scale(1.06);
  }
}

@keyframes scan {
  from {
    transform: translateY(-55%);
  }

  to {
    transform: translateY(55%);
  }
}

@media (max-width: 1024px) {

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

  .video-row {
    flex-direction: column;
    align-items: center;
  }

  .video-row__copy {
    align-self: auto;
    width: 100%;
  }

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

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

@media (max-width: 720px) {
  :root {
    --content-width: min(100vw - 24px, 1180px);
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
  }

  .site-nav::-webkit-scrollbar {
    display: none;
    /* Webkit */
  }

  .panel--hero,
  .section,
  .panel--cta,
  .legal-content {
    padding: 28px 22px;
  }

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

  .hero__facts {
    gap: 10px;
  }

  .orbital-stage {
    width: 100%;
  }

  .hud-chip--mode {
    top: 22px;
    right: 22px;
  }

  .brand__logo {
    width: 152px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}