/* =============================================
   GR RADIO — Main Stylesheet
   Design: Dark editorial with electric accents
============================================= */

/* ---- VARIABLES ---- */
:root {
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-3: #1a1a26;
  --surface: #16161f;
  --surface-2: #1e1e2e;
  --border: rgba(255,255,255,0.07);

  --accent: #6c63ff;
  --accent-2: #ff3d71;
  --accent-3: #00d4aa;

  --text: #f0f0f8;
  --text-2: #a0a0b8;
  --text-3: #6a6a88;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 28px;

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 24px 64px rgba(0,0,0,0.5);
  --glow: 0 0 40px rgba(108,99,255,0.25);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, textarea { font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.section-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.light { color: #fff; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 520px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(108,99,255,0.4);
}
.btn--primary:hover {
  background: #7c73ff;
  box-shadow: 0 0 30px rgba(108,99,255,0.4);
  transform: translateY(-2px);
}
.btn--secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--secondary:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn--ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.btn--nav {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}
.btn--nav:hover { background: #7c73ff; }
.btn--lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   NAV
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: var(--transition);
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.logo-icon { color: var(--accent); width: 28px; height: 28px; flex-shrink: 0; }
.logo-text em { color: var(--accent); font-style: normal; }
.nav__links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--text-2);
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav__mobile {
  display: none;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  padding: 24px 32px;
  border-top: 1px solid var(--border);
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 20px; }
.nav__mobile a { font-size: 1.1rem; color: var(--text-2); }
.nav__mobile a:hover { color: var(--text); }
.nav__mobile.open { display: block; }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb--1 {
  width: 500px; height: 500px;
  background: rgba(108,99,255,0.15);
  top: -100px; right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}
.orb--2 {
  width: 350px; height: 350px;
  background: rgba(255,61,113,0.1);
  bottom: 0; left: -80px;
  animation: orb-float 10s ease-in-out infinite reverse;
}
.orb--3 {
  width: 250px; height: 250px;
  background: rgba(0,212,170,0.08);
  top: 50%; right: 30%;
  animation: orb-float 12s ease-in-out infinite 2s;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-3);
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.25);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fade-up 0.8s both;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent-3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,170,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(0,212,170,0); }
}
.hero__title {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
  margin-bottom: 24px;
  animation: fade-up 0.8s 0.1s both;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fade-up 0.8s 0.2s both;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  animation: fade-up 0.8s 0.3s both;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fade-up 0.8s 0.4s both;
}
.stat {}
.stat__num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}
.stat__num em { color: var(--accent); font-style: normal; }
.stat__label {
  font-size: 0.78rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Space Mono', monospace;
}
.stat-divider {
  width: 1px; height: 44px;
  background: var(--border);
}

/* Waveform */
.hero__wave {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}
.wave-bars {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 200px;
}
.wave-bars span {
  display: block;
  width: 6px;
  border-radius: 6px;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  animation: wave-anim var(--d, 1.2s) ease-in-out infinite var(--delay, 0s);
}
.wave-bars span:nth-child(1)  { --d: 1.0s; --delay: 0.0s; height: 40px; }
.wave-bars span:nth-child(2)  { --d: 1.3s; --delay: 0.1s; height: 80px; }
.wave-bars span:nth-child(3)  { --d: 0.9s; --delay: 0.2s; height: 120px; }
.wave-bars span:nth-child(4)  { --d: 1.4s; --delay: 0.0s; height: 160px; }
.wave-bars span:nth-child(5)  { --d: 1.1s; --delay: 0.3s; height: 200px; }
.wave-bars span:nth-child(6)  { --d: 1.6s; --delay: 0.1s; height: 180px; }
.wave-bars span:nth-child(7)  { --d: 1.0s; --delay: 0.4s; height: 140px; }
.wave-bars span:nth-child(8)  { --d: 1.2s; --delay: 0.2s; height: 160px; }
.wave-bars span:nth-child(9)  { --d: 1.5s; --delay: 0.0s; height: 200px; }
.wave-bars span:nth-child(10) { --d: 0.8s; --delay: 0.3s; height: 170px; }
.wave-bars span:nth-child(11) { --d: 1.3s; --delay: 0.1s; height: 130px; }
.wave-bars span:nth-child(12) { --d: 1.1s; --delay: 0.5s; height: 90px; }
.wave-bars span:nth-child(13) { --d: 1.4s; --delay: 0.2s; height: 110px; }
.wave-bars span:nth-child(14) { --d: 1.0s; --delay: 0.0s; height: 150px; }
.wave-bars span:nth-child(15) { --d: 1.7s; --delay: 0.4s; height: 190px; }
.wave-bars span:nth-child(16) { --d: 1.2s; --delay: 0.1s; height: 160px; }
.wave-bars span:nth-child(17) { --d: 0.9s; --delay: 0.3s; height: 120px; }
.wave-bars span:nth-child(18) { --d: 1.3s; --delay: 0.0s; height: 80px; }
.wave-bars span:nth-child(19) { --d: 1.6s; --delay: 0.2s; height: 50px; }
.wave-bars span:nth-child(20) { --d: 1.1s; --delay: 0.5s; height: 30px; }
.wave-bars span:nth-child(n+21) { opacity: 0.5; }
@keyframes wave-anim {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* =============================================
   TICKER
============================================= */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 14px 0;
}
.ticker__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker__track span {
  font-size: 0.85rem;
  color: var(--text-2);
  font-family: 'Space Mono', monospace;
}
.ticker__track .dot { color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   FEATURES
============================================= */
.features {
  padding: 120px 0;
  background: var(--bg);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(108,99,255,0.3); box-shadow: var(--glow); }
.feature-card:hover::before { opacity: 1; }
.feature-card--large {
  grid-column: span 2;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.feature-card--right { }
.feature-card__icon {
  width: 52px; height: 52px;
  color: var(--accent);
  flex-shrink: 0;
  margin-bottom: 20px;
}
.feature-card--large .feature-card__icon { margin-bottom: 0; margin-top: 4px; }
.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.7; }
.feature-card__badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-3);
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.25);
  padding: 4px 12px;
  border-radius: 100px;
}

