:root {
  color-scheme: dark;
  --bg: #07111c;
  --bg-deep: #040912;
  --surface: rgba(10, 18, 30, 0.86);
  --surface-strong: rgba(12, 22, 36, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f6f8fc;
  --muted: #a7b4c8;
  --muted-strong: #c3cfdf;
  --shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
  --radius-2xl: 32px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1200px;
  font-family: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(48, 176, 199, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 149, 0, 0.16), transparent 22%),
    radial-gradient(circle at 70% 78%, rgba(10, 132, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #09121f 0%, #07111c 42%, #040912 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 86%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 20px 0 72px;
  position: relative;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 12, 21, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.brand-name,
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

.brand-name {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav a,
.button,
.button-secondary,
.button-ghost,
.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.nav a:hover,
.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.app-store-badge:hover,
.mode-showcase:hover,
.mode-card:hover,
.scenario-card:hover,
.feature-card:hover,
.spotlight-card:hover,
.banner:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.button {
  border: 0;
  background: linear-gradient(135deg, #ff8f3a 0%, #ff5d45 100%);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
}

.app-store-badge {
  padding: 0;
  min-height: 54px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.app-store-badge img {
  display: block;
  height: 54px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.24));
}

.app-store-badge-large img {
  height: 56px;
}

.app-store-badge-mobile {
  flex: 0 0 auto;
}

.app-store-badge-mobile img {
  height: 46px;
}

.hero,
.page-hero,
.banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 30px;
  padding: 32px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(12, 21, 34, 0.96), rgba(8, 14, 24, 0.92)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.hero::before,
.page-hero::before,
.banner::before {
  content: "";
  position: absolute;
  inset: auto -10% -32% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(48, 176, 199, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.section-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.mode-hero-rules {
  display: grid;
  gap: 14px;
  max-width: 40rem;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(7, 13, 22, 0.56);
}

.mode-hero-rules .copy-list {
  gap: 10px;
}

.mode-hero-rules .copy-list li {
  color: var(--text);
}

.hero-visual {
  display: grid;
  gap: 14px;
  align-content: start;
}

.eyebrow,
.section-label,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.3rem);
  max-width: 10ch;
}

.hero h1 {
  display: grid;
  gap: 0.06em;
}

.hero-typewriter-static,
.hero-typewriter {
  display: inline-flex;
  align-items: baseline;
}

.hero-typewriter {
  width: fit-content;
  max-width: 100%;
  min-height: 1.05em;
}

.hero-typewriter-text {
  display: inline-block;
}

.hero-typewriter-text::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.86em;
  margin-left: 0.08em;
  border-radius: 999px;
  background: currentColor;
  vertical-align: baseline;
  animation: hero-cursor-blink 1s steps(1, end) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-typewriter-text::after {
    animation: none;
    opacity: 1;
  }
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
}

.lede,
.copy,
.meta,
.mini-copy,
.feature-card p,
.faq p,
.footer {
  color: var(--muted);
}

.lede {
  margin: 0;
  max-width: 60ch;
  font-size: 1.06rem;
}

.cta-row,
.card-tags,
.stat-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-chip,
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 650;
}

.stat-chip strong {
  color: var(--text);
}

.feature-grid,
.mode-grid,
.scenario-grid,
.detail-grid,
.shot-stack {
  display: grid;
  gap: 14px;
}

.legal-stack {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mode-grid,
.scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section {
  margin-top: 28px;
}

#plan-the-night {
  scroll-margin-top: 108px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head .copy {
  max-width: 60ch;
  margin: 0;
}

.feature-card,
.mode-card,
.scenario-card,
.spotlight-card,
.support-card,
.faq-card,
.banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(13, 22, 35, 0.96), rgba(8, 15, 24, 0.92)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.feature-card,
.mode-card,
.scenario-card,
.spotlight-card,
.support-card,
.faq-card {
  padding: 18px;
}

.mode-card,
.scenario-card,
.spotlight-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.mode-card {
  isolation: isolate;
}

.themed-card::before,
.themed-panel::before {
  content: "";
  position: absolute;
  inset: -12% auto auto -10%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.24), transparent 70%);
  pointer-events: none;
}

.themed-card::after,
.themed-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(var(--accent-2-rgb), 0.2), transparent 72%);
  pointer-events: none;
}

