/* ═══════════════════════════════════════════════════════════════
   谱乐AI × 洞石音乐人计划 - 真实图片风格设计
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0f;
  --bg-soft: #0f0f15;
  --panel: rgba(18, 18, 26, 0.9);
  --panel-strong: rgba(24, 24, 34, 0.95);
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #9090a0;
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --accent: #22d3ee;
  --accent-warm: #f472b6;
  --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #f472b6 0%, #fbbf24 100%);
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 35px 60px -15px rgba(0, 0, 0, 0.7);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ═══════════════════════════════════════════════════════════════
   Site Header
   ═══════════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo-mark {
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--text);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  padding: 80px 32px 32px;
  transition: right 0.3s ease;
  z-index: 99;
  border-left: 1px solid var(--border);
}

.mobile-nav-drawer.active {
  display: flex;
  flex-direction: column;
  right: 0;
}

.mobile-nav-drawer a {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav-drawer a:last-child {
  border-bottom: none;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   Page Shell
   ═══════════════════════════════════════════════════════════════ */

.page-shell {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 48px;
}

/* ═══════════════════════════════════════════════════════════════
   Hero Section - Photo Background Style
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 60px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.4) 0%,
    rgba(10, 10, 15, 0.6) 40%,
    rgba(10, 10, 15, 0.9) 75%,
    rgba(10, 10, 15, 1) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 580px;
  padding-bottom: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 999px;
  color: #a5b4fc;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.h1-brand {
  display: block;
  font-size: 0.32em;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.h1-main {
  display: block;
  font-size: clamp(38px, 5vw, 64px);
  background: linear-gradient(140deg, #ffffff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Hero Track Title (for original/remix pages) ─── */
.hero-track-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(140deg, #ffffff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero-track-title .track-period-inline {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
  vertical-align: middle;
  margin-left: 12px;
}

.hero-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  min-height: 48px;
  min-width: 48px;
}

.button-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-elite {
  background: transparent;
  border: 2px solid var(--accent-warm);
  color: var(--accent-warm);
}

.hero-elite:hover {
  background: rgba(244, 114, 182, 0.1);
}

.hero-metrics {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-metrics article {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.hero-metrics strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-metrics span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Hero Visual - Photo Grid */
.hero-visual {
  position: relative;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
}

.hero-image-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-card:hover img {
  transform: scale(1.08);
}

.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-image-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   Section Styles
   ═══════════════════════════════════════════════════════════════ */

.section {
  padding: 48px 0;
}

.wave-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  opacity: 0.4;
}

.wave-divider::before,
.wave-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.wave-divider span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}

.section-head {
  text-align: left;
  max-width: none;
  margin-bottom: 12px;
  padding: 10px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-align: left;
}

.section-head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: none;
}

/* ═══════════════════════════════════════════════════════════════
   Program Section with Images
   ═══════════════════════════════════════════════════════════════ */

.program {
  background: var(--bg-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.about-image-float {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--bg-soft);
}

.about-image-float img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 0;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* Special styling for About section cards */
.about-program-cards .feature-card {
  min-height: 200px;
  justify-content: flex-start;
}

.about-program-cards .feature-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.about-program-cards .feature-card p {
  font-size: 15px;
  line-height: 1.9;
}

/* About intro section styling */
.about-intro {
  max-width: 960px;
  margin: 0 auto 56px auto;
  text-align: center;
  padding: 0 20px;
}

.about-intro .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}

.about-intro h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.3;
}

.about-intro p {
  font-size: 17px;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 20px;
  text-align: left;
}

/* Value cards with background images */
.value-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 240px;
}

.value-card-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 21, 0.92) 0%,
    rgba(15, 15, 21, 0.85) 50%,
    rgba(15, 15, 21, 0.88) 100%
  );
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg,
    rgba(99, 102, 241, 0.8) 0%,
    rgba(139, 92, 246, 0.8) 50%,
    rgba(236, 72, 153, 0.8) 100%
  );
}
  font-size: 13px;
  line-height: 1.6;
}

/* About Section - Program Cards: 3 columns to fill width */
.about-program-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Elite Page - Program Cards: 4 columns */
.elite-program-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

/* Elite Page - Detail Grid: 4 columns */
.elite-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Track Detail Pages - Program Cards: 3 columns with full width */
.track-program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

/* Track Detail Pages - Detail Grid: 3 columns with larger gap */
.track-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Partner Section */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  padding: 20px;
  background: var(--panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  user-select: none;
  -webkit-user-select: none;
}

