:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --panel: #161616;
  --fg: #f5f1ea;
  --fg-dim: #8f8b84;
  --fg-dimmer: #5c5952;
  --accent: #ff2d9e;
  --border: rgba(245, 241, 234, 0.14);
  --border-soft: rgba(245, 241, 234, 0.08);
  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fg-dimmer); border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
html { scrollbar-color: var(--fg-dimmer) var(--bg); }

/* GRAIN TEXTURE */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* TICKER */
.ticker {
  overflow: hidden;
  background: var(--bg-alt);
  border-bottom: 1px dotted var(--border);
}
.ticker-track {
  display: inline-flex;
  width: max-content;
  gap: 20px;
  padding: 9px 0;
  animation: ticker-scroll 78s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track span.ticker-sep { color: var(--accent); font-size: 8px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CORNER FRAME */
.corner-frame { position: relative; }
.corner-frame::before,
.corner-frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 3;
  pointer-events: none;
}
.corner-frame::before {
  top: 14px;
  left: 14px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.corner-frame::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.accent-text { color: var(--accent); }

.label-sm {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 6px;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.topbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar-name { color: var(--accent); font-weight: 600; }
.topbar-sep { color: var(--fg-dim); }
.topbar-live { margin-left: auto; display: flex; align-items: center; gap: 8px; color: var(--fg); }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  display: inline-block;
}

/* HERO */
.hero {
  position: relative;
  padding-top: 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.55;
  filter: grayscale(0.6) contrast(1.1);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 55%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 64px;
}
.tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pill {
  border: 1px dotted var(--border);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.pill-accent { border-color: var(--accent); color: var(--accent); }
.est {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-dimmer);
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.5rem, 2.07rem + 9.71vw, 13rem);
  line-height: 0.85;
  margin: 0 0 28px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.hero-sub {
  max-width: 620px;
  font-size: clamp(1rem, 0.94rem + 0.23vw, 1.2rem);
  color: var(--fg);
  margin: 0 0 56px;
}
.hero-press {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-soft);
  padding: 28px 40px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.press-logos {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.press-logos a {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 4px;
  color: var(--fg);
}
.press-logos a:hover { text-decoration-color: var(--accent); color: var(--accent); }

/* STATS */
.stats {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 48px 32px;
  border-right: 1px solid var(--border-soft);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 2.06rem + 2.17vw, 4.5rem);
  line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.stat-unit { color: var(--accent); font-size: clamp(1.3rem, 1.04rem + 1.03vw, 2.2rem); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  margin-top: 10px;
}
.stat-sub {
  font-size: 12px;
  color: var(--fg-dimmer);
  margin-top: 4px;
}
.stat-sub .up { color: var(--accent); font-weight: 600; }

/* SECTIONS */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-label .rule { position: relative; width: 28px; height: 1px; background: var(--accent); display: inline-block; }
.section-label .rule::after {
  content: "";
  position: absolute;
  right: -4px; top: -3px;
  width: 5px; height: 5px;
  background: var(--accent);
  transform: rotate(45deg);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 2.29rem + 2.86vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 56px;
}
.section-title.sm { font-size: clamp(2.4rem, 2.06rem + 1.37vw, 3.6rem); margin-bottom: 36px; }

/* MUSIC */
.record-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.album-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.album-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,45,158,0.35), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(120,70,200,0.45), transparent 60%),
    #0e0e12;
}
.album-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
}
.record-info { display: flex; flex-direction: column; justify-content: center; }
.album-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 2.2rem + 1.6vw, 4rem);
  margin: 6px 0 14px;
}
.meta-row {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--fg-dim);
  margin: 0 0 20px;
}
.body-text { color: var(--fg); font-size: clamp(0.95rem, 0.94rem + 0.06vw, 1rem); line-height: 1.7; max-width: 60ch; }
.dsp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px dotted var(--border);
  margin-top: 28px;
}
.dsp-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-right: 1px dotted var(--border);
  border-bottom: 1px dotted var(--border);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.dsp-link:nth-child(2n) { border-right: none; }
.dsp-link:nth-last-child(-n+2) { border-bottom: none; }
.dsp-link .arrow { color: var(--accent); }
.dsp-link:hover { background: var(--border-soft); }

