/* ============================================
   BigPlay V2 — Golden Luxury Design System
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --bg-primary: #1A1A1C;
  --bg-alt: #141416;
  --bg-card: #242426;
  --bg-footer: #111113;
  --border: #3A3A3C;
  --border-alt: #2A2A2C;
  --accent: #C9A962;
  --accent-bg: rgba(201, 169, 98, 0.07);
  --accent-glow: rgba(201, 169, 98, 0.09);
  --text-primary: #F5F5F0;
  --text-secondary: #6E6E70;
  --text-dim: #4A4A4C;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: 'Poppins', sans-serif;

  /* Spacing */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 60px;
  --space-7: 80px;
  --space-8: 120px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Layout */
  --max-width: 1200px;
  --max-width-prose: 720px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
}

/* --- Base --- */
html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- App Store Badge --- */
.app-store-badge {
  display: inline-block;
  transition: opacity var(--duration-fast), transform var(--duration-fast);
}

.app-store-badge:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.app-store-badge img {
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: 980px;
  cursor: pointer;
  transition: transform var(--duration-fast), background var(--duration-fast), border-color var(--duration-fast);
  text-decoration: none;
  border: none;
}

.btn:hover {
  transform: scale(1.02);
}

.btn--primary {
  padding: 14px 32px;
  background: var(--accent);
  color: #1A1A1C;
  font-weight: 600;
}

.btn--primary:hover {
  background: #d4b46e;
}

.btn--outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--text-secondary);
}

.btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.btn__line1 {
  font-size: 9px;
  font-weight: 400;
}

.btn__line2 {
  font-size: 14px;
  font-weight: 600;
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-3) 0;
  transition: background var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(26, 26, 28, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.nav__logo {
  display: flex;
  align-items: flex-end;
  font-family: var(--font-logo);
  font-size: 22px;
  color: var(--text-primary);
  gap: 0;
  line-height: 1;
}

.nav__logo-bi {
  font-family: var(--font-logo);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav__logo-g {
  display: inline-block;
  vertical-align: baseline;
  margin-bottom: -2px;
}

.nav__logo-play {
  font-family: var(--font-logo);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: -0.5px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.nav__cta:hover {
  background: #e8e8e3;
  transform: scale(1.02);
}

.nav__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav__cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__cta-line1 {
  font-size: 8px;
  font-weight: 400;
}

.nav__cta-line2 {
  font-size: 13px;
  font-weight: 600;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--duration-fast), opacity var(--duration-fast);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: rgba(20, 20, 22, 0.98);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  padding: var(--space-7) var(--space-4) var(--space-4);
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-out);
  z-index: 999;
  flex-direction: column;
  gap: var(--space-3);
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.nav__drawer-overlay.open {
  opacity: 1;
}

.nav__drawer-link {
  display: block;
  font-size: 18px;
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  transition: color var(--duration-fast);
}

.nav__drawer-link:hover {
  color: var(--text-primary);
}

.nav__drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 980px;
  margin-top: var(--space-3);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__glow--center {
  width: 640px;
  height: 400px;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 169, 98, 0.09) 0%, transparent 70%);
}

.hero__glow--left {
  width: 500px;
  height: 500px;
  top: 300px;
  left: -100px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.03) 0%, transparent 70%);
}

.hero__glow--right {
  width: 500px;
  height: 500px;
  top: 300px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.03) 0%, transparent 70%);
}

.hero__glow--cta {
  width: 600px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
}

.hero__sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 1;
}

.hero__sparkle--1 { top: 120px; left: 20%; }
.hero__sparkle--2 { top: 200px; right: 15%; }
.hero__sparkle--3 { top: 350px; left: 10%; }
.hero__sparkle--4 { top: 180px; left: 35%; }
.hero__sparkle--5 { top: 280px; right: 25%; }

.hero__content {
  max-width: 700px;
  position: relative;
  z-index: 2;
  padding: 0 var(--space-4);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(201, 169, 98, 0.06);
  border: 1px solid rgba(201, 169, 98, 0.19);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.hero__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 28px;
  opacity: 0;
  transform: translateY(15px);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
}