.partner-label {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.partner-logos-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.partner-logo {
  height: 36px;
  width: auto;
  filter: brightness(1.1);
}

.puyue-logo {
  height: 44px;
  filter: grayscale(100%) brightness(1.2);
}

.haikui-logo,
.haixing-logo {
  filter: brightness(1.3);
}

.partner-separator {
  font-size: 20px;
  color: var(--muted);
  opacity: 0.5;
}

.partner-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   Tracks Section with Photo Cards
   ═══════════════════════════════════════════════════════════════ */

.tracks {
  padding: 48px 0;
}

.tracks-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer !important;
  transition: all 0.2s;
}

.tab-btn:hover {
  background: var(--panel);
  color: var(--text);
}

.tab-btn.active {
  background: var(--gradient-1);
  border-color: transparent;
  color: white;
}

.tab-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tab-indicator.ongoing {
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
}

.tab-indicator.upcoming {
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
}

.tab-indicator.past {
  background: var(--muted);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ─── Single card in grid (for past events) ─── */
.tracks-grid > :only-child {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

.track-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.track-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, 0.3);
}

.track-header {
  padding: 20px;
}

.track-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.track-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.track-highlights {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-highlights li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.hl-label {
  color: var(--muted);
}

.track-card .button {
  display: block;
  text-align: center;
  margin: 0 24px 24px;
}



.button-track {
  background: var(--panel);
  border: 1px solid var(--border);
  color: white;
}

.button-track:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
}

