:root {
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --pink: #E91E8C;
  --red: #EF4444;
  --dark: #080810;
  --dark2: #0f0f1a;
  --dark3: #151525;
  --text: #f0f0ff;
  --muted: rgba(240,240,255,0.5);
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* Touch devices: show default cursor, hide custom cursor */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}

/* CUSTOM CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--purple-light);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(167,139,250,0.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(8,8,16,0.95) 0%, transparent 100%);
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.nav-logo-icon {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 800;
  color: white; letter-spacing: -0.3px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--purple);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #6D28D9 !important; transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.2) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 10% 50%, rgba(233,30,140,0.1) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 90% 60%, rgba(239,68,68,0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ORBITING RINGS */
.orbit-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-pulse 4s ease-in-out infinite;
}
.orbit-ring:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.orbit-ring:nth-child(2) { width: 500px; height: 500px; animation-delay: 0.8s; border-color: rgba(124,58,237,0.1); }
.orbit-ring:nth-child(3) { width: 700px; height: 700px; animation-delay: 1.6s; border-color: rgba(124,58,237,0.07); }
.orbit-ring:nth-child(4) { width: 900px; height: 900px; animation-delay: 2.4s; border-color: rgba(124,58,237,0.04); }
@keyframes orbit-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* FLOATING STATION CHIPS */
.floating-chips {
  position: absolute; inset: 0; pointer-events: none;
}
.chip {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 8px 16px 8px 10px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.chip-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.chip-bbc { background:#C0392B; color:white; font-size:8px; font-weight:900; }
.chip-xit { background:#E53E3E; color:white; font-size:8px; font-weight:900; }
.chip-exa { background:#10B981; font-size:8px; color:white; font-weight:900; }
.chip:nth-child(1) { top: 18%; left: 6%; animation-delay: 0s; }
.chip:nth-child(2) { top: 25%; right: 7%; left: auto; animation-delay: 1s; }
.chip:nth-child(3) { top: 55%; left: 4%; animation-delay: 2s; }
.chip:nth-child(4) { top: 62%; right: 5%; left: auto; animation-delay: 0.5s; }
.chip:nth-child(5) { top: 80%; left: 12%; animation-delay: 1.5s; }
.chip:nth-child(6) { top: 78%; right: 10%; left: auto; animation-delay: 2.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* HERO CONTENT */
.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fade-up 0.8s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fade-up 0.8s ease 0.1s both;
}
.hero-title span {
  background: linear-gradient(135deg, #A78BFA 0%, #E91E8C 50%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
  animation: fade-up 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 60px;
  animation: fade-up 0.8s ease 0.3s both;
}
.btn-primary {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(124,58,237,0.4);
  font-family: 'Syne', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,0.55); }
.btn-secondary {
  display: flex; align-items: center; gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* WAVEFORM VISUALIZER */
.hero-visualizer {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  height: 50px;
  animation: fade-up 0.8s ease 0.4s both;
}
.vis-bar {
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--purple-light), var(--purple));
  animation: vis-wave 1.4s ease-in-out infinite;
  transform-origin: bottom;
}
.vis-bar:nth-child(1)  { height: 16px; animation-delay: 0.0s; }
.vis-bar:nth-child(2)  { height: 28px; animation-delay: 0.1s; }
.vis-bar:nth-child(3)  { height: 40px; animation-delay: 0.2s; }
.vis-bar:nth-child(4)  { height: 30px; animation-delay: 0.3s; }
.vis-bar:nth-child(5)  { height: 48px; animation-delay: 0.4s; }
.vis-bar:nth-child(6)  { height: 36px; animation-delay: 0.5s; }
.vis-bar:nth-child(7)  { height: 50px; animation-delay: 0.6s; }
.vis-bar:nth-child(8)  { height: 42px; animation-delay: 0.7s; }
.vis-bar:nth-child(9)  { height: 50px; animation-delay: 0.6s; }
.vis-bar:nth-child(10) { height: 36px; animation-delay: 0.5s; }
.vis-bar:nth-child(11) { height: 48px; animation-delay: 0.4s; }
.vis-bar:nth-child(12) { height: 30px; animation-delay: 0.3s; }
.vis-bar:nth-child(13) { height: 40px; animation-delay: 0.2s; }
.vis-bar:nth-child(14) { height: 28px; animation-delay: 0.1s; }
.vis-bar:nth-child(15) { height: 16px; animation-delay: 0.0s; }
@keyframes vis-wave {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(0.35); opacity: 0.4; }
}
.vis-live-text {
  font-size: 11px; font-weight: 700; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase;
  margin: 0 16px;
}

/* STATS STRIP */
.stats-strip {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 60px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 20px;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800;
  background: linear-gradient(135deg, #A78BFA, #E91E8C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; line-height: 1;
}
.stat-label {
  font-size: 13px; color: var(--muted); margin-top: 4px;
  font-weight: 400; letter-spacing: 0.3px;
}
.stat-divider {
  width: 1px; height: 40px; background: var(--border);
}

/* SECTIONS */
section { padding: 100px 60px; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 18px;
}
.section-sub {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
  max-width: 480px;
}

/* FEATURES SECTION */
.features { background: var(--dark2); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.feature-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 22px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
}
.feature-card:hover {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.35);
  transform: translateY(-4px);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.feature-icon-purple { background: rgba(124,58,237,0.2); }
.feature-icon-pink { background: rgba(233,30,140,0.2); }
.feature-icon-green { background: rgba(16,185,129,0.2); }
.feature-icon-amber { background: rgba(245,158,11,0.2); }
.feature-icon-red { background: rgba(239,68,68,0.2); }
.feature-icon-blue { background: rgba(59,130,246,0.2); }
.feature-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 6px; letter-spacing: -0.2px;
}
.feature-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.5; font-weight: 300;
}

/* CHANNELS SECTION */
.channels { background: var(--dark); }
.channels-inner { max-width: 1200px; margin: 0 auto; }
.channels-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
}
.see-all {
  color: var(--purple-light); font-size: 14px; font-weight: 600;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.see-all:hover { gap: 10px; }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.channel-tile {
  border-radius: 18px;
  padding: 22px 20px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.channel-tile::before {
  content: '';
  position: absolute; right: -20px; top: -20px;
  width: 90px; height: 90px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.channel-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.channel-classical { background: linear-gradient(135deg,#7C3AED,#5B21B6); }
.channel-afro { background: linear-gradient(135deg,#F97316,#EA580C); }
.channel-jazz { background: linear-gradient(135deg,#10B981,#059669); }
.channel-hiphop { background: linear-gradient(135deg,#EF4444,#DC2626); }
.channel-electronic { background: linear-gradient(135deg,#06B6D4,#0891B2); }
.channel-rock { background: linear-gradient(135deg,#F59E0B,#D97706); }
.channel-pop { background: linear-gradient(135deg,#EC4899,#DB2777); }
.channel-nature { background: linear-gradient(135deg,#84CC16,#65A30D); }
.channel-icon-box {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}
.channel-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; }
.channel-desc { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 3px; font-weight: 400; }

/* APP PREVIEW SECTION */
.app-preview {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
  overflow: hidden;
}
.app-preview-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.phone-mockup-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: blur(40px);
}
.phone-mockup {
  width: 240px;
  background: #0f0f1a;
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative; z-index: 1;
  animation: phone-float 5s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(0deg); }
}
.phone-screen {
  background: linear-gradient(180deg, #1a1a3e 0%, #0f1128 60%, #080a18 100%);
  height: 520px;
  padding: 20px 16px;
  display: flex; flex-direction: column;
}
.phone-status { display: flex; justify-content: space-between; font-size: 8px; font-weight: 700; margin-bottom: 14px; align-items: center; }
.phone-status-icons { display: flex; gap: 4px; align-items: center; }
.phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.phone-logo { flex-shrink: 0; }
.phone-np { text-align: center; }
.phone-np-label { font-size: 7px; color: var(--purple-light); font-weight: 700; letter-spacing: 1.5px; }
.phone-np-title { font-size: 10px; font-weight: 800; font-family: 'Syne', sans-serif; }
.phone-album {
  width: 150px; height: 150px; margin: 0 auto 16px;
  border-radius: 14px; overflow: hidden;
  background: #C0392B;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.bbc-box { display: flex; gap: 5px; margin-bottom: 8px; }
.bbc-l { width: 36px; height: 36px; border: 2px solid white; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; font-family: 'Syne', sans-serif; }
.bbc-text { font-size: 20px; font-weight: 900; color: white; font-family: 'Syne', sans-serif; letter-spacing: -0.5px; text-align: center; line-height: 1.2; }
.phone-station-name { font-size: 13px; font-weight: 900; text-align: center; margin-bottom: 6px; font-family: 'Syne', sans-serif; }
.phone-pills { display: flex; justify-content: center; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.phone-pill {
  font-size: 8px; padding: 4px 10px; border-radius: 50px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
}
.phone-pill.live { background: rgba(16,185,129,0.15); color: #10B981; }
.phone-controls { display: flex; align-items: center; justify-content: center; gap: 14px; }
.ph-ctrl { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ph-ctrl.main { width: 46px; height: 46px; background: var(--purple); box-shadow: 0 4px 20px rgba(124,58,237,0.5); }
.phone-genre { text-align: center; font-size: 8px; color: rgba(255,255,255,0.25); margin-top: 10px; }
.app-features { margin-top: 36px; display: flex; gap: 20px; flex-wrap: wrap; }
.app-feature { display: flex; gap: 10px; align-items: center; }
.app-feature span { font-size: 14px; color: var(--muted); }
.app-feature-dot { width: 10px; height: 10px; border-radius: 50%; }
.app-feature-dot-live { background: #10B981; box-shadow: 0 0 8px #10B981; }
.app-feature-dot-hd { background: var(--purple-light); box-shadow: 0 0 8px var(--purple); }

/* DISCOVER SECTION */
.discover { background: var(--dark3); }
.discover-inner { max-width: 1200px; margin: 0 auto; }
.discover-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
}
.station-list { display: flex; flex-direction: column; gap: 10px; }
.station-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.station-row:hover {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.25);
  transform: translateX(4px);
}
.station-thumb {
  width: 52px; height: 52px; border-radius: 12px;
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.station-thumb-mango { background: #1a1a1a; }
.station-thumb-bbc { background: #C0392B; font-size: 11px; font-weight: 900; color: white; font-family: 'Syne', sans-serif; letter-spacing: -0.5px; }
.station-thumb-dance { background: #0f1f35; }
.station-thumb-xit { background: #E53E3E; font-size: 11px; font-weight: 900; color: white; font-family: 'Syne', sans-serif; text-align: center; line-height: 1.1; }
.station-thumb-rp { background: #fff; }
.station-meta { flex: 1; min-width: 0; }
.station-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; font-family: 'Syne', sans-serif; }
.station-info { font-size: 12px; color: var(--muted); display: flex; gap: 10px; align-items: center; }
.bitrate-tag { background: rgba(255,255,255,0.06); padding: 2px 8px; border-radius: 50px; font-size: 11px; }
.station-play {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.station-play:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(124,58,237,0.5); }

/* SHOTS SECTION */
.shots-section { background: var(--dark2); }
.shots-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.shots-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
}
.shots-phones .shots-phone:first-child { margin-right: -40px; z-index: 2; }
.shots-phones .shots-phone:last-child { margin-left: -40px; z-index: 1; }
.shots-phone {
  width: 200px;
  background: #0f0f1a;
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  flex-shrink: 0;
}
.shots-phone:first-child { transform: rotate(-5deg); }
.shots-phone:last-child { transform: rotate(3deg); }
.shots-screen {
  background: linear-gradient(180deg, #1a1a3e 0%, #2D2B6B 40%, #1e1a52 100%);
  height: 420px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.shots-screen-red {
  background: linear-gradient(180deg, #8B0000 0%, #C53030 40%, #7f1a1a 100%);
}
.shots-title-sm { font-size: 16px; font-weight: 900; font-family: 'Syne', sans-serif; margin-bottom: 10px; }
.shots-progress {
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 1px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.shots-progress::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 25%;
  background: white;
  border-radius: 1px;
}
.shots-progress-fill::after { display: none; }
.shots-progress-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40%;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
}
.shots-time { font-size: 9px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.shots-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
  margin: auto 0 20px;
}
.s-bar {
  width: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}
.shots-waveform .s-bar:nth-child(1) { height: 18px; }
.shots-waveform .s-bar:nth-child(2) { height: 30px; }
.shots-waveform .s-bar:nth-child(3) { height: 42px; }
.shots-waveform .s-bar:nth-child(4) { height: 32px; }
.shots-waveform .s-bar:nth-child(5) { height: 22px; }
.shots-screen-red .shots-waveform .s-bar:nth-child(1) { height: 22px; }
.shots-screen-red .shots-waveform .s-bar:nth-child(2) { height: 36px; }
.shots-screen-red .shots-waveform .s-bar:nth-child(3) { height: 44px; }
.shots-screen-red .shots-waveform .s-bar:nth-child(4) { height: 38px; }
.shots-screen-red .shots-waveform .s-bar:nth-child(5) { height: 24px; }
.shots-logo-sm {
  width: 100px; height: 100px;
  background: #000;
  border-radius: 14px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #E53E3E;
  font-family: 'Syne', sans-serif;
  text-align: center;
  line-height: 1.1;
}
.shots-logo-xit {
  background: #E53E3E;
  color: white;
  font-size: 14px;
}
.shots-live-label { margin-top: 4px; font-size: 9px; color: var(--purple-light); font-weight: 700; }
.shots-tune-label { margin-top: 4px; font-size: 9px; color: rgba(255,255,255,0.6); font-weight: 700; }
.shots-station-name { font-size: 13px; font-weight: 900; font-family: 'Syne', sans-serif; }
.shots-actions-sm {
  position: absolute;
  right: 10px;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shots-features { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.shots-feature { display: flex; gap: 14px; align-items: center; }
.shots-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shots-feature-swipe { background: rgba(124,58,237,0.2); }
.shots-feature-like { background: rgba(233,30,140,0.2); }
.shots-feature-live { background: rgba(16,185,129,0.2); }
.shots-feature-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.shots-feature-desc { font-size: 13px; color: var(--muted); }

/* CTA SECTION */
.cta-section {
  background: var(--dark);
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-label { display: block; text-align: center; margin-bottom: 14px; }
.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.cta-sub { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; font-weight: 300; }
.download-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  transition: background 0.2s, transform 0.2s;
  min-width: 180px;
}
.dl-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.dl-icon { font-size: 28px; flex-shrink: 0; }
.dl-text { text-align: left; }
.dl-sub { font-size: 10px; color: var(--muted); font-weight: 400; letter-spacing: 0.5px; }
.dl-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; }

/* FOOTER */
footer {
  position: relative;
  z-index: 50;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 60px 60px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
  font-weight: 300;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-logo span {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  font-size: 14px;
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
  color: inherit;
}
.social-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* REVEAL ANIMATIONS */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.4); border-radius: 3px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 70px 24px; }
  .hero { padding: 100px 24px 60px; }
  .stats-strip { padding: 24px; }
  .features-grid,
  .app-preview-inner,
  .shots-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .chip { display: none; }
  .hero-actions { flex-direction: column; }
  .shots-phones {
    flex-direction: column;
    gap: 24px;
  }
  .shots-phones .shots-phone:first-child,
  .shots-phones .shots-phone:last-child {
    margin: 0;
    transform: none;
  }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
