/* ============================================================
   UNIQUE — JOEY DANIEL EVENT LANDING PAGE
   styles.css
   Caracas · April 18, 2026
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --red:         #E53935;
  --red-strong:  #FF4040;
  --red-dim:     rgba(229, 57, 53, 0.12);
  --red-glow:    rgba(229, 57, 53, 0.30);
  --red-border:  rgba(229, 57, 53, 0.22);

  /* Backgrounds */
  --bg:          #080808;
  --bg-2:        #0c0c0c;
  --surface:     #111111;
  --surface-2:   #181818;
  --surface-3:   #222222;

  /* Borders */
  --border:      rgba(255, 255, 255, 0.07);
  --border-2:    rgba(255, 255, 255, 0.12);
  --grid-line:   rgba(229, 57, 53, 0.055);

  /* Text */
  --text:        #F4F4F4;
  --text-sec:    rgba(244, 244, 244, 0.68);
  --text-muted:  rgba(244, 244, 244, 0.40);

  /* Typography */
  --ff-display:  'Bebas Neue', 'Impact', sans-serif;
  --ff-mono:     'JetBrains Mono', 'Courier New', monospace;
  --ff-body:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --nav-h:       104px;
  --container:   1300px;
  --pad-x:       clamp(20px, 5vw, 80px);
  --section-y:   clamp(80px, 11vw, 140px);

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::selection { background: rgba(229, 57, 53, 0.28); color: #fff; }

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
em  { font-style: normal; }

/* Blueprint grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}


/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  display: none;
  will-change: left, top;
}

#cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(229, 57, 53, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
  display: none;
  will-change: left, top, width, height;
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-ready              { cursor: none; }
  body.cursor-ready #cursor,
  body.cursor-ready #cursor-ring { display: block; }
  body.cursor-ready.cursor-hover #cursor-ring {
    width: 52px; height: 52px;
    border-color: var(--red);
  }
}


/* ============================================================
   CONTAINER & HELPERS
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

.section-padded {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0;
}

.section-dark {
  background: var(--surface);
}

.text-red       { color: var(--red); }
.italic-normal  { font-style: normal; }

/* Section label */
.section-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* Section heading */
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7.5vw, 110px);
  line-height: 0.90;
  text-transform: uppercase;
  margin-bottom: clamp(48px, 7vw, 80px);
}


/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.96) 0%, transparent 100%);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s;
}

#nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-badge {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-badge-sep {
  color: var(--border-2);
  font-size: 12px;
}

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--red-border); }

.lt-opt {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 8px 11px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  user-select: none;
  line-height: 1;
}
.lt-opt.is-active {
  color: var(--red);
  background: var(--red-dim);
}
.lt-opt:hover:not(.is-active) { color: var(--text-sec); }

.lt-sep {
  font-family: var(--ff-mono);
  font-size: 9px;
  color: var(--border-2);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.nav-cta {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  color: #fff;
  background: var(--red);
  padding: 10px 24px;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-cta:hover::after { transform: translateX(0); }


/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Video */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.40;
  transform-origin: center center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(8,8,8,1.0)  0%,
      rgba(8,8,8,0.72) 30%,
      rgba(8,8,8,0.20) 70%,
      rgba(8,8,8,0.60) 100%),
    linear-gradient(to right,
      rgba(8,8,8,0.75) 0%,
      rgba(8,8,8,0.10) 55%,
      rgba(8,8,8,0.40) 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(229,57,53,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(229,57,53,0.08) 0%, transparent 60%);
}

/* Background watermark word */
.hero-bg-word {
  position: absolute;
  bottom: -0.08em;
  right: -0.04em;
  font-family: var(--ff-display);
  font-size: clamp(160px, 28vw, 480px);
  line-height: 1;
  color: rgba(229, 57, 53, 0.042);
  letter-spacing: -4px;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(100px, 14vw, 160px) var(--pad-x) clamp(60px, 9vw, 110px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 3px;
  color: var(--text-sec);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.eyebrow-line {
  display: block;
  width: 32px; height: 1px;
  background: var(--red);
  opacity: 0.7;
}
.eyebrow-dot { color: rgba(229,57,53,0.5); }
.eyebrow-red { color: var(--red); }

/* Title block */
.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-brand-logo {
  height: clamp(38px, 5.5vw, 84px);
  width: auto;
  max-width: min(55vw, 520px);
  filter: brightness(1.05);
}

/* "FEATURING" separator */
.hero-featuring {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0 4px;
}
.feat-text {
  font-family: var(--ff-mono);
  font-size: clamp(9px, 1.1vw, 13px);
  letter-spacing: 7px;
  color: var(--red);
  text-transform: uppercase;
  white-space: nowrap;
}
.feat-line {
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-border), transparent);
  flex: 1;
  max-width: 120px;
}

/* Artist name — the MONEY SHOT */
.hero-artist {
  font-family: var(--ff-display);
  font-size: clamp(108px, 17.5vw, 280px);
  line-height: 0.84;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--text);
  text-shadow:
    0 0 100px rgba(229, 57, 53, 0.22),
    0 0 200px rgba(229, 57, 53, 0.08);
  display: flex;
  flex-direction: column;
}

