:root {
  --bg: #111318;
  --bg-2: #181B21;
  --bg-3: #1E2229;
  --fg: #F5F5F0;
  --fg-dim: #9A9A95;
  --accent: #F59E0B;
  --accent-dim: #B87808;
  --border: rgba(245,245,240,0.08);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 8vw 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  border: 1px solid var(--accent-dim);
  padding: 6px 14px;
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.lede {
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--fg-dim);
  font-weight: 300;
  max-width: 600px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
}

/* INSTRUMENTS */
.instruments {
  background: var(--bg-2);
  padding: 100px 8vw;
  border-top: 1px solid var(--border);
}

.instruments-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.instruments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.instrument-item {
  background: var(--bg-2);
  padding: 36px 32px;
  transition: background 0.2s;
}

.instrument-item:hover { background: var(--bg-3); }

.instrument-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.instrument-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-dim);
  font-weight: 300;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 8vw;
  background: var(--bg);
}

.manifesto-inner { max-width: 900px; margin: 0 auto; }

.manifesto-text h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.manifesto-text p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg-dim);
  font-weight: 300;
  margin-bottom: 24px;
}

/* PERFORMANCE */
.performance {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 8vw;
}

.performance-inner { max-width: 1200px; margin: 0 auto; }

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

.perf-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  text-align: left;
}

.perf-item:last-child { border-right: none; }

.perf-value {
  font-family: var(--font-head);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.perf-label {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.4;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 140px 8vw;
  background: var(--bg);
}

.closing-inner { max-width: 800px; }

.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing p {
  font-size: 20px;
  color: var(--fg-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 8vw;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 14px;
  color: var(--fg-dim);
  font-weight: 300;
}

.footer-meta {
  font-size: 12px;
  color: var(--fg-dim);
  opacity: 0.6;
  line-height: 1.6;
  max-width: 500px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 6vw 50px; }
  .instruments { padding: 60px 6vw; }
  .manifesto { padding: 80px 6vw; }
  .performance { padding: 60px 6vw; }
  .closing { padding: 80px 6vw; }
  .footer { padding: 48px 6vw; }

  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-item:nth-child(2) { border-right: none; }
  .perf-item { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .instruments-grid { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr 1fr; }
}