:root {
  --space-black: #05070b;
  --void-blue: #0a1a2f;
  --plasma-cyan: #3fffe0;
  --signal-orange: #ff8c32;
  --soft-white: #e6eaf0;
  --panel-bg: rgba(14, 24, 40, 0.48);
  --panel-border: rgba(63, 255, 224, 0.18);
  --shadow-cyan: 0 0 40px rgba(63, 255, 224, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", "Roboto", sans-serif;
  color: var(--soft-white);
  background:
    radial-gradient(circle at 15% 12%, rgba(63, 255, 224, 0.08), transparent 34%),
    radial-gradient(circle at 83% 5%, rgba(255, 140, 50, 0.08), transparent 40%),
    linear-gradient(180deg, #03050a 0%, #05070b 44%, #08101a 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.065;
  background-image: radial-gradient(circle, #fff 0.4px, transparent 0.8px);
  background-size: 3px 3px;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: #000;
  color: #fff;
  padding: 0.75rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(5, 8, 14, 0.72);
  border-color: rgba(230, 234, 240, 0.08);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--plasma-cyan);
  box-shadow: 0 0 18px rgba(63, 255, 224, 0.6);
}

.brand-text {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  letter-spacing: 0.24em;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(230, 234, 240, 0.84);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--plasma-cyan);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #eaf4ff;
  margin: 6px 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
}

#starfield {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, transparent 0%, rgba(3, 6, 9, 0.4) 50%, rgba(2, 5, 8, 0.8) 100%);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
  transform: translateZ(0);
}

.hero-glow-1 {
  width: 320px;
  height: 320px;
  left: 10%;
  top: 18%;
  background: radial-gradient(circle, rgba(63, 255, 224, 0.22), transparent 70%);
}

.hero-glow-2 {
  width: 360px;
  height: 360px;
  right: 8%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 140, 50, 0.17), transparent 72%);
}

.hero-inner {
  text-align: center;
  padding: 5rem 0 4rem;
  min-height: calc(100vh - 78px);
  position: relative;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(63, 255, 224, 0.82);
  margin: 0 0 1.2rem;
  font-weight: 600;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 7rem);
  font-family: "Rajdhani", "Orbitron", sans-serif;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 40px rgba(63, 255, 224, 0.16);
}

.hero-tagline {
  margin: 1.25rem auto 2.3rem;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(230, 234, 240, 0.86);
}

.hero-subtag {
  margin: -1.2rem auto 1.6rem;
  max-width: 760px;
  color: rgba(230, 234, 240, 0.74);
  font-size: 0.98rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.scroll-cue {
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  color: rgba(223, 230, 239, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-cue.is-hidden {
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
}

.scroll-cue-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(52, 244, 221, 0.55);
  border-radius: 14px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(52, 244, 221, 0.12);
}

.scroll-cue-mouse::before {
  content: "";
  width: 4px;
  height: 7px;
  border-radius: 4px;
  background: var(--plasma-cyan);
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: cue-wheel 1.3s ease-in-out infinite;
}

@keyframes cue-wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.78rem 1.15rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.26) 50%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.01);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary {
  background: linear-gradient(135deg, #ff9c46, var(--signal-orange));
  color: #101317;
  box-shadow: 0 8px 20px rgba(255, 140, 50, 0.26);
}

.btn-secondary,
.btn-steam,
.btn-ghost {
  border-color: rgba(230, 234, 240, 0.25);
  background: rgba(12, 20, 32, 0.62);
  color: var(--soft-white);
}

.btn-steam {
  border-color: rgba(63, 255, 224, 0.4);
  box-shadow: var(--shadow-cyan);
}

.btn-xl {
  font-size: 0.96rem;
  padding: 1.1rem 1.45rem;
}

.section {
  padding: 5.3rem 0;
  position: relative;
  z-index: 2;
  scroll-margin-top: 92px;
}

.section-title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-family: "Rajdhani", "Orbitron", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-text {
  margin: 0 0 1rem;
  color: rgba(230, 234, 240, 0.82);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.glass-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.split-media {
  margin: 0;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border: 1px solid rgba(230, 234, 240, 0.11);
  background: linear-gradient(180deg, rgba(11, 20, 34, 0.72), rgba(8, 15, 26, 0.6));
  border-radius: 14px;
  padding: 1.1rem 1rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(63, 255, 224, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(63, 255, 224, 0.42);
  box-shadow: 0 15px 35px rgba(63, 255, 224, 0.14);
}

.feature-card:hover::before,
.feature-card:focus-within::before {
  opacity: 1;
}

.feature-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: rgba(230, 234, 240, 0.76);
  font-size: 0.94rem;
}

.trailer-shell {
  overflow: hidden;
  border-radius: 18px;
}

.trailer-shell iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}

.gallery {
  columns: 3 280px;
  column-gap: 0.95rem;
}

.gallery-item {
  width: 100%;
  border: 0;
  background: none;
  margin: 0 0 0.95rem;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 12, 0.35), transparent 40%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.35s ease, filter 0.35s ease;
  transform-origin: center;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(63, 255, 224, 0.2);
}