.hero-artist-first { display: block; }
.hero-artist-last  { display: block; color: var(--text); }

/* Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* Primary hero button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 3px;
  color: #fff;
  background: var(--red);
  padding: 16px 36px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.10);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(229, 57, 53, 0.42);
}
.btn-hero:hover::before { transform: translateX(0); }

.btn-hero--large {
  font-size: 13px;
  letter-spacing: 4px;
  padding: 20px 52px;
}

.btn-hero-arrow {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.btn-hero:hover .btn-hero-arrow { transform: translateX(4px); }

/* Countdown */
.hero-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 2.4ch;
}

.cd-num {
  font-family: var(--ff-mono);
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  text-align: center;
}

.cd-lbl {
  font-family: var(--ff-mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cd-sep {
  font-family: var(--ff-mono);
  font-size: clamp(18px, 2.8vw, 34px);
  color: var(--red);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.85;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: var(--pad-x);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-track {
  width: 1px;
  height: 52px;
  background: rgba(229, 57, 53, 0.18);
  position: relative;
  overflow: hidden;
}

.hero-scroll-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--red);
  animation: scrollThumb 2s ease-in-out infinite;
}

@keyframes scrollThumb {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

.hero-scroll-label {
  font-family: var(--ff-mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Corner bracket decoration */
.hero-corner {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-corner--bl {
  bottom: 36px;
  left: var(--pad-x);
}
.corner-line-v,
.corner-line-h {
  display: block;
  background: rgba(229, 57, 53, 0.25);
}
.corner-line-v {
  width: 1px; height: 40px;
  position: absolute;
  bottom: 0; left: 0;
}
.corner-line-h {
  height: 1px; width: 40px;
  position: absolute;
  bottom: 0; left: 0;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: clamp(60px, 8vw, 100px);
  align-items: end;
}

.about-heading {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-body p {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--text-sec);
}

.about-body p em {
  color: var(--text-muted);
  font-size: 0.9em;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.tag {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--red);
  border: 1px solid var(--red-border);
  padding: 5px 14px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.tag:hover { background: var(--red-dim); }

/* Stats row */
.about-stats {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 56px);
}

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 1;
  color: var(--red);
}

.stat-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}


/* ============================================================
   ARTIST
   ============================================================ */
.artist-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: clamp(56px, 7vw, 80px);
  align-items: start;
}

/* Photo frame */
.artist-frame {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 3 / 4;
}

.artist-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.artist-frame:hover .artist-photo {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.02);
}

/* Fallback when photo is missing */
.artist-frame.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.artist-frame.no-photo::after {
  content: 'JOEY DANIEL';
  font-family: var(--ff-display);
  font-size: 48px;
  color: rgba(229, 57, 53, 0.3);
  letter-spacing: 4px;
}

.artist-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--surface) 0%, transparent 45%),
    linear-gradient(to right, rgba(229,57,53,0.08) 0%, transparent 55%);
}

.artist-photo-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.artist-photo-lines span {
  display: block;
  position: absolute;
  background: rgba(229, 57, 53, 0.12);
}
.artist-photo-lines span:nth-child(1) {
  top: 0; left: 0;
  width: 3px; height: 100%;
}
.artist-photo-lines span:nth-child(2) {
  bottom: 0; left: 0;
  width: 100%; height: 3px;
}

.artist-origin {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 0 4px;
}

.origin-flag {
  height: 14px;
  width: auto;
  border: 1px solid var(--border);
  opacity: 0.85;
}