/* =============================================
   PLAYER SHOWCASE
============================================= */
.player-showcase {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.player-showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.player-showcase__text .section-title { margin-bottom: 20px; }
.player-showcase__text p { color: var(--text-2); margin-bottom: 32px; font-size: 1.05rem; }
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: 0.95rem;
}
.check-list li svg { color: var(--accent-3); width: 20px; height: 20px; flex-shrink: 0; }

/* ---- Phone Frame ---- */
.player-showcase__phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-frame {
  width: 260px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.phone-notch {
  width: 80px; height: 24px;
  background: var(--bg);
  border-radius: 12px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 28px;
  min-height: 480px;
  overflow: hidden;
  padding: 20px 16px;
}
.phone-screen--dark { background: #06060e; }
.phone-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: var(--accent);
  filter: blur(40px);
  border-radius: 50%;
  opacity: 0.3;
  animation: orb-float 6s ease-in-out infinite;
}

/* App Player UI */
.app-player { display: flex; flex-direction: column; gap: 16px; }
.app-player__header { display: flex; justify-content: space-between; align-items: center; }
.app-status { font-size: 0.72rem; color: var(--text-3); font-family: 'Space Mono', monospace; }
.live-badge {
  font-size: 0.65rem;
  color: var(--accent-2);
  background: rgba(255,61,113,0.12);
  padding: 3px 8px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
}
.app-player__art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.app-player__art--sm { gap: 10px; }
.vinyl {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1a1a2e, #16213e, #0f3460, #533483, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vinyl-spin 4s linear infinite;
  box-shadow: 0 0 30px rgba(108,99,255,0.3);
}
.vinyl--sm { width: 80px; height: 80px; }
.vinyl__center {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid rgba(108,99,255,0.4);
}
.vinyl__ring {
  display: none;
}
@keyframes vinyl-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.app-player__wave-anim {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}
.app-player__wave-anim span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
  animation: wave-anim 1s ease-in-out infinite;
}
.app-player__wave-anim span:nth-child(1) { height: 8px;  animation-delay: 0.0s; }
.app-player__wave-anim span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.app-player__wave-anim span:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.app-player__wave-anim span:nth-child(4) { height: 20px; animation-delay: 0.0s; }
.app-player__wave-anim span:nth-child(5) { height: 28px; animation-delay: 0.3s; }
.app-player__wave-anim span:nth-child(6) { height: 22px; animation-delay: 0.1s; }
.app-player__wave-anim span:nth-child(7) { height: 16px; animation-delay: 0.2s; }
.app-player__wave-anim span:nth-child(8) { height: 10px; animation-delay: 0.4s; }
.app-player__info { text-align: center; }
.station-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--text);
}
.song-info { font-size: 0.75rem; color: var(--text-3); margin-top: 4px; }
.app-player__controls { display: flex; justify-content: center; align-items: center; gap: 16px; }
.ctrl {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text-2);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.ctrl--main {
  width: 52px; height: 52px;
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem;
}
.ctrl:hover { background: var(--border); }
.ctrl--main:hover { background: #7c73ff; }
.app-player__progress { }
.progress-bar {
  height: 3px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
}
.app-player__extras {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-3);
  font-family: 'Space Mono', monospace;
}