.track-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.status-ongoing {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.status-upcoming {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.status-past {
  background: rgba(138, 138, 154, 0.15);
  color: var(--muted);
  border: 1px solid rgba(138, 138, 154, 0.25);
}

.past-events-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ Section
   ═══════════════════════════════════════════════════════════════ */

.faq-section {
  padding: 48px 0;
  background: var(--bg-soft);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   Final CTA Section with Photo
   ═══════════════════════════════════════════════════════════════ */

.final-cta-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

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

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.final-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.final-cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.final-cta p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button-elite-outline {
  background: transparent;
  border: 2px solid var(--accent-warm);
  color: var(--accent-warm);
}

.button-elite-outline:hover {
  background: rgba(244, 114, 182, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-weight: 600;
  font-size: 16px;
}

.footer-copy {
  color: var(--muted);
  font-size: 14px;
}

/* Footer page-shell should not have padding-bottom */
.site-footer .page-shell {
  padding-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .section {
    padding: 36px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    order: -1;
  }

  .about-image-float {
    right: 0;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }

  /* Hero image optimization for tablets */
  .hero-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-image-card:nth-child(3) {
    display: none;
  }

  .about-program-cards {
    grid-template-columns: 1fr;
  }

  .program-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-program-cards .feature-card {
    min-height: 180px;
    padding: 28px 24px;
  }

  .value-card {
    min-height: 220px;
  }

  .value-card-overlay {
    padding: 28px 24px;
  }

  .elite-program-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .elite-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .track-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .track-program-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .elite-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .elite-hero-visual {
    flex-direction: row;
  }

  .elite-image-card:first-child,
  .elite-image-card:last-child {
    height: 180px;
    flex: 1;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  /* Panel mobile optimization */
  .panel {
    padding: 12px;
  }

  .info-panel {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  /* Site Header */
  .site-header {
    padding: 12px 20px;
  }

  .logo-mark {
    font-size: 16px;
  }

  /* Logo text shortening for mobile */
  .site-logo {
    max-width: 200px;
  }

  .site-logo .logo-mark {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Page Shell */
  .page-shell {
    width: calc(100% - 32px);
    padding-bottom: 32px;
  }

  /* Hero */
  .hero {
    min-height: 500px;
    padding-bottom: 32px;
  }

  .hero-bg {
    position: absolute;
    height: 100%;
    min-height: 350px;
  }

  .hero-bg img {
    opacity: 0.25;
    object-position: center 20%;
  }

  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 15, 0.3) 0%,
      rgba(10, 10, 15, 0.6) 40%,
      rgba(10, 10, 15, 0.8) 70%,
      rgba(10, 10, 15, 0.95) 100%
    );
  }

  /* Hero Section */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
    padding-top: 100px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Mobile: only show first image, hide others */
  .hero-image-card:nth-child(2),
  .hero-image-card:nth-child(3) {
    display: none;
  }

  .hero-image-card:first-child {
    grid-row: auto;
    aspect-ratio: 16/9;
    max-height: 200px;
  }

  .hero-image-card {
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Optional: completely hide hero images on mobile for more space */
  .hero-visual {
    display: none;
  }

  /* Show simplified hero visual for tablets */
  @media (min-width: 769px) and (max-width: 1024px) {
    .hero-visual {
      display: block;
    }
  }

  .hero-metrics {
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 20px;
    padding-top: 20px;
  }

  .hero-metrics article {
    flex: 1;
    text-align: center;
  }

  .hero-metrics strong {
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
  }

  .hero-metrics span {
    font-size: 11px;
    display: block;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .button {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 44px;
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .button:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .hero-lead {
    font-size: 15px;
  }

  .h1-main {
    font-size: 32px;
  }

  /* Sections */
  .section {
    padding: 24px 0;
  }

  .hero-inner {
    gap: 24px;
  }

  /* About Program */
  .about-intro {
    margin-bottom: 32px;
  }

  .about-intro h2 {
    font-size: 26px;
  }

  .about-intro p {
    font-size: 15px;
  }

  .program-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-program-cards .feature-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .about-program-cards .feature-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .about-program-cards .feature-card p {
    font-size: 14px;
  }

  .value-card {
    min-height: 200px;
  }

  .value-card-overlay {
    padding: 24px 20px;
  }

  .value-card-overlay h3 {
    font-size: 18px;
  }

  .value-card-overlay p {
    font-size: 14px;
  }

  /* Elite Page */
  .elite-program-cards {
    grid-template-columns: 1fr;
    margin-top: 0 !important;
  }

  .elite-detail-grid {
    grid-template-columns: 1fr;
  }

  .track-detail-grid {
    grid-template-columns: 1fr;
  }

  .track-program-cards {
    grid-template-columns: 1fr;
  }

  /* Partner & Footer */
  .partner-logos {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .partner-logos-inner {
    flex-direction: column;
    gap: 2px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Elite Hero */
  .elite-hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .elite-hero-inner {
    gap: 12px;
  }

  .elite-hero-visual {
    flex-direction: column;
  }

  .elite-image-card:first-child,
  .elite-image-card:last-child {
    height: 160px;
    flex: none;
  }

  .submit-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .submit-bar > * {
    width: 100%;
  }

  /* Track Cards */
  .track-card {
    padding: 24px 20px;
  }

  .track-card h3 {
    font-size: 20px;
  }

  .track-card .track-desc {
    font-size: 14px;
  }

  .track-header {
    padding: 16px;
  }

  .track-header h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .track-highlights li {
    padding: 12px 0;
    font-size: 13px;
  }

  /* FAQ */
  .faq-item {
    padding: 16px 20px;
  }

  .faq-item summary {
    font-size: 15px;
  }

  .faq-item p {
    font-size: 14px;
  }

  /* Tab Navigation */
  .tracks-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* Final CTA */
  .final-cta {
    padding: 60px 20px;
  }

  .final-cta h2 {
    font-size: 24px;
  }

  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .cta-buttons .button {
    flex: 1;
    min-width: 140px;
    max-width: calc(50% - 5px);
  }
}

/* ───────────────────────────────────────────────────────────────────────────────
   Mobile Extra Small (640px)
   ─────────────────────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  /* Page Shell */
  .page-shell {
    width: calc(100% - 24px);
    padding-bottom: 24px;
  }

  /* Sections */
  .section {
    padding: 20px 0;
  }

  /* Hero */
  .hero {
    padding-bottom: 24px;
    min-height: 450px;
  }

  .hero-bg {
    position: absolute;
    height: 100%;
    min-height: 280px;
  }

  /* Elite Hero */
  .elite-hero {
    min-height: 400px;
    padding-top: 80px;
    padding-bottom: 32px;
  }

  .elite-hero-bg {
    position: absolute;
    height: 100%;
    min-height: 250px;
  }

  .elite-hero-bg img {
    opacity: 0.3;
    object-position: center 30%;
  }

  .elite-hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 15, 0.4) 0%,
      rgba(10, 10, 15, 0.8) 50%,
      rgba(10, 10, 15, 0.95) 100%
    );
  }

  .elite-hero-inner {
    gap: 16px;
  }

  .hero-bg img {
    opacity: 0.5;
    object-position: center 30%;
  }

  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 15, 0.4) 0%,
      rgba(10, 10, 15, 0.7) 50%,
      rgba(10, 10, 15, 0.9) 100%
    );
  }

  .hero-inner {
    gap: 20px;
    padding: 0 16px;
    padding-top: 80px;
  }

  .hero-copy {
    text-shadow: none;
  }

  .hero h1 {
    text-shadow: none;
  }

  .hero-lead {
    text-shadow: none;
  }

  .hero-metrics {
    text-shadow: none;
  }

  /* Hero image optimization - hide images completely on small mobile */
  .hero-visual {
    display: none;
  }

  /* Hero image optimization */
  .hero-image-card:first-child {
    aspect-ratio: 21/9;
    max-height: 180px;
  }

  .hero-image-label {
    font-size: 11px;
    padding: 4px 8px;
  }

  .hero-metrics {
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 16px;
    padding-top: 16px;
  }

  .hero-metrics article {
    flex: 1;
    min-width: 60px;
    text-align: center;
    padding: 0 4px;
  }

  .hero-metrics strong {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
  }

  .hero-metrics span {
    font-size: 10px;
    display: block;
  }

  .h1-main {
    font-size: 24px;
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .button {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 42px;
    width: 100%;
  }

  .hero-actions .button:nth-child(3) {
    grid-column: 1 / -1;
  }

  /* Typography */
  .section-head h2 {
    font-size: 20px;
    padding-right: 20px;
  }

  .section-head p {
    font-size: 13px;
    padding-right: 20px;
  }

  /* Buttons */
  .button {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Cards */
  .feature-card {
    padding: 20px 16px;
  }

  .value-card {
    min-height: 180px;
  }

  .value-card-overlay {
    padding: 20px 16px;
  }

  .value-card-overlay h3 {
    font-size: 16px;
  }

  .value-card-overlay p {
    font-size: 13px;
  }

  /* Track Cards */
  .track-card {
    padding: 16px 12px;
  }

  .track-card h3 {
    font-size: 16px;
  }

  .track-card .track-desc {
    font-size: 12px;
  }

  .track-highlights {
    font-size: 11px;
  }

  .track-highlights li {
    padding: 8px 0;
  }

  /* Elite Page */
  .elite-hero h1 {
    font-size: 24px;
  }

  .elite-hero-lead {
    font-size: 13px;
  }

  /* Tabs */
  .tracks-tabs {
    gap: 6px;
  }

  .tab-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .tab-btn .tab-indicator {
    width: 6px;
    height: 6px;
  }

  /* Modal */
  .modal-content {
    max-height: 95vh;
    border-radius: 16px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .modal-body {
    padding: 24px 20px;
  }

  .modal-footer {
    padding: 20px;
  }
}

/* ───────────────────────────────────────────────────────────────────────────────
   Mobile Small (480px)
   ─────────────────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  /* Header */
  .logo-mark {
    font-size: 12px;
  }

  .site-header {
    padding: 8px 16px;
  }

  .mobile-menu-toggle {
    width: 24px;
    height: 20px;
  }

  /* Page Shell */
  .page-shell {
    width: calc(100% - 20px);
    padding-bottom: 20px;
  }

  /* Hero */
  .hero {
    padding-bottom: 20px;
    min-height: 400px;
  }

  .hero-bg {
    position: absolute;
    min-height: 250px;
  }

  .hero-bg img {
    opacity: 0.4;
    object-position: center 40%;
  }

  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 15, 0.5) 0%,
      rgba(10, 10, 15, 0.8) 50%,
      rgba(10, 10, 15, 0.95) 100%
    );
  }

  .hero-inner {
    padding: 0 12px;
    padding-top: 70px;
    gap: 16px;
  }

  .hero-copy {
    text-shadow: none;
  }

  .hero h1 {
    text-shadow: none;
  }

  .hero-lead {
    text-shadow: none;
  }

  .hero-metrics {
    text-shadow: none;
  }

  /* Elite Hero */
  .elite-hero {
    min-height: 350px;
    padding-top: 70px;
    padding-bottom: 24px;
  }

  .elite-hero-bg {
    position: absolute;
    min-height: 200px;
  }

  .elite-hero-bg img {
    opacity: 0.35;
    object-position: center 40%;
  }

  .elite-hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 15, 0.5) 0%,
      rgba(10, 10, 15, 0.85) 50%,
      rgba(10, 10, 15, 0.98) 100%
    );
  }

  .elite-hero-inner {
    gap: 12px;
  }

  /* Further optimize hero images for small screens */
  .hero-image-card:first-child {
    aspect-ratio: 16/9;
    max-height: 150px;
  }

  .hero-image-label {
    font-size: 10px;
    padding: 3px 6px;
  }

  .h1-main {
    font-size: 20px;
  }

  .hero-lead {
    font-size: 12px;
  }

  .hero-metrics strong {
    font-size: 16px;
  }

  .hero-metrics span {
    font-size: 9px;
  }

  .hero-metrics {
    margin-top: 12px;
    padding-top: 12px;
    gap: 8px;
  }

  .hero-metrics article {
    min-width: 50px;
    padding: 0 2px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 12px;
  }

  .hero-actions .button {
    padding: 6px 10px;
    font-size: 11px;
    min-height: 40px;
    width: 100%;
  }

  .hero-actions .button:nth-child(3) {
    grid-column: 1 / -1;
  }

  /* Sections */
  .section {
    padding: 16px 0;
  }

  .section-head h2 {
    font-size: 18px;
  }

  .section-head p {
    font-size: 12px;
  }

  /* Cards */
  .feature-card,
  .track-card {
    padding: 12px;
  }

  .feature-card h3,
  .track-card h3 {
    font-size: 14px;
  }

  .feature-card p,
  .track-card p {
    font-size: 12px;
  }

  .track-header {
    padding: 12px;
  }

  .track-header h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .track-highlights li {
    padding: 10px 0;
    font-size: 12px;
  }

  /* Value Cards */
  .value-card {
    min-height: 140px;
  }

  .value-card-overlay {
    padding: 12px;
  }

  .value-card-overlay h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .value-card-overlay p {
    font-size: 11px;
    line-height: 1.5;
  }

  /* Program Cards */
  .program-cards {
    gap: 12px;
  }

  .about-program-cards .feature-card {
    padding: 16px 12px;
  }

  .about-program-cards .feature-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .about-program-cards .feature-card p {
    font-size: 11px;
  }

  /* Buttons */
  .button {
    padding: 8px 16px;
    font-size: 12px;
    min-height: 40px;
  }

  .hero-actions .button,
  .cta-buttons .button {
    max-width: 100%;
  }

  /* FAQ */
  .faq-item {
    padding: 10px 12px;
  }

  .faq-item summary {
    font-size: 12px;
  }

  .faq-item p {
    font-size: 11px;
  }

  /* Final CTA */
  .final-cta {
    padding: 24px 12px;
  }

  .final-cta h2 {
    font-size: 16px;
  }

  .final-cta p {
    font-size: 12px;
  }

  .final-cta .eyebrow {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* Modal */
  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal-header {
    padding-top: 32px;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .modal-body {
    padding: 20px 16px;
  }

  .modal-footer {
    padding: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Elite Page - Photo Style
   ═══════════════════════════════════════════════════════════════ */

/* ─── Back Nav ─── */
.back-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.back-nav:hover {
  color: var(--text);
}

/* ─── Track Breadcrumb ─── */
.track-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  flex-wrap: wrap;
}

.track-breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}

.track-breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb-divider {
  color: var(--border);
}

.breadcrumb-current {
  color: var(--accent);
  font-weight: 500;
}

/* ─── Series Badge for Detail Pages ─── */
.series-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 16px;
}

