/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
  --bg:             #07070f;
  --bg-2:           #0c0c18;
  --bg-3:           #12121f;
  --surface:        rgba(255, 255, 255, 0.04);
  --surface-hover:  rgba(255, 255, 255, 0.08);
  --border:         rgba(255, 255, 255, 0.08);
  --border-hover:   rgba(255, 255, 255, 0.16);
  --accent:         #7c3aed;
  --accent-light:   #a78bfa;
  --accent-glow:    rgba(124, 58, 237, 0.4);
  --cyan:           #06b6d4;
  --cyan-glow:      rgba(6, 182, 212, 0.3);
  --text:           #f0f0ff;
  --text-muted:     #6b6b8a;
  --text-subtle:    #3d3d5c;
  --radius:         16px;
  --radius-sm:      8px;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --transition:     0.3s var(--ease);
}

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

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

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   BACKGROUND LAYERS
============================================================ */
.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%,   rgba(124, 58, 237, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 100%,  rgba(6, 182, 212, 0.12)  0%, transparent 60%);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 7, 15, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

/* ============================================================
   CONTAINER & SECTION LABELS
============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.75rem;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}

.hero-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.hero-name span         { display: block; color: var(--text); }
.hero-name .grad-text   {
  display: block;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #5b21b6);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ============================================================
   VINYL RECORD
============================================================ */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 1;
}

.vinyl-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
}

.vinyl {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.07) 0%, transparent 38%),
    repeating-radial-gradient(circle, #0c0c1c 0px, #0c0c1c 2px, #111126 2px, #111126 7px);
  animation: vinyl-spin 6s linear infinite;
  box-shadow:
    0 0 60px  rgba(124, 58, 237, 0.35),
    0 0 120px rgba(124, 58, 237, 0.15),
    inset 0 0 30px rgba(0, 0, 0, 0.7);
  position: relative;
}

.vinyl::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 26%, rgba(255,255,255,0.05) 0%, transparent 32%);
  pointer-events: none;
}

.vinyl-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c0a32, #0d091e);
  border: 2px solid rgba(167, 139, 250, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.vinyl-center::after {
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.7);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.9);
}

.vinyl-glow {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 70%);
  animation: glow-pulse 3.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes vinyl-spin  { to { transform: rotate(360deg); } }
@keyframes glow-pulse  {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.12); }
}

/* ============================================================
   WAVEFORM
============================================================ */
.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 56px;
}

.wave-bar {
  width: 4px;
  background: linear-gradient(to top, var(--accent), var(--cyan));
  border-radius: 2px;
  animation: wave-anim 1.3s ease-in-out infinite alternate;
  min-height: 5px;
}

@keyframes wave-anim {
  0%   { height: 5px;  opacity: 0.35; }
  100% { height: 50px; opacity: 1;    }
}

/* ============================================================
   SCROLL HINT
============================================================ */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-subtle);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: hint-bounce 2.2s ease-in-out infinite;
  z-index: 1;
}

@keyframes hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.about-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.about-avatar-wrap {
  flex-shrink: 0;
  position: relative;
  width: 148px;
  height: 148px;
}

.about-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  z-index: 0;
}

.about-avatar-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg);
}

.about-text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(240, 240, 255, 0.72);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ============================================================
   MUSIC PLATFORMS
============================================================ */
.music {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.platform-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--p-color, var(--accent));
  border-radius: 3px 0 0 3px;
}

.platform-card:not(.coming-soon):hover {
  background: var(--surface-hover);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.09);
}

.p-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  color: var(--p-color, var(--text));
  transition: all var(--transition);
}

.platform-card:not(.coming-soon):hover .p-icon {
  background: rgba(255,255,255,0.1);
  transform: scale(1.06);
}

.p-info { flex: 1; }

.p-action {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.p-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.01em;
}

.p-arrow {
  color: var(--text-subtle);
  font-size: 0.85rem;
  transition: all var(--transition);
  margin-left: auto;
}

.platform-card:not(.coming-soon):hover .p-arrow {
  color: var(--text-muted);
  transform: translateX(4px);
}

.coming-soon { opacity: 0.45; cursor: default; }
.coming-soon .p-action { color: var(--text-subtle); }

/* Platform accent colors */
.p-spotify      { --p-color: #1DB954; }
.p-applemusic   { --p-color: #fc3c44; }
.p-youtubemusic { --p-color: #FF0000; }
.p-amazonmusic  { --p-color: #00A8E0; }
.p-soundcloud   { --p-color: #FF5500; }
.p-tidal        { --p-color: #00FFFF; }

/* ============================================================
   SOCIALS
============================================================ */
.socials {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.1rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  transition: all var(--transition);
}

.social-card i { font-size: 1.3rem; }

.social-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
}

.s-tiktok:hover    { border-color: rgba(105,201,208,0.35); color: #69C9D0; }
.s-instagram:hover { border-color: rgba(225,48,108,0.35);  color: #E1306C; }
.s-twitter:hover,
.s-x:hover         { border-color: rgba(29,161,242,0.35);  color: #1DA1F2; }
.s-discord:hover   { border-color: rgba(88,101,242,0.35);  color: #5865F2; }
.s-twitch:hover    { border-color: rgba(145,70,255,0.35);  color: #9146FF; }
.s-youtube:hover   { border-color: rgba(255,0,0,0.35);     color: #FF0000; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer p   { color: var(--text-muted); font-size: 0.875rem; }
.footer-domain {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--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: 820px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
    gap: 3rem;
  }
  .hero-tagline  { max-width: 100%; }
  .hero-ctas     { justify-content: center; }
  .hero-visual   { order: -1; }
  .vinyl-wrapper { width: 220px; height: 220px; }
  .platforms-grid { grid-template-columns: 1fr; }
  .about-inner   { flex-direction: column; align-items: center; text-align: center; }
  .nav-links     { display: none; }
  .footer .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-name     { font-size: 3rem; }
  .vinyl-wrapper { width: 180px; height: 180px; }
  .waveform      { display: none; }
}

/* ============================================================
   UPDATES PAGE — post list
============================================================ */
.updates-hero {
  padding: 9rem 0 4rem;
  position: relative;
  z-index: 1;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: all var(--transition);
}

.post-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.post-date {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
}

.post-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  transition: gap var(--transition);
}
.post-card:hover .post-read-more { gap: 0.625rem; }

.no-posts {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}
.no-posts i { font-size: 3rem; margin-bottom: 1rem; color: var(--text-subtle); }

/* ============================================================
   SINGLE POST PAGE
============================================================ */
.post-page {
  padding: 9rem 0 5rem;
  position: relative;
  z-index: 1;
}

.post-page .post-date { margin-bottom: 0.75rem; }

.post-page .post-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(240, 240, 255, 0.8);
  max-width: 720px;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  transition: color var(--transition);
}
.post-back:hover { color: var(--text); }