.origin-text {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Artist info */
.artist-name {
  font-family: var(--ff-display);
  font-size: clamp(68px, 9.5vw, 148px);
  line-height: 0.87;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.artist-bio {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 36px;
}

.artist-bio p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.78;
  color: var(--text-sec);
}

/* Meta credits */
.artist-meta {
  border-top: 1px solid var(--border);
}

.meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.meta-key {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-top: 1px;
}

.meta-val {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}

/* Venue strip */
.artist-venues {
  border: 1px solid var(--border);
}

.venue-strip-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.venue-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.venue-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.venue-item:hover {
  background: var(--surface-2);
  color: var(--red);
}

.venue-item:nth-child(3n) { border-right: none; }
.venue-item:nth-last-child(-n+3) { border-bottom: none; }

.venue-arrow {
  color: var(--red);
  font-size: 14px;
  opacity: 0.7;
}


/* ============================================================
   DETAILS
   ============================================================ */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.detail-card {
  background: var(--surface);
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 3vw, 36px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.detail-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}

.detail-card:hover { background: var(--surface-2); }
.detail-card:hover::after { transform: scaleY(1); }

.detail-card--full {
  grid-column: span 4;
  border-top: 1px solid var(--border);
}

.detail-icon {
  font-size: 13px;
  color: var(--red);
  opacity: 0.55;
  margin-top: 3px;
  flex-shrink: 0;
}

.detail-key {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.detail-val {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.detail-val--tba {
  color: var(--text-muted);
}

.detail-extra {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Genre tags */
.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.genre-tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  border: 1px solid var(--red-border);
  padding: 8px 20px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.genre-tag:hover { background: var(--red-dim); }


/* ============================================================
   WHY UNIQUE — PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar {
  background: var(--surface);
  padding: clamp(36px, 4vw, 52px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.pillar:hover { background: var(--surface-2); }
.pillar:hover::before { transform: scaleX(1); }

.pillar-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
}

.pillar-title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--text);
}

.pillar-desc {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--text-sec);
  flex-grow: 1;
}

.pillar-decoration {
  width: 24px; height: 1px;
  background: var(--red-border);
  margin-top: auto;
}


/* ============================================================
   TICKETS
   ============================================================ */
.tickets-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.tickets-header .section-heading { margin-bottom: 0; }

.tickets-sub {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.7;
  color: var(--text-sec);
  padding-bottom: 8px;
}
.tickets-sub em { color: var(--text-muted); font-size: 0.9em; }

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ticket-card {
  background: var(--surface);
  padding: clamp(36px, 4vw, 52px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: background 0.25s;
}

.ticket-card:hover { background: var(--surface-2); }

.ticket-card--vip {
  background: var(--surface-2);
  border: 1px solid rgba(229, 57, 53, 0.18);
  margin: -1px;
  position: relative;
  z-index: 1;
}

.ticket-badge-top {
  position: absolute;
  top: 0; left: 40px;
  background: var(--red);
  font-family: var(--ff-mono);
  font-size: 8.5px;
  letter-spacing: 2px;
  color: #fff;
  padding: 4px 14px;
  text-transform: uppercase;
}

.ticket-tier {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
}

.ticket-price-block {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticket-price-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ticket-price-val {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  letter-spacing: 1.5px;
  color: var(--red);
  text-transform: uppercase;
}

.ticket-perks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-grow: 1;
}

.ticket-perks li {
  font-size: 13.5px;
  color: var(--text-sec);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}

.ticket-perks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 11px;
  top: 1px;
}

/* Ticket buttons */
.btn-ticket {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 3px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 24px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ticket:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-ticket--red {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-ticket--red:hover {
  background: transparent;
  color: var(--red);
}

/* Outline button */
.btn-outline {
  display: inline-flex;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 3px;
  color: var(--text-sec);
  background: transparent;
  border: 1px solid var(--border-2);
  padding: 12px 28px;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }


/* ============================================================
   SPONSORS
   ============================================================ */
.sponsors-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.sponsors-title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.90;
  text-transform: uppercase;
}

.sponsors-sub {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 36px;
}

.sponsor-slot {
  background: var(--surface-2);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.sponsor-slot:hover { background: var(--surface-3); }

.sponsor-ph {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  border: 1px dashed var(--border);
  padding: 8px 20px;
}

.sponsors-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sponsors-cta p {
  font-size: 14px;
  color: var(--text-sec);
}


/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--section-y) 0;
}

.fcta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fcta-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.fcta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(229,57,53,0.10) 0%, transparent 60%),
    linear-gradient(to bottom, var(--bg) 0%, rgba(8,8,8,0.60) 20%, rgba(8,8,8,0.60) 80%, var(--bg) 100%);
}

.fcta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.fcta-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fcta-line {
  display: block;
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-border));
}
.fcta-line:last-child {
  background: linear-gradient(to left, transparent, var(--red-border));
}

.fcta-date {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 7px;
  color: var(--red);
  text-transform: uppercase;
}

