/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0a0a0a;
  --bg2:        #111111;
  --card:       #161616;
  --pink:       #ff0080;
  --pink-light: #ff6ec7;
  --pink-dark:  #cc0066;
  --white:      #ffffff;
  --muted:      #666666;
  --border:     rgba(255,0,128,.15);
  --font-head:  'Bebas Neue', sans-serif;
  --font-body:  'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); }

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(to bottom, rgba(10,10,10,.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
.nav-logo span { color: var(--pink); }
.nav-logo:hover { color: var(--pink-light); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--pink); }

/* ─── HERO ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

/* animated background orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--pink-dark) 0%, transparent 70%);
  bottom: -5%; right: -5%;
  animation-delay: -4s;
}
.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #ff00ff 0%, transparent 70%);
  top: 60%; left: 55%;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(.95); }
}

/* noise overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 150px;
  opacity: .5;
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: .3rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease forwards;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: .9;
  letter-spacing: .02em;
  position: relative;
  animation: fadeUp .8s .15s ease forwards;
  opacity: 0;
  user-select: none;
}

/* glitch effect */
.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.hero-title::before {
  color: var(--pink);
  animation: glitch-1 4s infinite steps(1);
  clip-path: inset(0 0 100% 0);
}
.hero-title::after {
  color: #00ffff;
  animation: glitch-2 4s infinite steps(1);
  clip-path: inset(100% 0 0 0);
  mix-blend-mode: screen;
}

@keyframes glitch-1 {
  0%, 90%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
  92%           { clip-path: inset(30% 0 55% 0); transform: translate(-4px, 0); }
  94%           { clip-path: inset(65% 0 15% 0); transform: translate(4px, 0); }
  96%           { clip-path: inset(10% 0 78% 0); transform: translate(-4px, 0); }
  98%           { clip-path: inset(50% 0 35% 0); transform: translate(4px, 0); }
}
@keyframes glitch-2 {
  0%, 90%, 100% { clip-path: inset(100% 0 0 0); transform: translate(0); }
  93%           { clip-path: inset(70% 0 10% 0); transform: translate(4px, 0); }
  95%           { clip-path: inset(20% 0 65% 0); transform: translate(-4px, 0); }
  97%           { clip-path: inset(45% 0 40% 0); transform: translate(4px, 0); }
  99%           { clip-path: inset(80% 0 5%  0); transform: translate(-4px, 0); }
}

.hero-sub {
  font-size: clamp(.8rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem;
  animation: fadeUp .8s .3s ease forwards;
  opacity: 0;
}
.hero-sub em { color: var(--pink); font-style: normal; }

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp .8s .45s ease forwards;
  opacity: 0;
}
.btn {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 2rem;
  border-radius: 2px;
  transition: all .25s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 0 30px rgba(255,0,128,.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: fadeUp .8s .6s ease forwards, bob 2s 1.4s ease-in-out infinite;
  opacity: 0;
}
.scroll-hint svg { width: 18px; height: 18px; stroke: var(--pink); }
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION SHARED ────────────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: .03em;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, var(--pink), transparent);
  margin-bottom: 3rem;
  margin-top: .75rem;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
#about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  filter: grayscale(20%) contrast(1.1);
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--card) 0%, #1f1f1f 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}
.about-photo-placeholder svg { width: 40px; height: 40px; stroke: var(--muted); opacity: .5; }

.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -8px -8px auto auto;
  width: 60%;
  height: 60%;
  border-top: 2px solid var(--pink);
  border-right: 2px solid var(--pink);
  border-radius: 0 4px 0 0;
  pointer-events: none;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: auto auto -8px -8px;
  width: 60%;
  height: 60%;
  border-bottom: 2px solid var(--pink);
  border-left: 2px solid var(--pink);
  border-radius: 0 0 0 4px;
  pointer-events: none;
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-bio {
  color: #aaaaaa;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-bio strong { color: var(--white); font-weight: 600; }
.about-bio .candy { color: var(--pink-light); }

.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: 4px;
  border: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--pink);
  line-height: 1;
}
.stat-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .25rem;
}

.about-ig {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
}
.about-ig svg { width: 18px; height: 18px; fill: var(--pink); flex-shrink: 0; }
.about-ig:hover { color: var(--pink); }

/* ─── MUSIC ─────────────────────────────────────────────────── */
#music {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spotify-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}

.spotify-item {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .25s, transform .25s;
}
.spotify-item:hover {
  border-color: rgba(255,0,128,.4);
  transform: translateY(-2px);
}
.spotify-item iframe {
  display: block;
  border-radius: 0;
}

/* ─── PLATFORMS ─────────────────────────────────────────────── */
#platforms { background: var(--bg); }

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

@media (min-width: 600px) {
  .platforms-grid { grid-template-columns: repeat(4, 1fr); }
}

.platform-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--platform-color, var(--pink));
  transform: scaleX(0);
  transition: transform .25s;
}
.platform-card:hover { border-color: rgba(255,255,255,.15); transform: translateY(-3px); }
.platform-card:hover::before { transform: scaleX(1); }
.platform-card:hover .platform-icon { filter: none; transform: scale(1.1); }

.platform-icon {
  width: 40px; height: 40px;
  filter: grayscale(30%);
  transition: all .25s;
}

.platform-name {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
}
.platform-card:hover .platform-name { color: var(--white); }

/* platform accent colors */
.platform-spotify    { --platform-color: #1ed760; }
.platform-soundcloud { --platform-color: #ff5500; }
.platform-apple      { --platform-color: #fc3c44; }
.platform-youtube    { --platform-color: #ff0000; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: .1em;
  color: var(--white);
  text-decoration: none;
}
.footer-logo span { color: var(--pink); }

.footer-copy {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .1em;
}

.footer-ig {
  display: flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 500;
  transition: color .2s;
}
.footer-ig svg { width: 16px; height: 16px; fill: currentColor; }
.footer-ig:hover { color: var(--pink); }

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links a:not(:last-child) { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo-wrap { max-width: 280px; margin: 0 auto; }

  .about-stats { gap: 1rem; }
  .stat-num { font-size: 1.5rem; }

  .hero-cta { flex-direction: column; align-items: center; }

  .footer-inner { flex-direction: column; text-align: center; }
}