/* Hero devices — exact pixel positions from 1440×960 design canvas
   Content starts at y=120 on web vs y=55 in design = 65px offset */
.hero__devices {
  position: absolute;
  top: 65px;
  left: 50%;
  margin-left: -720px;
  width: 1440px;
  height: 960px;
  z-index: 1;
  pointer-events: none;
}

.hero__device {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  visibility: hidden;
  will-change: transform, opacity;
}

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

/* TV: far left, landscape */
.hero__device--tv {
  width: 580px;
  height: 326px;
  left: 40px;
  top: 560px;
  transform: rotate(3deg);
  border-radius: 16px;
  border: 1px solid var(--border);
  z-index: 1;
}

/* iPad: far right, landscape */
.hero__device--ipad {
  width: 580px;
  height: 435px;
  left: 820px;
  top: 560px;
  transform: rotate(-3deg);
  border-radius: 16px;
  border: 1px solid var(--border);
  z-index: 1;
}

/* Phone left: between TV and center */
.hero__device--phone-left {
  width: 200px;
  height: 420px;
  left: 380px;
  top: 500px;
  transform: rotate(5deg);
  border-radius: 24px;
  border: 1px solid var(--border);
  z-index: 2;
}

/* Phone center: hero focal point with gradient gold border */
.hero__device--phone-center {
  width: 320px;
  height: 640px;
  left: 560px;
  top: 470px;
  border-radius: 36px;
  z-index: 4;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 169, 98, 0.12);
}

/* Gold gradient border for center phone via pseudo-element */
.hero__device--phone-center::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 38px;
  background: linear-gradient(to bottom, rgba(201,169,98,0.31), rgba(58,58,60,0.13), rgba(201,169,98,0.25));
  z-index: -1;
}

/* Phone right: between iPad and center */
.hero__device--phone-right {
  width: 200px;
  height: 420px;
  left: 860px;
  top: 500px;
  transform: rotate(-5deg);
  border-radius: 24px;
  border: 1px solid var(--border);
  z-index: 2;
}

.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 6;
  pointer-events: none;
}

/* --- Section shared --- */
.section {
  padding: var(--space-8) 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-7);
}

.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--text-primary);
}

.section__subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: var(--space-3);
}

/* --- Features (Bento Grid) --- */
.features {
  background: var(--bg-primary);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color var(--duration-fast), transform var(--duration-fast);
}

.feature-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-2px);
}

.feature-card:nth-child(1),
.feature-card:nth-child(2) {
  grid-column: span 3;
}

.feature-card:nth-child(3),
.feature-card:nth-child(4),
.feature-card:nth-child(5) {
  grid-column: span 2;
}

.feature-card--wide {
  grid-column: 1 / -1 !important;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 48px;
  height: 160px;
  background: linear-gradient(to bottom, rgba(201, 169, 98, 0.06), var(--bg-card));
  border: 1px solid rgba(201, 169, 98, 0.12);
  position: relative;
  overflow: hidden;
}

.feature-card--wide .feature-card__icon {
  margin-bottom: 0;
}

.feature-card__icon--lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(201, 169, 98, 0.09);
  flex-shrink: 0;
}

.feature-card__wide-text {
  flex: 1;
}

.feature-card__wide-text .feature-card__title {
  margin-bottom: 8px;
}

.feature-card__title--lg {
  font-size: 24px !important;
}

.feature-card__wide-text .feature-card__desc {
  font-size: 14px;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.feature-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Platforms --- */
.platforms {
  background: var(--bg-alt);
}

.platforms__grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 48px;
}

