:root {
  --bg: #030303;
  --bg2: #0b0b0b;
  --ink: #f1f1f1;
  --muted: #a3a3a3;
  --line: rgba(255,255,255,.16);
  --line-strong: rgba(255,255,255,.34);
  --panel: rgba(255,255,255,.045);
  --panel2: rgba(255,255,255,.075);
  --shadow: 0 24px 80px rgba(0,0,0,.8);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.10), transparent 24rem),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.08), transparent 18rem),
    linear-gradient(145deg, var(--bg), #090909 46%, #000);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.noise, .scan {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 30;
}
.noise {
  opacity: .11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 1rem;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
}

.lang-switch a {
  opacity: 0.55;
  text-decoration: none;
}

.lang-switch a.active,
.lang-switch a:hover {
  opacity: 1;
}

.scan {
  opacity: .22;
  background: repeating-linear-gradient(to bottom, transparent 0 5px, rgba(255,255,255,.035) 5px 6px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(3,3,3,.78);
  backdrop-filter: blur(18px);
}
.brand {
  font-family: "Arial Black", Impact, sans-serif;
  letter-spacing: .2em;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}
.slashed-o {
  position: relative;
  display: inline-block;
}
.slashed-o::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -8%;
  width: .1em;
  height: 120%;
  background: currentColor;
  transform: translateX(-50%) rotate(22deg);
  transform-origin: center;
}
.slashed-o.big::after { width: .07em; }
.nav { display: flex; gap: .55rem; align-items: center; flex-wrap: wrap; }
.nav a, .nav-toggle, .btn, .listen-row a, .link-cloud a, .gig-item a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  padding: .72rem .9rem;
  text-transform: uppercase;
  font: 700 .72rem/1 "Space Mono", monospace;
  letter-spacing: .13em;
  transition: .25s ease;
}
.nav a:hover, .btn:hover, .listen-row a:hover, .link-cloud a:hover, .gig-item a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #000;
  transform: translateY(-2px);
}
.admin-link { opacity: .62; }
.nav-toggle { display: none; color: var(--ink); cursor: pointer; }

