/* ===================== ROOT & RESET ===================== */
:root {
  --bg: #08080c;
  --bg-alt: #0d0d13;
  --surface: #13131b;
  --surface-2: #191922;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --text: #f5f5f7;
  --text-dim: #a3a3b0;
  --text-dimmer: #6f6f80;
  --red: #ff3b5c;
  --red-2: #e5093a;
  --purple: #7b2ff7;
  --gradient: linear-gradient(135deg, var(--red) 0%, var(--purple) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255, 59, 92, 0.15), rgba(123, 47, 247, 0.15));
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 60px rgba(255, 59, 92, 0.25);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }
img { max-width: 100%; display: block; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(255, 59, 92, 0.1);
  border: 1px solid rgba(255, 59, 92, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 59, 92, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 59, 92, 0.5);
}
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* store buttons (Play Store / APK) */
.btn-store {
  background: var(--surface);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 10px 20px;
}
.btn-store:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  background: var(--surface-2);
}
.btn-store span { display: flex; flex-direction: column; line-height: 1.2; }
.btn-store small { font-size: 0.68rem; color: var(--text-dimmer); font-weight: 500; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.35s var(--ease);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(8, 8, 12, 0.75);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { width: 32px; height: 32px; border-radius: 8px; }
.logo span { color: var(--red); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 80vw);
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 100px 32px 40px;
  transition: right 0.4s var(--ease);
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.btn { margin-top: 20px; border-bottom: none; justify-content: center; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 32px 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; animation: float 14s ease-in-out infinite; }
.orb1 { width: 480px; height: 480px; background: var(--red); top: -150px; left: -100px; }
.orb2 { width: 420px; height: 420px; background: var(--purple); top: 200px; right: -150px; animation-delay: -5s; }
.orb3 { width: 300px; height: 300px; background: #ff8a4d; bottom: -120px; left: 30%; animation-delay: -9s; opacity: 0.2; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 30%, transparent 80%);
}

.hero-content { position: relative; z-index: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}
.badge svg { flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.rating { display: flex; align-items: baseline; gap: 6px; font-weight: 700; }
.stars { display: inline-flex; align-items: center; gap: 2px; }
.rating-dim { color: var(--text-dimmer); font-weight: 500; font-size: 0.9rem; }
.meta-divider { width: 1px; height: 28px; background: var(--border-light); }
.hero-stats-inline { display: flex; gap: 24px; }
.hero-stats-inline div { display: flex; flex-direction: column; }
.hero-stats-inline strong { font-size: 1.3rem; font-weight: 800; }
.hero-stats-inline span { font-size: 0.75rem; color: var(--text-dimmer); }

/* ===================== PHONE MOCKUP ===================== */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.phone-glow {
  position: absolute;
  width: 320px; height: 500px;
  background: var(--gradient);
  filter: blur(100px);
  opacity: 0.3;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.phone {
  width: 260px;
  height: 540px;
  background: #050507;
  border-radius: 40px;
  border: 3px solid #1c1c24;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), var(--shadow-glow);
  padding: 10px;
  position: relative;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s var(--ease);
}
.phone:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 18px;
  background: #050507;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-alt);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
}
.app-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 14px 8px;
}
.app-topbar-logo { width: 20px; height: 20px; border-radius: 5px; }
.app-topbar-title { font-size: 0.8rem; font-weight: 700; }
.app-topbar-icon { margin-left: auto; font-size: 0.8rem; opacity: 0.6; }
.app-chips { display: flex; gap: 6px; padding: 8px 14px; }
.chip {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--surface);
  color: var(--text-dimmer);
}
.chip.active { background: var(--gradient); color: #fff; }
.app-banner {
  margin: 8px 14px 4px;
  height: 70px;
  border-radius: 10px;
  background: var(--gradient-soft), var(--surface);
  background: linear-gradient(135deg, rgba(255,59,92,0.5), rgba(123,47,247,0.5));
}
.app-row-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-dim);
  padding: 8px 14px 4px;
}
.app-poster-row {
  display: flex;
  gap: 6px;
  padding: 0 14px;
}
.poster {
  width: 42px; height: 62px;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.p1 { background: linear-gradient(160deg,#ff3b5c,#7b2ff7); }
.p2 { background: linear-gradient(160deg,#ff8a4d,#ff3b5c); }
.p3 { background: linear-gradient(160deg,#7b2ff7,#2f6bff); }
.p4 { background: linear-gradient(160deg,#2fb7ff,#7b2ff7); }
.p5 { background: linear-gradient(160deg,#ffb400,#ff3b5c); }
.p6 { background: linear-gradient(160deg,#4ade80,#2f6bff); }
.p7 { background: linear-gradient(160deg,#ff3b5c,#ffb400); }
.p8 { background: linear-gradient(160deg,#7b2ff7,#ff3b5c); }
.app-bottomnav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 12px 0 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.nav-item { font-size: 0.9rem; opacity: 0.4; }
.nav-item.active { opacity: 1; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  animation: bob 5s ease-in-out infinite;
  z-index: 2;
}
.floating-card svg { flex-shrink: 0; }
.card-1 { top: 40px; left: -10px; animation-delay: -1s; }
.card-2 { bottom: 60px; right: -20px; animation-delay: -3s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--border-light);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-indicator span {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--red);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ===================== SECTION HEAD ===================== */
.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

section { padding: 110px 32px; max-width: 1280px; margin: 0 auto; }

/* ===================== FEATURES ===================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 59, 92, 0.35);
  box-shadow: 0 20px 50px -20px rgba(255, 59, 92, 0.25);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.feature-card p { color: var(--text-dim); font-size: 0.94rem; position: relative; z-index: 1; }

/* ===================== SCREENSHOTS ===================== */
.screens-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.mini-phone { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mini-screen {
  width: 190px;
  height: 380px;
  background: var(--surface);
  border: 3px solid #1c1c24;
  border-radius: 26px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.35s var(--ease);
  overflow: hidden;
  position: relative;
}
.mini-phone:hover .mini-screen { transform: translateY(-8px); }
.mini-caption { font-size: 0.85rem; color: var(--text-dim); font-weight: 600; }

.mini-screen-photo { padding: 0; }
.mini-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
}

.mini-banner { height: 60px; border-radius: 8px; background: linear-gradient(135deg, rgba(255,59,92,0.5), rgba(123,47,247,0.5)); }
.mini-label { font-size: 0.6rem; font-weight: 700; color: var(--text-dimmer); }
.mini-grid { display: flex; gap: 6px; }
.mini-poster { width: 42px; height: 60px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--border); }
.mini-grid .mini-poster:nth-child(1) { background: linear-gradient(160deg,#ff3b5c,#7b2ff7); }
.mini-grid .mini-poster:nth-child(2) { background: linear-gradient(160deg,#ffb400,#ff3b5c); }
.mini-grid .mini-poster:nth-child(3) { background: linear-gradient(160deg,#2fb7ff,#7b2ff7); }

/* landscape video-player showcase */
.player-showcase {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.player-frame {
  width: min(720px, 100%);
  aspect-ratio: 1280 / 576;
  background: #050507;
  border-radius: 18px;
  border: 3px solid #1c1c24;
  padding: 8px;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.6), var(--shadow-glow);
  transition: transform 0.35s var(--ease);
}
.player-frame:hover { transform: translateY(-6px); }
.player-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ===================== TRENDING POSTERS ===================== */
.trending { padding-top: 90px; }
.trending-wrap { position: relative; }

.trend-decor {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}
.trend-decor svg { width: 100%; height: 100%; }

.trend-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 4px 4px 14px;
  position: relative;
  z-index: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trend-track::-webkit-scrollbar { display: none; }

.trend-card { display: block; flex: 0 0 auto; width: 150px; scroll-snap-align: start; }
.trend-poster {
  width: 150px;
  height: 220px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.trend-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trend-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 55%);
  pointer-events: none;
}
.trend-card:hover .trend-poster {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px -15px rgba(255, 59, 92, 0.45);
}
.trend-hd {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 1;
  background: rgba(0,0,0,0.55);
  color: #ffd700;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.trend-title {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trend-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(6px);
  transition: background 0.25s, transform 0.25s;
}
.trend-arrow:hover { background: rgba(0,0,0,0.8); transform: translateY(-50%) scale(1.08); }
.trend-arrow-left { left: -6px; }
.trend-arrow-right { right: -6px; }

/* ===================== HOW / STEPS ===================== */
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 0 12px; }
.step-num {
  width: 54px; height: 54px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.9rem; }
.step-line {
  flex-shrink: 0;
  width: 60px; height: 2px;
  margin-top: 27px;
  background: linear-gradient(90deg, rgba(255,59,92,0.5), rgba(123,47,247,0.5));
}

/* ===================== CTA ===================== */
.cta-section { padding-top: 40px; padding-bottom: 140px; }
.cta-box {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 40px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 300px;
  background: var(--gradient);
  filter: blur(120px);
  opacity: 0.25;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.cta-box .tag, .cta-box h2, .cta-box p, .cta-box .btn { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-box p { color: var(--text-dim); max-width: 520px; margin: 0 auto 32px; }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--border); padding: 60px 32px 30px; }
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-dimmer); font-size: 0.9rem; margin-top: 12px; max-width: 280px; }
.footer-links { display: flex; gap: 64px; }
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dimmer);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-dimmer);
  font-size: 0.85rem;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { margin: 40px auto 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; align-items: stretch; gap: 28px; }
  .step-line { display: none; }
  .footer-container { flex-direction: column; }
  .footer-links { gap: 40px; }
  .screens-row { gap: 20px; }
  .trend-arrow-left { left: 4px; }
  .trend-arrow-right { right: 4px; }
}

@media (max-width: 640px) {
  .nav-container { padding: 0 20px; }
  .hero { padding: 110px 20px 60px; }
  section { padding: 80px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 16px; }
  .hero-stats-inline { gap: 16px; }
  .cta-box { padding: 48px 24px; }
  .floating-card { display: none; }
  .footer-links { flex-direction: column; gap: 28px; }
  .phone { width: 220px; height: 460px; }
  .mini-screen { width: 150px; height: 300px; }
  .trend-arrow { display: none; }
  .trend-card, .trend-poster { width: 112px; }
  .trend-poster { height: 165px; }
  .trend-track { gap: 12px; }
}

/* ===================== PLATFORM PAGES (TV / Windows / Mac) ===================== */
.platform-hero {
  text-align: center;
  padding: 150px 32px 60px;
  max-width: 900px;
  margin: 0 auto;
}
.platform-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dimmer);
  font-size: 0.9rem;
  margin-bottom: 28px;
  transition: color 0.25s var(--ease);
}
.platform-hero .back-link:hover { color: var(--text); }
.platform-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.platform-icon svg { width: 34px; height: 34px; }
.platform-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.platform-hero p { color: var(--text-dim); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }

/* ===================== GALLERY (landscape screenshots — TV/desktop) ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 59, 92, 0.35);
}
.gallery-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .platform-hero { padding: 120px 20px 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
