@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
}

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

:root {
  --bg: #1E1E2E;
  --bg2: #16162A;
  --surface: #252538;
  --surface2: rgba(37, 37, 56, 0.74);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --orange: #FF5722;
  --orange2: #FF7A45;
  --orange-dim: rgba(255, 87, 34, 0.14);
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.4);
  --subtle: rgba(255, 255, 255, 0.62);
  --soft: rgba(255, 255, 255, 0.82);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100%;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 87, 34, 0.18), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(105, 103, 190, 0.16), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 52%, #10101f 100%);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 92%);
  pointer-events: none;
  z-index: 0;
}

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

.blob {
  position: fixed;
  border-radius: 999px;
  filter: blur(95px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 430px;
  height: 430px;
  background: rgba(255, 87, 34, 0.16);
  right: -120px;
  top: -90px;
  animation: drift1 15s ease-in-out infinite alternate;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: rgba(115, 105, 255, 0.13);
  left: -90px;
  top: 42%;
  animation: drift2 18s ease-in-out infinite alternate;
}

@keyframes drift1 { to { transform: translate(-34px, 42px) scale(1.08); } }
@keyframes drift2 { to { transform: translate(42px, -28px) scale(1.05); } }

.page {
  position: relative;
  z-index: 1;
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 16px 38px rgba(255, 87, 34, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  color: var(--soft);
  font-weight: 600;
}

.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--orange2); }

.nav-menu-cta,
.nav-toggle { display: none; }

.nav-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--orange);
  color: white;
  box-shadow: 0 18px 42px rgba(255, 87, 34, 0.27);
  font-size: 14px;
}

.btn-primary {
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: white;
  box-shadow: 0 22px 58px rgba(255, 87, 34, 0.32);
  font-size: 15px;
}

.btn-secondary {
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.035);
  color: white;
  border-color: var(--border-strong);
  font-size: 15px;
  backdrop-filter: blur(18px);
}

.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover { transform: translateY(-2px); }

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 52px;
  padding: 54px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  border: 1px solid rgba(255, 87, 34, 0.25);
  color: var(--orange2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 87, 34, 0.12);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.75); opacity: 0.55; }
}

h1 {
  max-width: 720px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.97;
  letter-spacing: -0.075em;
  font-weight: 900;
  margin-bottom: 22px;
}

.highlight {
  color: var(--orange2);
  text-shadow: 0 14px 48px rgba(255, 87, 34, 0.32);
}

.hero-copy {
  max-width: 580px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.72;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--subtle);
  font-size: 14px;
  margin-bottom: 26px;
}

.launch-note strong { color: var(--orange2); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
}

.hero-pills span,
.metric-chip,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.orbit {
  position: absolute;
  width: 610px;
  height: 470px;
  border-radius: 52% 48% 55% 45%;
  background:
    radial-gradient(circle at 60% 44%, rgba(255, 87, 34, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 87, 34, 0.16), rgba(124, 77, 255, 0.09));
  transform: rotate(-14deg);
  filter: blur(1px);
  z-index: -2;
}

.hero-device {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 26px 65px rgba(0, 0, 0, 0.55));
}

.hero-device-phone {
  width: min(360px, 74vw);
  left: 30px;
  top: 48px;
  transform: rotate(-7deg);
  animation: floatPhone 5.8s ease-in-out infinite;
}

.hero-device-watch {
  width: min(250px, 46vw);
  right: 12px;
  bottom: 40px;
  transform: rotate(8deg);
  animation: floatWatch 5.2s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50% { transform: translateY(-18px) rotate(-5deg); }
}

@keyframes floatWatch {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

.metric-chip {
  position: absolute;
  backdrop-filter: blur(16px);
  background: rgba(24, 24, 37, 0.82);
  box-shadow: var(--shadow);
  z-index: 2;
}

.chip-distance { top: 120px; right: 18px; }
.chip-routes { left: 0; bottom: 180px; }
.chip-live { right: 70px; bottom: 12px; }

section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 13px;
}

.section-head p {
  color: var(--subtle);
  line-height: 1.7;
  font-size: 16px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.gallery-card,
.watch-panel,
.story-card,
.store-card,
.final-cta {
  background: linear-gradient(180deg, rgba(37, 37, 56, 0.8), rgba(22, 22, 42, 0.68));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.feature-card {
  padding: 28px 24px;
  min-height: 245px;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.22s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.22s ease;
}

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

.feature-card:hover,
.gallery-card:hover,
.watch-shot:hover,
.story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 87, 34, 0.34);
}

.js .feature-card.is-visible:hover,
.js .gallery-card.is-visible:hover,
.js .story-card.is-visible:hover { transform: translateY(-6px); }

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--orange-dim);
  border: 1px solid rgba(255, 87, 34, 0.22);
  color: var(--orange2);
  font-size: 26px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  margin-bottom: 11px;
}

.feature-card p {
  color: var(--subtle);
  line-height: 1.65;
  font-size: 14px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.story-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  inset: auto -10% -26% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.2), transparent 68%);
  pointer-events: none;
}

.story-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 14px 0 12px;
}

