:root {
  --bg: #050506;
  --panel: rgba(18, 18, 20, 0.78);
  --panel-strong: #111114;
  --text: #f8f2e8;
  --muted: #b9aea0;
  --orange: #ff5b12;
  --amber: #ffb000;
  --red: #ff1d1d;
  --ice: #9ad8ff;
  --line: rgba(255, 91, 18, 0.32);
  --shadow: 0 0 36px rgba(255, 91, 18, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 91, 18, .30), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(255, 29, 29, .22), transparent 28%),
    linear-gradient(130deg, #050506 0%, #111114 45%, #050506 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background: repeating-linear-gradient(60deg, transparent 0 52px, rgba(255, 91, 18, .08) 53px 54px);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: -2;
}

.noise, .scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.noise {
  opacity: .20;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.scanline {
  z-index: 4;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.035), transparent);
  background-size: 100% 7px;
  opacity: .22;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 64px);
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 6, .68);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font: 700 28px/1 "Rajdhani", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand img { width: 42px; height: 42px; filter: drop-shadow(0 0 16px rgba(255,91,18,.7)); }
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  font: 700 14px/1 "Rajdhani", sans-serif;
  letter-spacing: .13em;
}
.nav a:hover { color: var(--orange); }
.menu-toggle { display: none; }

main { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.section-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.hero { min-height: 86vh; padding: 72px 0 50px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font: 700 14px/1.2 "Rajdhani", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Rajdhani", sans-serif; text-transform: uppercase; margin: 0; }
h1 { font-size: clamp(72px, 12vw, 168px); line-height: .78; letter-spacing: -.05em; }
h1 span { color: transparent; -webkit-text-stroke: 2px var(--orange); text-shadow: var(--shadow); }
h2 { font-size: clamp(44px, 7vw, 86px); line-height: .88; }
h3 { font-size: 28px; }
.lead { color: var(--muted); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; max-width: 650px; }
.small { font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font: 700 15px/1 "Rajdhani", sans-serif;
  letter-spacing: .14em;
  border: 1px solid var(--line);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.btn.primary { background: linear-gradient(90deg, var(--orange), var(--red)); box-shadow: var(--shadow); }
.btn.secondary { background: rgba(255,255,255,.05); }

.hero-card, .player-card, .show, .stats article, .contact {
  background: var(--panel);
  border: 1px solid rgba(255, 91, 18, .22);
  box-shadow: 0 20px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(16px);
}
.hero-card {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
}
.hero-card::before {
  content: "GO / NOT / GO";
  position: absolute;
  inset: auto -30px 40px auto;
  transform: rotate(-90deg);
  color: rgba(255,255,255,.08);
  font: 700 78px/1 "Rajdhani", sans-serif;
  letter-spacing: .1em;
}
.sigil-wrap img { width: min(300px, 55vw); filter: drop-shadow(0 0 34px rgba(255,91,18,.8)); animation: hover 4s ease-in-out infinite; }
.hero-card p { position: absolute; bottom: 32px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; }
.pulse-ring { position: absolute; width: 360px; height: 360px; border: 1px solid var(--line); border-radius: 50%; animation: pulse 3.4s infinite; }
.ring-two { animation-delay: 1.2s; }

.about { padding: 90px 0; border-top: 1px solid rgba(255,255,255,.08); }
.text-block { color: var(--muted); font-size: 20px; line-height: 1.7; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 10px 0 100px; }
.stats article { padding: 30px; clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%); }
.stats strong { display: block; font: 700 74px/.9 "Rajdhani", sans-serif; color: var(--orange); }
.stats span { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }

.shows, .music, .contact { padding: 90px 0; }
.show-list { margin-top: 28px; display: grid; gap: 14px; }
.show { display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; align-items: center; padding: 22px; }
.show > span { color: var(--orange); font: 700 32px/1 "Rajdhani", sans-serif; text-transform: uppercase; }
.show p { margin: 4px 0 0; color: var(--muted); }
.show a { color: var(--amber); text-transform: uppercase; text-decoration: none; font: 700 14px "Rajdhani", sans-serif; letter-spacing: .16em; }

.track-stack { display: grid; gap: 12px; }
.track {
  width: 100%;
  padding: 20px;
  text-align: left;
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  font: 700 22px/1 "Rajdhani", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
.track span { color: var(--orange); margin-right: 14px; }
.track.is-active { border-color: var(--orange); box-shadow: var(--shadow); background: rgba(255, 91, 18, .14); }
.player-card { padding: 28px; }
.player-card p { color: var(--muted); }
.bars { display: flex; align-items: end; gap: 6px; height: 58px; margin-top: 22px; }
.bars i { display: block; width: 12px; background: linear-gradient(var(--amber), var(--orange)); animation: bar 900ms infinite alternate; }
.bars i:nth-child(2) { animation-delay: .1s; } .bars i:nth-child(3) { animation-delay: .2s; }
.bars i:nth-child(4) { animation-delay: .3s; } .bars i:nth-child(5) { animation-delay: .4s; }
.bars i:nth-child(6) { animation-delay: .5s; } .bars i:nth-child(7) { animation-delay: .6s; }

.contact { margin: 60px 0 90px; padding: clamp(34px, 6vw, 70px); text-align: center; clip-path: polygon(34px 0, 100% 0, calc(100% - 34px) 100%, 0 100%); }
.contact p { color: var(--muted); }
footer { width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: 30px 0 50px; color: rgba(255,255,255,.45); font-size: 13px; }

@keyframes hover { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes pulse { from { transform: scale(.7); opacity: .85; } to { transform: scale(1.35); opacity: 0; } }
@keyframes bar { from { height: 12px; } to { height: 56px; } }

@media (max-width: 820px) {
  .section-grid, .stats { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; min-height: auto; }
  .hero-card { min-height: 390px; }
  .nav { position: fixed; top: 78px; left: 18px; right: 18px; display: none; flex-direction: column; padding: 22px; background: rgba(5,5,6,.94); border: 1px solid var(--line); }
  .nav.is-open { display: flex; }
  .menu-toggle { display: inline-flex; background: transparent; border: 1px solid var(--line); color: var(--text); padding: 10px 14px; font: 700 14px "Rajdhani", sans-serif; letter-spacing: .14em; }
  .show { grid-template-columns: 1fr; }
}
