/* ============================================
   RADIO PARADIJS — Retro-Futuristic Radio Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #070708;
  --color-bg-alt: #0d0d0f;
  --color-bg-card: #111114;
  --color-surface: #16161a;
  --color-border: #222228;
  --color-border-light: #2a2a32;
  --color-text: #e8e8ec;
  --color-text-muted: #8888a0;
  --color-text-dim: #55556a;
  --color-yellow: #faf463;
  --color-yellow-dim: rgba(250, 244, 99, 0.12);
  --color-yellow-glow: rgba(250, 244, 99, 0.25);
  --color-pink: #fa225b;
  --color-pink-dim: rgba(250, 34, 91, 0.12);
  --color-pink-glow: rgba(250, 34, 91, 0.3);
  --color-white: #ffffff;
  --color-black: #000000;

  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'DM Sans', sans-serif;

  --header-height: 72px;
  --container: 1200px;
  --pad: 24px;
  --section-pad: 100px;
  --radius: 10px;
  --radius-lg: 16px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 8, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(7, 7, 8, 0.96);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-yellow);
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--color-pink);
  border-radius: 50%;
  animation: livePulse 2s ease infinite;
  box-shadow: 0 0 12px var(--color-pink-glow);
}

.nav-main { display: flex; align-items: center; gap: 4px; }

.nav-main a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
  position: relative;
}

.nav-main a:hover { color: var(--color-yellow); background: var(--color-yellow-dim); }
.nav-main a.active { color: var(--color-yellow); }
.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--color-pink);
  border-radius: 1px;
}

.nav-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  background: var(--color-pink);
  color: var(--color-white);
  border-radius: 6px;
  margin-left: 8px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 16px var(--color-pink-glow);
}

.nav-live-btn:hover {
  background: #ff3370;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--color-pink-glow);
}

.nav-live-btn .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
  animation: livePulse 1.5s ease infinite;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-yellow);
  border-radius: 2px;
  transition: all 0.35s 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 Nav */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.visible { opacity: 1; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--color-bg-alt);
  border-left: 1px solid var(--color-border);
  z-index: 999;
  padding: 100px 32px 40px;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--color-yellow); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 40%, var(--color-pink-dim), transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 60%, var(--color-yellow-dim), transparent 60%),
    linear-gradient(180deg, var(--color-bg) 0%, transparent 25%, transparent 75%, var(--color-bg) 100%);
  z-index: 1;
}

.hero-bg .scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--pad);
}

.hero-freq {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid var(--color-pink-dim);
  border-radius: 50px;
  background: rgba(250, 34, 91, 0.04);
  animation: fadeInDown 0.7s ease both;
}

.hero-freq .live-dot {
  width: 6px;
  height: 6px;
  background: var(--color-pink);
  border-radius: 50%;
  animation: livePulse 1.5s ease infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--color-white);
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 .yellow { color: var(--color-yellow); }
.hero h1 .pink { color: var(--color-pink); }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.25s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

/* Equalizer animation */
.eq-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}
.eq-bars span {
  display: block;
  width: 3px;
  background: var(--color-yellow);
  border-radius: 2px;
  animation: eqBounce 1.2s ease infinite;
}
.eq-bars span:nth-child(1) { height: 60%; animation-delay: 0s; }
.eq-bars span:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.eq-bars span:nth-child(3) { height: 40%; animation-delay: 0.3s; }
.eq-bars span:nth-child(4) { height: 80%; animation-delay: 0.45s; }
.eq-bars span:nth-child(5) { height: 50%; animation-delay: 0.6s; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-pink), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.btn-yellow {
  background: var(--color-yellow);
  color: var(--color-black);
  box-shadow: 0 4px 20px var(--color-yellow-glow);
}
.btn-yellow:hover {
  background: #fcf77a;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(250, 244, 99, 0.35);
}

.btn-pink {
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 4px 20px var(--color-pink-glow);
}
.btn-pink:hover {
  background: #ff3370;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(250, 34, 91, 0.4);
}

.btn-outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  background: var(--color-yellow-dim);
}