.series-badge.track-original {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
}

.series-badge.track-remix {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}

/* ─── Elite Hero ─── */
.elite-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.elite-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.elite-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.5) 0%,
    rgba(10, 10, 15, 0.7) 30%,
    rgba(10, 10, 15, 0.9) 60%,
    rgba(10, 10, 15, 1) 100%
  );
}

.elite-hero .page-shell {
  position: relative;
  z-index: 1;
}

.elite-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.elite-hero-copy {
  max-width: 560px;
}

.elite-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
  background: linear-gradient(140deg, #ffffff 0%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.elite-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.submit-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.submit-deadline {
  color: var(--muted);
  font-size: 14px;
}

.elite-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.elite-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.elite-image-card:first-child {
  height: 200px;
}

.elite-image-card:last-child {
  height: 150px;
}

.elite-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.elite-image-card:hover img {
  transform: scale(1.05);
}

.elite-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
}

.elite-image-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  z-index: 1;
  color: white;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── Elite Benefits with Photo ─── */
.elite-benefits-section {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
}

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

.elite-benefits-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.elite-benefits-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.elite-benefits-section > .page-shell {
  position: relative;
  z-index: 1;
}

/* ─── Elite Final CTA with Photo ─── */
.elite-final-cta {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

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

.elite-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.elite-final-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.elite-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.elite-final-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin: 20px 0 20px;
  letter-spacing: -0.02em;
}