.table-wrap {
  padding: 0.6rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

caption {
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.5rem 0 0.85rem;
}

th,
td {
  padding: 0.9rem;
  border-bottom: 1px solid rgba(230, 234, 240, 0.12);
  text-align: left;
}

thead th {
  color: var(--plasma-cyan);
  font-size: 0.87rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.community-card {
  border-radius: 14px;
  border: 1px solid rgba(230, 234, 240, 0.14);
  background: rgba(10, 18, 31, 0.6);
  padding: 1rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.community-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(63, 255, 224, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.community-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 255, 224, 0.38);
  box-shadow: 0 12px 32px rgba(63, 255, 224, 0.14);
}

.community-card:hover::before {
  opacity: 1;
}

.split-media img,
.trailer-shell,
.download-panel {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.split-media:hover img {
  transform: scale(1.03);
}

.trailer-shell:hover,
.download-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(63, 255, 224, 0.16);
}

.download-panel {
  text-align: center;
  padding: 2rem 1.2rem;
}

.site-footer {
  border-top: 1px solid rgba(230, 234, 240, 0.11);
  margin-top: 2rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(63, 255, 224, 0.08), transparent 65%);
  pointer-events: none;
}

.footer-content {
  padding: 1.5rem 0 2.6rem;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
  color: rgba(230, 234, 240, 0.72);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.modal-backdrop,
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 9, 0.74);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 120;
}