.card-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.topline {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.topline > div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 48px, 0) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.icon-shell {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.98), rgba(var(--accent-2-rgb), 0.9)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 18px 36px rgba(var(--accent-rgb), 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.icon-shell::before {
  content: "";
  position: absolute;
  inset: 1.2px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.icon-shell::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 55%, rgba(var(--accent-rgb), 0.3), transparent 62%),
    radial-gradient(circle at 78% 82%, rgba(var(--accent-2-rgb), 0.22), transparent 54%);
  filter: blur(14px);
  opacity: 0.95;
  pointer-events: none;
}

.icon-shell img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(var(--icon-scale, 1.08));
  filter:
    saturate(1.2)
    contrast(1.08)
    brightness(1.14)
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.14));
}

.mode-showcase-stack {
  display: grid;
  gap: 18px;
  padding-block: 6px;
}

.mode-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 28px;
  min-height: clamp(440px, calc(100svh - 136px), 760px);
  padding: clamp(28px, 4vw, 46px);
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(13, 22, 35, 0.92), rgba(7, 13, 22, 0.94)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 116px;
}

.mode-showcase::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -6%;
  width: clamp(220px, 26vw, 360px);
  height: clamp(220px, 26vw, 360px);
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.26), transparent 70%);
  transform: translateY(calc(var(--parallax-shift, 0px) * 0.4));
  pointer-events: none;
}

.mode-showcase::after {
  content: "";
  position: absolute;
  inset: auto -8% -14% auto;
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  background: radial-gradient(circle, rgba(var(--accent-2-rgb), 0.22), transparent 72%);
  transform: translateY(calc(var(--parallax-shift, 0px) * -0.35));
  pointer-events: none;
}

.mode-showcase-left .mode-showcase-copy {
  order: 1;
}

.mode-showcase-left .mode-showcase-stage {
  order: 2;
}

.mode-showcase-right .mode-showcase-copy {
  order: 2;
}

.mode-showcase-right .mode-showcase-stage {
  order: 1;
}

.mode-showcase-copy,
.mode-showcase-stage {
  position: relative;
  z-index: 1;
}

.mode-showcase-copy {
  display: grid;
  gap: 16px;
  max-width: 34rem;
}

.mode-showcase-copy h3 {
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 0.94;
}

.mode-showcase-summary {
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  color: var(--text);
  max-width: 34ch;
}

.mode-showcase-detail,
.mode-showcase-emphasis {
  margin: 0;
  max-width: 40ch;
}

.mode-showcase-detail {
  color: var(--muted-strong);
  font-size: 0.98rem;
}

.mode-showcase-emphasis {
  color: var(--muted);
  font-size: 1rem;
}

.mode-showcase-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mode-showcase-stage {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 54vh, 520px);
  padding: 24px;
  transform:
    translateY(var(--parallax-shift, 0px))
    rotate(var(--parallax-tilt, 0deg));
  opacity: var(--parallax-opacity, 1);
}

.mode-flip-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, var(--flip-card-width, 320px));
  aspect-ratio: var(--flip-card-ratio, 0.56);
  perspective: 1600px;
  transform: translate(-50%, -50%);
}

.mode-flip-content {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition:
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 300ms ease;
  box-shadow:
    0 0 10px 1px rgba(0, 0, 0, 0.42),
    0 24px 52px rgba(0, 0, 0, 0.34);
  border-radius: 30px;
}

.mode-showcase.is-active .mode-flip-content {
  transform: rotateY(180deg);
}

.mode-flip-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: #151515;
}

.mode-flip-front {
  transform: rotateY(180deg);
  z-index: 2;
}

.mode-flip-back {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.mode-flip-beam {
  position: absolute;
  content: "";
  display: block;
  width: 160px;
  height: 170%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--accent-rgb), 0.94),
    rgba(var(--accent-rgb), 0.84),
    rgba(var(--accent-2-rgb), 0.78),
    rgba(var(--accent-rgb), 0.92),
    transparent
  );
  animation: mode-flip-rotation 5400ms infinite linear;
  transition: opacity 220ms ease;
}

