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

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

:root {
  --c: #C0C0C0;
  --bg: #0A0A0A;
  --s: #121212;
  --border: rgba(255,255,255,0.08);
  --text: #FFFFFF;
  --muted: #9A9A9A;
}

html { scroll-behavior: smooth; }

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

/* ─── CUSTOM CURSOR ────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(192,192,192,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, border-color 0.3s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 20px; height: 20px; }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 60px; height: 60px; border-color: rgba(255,255,255,0.5); }

/* ─── NOISE OVERLAY ────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  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='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9997;
}

/* ─── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
}

nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo img {
  height: 100px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links button {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  cursor: none;
  border-radius: 100px;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-links button::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: #fff;
  transition: width 0.3s;
}

.nav-links button:hover,
.nav-links button.active { color: var(--text); }
.nav-links button.active::after { width: 16px; }

/* ─── NAV SOCIALS ──────────────────────────────────────── */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.nsoc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.nsoc svg {
  width: 14px; height: 14px;
  fill: currentColor;
}

.nsoc:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.nsoc-ub {
  width: auto;
  padding: 0 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: 'Syne', sans-serif;
}

/* ─── SECTIONS ─────────────────────────────────────────── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 60% 70% at 85% 80%, rgba(192,192,192,0.02) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,255,255,0.01) 0%, transparent 60%);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.006) 2px, rgba(255,255,255,0.006) 3px),
    repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(255,255,255,0.008) 120px, rgba(255,255,255,0.008) 121px);
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(255,255,255,0.02) 0%, transparent 55%),
    radial-gradient(ellipse 55% 55% at 80% 65%, rgba(192,192,192,0.02) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, transparent 30%, var(--bg) 95%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 2rem;
  max-width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c));
}
.hero-eyebrow::after { transform: scaleX(-1); }

.hero-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 9vw, 7.5rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #fff;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(0.8rem, 1.8vw, 1.1rem);
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-sub span {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* waveform */
.hero-wave {
  position: relative;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.waveform-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
  height: 48px;
}

.bar {
  width: 3px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, var(--c));
  animation: wavebar 1.4s ease-in-out infinite;
  opacity: 0.35;
}

@keyframes wavebar {
  0%, 100% { transform: scaleY(0.2); }
  50%       { transform: scaleY(1); }
}

/* hero scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--c), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* hero stats strip */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  isolation: isolate;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.hstat {
  flex: 1;
  max-width: 220px;
  padding: 1.25rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hstat:last-child { border-right: none; }

.hstat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.hstat-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,192,192,0.2), transparent);
}

/* ─── SECTION WRAPPER ──────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c);
  margin-bottom: 1rem;
  position: relative;
}

.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--c);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: normal;
  color: var(--c);
}

/* ─── ABOUT STRIP (on home) ────────────────────────────── */
.about-strip {
  background: var(--s);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.about-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(192,192,192,0.12) 50%, transparent 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 700px;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: visible;
}

.about-visual-art {
  width: 100%; height: 100%;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 70%, rgba(192,192,192,0.03) 0%, transparent 60%),
    linear-gradient(160deg, #0e0e0e 0%, #141414 40%, #0e0e0e 100%);
  position: relative;
}

.about-visual-art::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}

.about-visual-art::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60%; height: 60%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(192,192,192,0.06);
  border-radius: 50%;
}

.about-visual-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

.badge-float {
  position: absolute;
  bottom: 1.5rem; right: -1.5rem;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-float-icon {
  width: 36px; height: 36px;
  background: rgba(192,192,192,0.06);
  border: 1px solid rgba(192,192,192,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.badge-float-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-float-text span {
  font-size: 0.72rem;
  color: var(--muted);
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-text p strong {
  color: var(--text);
  font-weight: 500;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.service-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c);
  flex-shrink: 0;
  opacity: 0.4;
}

/* ─── CREDITS PAGE ─────────────────────────────────────── */
.credits-page-bg {
  position: relative;
  min-height: 100vh;
}

.credits-page-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 500px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,255,255,0.015) 0%, transparent 70%);
  pointer-events: none;
}

.credits-header {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
}

/* ─── TRACK GRID ───────────────────────────────────────── */
.track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 3rem;
}

.track-card {
  border-radius: 12px;
  overflow: hidden;
}

.track-card iframe {
  display: block;
}

/* ─── CONTACT PAGE ─────────────────────────────────────── */
.contact-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.contact-page::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60vw; height: 60vh;
  background: radial-gradient(ellipse at top right, rgba(192,192,192,0.02), transparent 60%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.contact-lhs h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  position: relative;
}

.contact-lhs h2 em {
  font-style: normal;
  color: var(--c);
}

.contact-lhs p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }

.clink {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.clink:hover { color: var(--text); }

.clink-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--s);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.clink:hover .clink-icon { border-color: rgba(255,255,255,0.2); }

/* form */
.form-glass {
  background: rgba(18,18,18,0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.form-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,192,192,0.15), transparent);
}

.fg { margin-bottom: 1.25rem; }

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }

input:focus, textarea:focus, select:focus {
  border-color: rgba(192,192,192,0.3);
  box-shadow: 0 0 0 3px rgba(192,192,192,0.04);
  background: rgba(255,255,255,0.02);
}

textarea { resize: vertical; min-height: 120px; }
select option { background: #121212; }

input[type="file"] {
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
input[type="file"]::file-selector-button {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  margin-right: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
}
input[type="file"]::file-selector-button:hover {
  background: rgba(255,255,255,0.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-send {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #0A0A0A;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.06);
}

.sent-msg {
  display: none;
  text-align: center;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(192,192,192,0.06);
  border: 1px solid rgba(192,192,192,0.12);
  color: var(--c);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ─── FOOTER ───────────────────────────────────────────── */
.footer-bar {
  border-top: 1px solid var(--border);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bar a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bar a:hover { color: #fff; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid     { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .badge-float    { right: 0; }
  nav             { padding: 0 1.5rem; }
  .nav-links      { gap: 0; }
  .nav-links button { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
  .section-inner  { padding: 4rem 1.5rem; }
  .track-grid     { grid-template-columns: 1fr; padding: 0 1.5rem 2rem; }
  .footer-bar     { padding: 1.5rem; }
  .form-row       { grid-template-columns: 1fr; }
  .hero-name      { font-size: clamp(1.8rem, 8vw, 4rem); }
}

@media (max-width: 480px) {
  nav { gap: 0.5rem; }
  .nav-socials { gap: 0.25rem; }
  .nsoc { width: 28px; height: 28px; }
  .nsoc svg { width: 12px; height: 12px; }
  .nsoc-ub { font-size: 0.58rem; padding: 0 0.5rem; }
  .hstat { padding: 1rem; }
  .hstat-num { font-size: 1.2rem; }
}