.btn-ghost {
  color: var(--color-text-muted);
  padding: 10px 20px;
}
.btn-ghost:hover { color: var(--color-yellow); }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: var(--section-pad) 0; position: relative; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-pink);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 550px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.section-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-pink));
  border-radius: 2px;
  margin-top: 20px;
}
.section-header.center .section-divider { margin: 20px auto 0; }

/* ============================================
   PLAYER EMBED
   ============================================ */
.player-section {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.player-wrapper {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.player-embed {
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  padding: 60px 40px;
  position: relative;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(250, 34, 91, 0.06), transparent),
    var(--color-bg-card);
}

.cassette-icon {
  font-size: 6rem;
  line-height: 1;
  filter: drop-shadow(0 0 30px var(--color-yellow-glow));
}

.player-info {
  text-align: center;
}

.player-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 8px;
}

.player-info p {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-white);
  box-shadow: 0 4px 30px var(--color-pink-glow);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 40px rgba(250, 34, 91, 0.45);
}

.stream-url {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-dim);
  letter-spacing: 1px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-pink), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover {
  border-color: rgba(250, 244, 99, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px var(--color-yellow-glow));
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   SCHEDULE TABLE
   ============================================ */
.schedule-wrapper { overflow-x: auto; }

.schedule-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.schedule-table th, .schedule-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.schedule-table thead th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-yellow);
  background: var(--color-yellow-dim);
}

.schedule-table tbody tr { transition: background 0.15s ease; }
.schedule-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.schedule-table tbody tr:last-child td { border-bottom: none; }

.schedule-table td {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.schedule-table td:first-child {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-live { background: var(--color-pink-dim); color: var(--color-pink); }
.badge-show { background: var(--color-yellow-dim); color: var(--color-yellow); }
.badge-replay { background: rgba(255,255,255,0.06); color: var(--color-text-muted); }

/* ============================================
   ABOUT / FEATURE SECTIONS
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid .text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.about-grid .text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-grid .visual {
  position: relative;
  aspect-ratio: 1;
  max-height: 480px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-grid .visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, var(--color-yellow-dim), transparent 50%),
    radial-gradient(circle at 70% 70%, var(--color-pink-dim), transparent 50%);
}

.about-grid .visual .big-emoji {
  font-size: 8rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px var(--color-yellow-glow));
}

/* ============================================
   AM BANNER
   ============================================ */
.am-banner {
  background: linear-gradient(135deg, var(--color-yellow), #e8d840);
  color: var(--color-black);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.am-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 100px,
    rgba(0,0,0,0.03) 100px,
    rgba(0,0,0,0.03) 200px
  );
}

.am-banner .container { position: relative; z-index: 1; }

.am-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.am-banner p {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ============================================
   STATS
   ============================================ */
.stats-bar {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, var(--color-pink-dim), transparent);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px var(--color-yellow-dim);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-yellow-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-card h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-dim);
  margin-bottom: 4px;
}
.contact-card p { font-size: 0.95rem; color: var(--color-white); line-height: 1.5; }
.contact-card a { color: var(--color-yellow); }
.contact-card a:hover { color: var(--color-pink); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}
.social-links a:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  background: var(--color-yellow-dim);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: calc(var(--header-height) + 72px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 30% 0%, var(--color-pink-dim), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--color-text-muted); }
.page-hero .breadcrumb a:hover { color: var(--color-yellow); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 14px;
}
.page-hero .page-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-yellow);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}
.footer-col ul li a:hover { color: var(--color-yellow); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--color-text-dim); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--color-text-dim); }
.footer-bottom-links a:hover { color: var(--color-yellow); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px currentColor; }
  50% { opacity: 0.4; box-shadow: 0 0 2px currentColor; }
}
@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
@keyframes scrollPulse {
  0% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0.3; transform: scaleY(0.5); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; --header-height: 64px; }
  .nav-main { display: none; }
  .nav-live-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .mobile-overlay { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root { --section-pad: 52px; --pad: 16px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-number { font-size: 2.2rem; }
}