/* =============================================
   STATIONS
============================================= */
.stations { padding: 120px 0; }
.genre-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}
.genre-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.genre-tab:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.genre-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.stations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.station-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.station-card:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.station-card--hidden { display: none; }
.station-card__freq {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--clr, var(--accent));
  width: 64px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.station-card__info { flex: 1; }
.station-card__info strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 2px; }
.station-card__info span { font-size: 0.78rem; color: var(--text-3); font-family: 'Space Mono', monospace; }
.station-card__live {
  font-size: 0.65rem;
  font-family: 'Space Mono', monospace;
  color: var(--accent-3);
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.2);
  padding: 3px 8px;
  border-radius: 100px;
}
.stations__more { text-align: center; }
.stations__more p { color: var(--text-3); margin-bottom: 20px; font-family: 'Space Mono', monospace; font-size: 0.85rem; }

/* =============================================
   APPS DOWNLOAD
============================================= */
.apps {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.apps__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,99,255,0.06) 0%, rgba(255,61,113,0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.apps__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.apps__text .section-title { margin-bottom: 20px; }
.apps__text p { color: var(--text-2); margin-bottom: 36px; font-size: 1.05rem; }
.store-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
  transition: var(--transition);
  color: var(--text);
}
.store-btn:hover { border-color: var(--accent); box-shadow: var(--glow); transform: translateY(-2px); }
.store-btn div { display: flex; flex-direction: column; }
.store-btn small { font-size: 0.7rem; color: var(--text-3); }
.store-btn strong { font-size: 1rem; }
.app-ratings { display: flex; align-items: center; gap: 12px; }
.rating-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.app-ratings span { font-size: 0.85rem; color: var(--text-3); }

/* Phone pair in apps section */
.apps__phones { display: flex; justify-content: center; }
.phone-pair { position: relative; width: 280px; height: 480px; }
.phone-frame--front { position: absolute; bottom: 0; left: 20px; z-index: 2; }
.phone-frame--back { position: absolute; top: 0; right: 0; z-index: 1; width: 220px; opacity: 0.7; }
.phone-frame--sm { width: 200px; }

/* Mini app list */
.mini-app { display: flex; flex-direction: column; gap: 16px; padding: 8px 0; }
.mini-header { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.05em; color: var(--text-3); margin-bottom: 4px; }
.mini-station { display: flex; align-items: center; gap: 12px; }
.mini-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mini-name { font-size: 0.8rem; color: var(--text); font-weight: 500; }
.mini-sub { font-size: 0.65rem; color: var(--accent-3); font-family: 'Space Mono', monospace; }
.app-player--compact { gap: 12px; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}
.review-card--accent { border-color: rgba(108,99,255,0.3); box-shadow: var(--glow); }
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.review-author span { font-size: 0.75rem; color: var(--text-3); font-family: 'Space Mono', monospace; }

/* =============================================
   FAQ
============================================= */
.faq { padding: 120px 0; }
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--text-3);
  transition: var(--transition);
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
  padding: 0 28px 22px;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; }

/* =============================================
   CONTACT
============================================= */
.contact {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__text .section-title { margin-bottom: 20px; }
.contact__text p { color: var(--text-2); font-size: 1.05rem; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: 0.95rem;
}
.contact-method svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-method a:hover { color: var(--accent); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; color: var(--text-3); font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-note { font-size: 0.85rem; text-align: center; color: var(--accent-3); min-height: 20px; }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p { color: var(--text-3); font-size: 0.9rem; max-width: 260px; line-height: 1.7; }
.footer__links-group h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links-group a { font-size: 0.9rem; color: var(--text-2); transition: var(--transition); }
.footer__links-group a:hover { color: var(--accent); }
.footer__newsletter h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__newsletter p { color: var(--text-3); font-size: 0.85rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: var(--text);
  font-size: 0.9rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form .btn { padding: 10px 16px; border-radius: var(--radius-sm); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 0.85rem;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  color: var(--text-3);
  transition: var(--transition);
  display: flex; align-items: center;
}
.footer__social a:hover { color: var(--accent); }

/* =============================================
   SCROLL TOP
============================================= */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(108,99,255,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
  z-index: 100;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: #7c73ff; transform: translateY(-2px); }

/* =============================================
   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); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 1; flex-direction: column; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .player-showcase__inner,
  .apps__inner,
  .contact__inner { gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .hero__wave { display: none; }
  .hero { text-align: center; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .features__grid { grid-template-columns: 1fr; }
  .player-showcase__inner { grid-template-columns: 1fr; }
  .player-showcase__phone { order: -1; }
  .apps__inner { grid-template-columns: 1fr; }
  .stations__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .section-header { text-align: left; }
  .section-header .section-sub { margin: 0; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 3.5rem; }
  .store-btns { flex-direction: column; }
  .hero__stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero { text-align: left; }
  .hero__ctas { flex-direction: column; }
}