main { position: relative; z-index: 1; }
.section, .hero {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-grid {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.kicker, .eyebrow, .track-meta, .location {
  color: var(--muted);
  font: 700 .76rem/1.5 "Space Mono", monospace;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.glitch-line { animation: pulseLine 2.8s infinite steps(2); }
h1, h2, h3, p { margin: 0; }
h1 {
  position: relative;
  margin-top: 1rem;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(5.5rem, 18vw, 14rem);
  line-height: .78;
  letter-spacing: -.08em;
  text-transform: uppercase;
  filter: drop-shadow(12px 0 0 rgba(255,255,255,.06));
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: .58;
  pointer-events: none;
}
.glitch::before { transform: translate(3px, -2px); clip-path: inset(0 0 47% 0); animation: glitchA 2.6s infinite; }
.glitch::after { transform: translate(-3px, 2px); clip-path: inset(54% 0 0 0); animation: glitchB 3.1s infinite; }
.tagline {
  margin-top: 1.5rem;
  max-width: 680px;
  font-size: clamp(1.4rem, 3.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.location { margin-top: 1rem; }
.hero-actions { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
.btn.primary { background: var(--ink); color: #000; border-color: var(--ink); }
.btn.primary:hover { background: transparent; color: var(--ink); }
.portrait-frame {
  position: relative;
  padding: .75rem;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(255,255,255,.08);
  z-index: -1;
}
.portrait-frame img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(.88);
}
.frame-label {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  right: .75rem;
  padding: .8rem;
  background: rgba(0,0,0,.76);
  font: 700 .72rem/1 "Space Mono", monospace;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  background: #e8e8e8;
  color: #050505;
  transform: rotate(-1deg) scale(1.02);
}
.ticker div { display: inline-flex; gap: 2rem; padding: .8rem 0; animation: ticker 18s linear infinite; }
.ticker span { font: 900 .85rem/1 "Space Mono", monospace; letter-spacing: .18em; }

.section-head {
  display: grid;
  gap: .75rem;
  margin-bottom: 2rem;
  max-width: 720px;
}
.section-head h2, .bio-section h2, .contact h2 {
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
  font-weight: 900;
}
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.track-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1rem;
  padding: .75rem;
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 300px;
  transition: .25s ease;
}
.track-card:hover { transform: translateY(-4px); background: var(--panel2); border-color: var(--line-strong); }
.cover-wrap { position: relative; overflow: hidden; background: #000; }
.cover-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; filter: grayscale(1) contrast(1.15); transition: .35s ease; }
.track-card:hover .cover-wrap img { transform: scale(1.04); }
.status {
  position: absolute;
  left: .75rem;
  top: .75rem;
  background: #fff;
  color: #000;
  padding: .45rem .55rem;
  font: 900 .65rem/1 "Space Mono", monospace;
  letter-spacing: .12em;
}
.track-body { display: flex; flex-direction: column; padding: .4rem .2rem; }
.track-body h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); letter-spacing: -.04em; text-transform: uppercase; line-height: .95; }
.track-body p:not(.track-meta) { color: var(--muted); line-height: 1.6; margin-top: 1rem; }
.listen-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: 1.5rem; }
.listen-row a { padding: .64rem .7rem; }

.split {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(2rem, 6vw, 5rem);
}
.sticky-title { position: sticky; top: 7rem; align-self: start; }
.gig-list { display: grid; gap: .7rem; }

.gig-item.empty-state {
  border-style: dashed;
  opacity: .82;
}

.gig-item.empty-state h3 { color: var(--white); }
.gig-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
}
.gig-item:hover { border-color: var(--ink); }
.gig-date { font: 900 .78rem/1.4 "Space Mono", monospace; letter-spacing: .13em; color: #000; background: #fff; padding: .75rem; text-align: center; }
.gig-item h3 { text-transform: uppercase; font-size: 1.35rem; }
.gig-item p { color: var(--muted); margin-top: .25rem; }

.bio-section {
  display: grid;
  grid-template-columns: .55fr 1fr .55fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bio-text { font-size: clamp(1.15rem, 2vw, 1.65rem); line-height: 1.55; color: #d7d7d7; }
.meters { display: grid; gap: 1rem; }
.meters span {
  display: grid;
  gap: .45rem;
  color: var(--muted);
  font: 700 .72rem/1 "Space Mono", monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.meters span::after {
  content: "";
  height: 7px;
  width: var(--w);
  background: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,.25);
  animation: meter 2.4s ease both;
}
.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}
.mail { display: inline-block; margin-top: 1rem; color: #fff; font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 900; letter-spacing: -.04em; border-bottom: 2px solid #fff; }
.link-cloud { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }
.link-cloud a { font-size: .85rem; padding: 1rem 1.2rem; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 700 .72rem/1 "Space Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .15s; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pulseLine { 50% { opacity: .35; transform: translateX(2px); } }
@keyframes glitchA { 0%, 93%, 100% { transform: translate(3px,-2px); } 94% { transform: translate(16px,-4px); } 96% { transform: translate(-8px,3px); } }
@keyframes glitchB { 0%, 89%, 100% { transform: translate(-3px,2px); } 91% { transform: translate(-15px,3px); } 94% { transform: translate(8px,-4px); } }
@keyframes meter { from { width: 0; } }

@media (max-width: 980px) {
  .section-grid, .split, .bio-section, .contact { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 520px; }
  .sticky-title { position: static; }
  .track-grid { grid-template-columns: 1fr; }
  .link-cloud { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0,0,0,.96);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: grid; }
  .track-card { grid-template-columns: 1fr; }
  .gig-item { grid-template-columns: 1fr; align-items: start; }
  h1 { font-size: clamp(5rem, 30vw, 8rem); }
  footer { flex-direction: column; }
}