.fcta-title {
  font-family: var(--ff-display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 0 100px rgba(229, 57, 53, 0.18);
}

.fcta-desc {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 440px;
}

.fcta-actions { margin-top: 8px; }

/* Final countdown */
.fcta-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.fcd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fcd-num {
  font-family: var(--ff-mono);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.fcd-lbl {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fcd-sep {
  font-family: var(--ff-mono);
  font-size: clamp(18px, 2.5vw, 30px);
  color: var(--red);
  font-weight: 300;
  opacity: 0.75;
  margin-bottom: 18px;
}


/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner { padding-top: 64px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(40px, 8vw, 100px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  height: 96px;
  width: auto;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 7px 14px;
  transition: border-color 0.2s, color 0.2s;
  text-transform: uppercase;
}
.social-link:hover { border-color: var(--red); color: var(--red); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--text-sec);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-inner span {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.footer-divider { opacity: 0.4; }

.footer-bottom-inner strong { color: var(--text-sec); }


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
}

.js-reveal[data-delay="1"] { transition-delay: 0.12s; }
.js-reveal[data-delay="2"] { transition-delay: 0.24s; }
.js-reveal[data-delay="3"] { transition-delay: 0.36s; }
.js-reveal[data-delay="4"] { transition-delay: 0.48s; }
.js-reveal[data-delay="5"] { transition-delay: 0.60s; }

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


/* ============================================================
   RESPONSIVE — 1200px  (tablet landscape / small desktop)
   ============================================================ */
@media (max-width: 1200px) {
  .details-grid           { grid-template-columns: repeat(2, 1fr); }
  .detail-card--full      { grid-column: span 2; }
  .pillars-grid           { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   RESPONSIVE — 960px  (tablet portrait)
   ============================================================ */
@media (max-width: 960px) {
  :root { --section-y: 80px; }

  /* Nav — shrink logo so it fits */
  .nav-logo-img  { height: 60px; }

  /* Layouts → single column */
  .about-grid      { grid-template-columns: 1fr; gap: 36px; }
  .artist-grid     { grid-template-columns: 1fr; gap: 44px; }
  .tickets-header  { grid-template-columns: 1fr; gap: 16px; }
  .sponsors-header { grid-template-columns: 1fr; gap: 16px; }

  /* Artist photo less tall when stacked */
  .artist-frame    { aspect-ratio: 16 / 9; }

  /* Footer */
  .footer-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav   { grid-template-columns: repeat(3, 1fr); }
  .footer-logo  { height: 64px; }

  /* Venue grid → 2 cols */
  .venue-list { grid-template-columns: repeat(2, 1fr); }
  .venue-item:nth-child(3n)        { border-right: 1px solid var(--border); }
  .venue-item:nth-child(2n)        { border-right: none; }
  .venue-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .venue-item:nth-last-child(-n+2) { border-bottom: none; }
}


/* ============================================================
   RESPONSIVE — 768px  (mobile landscape / large phone)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-y: 64px;
    --nav-h:     72px;
    --pad-x:     20px;
  }

  /* ── Nav ── */
  .nav-center    { display: none; }
  .nav-logo-img  { height: 48px; }
  .nav-cta       { padding: 9px 16px; font-size: 9.5px; letter-spacing: 2px; }
  .lt-opt        { padding: 7px 9px; font-size: 9px; }

  /* ── Hero ── */
  #hero { min-height: 100dvh; }

  .hero-content {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    gap: 20px;
  }

  .hero-artist { font-size: clamp(80px, 20vw, 148px); }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  /* Countdown — smaller on mobile */
  .cd-num  { font-size: clamp(20px, 5.5vw, 32px); }
  .cd-sep  { font-size: clamp(16px, 4.5vw, 26px); margin-bottom: 12px; }
  .cd-lbl  { font-size: 7px; }

  .hero-scroll { right: var(--pad-x); }

  /* ── About ── */
  .about-stats  { flex-direction: column; }
  .stat-col     { width: 100%; padding: 24px 0; flex-direction: row; gap: 20px; align-items: center; }
  .stat-num     { font-size: clamp(44px, 12vw, 80px); }
  .stat-divider { width: 100%; height: 1px; flex-shrink: 0; }

  /* ── Details ── */
  .details-grid       { grid-template-columns: 1fr 1fr; }
  .detail-card--full  { grid-column: span 2; }
  .detail-val         { font-size: clamp(28px, 6vw, 44px); }

  /* ── Tickets ── */
  .tickets-grid       { grid-template-columns: 1fr; }
  .ticket-card--vip   { margin: 0; border: 1px solid rgba(229,57,53,0.22); }

  /* ── Sponsors ── */
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Final CTA ── */
  .fcta-title   { font-size: clamp(64px, 16vw, 130px); }
  .fcd-num      { font-size: clamp(18px, 4.5vw, 28px); }
  .fcd-sep      { font-size: clamp(16px, 4vw, 24px); margin-bottom: 14px; }
  .fcd-lbl      { font-size: 8px; }

  /* ── Footer ── */
  .footer-logo  { height: 56px; }
  .footer-nav   { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — 560px  (small phone portrait)
   ============================================================ */
@media (max-width: 560px) {
  :root { --section-y: 56px; }

  /* Nav — collapse CTA text on tiny screens */
  .nav-logo-img  { height: 40px; }
  .nav-cta       { padding: 8px 14px; letter-spacing: 1.5px; }

  /* Hero */
  .hero-artist   { font-size: clamp(72px, 19vw, 120px); letter-spacing: -1px; }
  .hero-eyebrow  { font-size: 9px; gap: 8px; }
  .feat-text     { font-size: 9px; letter-spacing: 4px; }
  .btn-hero      { padding: 14px 28px; font-size: 11px; }

  /* Countdown */
  .hero-countdown { gap: 4px; }
  .cd-num  { font-size: clamp(18px, 5vw, 28px); }
  .cd-sep  { font-size: clamp(14px, 4vw, 22px); margin-bottom: 10px; }

  /* About */
  .about-heading { font-size: clamp(40px, 10vw, 68px); }
  .stat-col      { padding: 20px 0; }

  /* Details */
  .details-grid      { grid-template-columns: 1fr; }
  .detail-card--full { grid-column: span 1; }
  .detail-val        { font-size: clamp(30px, 7vw, 42px); }

  /* Artist */
  .artist-name   { font-size: clamp(56px, 14vw, 100px); }
  .artist-frame  { aspect-ratio: 3 / 2; }
  .meta-row      { grid-template-columns: 90px 1fr; gap: 12px; }

  /* Pillars → 1 col */
  .pillars-grid  { grid-template-columns: 1fr; }

  /* Tickets */
  .ticket-card   { padding: 32px 24px; }
  .ticket-tier   { font-size: clamp(36px, 9vw, 52px); }

  /* Sponsors */
  .sponsors-grid { grid-template-columns: 1fr; }
  .sponsors-cta  { flex-direction: column; align-items: flex-start; }

  /* Venue list → 1 col */
  .venue-list  { grid-template-columns: 1fr; }
  .venue-item  {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .venue-item:last-child { border-bottom: none !important; }

  /* Final CTA */
  .fcta-title       { font-size: clamp(58px, 15vw, 100px); }
  .fcta-desc        { font-size: 14px; }
  .btn-hero--large  { padding: 16px 36px; font-size: 12px; }
  .fcta-countdown   { gap: 8px; }

  /* Footer */
  .footer-logo  { height: 48px; }
  .footer-nav   { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 4px; align-items: flex-start; }
}


/* ============================================================
   RESPONSIVE — 400px  (iPhone SE, small Android)
   ============================================================ */
@media (max-width: 400px) {
  :root { --pad-x: 16px; }

  /* Nav — hide GET TICKETS, keep lang toggle */
  .nav-logo-img  { height: 36px; }
  .nav-cta       { display: none; }

  /* Hero */
  .hero-artist   { font-size: clamp(64px, 17vw, 100px); }
  .hero-eyebrow  { flex-wrap: wrap; row-gap: 4px; }

  /* Countdown — ultra compact */
  .hero-countdown { gap: 3px; }
  .cd-num   { font-size: clamp(16px, 4.5vw, 24px); }
  .cd-sep   { font-size: clamp(12px, 3.5vw, 18px); margin-bottom: 8px; }

  /* About */
  .about-heading  { font-size: clamp(36px, 9vw, 56px); }
  .stat-col       { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Artist */
  .artist-name    { font-size: clamp(52px, 13.5vw, 84px); }
  .meta-row       { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .meta-key       { font-size: 8px; }

  /* Section headings */
  .section-heading { font-size: clamp(40px, 10.5vw, 68px); }

  /* Tickets */
  .ticket-card      { padding: 28px 20px; gap: 18px; }
  .ticket-badge-top { left: 20px; }

  /* Venue */
  .venue-item { padding: 14px 16px; font-size: 10px; }

  /* Final CTA */
  .fcta-title     { font-size: clamp(52px, 14vw, 88px); }
  .fcta-countdown { gap: 6px; }
  .fcd-num  { font-size: clamp(16px, 4vw, 24px); }
  .fcd-sep  { font-size: clamp(14px, 3.5vw, 20px); margin-bottom: 12px; }

  /* Footer */
  .footer-nav   { grid-template-columns: 1fr; }
  .footer-logo  { height: 40px; }
}