.story-card p,
.story-copy p,
.watch-copy p {
  color: var(--subtle);
  line-height: 1.7;
  font-size: 15px;
}

.story-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.story-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--soft);
  font-weight: 600;
}

.story-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.story-quote strong {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.story-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.story-meta div {
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.story-meta b {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--orange2);
}

.screens-showcase {
  display: grid;
  gap: 18px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  width: 100%;
  padding-inline: clamp(10px, 1.8vw, 24px);
}

.screen-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 18px;
  scrollbar-width: none;
}

.screen-carousel::-webkit-scrollbar { display: none; }

.carousel-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(18, 18, 30, 0.82);
  color: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  flex: 0 0 auto;
}

.carousel-arrow:hover {
  background: rgba(255, 87, 34, 0.9);
  border-color: rgba(255, 87, 34, 0.35);
  transform: scale(1.04);
}

.gallery-card {
  scroll-snap-align: center;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.gallery-card img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.015);
  padding: 4px;
}

.gallery-card h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  padding-inline: 6px;
}

.gallery-card p {
  color: var(--subtle);
  line-height: 1.65;
  font-size: 14px;
  padding-inline: 6px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.dots span:first-child {
  width: 25px;
  background: var(--orange2);
}

.watch-panel {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 26px;
  padding: 28px;
  align-items: center;
}

.watch-main {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.watch-main img {
  width: min(100%, 320px);
  object-fit: contain;
  filter: drop-shadow(0 18px 55px rgba(0, 0, 0, 0.48));
}

.watch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.watch-stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.watch-stats b {
  display: block;
  font-size: 22px;
  color: var(--orange2);
  margin-bottom: 4px;
}

.watch-copy {
  display: grid;
  gap: 18px;
}

.watch-copy h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

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

.watch-shot {
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.watch-shot img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
}

.watch-shot h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.watch-shot p {
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-card h3 {
  font-size: 18px;
  margin: 14px 0 10px;
  letter-spacing: -0.03em;
}

.benefit-card p {
  color: var(--subtle);
  line-height: 1.65;
  font-size: 14px;
}

.benefit-card .feature-icon {
  margin-bottom: 0;
}

.store-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.store-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 87, 34, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 55%);
  pointer-events: none;
}

.store-card > * {
  position: relative;
  z-index: 1;
}

.store-copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.store-copy h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.store-copy p {
  color: var(--subtle);
  line-height: 1.7;
  font-size: 15px;
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.store-badge-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
}

.store-badge small {
  display: block;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-badge strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  margin-bottom: 46px;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 87, 34, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 87, 34, 0.08), transparent 50%);
  pointer-events: none;
}

.final-cta > * { position: relative; z-index: 1; }

.cta-icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: var(--orange-dim);
  border: 1px solid rgba(255, 87, 34, 0.25);
  display: grid;
  place-items: center;
  font-size: 36px;
  flex: 0 0 auto;
}

.final-copy {
  display: flex;
  align-items: center;
  gap: 22px;
}

.final-copy h2 {
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.final-copy p {
  color: var(--subtle);
  line-height: 1.6;
}

.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .hero-visual { min-height: 620px; }
  .story-grid,
  .watch-panel,
  .store-card { grid-template-columns: 1fr; }
  .watch-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav {
    position: relative;
  }

  .features { display: none; }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-cta { display: none; }

  .nav-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    background: rgba(37, 37, 56, 0.8);
    color: var(--text);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 10;
    width: min(320px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    background: rgba(30, 30, 46, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

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

  .nav-links a {
    padding: 12px;
    border-radius: 11px;
  }

  .nav-links a:hover { background: rgba(255, 255, 255, 0.06); }

  .nav-menu-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 6px;
    background: var(--orange);
    color: white;
    font-weight: 800;
  }

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

@media (max-width: 760px) {
  .hero-visual {
    min-height: 560px;
    overflow: hidden;
  }

  .hero-device-phone {
    width: min(300px, 74vw);
    left: 8px;
    top: 34px;
  }

  .hero-device-watch {
    width: min(220px, 46vw);
    right: 0;
    bottom: 62px;
  }

  .metric-chip {
    padding: 8px 12px;
    font-size: 12px;
  }

  .chip-distance { top: 96px; right: 6px; }
  .chip-routes { left: 0; bottom: 172px; }
  .chip-live { right: 42px; bottom: 28px; }

  .carousel-shell {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 0;
  }

  .screen-carousel { grid-auto-columns: 82%; }
  .watch-grid { grid-template-columns: 1fr; }
  .carousel-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav { width: min(100% - 28px, var(--max)); }
  .nav-links { width: min(320px, calc(100vw - 28px)); }
  .hero, section, .footer { width: min(100% - 28px, var(--max)); }
  h1 { font-size: 46px; }
  .hero-copy { font-size: 16px; }
  .features { grid-template-columns: 1fr; }
  .story-meta { grid-template-columns: 1fr; }
  .gallery-card img { height: 470px; }
  .watch-stats { grid-template-columns: 1fr; }
  .carousel-arrow {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
  .final-cta, .final-copy { flex-direction: column; align-items: flex-start; }
  .final-cta .btn-primary { width: 100%; }
  .footer { flex-direction: column; }
}

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