.player {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--panel);
  border: 1px dotted var(--border);
  padding: 20px;
}
.player-thumb {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(255,45,158,0.3), rgba(120,70,200,0.4)), #0e0e12;
  flex-shrink: 0;
}
.player-info { flex: 1; min-width: 0; }
.player-title { font-weight: 700; font-size: 15px; }
.player-sub { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); margin: 3px 0 12px; }
.player-bar { height: 2px; background: var(--border); position: relative; }
.player-progress { position: absolute; left: 0; top: 0; bottom: 0; width: 28%; background: var(--accent); }
.player-times { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--fg-dimmer); margin-top: 6px; }
.play-btn {
  width: 48px; height: 48px;
  border: 1px dotted var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}
.play-btn:hover { background: var(--accent); color: var(--bg); }

/* VIDEO */
.video-main {
  position: relative;
  display: block;
  aspect-ratio: 16/8;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--panel);
}
.video-main img { width: 100%; height: 100%; object-fit: cover; }
.video-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.35) 100%); }
.video-meta-top {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--accent);
}
.play-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%;
  border: 1px dotted var(--accent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}
.video-main:hover .play-circle, .video-card:hover .play-circle { background: var(--accent); color: var(--bg); }
.play-circle.sm { width: 48px; height: 48px; font-size: 14px; }
.video-title-lg {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 1.51rem + 1.14vw, 2.8rem); color: var(--fg);
}
.video-credit {
  position: absolute; bottom: 20px; right: 20px; z-index: 2;
  text-align: right;
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); line-height: 1.6;
}
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.video-card { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--panel); transition: transform 0.25s, box-shadow 0.25s; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(255,45,158,0.18); }
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card-info { position: absolute; bottom: 16px; left: 16px; z-index: 2; }
.video-card-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.1rem, 0.99rem + 0.46vw, 1.5rem); color: var(--fg); }
.video-card-sub { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); margin-top: 4px; }

/* BIO */
.bio-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; }
.bio-summary { font-size: clamp(1rem, 0.96rem + 0.14vw, 1.125rem); font-weight: 600; line-height: 1.5; margin: 6px 0 28px; }
.bio-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
}
.bio-facts strong { display: block; font-size: 14px; font-weight: 600; }
.bio-main p { font-size: clamp(0.95rem, 0.94rem + 0.06vw, 1rem); line-height: 1.8; color: var(--fg); margin: 0 0 22px; }
.bio-main p:last-child { margin-bottom: 0; }

/* QUOTES */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote {
  background: var(--bg-alt);
  border: 1px dotted var(--border);
  margin: 0;
  padding: 40px;
  transition: transform 0.25s, border-color 0.25s;
}
.quote:hover { transform: translateY(-4px); border-color: var(--accent); }
.quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.26rem + 0.57vw, 1.9rem);
  line-height: 1.25;
  margin: 0 0 20px;
}
.quote cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

/* TOUR */
.tour-list { border-top: 1px solid var(--border); }
.tour-row {
  display: grid;
  grid-template-columns: 1.1fr 2fr 0.6fr 0.8fr 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  align-items: center;
}
.tour-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.status { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; padding: 4px 10px; border: 1px dotted; width: fit-content; }
.status-sold { color: var(--fg-dimmer); border-color: var(--border); }
.status-few { color: var(--accent); border-color: var(--accent); }
.status-on { color: var(--fg); border-color: var(--border); }
.past-fests { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border-soft); }
.past-fests p { margin: 8px 0 0; color: var(--fg-dim); }

/* PHOTOS */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.photo-item { margin: 0; position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--panel); transition: transform 0.25s, box-shadow 0.25s; }
.photo-item:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(255,45,158,0.18); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); transition: filter 0.25s, transform 0.25s; }
.photo-item:hover img { filter: grayscale(0); transform: scale(1.04); }
.photo-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--fg);
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
}

/* SOCIAL + CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.social-list { display: flex; flex-direction: column; }
.social-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.social-row span:last-child { font-family: var(--font-mono); color: var(--fg-dim); font-weight: 400; }
.social-row:hover { color: var(--accent); }
.contact-list { display: flex; flex-direction: column; gap: 24px; }
.contact-item { padding-bottom: 20px; border-bottom: 1px solid var(--border-soft); }
.contact-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.contact-item a { font-size: 14px; color: var(--fg-dim); text-decoration: underline; text-decoration-color: var(--border); }
.contact-item a:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* FOOTER */
.footer { border-top: 1px solid var(--border-soft); padding: 32px 0; }
.footer-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-dimmer);
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-soft); padding: 32px 0; }
  .record-grid { grid-template-columns: 1fr; }
  .album-art { max-width: 320px; }
  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .quotes { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .tour-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .tour-head { display: none; }
  .topbar-sep:nth-of-type(2) { display: none; }
  .section { padding: 72px 0; }
}