.mode-flip-back-content,
.mode-flip-front-content {
  position: absolute;
  inset: 0.7%;
  width: 98.6%;
  height: 98.6%;
  border-radius: 28px;
}

.mode-flip-back-content {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(11, 18, 31, 0.98), rgba(9, 14, 24, 0.96));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 220ms ease;
}

.mode-flip-front-content {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(8, 14, 24, 0.94), rgba(9, 16, 27, 0.98));
  z-index: 1;
}

.mode-flip-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  animation: mode-flip-floating 2600ms infinite linear;
}

.mode-flip-glow-top {
  top: 10%;
  left: 10%;
  width: 92px;
  height: 92px;
  background: rgba(var(--accent-rgb), 0.55);
}

.mode-flip-glow-bottom {
  bottom: 8%;
  right: 12%;
  width: 160px;
  height: 160px;
  background: rgba(var(--accent-2-rgb), 0.42);
  animation-delay: -800ms;
}

.mode-flip-glow-accent {
  top: 12%;
  right: 12%;
  width: 38px;
  height: 38px;
  background: rgba(var(--accent-rgb), 0.82);
  animation-delay: -1800ms;
}

.mode-showcase-icon-wrap {
  position: relative;
  z-index: 1;
  transform:
    translateY(calc(var(--parallax-shift, 0px) * -0.28))
    scale(1.08);
  transition:
    opacity 220ms ease,
    transform 320ms ease;
}

.mode-showcase .icon-shell {
  width: clamp(118px, 12vw, 154px);
  height: clamp(118px, 12vw, 154px);
  padding: clamp(12px, 1.4vw, 16px);
  border-radius: 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 28px 60px rgba(var(--accent-rgb), 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mode-showcase .icon-shell::before {
  border-radius: 30px;
}

.mode-showcase .icon-shell::after {
  inset: -16px;
  border-radius: 40px;
  filter: blur(22px);
}

.mode-flip-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  position: relative;
  z-index: 2;
}

.mode-flip-image-rotated {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translate(-50%, -50%) rotate(var(--flip-shot-rotation, 90deg)) scale(var(--flip-shot-scale, 0.5));
}

.mode-flip-image-landscape {
  width: 100%;
  height: auto;
}

.mode-showcase.is-active .mode-flip-back-content,
.mode-showcase.is-active .mode-flip-beam,
.mode-showcase.is-active .mode-showcase-icon-wrap {
  opacity: 0;
}

.mode-showcase.is-active .mode-showcase-icon-wrap {
  transform: translateY(6px) scale(0.9);
}

@keyframes mode-flip-rotation {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes mode-flip-floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes hero-cursor-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.shot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(12px, 2vw, 18px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(8, 14, 24, 0.9), rgba(9, 16, 27, 0.96));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
  aspect-ratio: 9 / 19;
  z-index: 0;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
}

.shot-landscape {
  aspect-ratio: 16 / 9;
}

.hero-shot {
  min-height: 520px;
}

.preview-shot {
  margin-top: 0;
  aspect-ratio: 9 / 18;
}

.hero-shot.shot-landscape,
.preview-shot.shot-landscape,
.stack-shot.shot-landscape {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.shot-rotated img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translate(-50%, -50%) rotate(var(--shot-rotation, 90deg)) scale(var(--shot-rotate-scale, 0.5));
}

.card-tags {
  position: relative;
  z-index: 1;
}

.mode-card .card-top,
.mode-card .preview-shot,
.mode-card .card-tags {
  position: relative;
}

.mode-card .card-top,
.mode-card .card-tags {
  z-index: 2;
}

.mode-card .preview-shot {
  z-index: 1;
}

.stack-shot {
  aspect-ratio: 9 / 18;
}

.copy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.copy-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
}

.copy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.spotlight-card .meta,
.mode-card .meta,
.scenario-card .meta,
.feature-card p {
  margin: 0;
}

.support-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.legal-card h2 {
  line-height: 1.02;
}