.elite-final-inner p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}

.elite-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* ─── Buttons ─── */
.button-elite {
  background: var(--gradient-2);
  color: white;
  box-shadow: 0 8px 30px rgba(244, 114, 182, 0.4);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.button-elite:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(244, 114, 182, 0.5);
}

.button-elite-large {
  background: var(--gradient-2);
  color: white;
  box-shadow: 0 8px 30px rgba(244, 114, 182, 0.4);
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.button-elite-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(244, 114, 182, 0.5);
}

/* ─── Panels ─── */
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.panel-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.panel-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.info-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.info-panel p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.elite-intro-panel {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.detail-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.7;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.detail-list li strong {
  color: #f9a8d4;
  display: block;
  width: 100%;
  margin-bottom: 4px;
}

@media (min-width: 769px) {
  .detail-list li strong {
    width: auto;
    margin-bottom: 0;
  }
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.elite-req-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.elite-req-num {
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.elite-benefit-detail li {
  background: rgba(244, 114, 182, 0.04);
  border-color: rgba(244, 114, 182, 0.12);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  text-align: left;
  padding: 12px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

table th:first-child,
table td:first-child {
  white-space: nowrap;
}

table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

table tr:last-child td {
  border-bottom: none;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .elite-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .elite-hero-visual {
    flex-direction: row;
  }

  .elite-image-card:first-child,
  .elite-image-card:last-child {
    height: 180px;
    flex: 1;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  /* Panel mobile optimization */
  .panel {
    padding: 12px;
  }

  .info-panel {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .elite-hero {
    min-height: 500px;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .elite-hero-bg {
    position: absolute;
    height: 100%;
    min-height: 350px;
  }

  .elite-hero-bg img {
    opacity: 0.25;
    object-position: center 30%;
  }

  .elite-hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 15, 0.3) 0%,
      rgba(10, 10, 15, 0.7) 40%,
      rgba(10, 10, 15, 0.9) 70%,
      rgba(10, 10, 15, 0.98) 100%
    );
  }

  .elite-hero-inner {
    gap: 12px;
  }

  .elite-hero-visual {
    flex-direction: column;
  }

  .elite-image-card:first-child,
  .elite-image-card:last-child {
    height: 160px;
    flex: none;
  }

  .submit-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .submit-bar > * {
    width: 100%;
  }

  /* Panel mobile optimization */
  .panel {
    padding: 12px;
  }

  .info-panel {
    padding: 12px;
  }
}

/* ───────────────────────────────────────────────────────────────────────────────
   Track Cards - Clean Design
   ══════════════════════════════════════════════════════════════════════════════════════════════════════ */

.track-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.25s ease;
}

.track-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ─── Track Meta (Type + Period + Status) ─── */
.track-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
}

.track-type {
  color: var(--accent);
  font-weight: 600;
}

.track-period {
  color: var(--muted);
}

.track-period::before,
.track-status::before {
  content: '·';
  margin-right: 8px;
  color: var(--border);
}

.track-status {
  font-weight: 500;
}

.status-ongoing {
  color: #4ade80;
}

.status-upcoming {
  color: #fbbf24;
}

.status-past {
  color: var(--muted);
  opacity: 0.6;
}

/* ─── Past card text brightness ─── */
.track-card.status-past .track-header h3,
.track-card.status-past .track-desc {
  color: var(--text);
  opacity: 0.7;
}

.track-card.status-past .hl-label {
  color: var(--muted);
  opacity: 0.8;
}

/* ─── Track Header ─── */
.track-header {
  padding: 20px 20px 12px;
}

.track-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.track-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── Track Highlights ─── */
.track-highlights {
  list-style: none;
  padding: 16px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.track-highlights li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  line-height: 1.5;
}

.hl-label {
  color: var(--muted);
}

/* ─── Track Button ─── */
.track-card .button {
  display: block;
  text-align: center;
  margin: 16px 20px 20px;
}

.button-track {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.button-track:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ─── Past Events Note ─── */
.past-events-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 24px;
}


.track-period-inline {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}