* { box-sizing: border-box; }

:root {
  --bg: #08090c;
  --panel: #11131a;
  --text: #f5f7fb;
  --muted: #a9afbb;
  --line: rgba(255,255,255,.12);
  --pink: #ff2f8f;
  --violet: #7b49ff;
  --cyan: #25d7ff;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { max-width: 820px; }

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 25%, rgba(37,215,255,.22), transparent 34%),
    radial-gradient(circle at 82% 30%, rgba(255,47,143,.28), transparent 36%),
    radial-gradient(circle at 55% 86%, rgba(123,73,255,.25), transparent 36%),
    linear-gradient(135deg, #08090c 0%, #0d0f16 48%, #07070b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 80%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.35));
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.brand {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: .95rem;
  color: #d8dce5;
}

.nav-links a:hover { color: white; }

.hero-content {
  position: relative;
  z-index: 2;
  margin: auto;
  padding: 80px 0 110px;
}

.eyebrow,
.section-kicker {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}

h1, h2, h3 {
  font-family: Montserrat, sans-serif;
  margin: 0;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: -.06em;
  max-width: 900px;
}

.genres {
  margin: 22px 0 8px;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: clamp(.95rem, 2vw, 1.35rem);
}

.tagline {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--violet));
  border-color: transparent;
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost:hover { background: rgba(255,255,255,.08); }

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: rgba(255,255,255,.7);
}

.section { padding: 100px 0; }

.section-dark {
  background: #0b0d12;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  letter-spacing: -.045em;
  margin: 10px 0 22px;
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: #d9dde6;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.pill-row span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #e9ebf0;
  background: rgba(255,255,255,.03);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.feature-card {
  min-height: 320px;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #11131a, #0b0d12);
}

.feature-card.accent {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,47,143,.32), transparent 40%),
    linear-gradient(145deg, #14111a, #0b0d12);
}

.feature-card h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.04em;
  margin: 10px 0 18px;
}

.feature-card p {
  color: var(--muted);
  max-width: 580px;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 800;
}

.residency {
  background:
    linear-gradient(90deg, rgba(123,73,255,.22), rgba(255,47,143,.18)),
    #0d0f15;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.residency-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.residency-copy { max-width: 760px; }

.residency-frequency {
  margin: 18px 0 28px;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: clamp(.95rem, 2vw, 1.25rem);
}

.next-date-label {
  margin: 0 0 5px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.next-date {
  margin: 0 0 12px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  letter-spacing: -.035em;
}

.residency-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.residency-mark {
  width: 180px;
  height: 180px;
  flex: 0 0 180px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.05);
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  line-height: .9;
  box-shadow: 0 0 80px rgba(255,47,143,.12);
}

.mark-small {
  display: block;
  font-size: 1.1rem;
  letter-spacing: .18em;
  margin-left: .18em;
  color: var(--cyan);
}

.mark-big {
  display: block;
  margin-top: 7px;
  font-size: 2.7rem;
}

.two-col {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact { text-align: center; }

.email {
  display: inline-block;
  margin: 10px 0 28px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 3rem);
  word-break: break-word;
}

.social-row {
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  border-top: 1px solid var(--line);
  background: #07080b;
}

.footer-inner {
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #8f96a3;
  font-size: .9rem;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero { min-height: 82vh; }

  .feature-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .section { padding: 72px 0; }
  .feature-card { min-height: 0; }

  .residency-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .residency-mark {
    width: 120px;
    height: 120px;
    flex-basis: 120px;
  }

  .mark-big { font-size: 2rem; }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 24px 0;
  }
}

/* V4 — portrait hero */
.hero-photo {
  position:absolute; z-index:1; top:0; right:0; width:55%; height:100%;
  background-image:
    linear-gradient(90deg,#08090c 0%,rgba(8,9,12,.90) 10%,rgba(8,9,12,.30) 40%,rgba(8,9,12,.02) 75%),
    linear-gradient(0deg,rgba(8,9,12,.68) 0%,transparent 30%),
    url("DJ.jpg");
  background-size:cover; background-position:center 28%;
}
.hero-content h1,.hero-content .genres,.hero-content .tagline,.hero-content .eyebrow,.hero-content .hero-actions{max-width:650px}
#hero-next-date{margin-left:5px;opacity:.78;font-size:.86em}
@media(max-width:900px){
  .hero-photo{width:67%;opacity:.82}
  .hero::after{content:"";position:absolute;z-index:1;inset:0;background:linear-gradient(90deg,rgba(8,9,12,.94),rgba(8,9,12,.60) 52%,rgba(8,9,12,.10));pointer-events:none}
  .hero-content,.nav,.scroll-cue{z-index:3}
}
@media(max-width:620px){
  .hero{min-height:94vh}
  .hero-photo{width:100%;height:58%;opacity:.96;background-image:linear-gradient(0deg,#08090c 0%,rgba(8,9,12,.10) 52%,rgba(8,9,12,.02) 100%),url("DJ.jpg");background-position:center 20%}
  .hero::after{background:linear-gradient(0deg,#08090c 0%,rgba(8,9,12,.88) 43%,rgba(8,9,12,.04) 82%)}
  .hero-content{margin-top:auto;padding-top:330px;padding-bottom:82px}
  h1{font-size:clamp(3rem,16vw,5.3rem)}
  .genres{letter-spacing:.055em;line-height:1.45}
}

/* V5 — compact Supercharged Saturday drag-show promo */
.drag-promo{
  margin:24px 0 18px;
  padding-left:16px;
  border-left:2px solid rgba(255,255,255,.22);
  max-width:620px;
}
.drag-title{
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.13em;
  color:#fff;
}
.drag-title span{color:#35d7ff}
.drag-copy{
  margin-top:7px;
  color:rgba(255,255,255,.78);
  font-size:.95rem;
  line-height:1.5;
}
.drag-link{
  display:inline-block;
  margin-top:7px;
  color:#35d7ff;
  font-size:.84rem;
  font-weight:800;
  text-decoration:none;
}
.drag-link:hover{text-decoration:underline}