.modal-backdrop.is-open,
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-shell {
  width: min(500px, 92%);
  padding: 1.3rem;
  position: relative;
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: rgba(230, 234, 240, 0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-tabs {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.tab-btn {
  border: 1px solid rgba(230, 234, 240, 0.17);
  border-radius: 10px;
  background: rgba(9, 16, 26, 0.8);
  color: rgba(230, 234, 240, 0.85);
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.tab-btn.is-active {
  border-color: rgba(63, 255, 224, 0.4);
  color: var(--plasma-cyan);
}

.auth-form {
  display: none;
  gap: 0.8rem;
}

.auth-form.is-active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.93rem;
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
  border-radius: 10px;
  border: 1px solid rgba(230, 234, 240, 0.2);
  background: rgba(5, 10, 17, 0.8);
  color: #fff;
  padding: 0.7rem;
}

.remember {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.remember input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--plasma-cyan);
}

.lightbox img {
  width: min(1100px, 92vw);
  border-radius: 14px;
  border: 1px solid rgba(230, 234, 240, 0.2);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* EXONAUTIS in-game visual pass */
:root {
  --space-black: #04060a;
  --void-blue: #081427;
  --plasma-cyan: #34f4dd;
  --signal-orange: #ff8f2f;
  --soft-white: #dfe6ef;
  --panel-bg: rgba(8, 15, 28, 0.72);
  --panel-border: rgba(52, 244, 221, 0.26);
  --shadow-cyan: 0 0 44px rgba(52, 244, 221, 0.14);
  --shadow-orange: 0 0 44px rgba(255, 143, 47, 0.12);
}

body {
  background:
    radial-gradient(1300px 800px at 78% -14%, rgba(84, 214, 255, 0.14), transparent 65%),
    radial-gradient(980px 580px at -10% 38%, rgba(40, 150, 245, 0.12), transparent 64%),
    radial-gradient(1200px 600px at 50% 118%, rgba(0, 196, 255, 0.1), transparent 66%),
    linear-gradient(170deg, #02060f 0%, #051225 42%, #071b33 100%);
}

body::before {
  opacity: 0.82;
  background:
    radial-gradient(760px 380px at 12% 18%, rgba(122, 235, 255, 0.22), transparent 70%),
    radial-gradient(640px 320px at 86% 14%, rgba(52, 197, 255, 0.18), transparent 72%),
    radial-gradient(700px 360px at 24% 84%, rgba(45, 128, 245, 0.16), transparent 72%),
    radial-gradient(620px 300px at 78% 78%, rgba(46, 235, 219, 0.14), transparent 70%);
  filter: blur(58px) saturate(1.1);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: soft-light;
}

.hero-vignette {
  background:
    radial-gradient(circle at 50% 42%, rgba(8, 46, 88, 0.12), transparent 38%),
    radial-gradient(circle at 50% 45%, transparent 0%, rgba(4, 10, 19, 0.5) 54%, rgba(3, 8, 15, 0.84) 100%);
}

.hero-glow-1 {
  background: radial-gradient(circle, rgba(91, 236, 255, 0.28), transparent 72%);
}

.hero-glow-2 {
  background: radial-gradient(circle, rgba(43, 170, 255, 0.25), transparent 72%);
}

.site-header.is-solid {
  background: rgba(4, 7, 13, 0.86);
  border-color: rgba(52, 244, 221, 0.2);
}

.brand-dot {
  box-shadow: 0 0 16px rgba(52, 244, 221, 0.82), 0 0 30px rgba(52, 244, 221, 0.28);
}

.nav-links a {
  color: rgba(223, 230, 239, 0.9);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--signal-orange);
}

.hero-title {
  text-shadow: 0 0 30px rgba(52, 244, 221, 0.24), 0 0 80px rgba(52, 244, 221, 0.12);
}

.hero-tagline {
  color: rgba(223, 230, 239, 0.92);
}

.hero-subtag {
  color: rgba(223, 230, 239, 0.7);
}

.btn {
  border-radius: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #ffad5e, #ff8f2f 58%, #ef7f29 100%);
  box-shadow: 0 12px 30px rgba(255, 143, 47, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-secondary,
.btn-steam,
.btn-ghost {
  background: linear-gradient(180deg, rgba(11, 20, 34, 0.9), rgba(8, 14, 24, 0.82));
  border-color: rgba(52, 244, 221, 0.26);
}

.btn-steam {
  box-shadow: var(--shadow-cyan);
}

.glass-panel {
  background:
    linear-gradient(180deg, rgba(9, 17, 30, 0.82), rgba(7, 13, 23, 0.7));
  border: 1px solid rgba(52, 244, 221, 0.24);
  box-shadow: var(--shadow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1140px, 92%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(52, 244, 221, 0.22), transparent);
}

.feature-card,
.community-card {
  background:
    linear-gradient(165deg, rgba(10, 20, 34, 0.92), rgba(7, 13, 23, 0.78));
  border-color: rgba(52, 244, 221, 0.24);
}

.feature-card:hover,
.feature-card:focus-within,
.community-card:hover {
  border-color: rgba(52, 244, 221, 0.45);
  box-shadow: 0 20px 34px rgba(5, 9, 17, 0.7), 0 0 0 1px rgba(52, 244, 221, 0.24), var(--shadow-cyan);
}

.trailer-shell {
  border: 1px solid rgba(52, 244, 221, 0.24);
  box-shadow: var(--shadow-cyan);
}

.gallery-item:hover {
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 143, 47, 0.42), var(--shadow-orange);
}

thead th {
  color: #8bfff0;
}

th,
td {
  border-bottom-color: rgba(52, 244, 221, 0.16);
}

.modal-shell {
  border: 1px solid rgba(52, 244, 221, 0.22);
}

.tab-btn.is-active {
  border-color: rgba(255, 143, 47, 0.56);
  color: #ffc18f;
}

.site-footer {
  border-top-color: rgba(52, 244, 221, 0.18);
}

@media (max-width: 980px) {
  .hero-inner {
    min-height: calc(100vh - 66px);
  }

  .scroll-cue {
    bottom: 0.8rem;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .community-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .navbar {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 64px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 14px;
    background: rgba(5, 10, 16, 0.95);
    border: 1px solid rgba(230, 234, 240, 0.1);
    padding: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 680px) {
  .scroll-cue {
    bottom: 0.55rem;
  }

  .feature-grid,
  .community-links {
    grid-template-columns: 1fr;
  }

  .trailer-shell iframe {
    min-height: 280px;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    width: min(430px, 100%);
    margin: 0 auto;
  }

  .auth-trigger {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .feature-card,
  .community-card,
  .gallery-item,
  .split-media img,
  .trailer-shell,
  .download-panel {
    transition: none !important;
    transform: none !important;
  }

  .btn::before,
  .feature-card::before,
  .community-card::before {
    display: none;
  }

  .scroll-cue-mouse::before {
    animation: none;
  }
}
