/* ─── Base ─────────────────────────────────────────── */
:root {
  --bg:        #0C0A09;
  --surface:   #1C1917;
  --surface2:  #292524;
  --amber:     #F97316;
  --amber-dim: rgba(249, 115, 22, 0.15);
  --cyan:      #22D3EE;
  --cream:     #FAFAF9;
  --muted:     #A8A29E;
  --tier-top:  #F97316;
  --tier-mid:  #EAB308;
  --tier-low:  #64748B;
  --radius:    10px;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ───────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-mark {
  width: 32px; height: 32px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: #0C0A09;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.nav-links { display: flex; gap: 24px; }
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream); }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--cream);
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--amber);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
}

/* ─── Phone Mockup ───────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; position: relative; z-index: 2; }

.phone-mockup {
  width: 280px;
  background: var(--surface);
  border-radius: 36px;
  padding: 16px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 40px rgba(249,115,22,0.1);
}

.phone-screen {
  background: #111110;
  border-radius: 28px;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.screen-festival {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
}
.screen-day {
  font-size: 11px;
  color: var(--muted);
}

.schedule-block {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.block-time {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.block-artist {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.block-stage {
  font-size: 10px;
  color: var(--muted);
}

.block-tier {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.tier-top { background: rgba(249,115,22,0.2); color: var(--tier-top); }
.tier-mid { background: rgba(234,179,8,0.15); color: var(--tier-mid); }
.tier-low { background: rgba(100,116,139,0.15); color: var(--tier-low); }

.friends-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(249,115,22,0.08);
  border-radius: 12px;
  border: 1px solid rgba(249,115,22,0.15);
  margin-top: 4px;
}

.friend {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-head);
}

.ava-1 { background: #7C3AED; color: white; }
.ava-2 { background: #059669; color: white; }
.ava-3 { background: #DB2777; color: white; }

.friends-note {
  font-size: 10px;
  color: var(--amber);
  font-weight: 500;
  line-height: 1.3;
}

/* ─── Hero Stats ─────────────────────────────────────── */
.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 2;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 32px;
  backdrop-filter: blur(8px);
  width: calc(100% - 96px);
}

.stat { flex: 1; text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* ─── Shared Section Styles ──────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 56px;
}

/* ─── How ────────────────────────────────────────────── */
.how {
  padding: 100px 48px;
  background: var(--bg);
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(249,115,22,0.3), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 0;
}

.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(249,115,22,0.15);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Features ───────────────────────────────────────── */
.features {
  padding: 100px 48px;
  background: #0F0D0B;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(249,115,22,0.25);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px; height: 48px;
  background: var(--amber-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

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

/* ─── Manifesto ──────────────────────────────────────── */
.manifesto {
  padding: 100px 48px;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Closing ────────────────────────────────────────── */
.closing {
  padding: 120px 48px;
  background: linear-gradient(180deg, #0F0D0B 0%, #1A1209 100%);
  text-align: center;
}

.closing-content { max-width: 640px; margin: 0 auto; }

.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}

.closing p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.closing-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.closing-link {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #0C0A09;
  background: var(--amber);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.closing-link:hover {
  background: #EA580C;
  transform: translateY(-1px);
}

.closing-link-secondary {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.closing-link-secondary:hover { color: var(--cream); }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { display: flex; align-items: center; gap: 8px; }

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  flex: 1;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }

/* ─── Mobile ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 80px;
    min-height: auto;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .hero-stats {
    position: static;
    width: 100%;
    margin-top: 40px;
  }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .how, .features, .manifesto, .closing { padding: 64px 24px; }
  .footer { flex-direction: column; align-items: flex-start; }
  .footer-tagline { text-align: left; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-div { width: 60px; height: 1px; }
}