.support-card .meta {
  margin: 0;
}

.meta-list {
  display: grid;
  gap: 14px;
}

.meta-item {
  display: grid;
  gap: 6px;
}

.meta-item strong {
  color: var(--text);
  font-size: 0.96rem;
}

.meta-item span {
  color: var(--muted-strong);
}

.meta-item a {
  width: fit-content;
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
}

.banner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.banner p {
  margin: 12px 0 0;
  max-width: 54ch;
  color: var(--muted);
}

.faq-card {
  margin-top: 28px;
}

.faq details {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-weight: 750;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 10px 0 0;
  max-width: 68ch;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.96rem;
}

.footer-links a {
  color: var(--muted-strong);
}

.mobile-sticky {
  display: none;
}

@media (max-width: 1120px) {
  .hero,
  .page-hero,
  .banner {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .mode-grid,
  .scenario-grid,
  .detail-grid,
  .legal-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mode-showcase {
    grid-template-columns: 1fr;
    min-height: clamp(620px, calc(100svh - 136px), 920px);
  }

  .mode-showcase-left .mode-showcase-copy,
  .mode-showcase-right .mode-showcase-copy,
  .mode-showcase-left .mode-showcase-stage,
  .mode-showcase-right .mode-showcase-stage {
    order: initial;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 96px;
  }

  .shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 14px;
  }

  .topbar {
    top: 10px;
    padding: 12px 14px;
    border-radius: 24px;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .page-hero,
  .banner,
  .feature-card,
  .mode-card,
  .scenario-card,
  .spotlight-card,
  .support-card,
  .faq-card {
    border-radius: 24px;
  }

  .hero,
  .page-hero,
  .banner {
    padding: 22px;
  }

  .feature-grid,
  .mode-grid,
  .scenario-grid,
  .detail-grid,
  .legal-grid-two,
  .shot-stack {
    grid-template-columns: 1fr;
  }

  .mode-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 24px;
    border-radius: 30px;
    scroll-margin-top: 96px;
  }

  .mode-showcase-left .mode-showcase-copy,
  .mode-showcase-right .mode-showcase-copy,
  .mode-showcase-left .mode-showcase-stage,
  .mode-showcase-right .mode-showcase-stage {
    order: initial;
  }

  .mode-showcase-copy {
    max-width: none;
  }

  .mode-showcase-stage {
    min-height: 520px;
    padding: 12px;
  }

  .mode-showcase-landscape .mode-showcase-stage {
    min-height: 320px;
    padding: 10px;
  }

  .mode-card {
    gap: 14px;
  }

  .mode-card .preview-shot {
    min-height: clamp(250px, 74vw, 360px);
    max-height: clamp(250px, 74vw, 360px);
    padding: 12px;
    aspect-ratio: auto;
  }

  .mode-card .preview-shot img {
    width: auto;
    max-width: 100%;
    height: 100%;
  }

  .mode-card .preview-shot.shot-landscape {
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .mode-card .preview-shot.shot-landscape img {
    width: 100%;
    height: auto;
  }

  .mode-showcase-stage {
    min-height: 520px;
    padding: 12px;
  }

  .mode-flip-card {
    width: min(100%, 280px);
  }

  .mode-showcase-landscape .mode-flip-card {
    width: min(100%, 340px);
  }

  .mode-showcase-landscape .mode-flip-image-landscape {
    max-width: 100%;
  }

  .mode-showcase .icon-shell {
    width: 112px;
    height: 112px;
    border-radius: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  .hero-shot {
    min-height: 420px;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 55;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 12, 20, 0.88);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  }

  .mobile-sticky a {
    flex: 1 1 0;
    min-height: 46px;
    border-radius: 14px;
  }

  .mobile-sticky .app-store-badge {
    flex: 0 0 auto;
    min-height: 46px;
    border-radius: 14px;
  }

  body {
    padding-bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .mode-showcase,
  .mode-showcase::before,
  .mode-showcase::after,
  .mode-showcase-stage,
  .mode-flip-card,
  .mode-flip-content,
  .mode-showcase-icon-wrap {
    transform: none !important;
    opacity: 1 !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