.platforms__device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.platforms__mockup {
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.platforms__mockup--iphone {
  width: 220px;
  height: 440px;
  border-radius: 32px;
}

.platforms__mockup--ipad {
  width: 480px;
  height: 360px;
  border-radius: 16px;
}

.platforms__mockup--tv {
  width: 440px;
  height: 247px;
  border-radius: 12px;
}

.platforms__label-group {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.platforms__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
}

.platforms__desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- How It Works --- */
.how-it-works {
  background: var(--bg-primary);
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.step-card__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201, 169, 98, 0.13);
  line-height: 1;
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.step-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Stats --- */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-alt);
  padding: var(--space-6) 0;
}

.stats__grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stats__item {
  text-align: center;
}

.stats__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stats__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* --- Final CTA --- */
.final-cta {
  text-align: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.95);
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.final-cta__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto var(--space-5);
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.final-cta__trust {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Footer --- */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-alt);
  padding: var(--space-6) 0 var(--space-4);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-5);
}

.footer__brand {
  max-width: 260px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-logo);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.footer__columns {
  display: flex;
  gap: var(--space-7);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: var(--space-1);
}

.footer__link {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--text-primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-alt);
}

.footer__copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  color: var(--text-dim);
  transition: color var(--duration-fast);
}

.footer__social-link:hover {
  color: var(--accent);
}

/* --- Legal Pages (prose) --- */
.legal {
  padding-top: calc(var(--space-7) + 60px);
  padding-bottom: var(--space-8);
}

.legal__content {
  max-width: var(--max-width-prose);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.legal__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.legal__updated {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: var(--space-6);
}

.legal__content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}

.legal__content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.legal__content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-3);
  font-size: 14px;
}

.legal__content ul {
  list-style: disc;
  padding-left: var(--space-4);
  margin-bottom: var(--space-3);
}

.legal__content li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-1);
  font-size: 14px;
}

.legal__content a {
  color: var(--accent);
  transition: color var(--duration-fast);
}

.legal__content a:hover {
  color: #d4b46e;
}

.legal__content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1440px) {
  .hero__devices {
    transform: scale(0.85);
    transform-origin: top center;
  }
}

@media (max-width: 1200px) {
  .hero__devices {
    transform: scale(0.72);
    transform-origin: top center;
  }

  .hero {
    height: 860px;
  }
}

@media (max-width: 1024px) {
  .hero__devices {
    transform: scale(0.62);
    transform-origin: top center;
  }

  .hero {
    height: 800px;
  }

  .platforms__grid {
    gap: 32px;
  }

  .platforms__mockup--ipad {
    width: 360px;
    height: 270px;
  }

  .platforms__mockup--tv {
    width: 340px;
    height: 191px;
  }

  .feature-card--wide {
    padding: 0 32px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__drawer {
    display: flex;
  }

  .hero {
    height: 700px;
  }

  .hero__devices {
    transform: scale(0.5);
    transform-origin: top center;
  }

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

  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: span 1;
  }

  .feature-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .feature-card--wide {
    flex-direction: column;
    height: auto;
    padding: 32px;
    text-align: center;
    align-items: center;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platforms__grid {
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
  }

  .platforms__mockup--iphone {
    width: 180px;
    height: 360px;
  }

  .platforms__mockup--ipad {
    width: 320px;
    height: 240px;
  }

  .platforms__mockup--tv {
    width: 320px;
    height: 180px;
  }

  .stats__grid {
    flex-wrap: wrap;
    gap: var(--space-5);
  }

  .stats__item {
    flex: 0 0 40%;
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-5);
  }

  .footer__columns {
    gap: var(--space-5);
  }
}

@media (max-width: 480px) {
  .hero {
    height: 600px;
  }

  .hero__devices {
    transform: scale(0.38);
    transform-origin: top center;
  }

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

  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: span 1;
  }

  .footer__columns {
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  .footer__col {
    flex: 0 0 calc(50% - var(--space-2));
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
}

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

  .hero__badge,
  .hero__title .word,
  .hero__subtitle,
  .hero__actions,
  .hero__device {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .feature-card,
  .step-card,
  .stats__item,
  .platforms__device,
  .final-cta__content {
    opacity: 1 !important;
    transform: none !important;
  }
}
