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

:root {
  --bg: #FAFAF8;
  --fg: #1A1A18;
  --accent: #E85D04;
  --accent-warm: #F4A261;
  --muted: #6B6860;
  --surface: #F0EDE8;
  --border: #DDD9D0;
  --red: #C0392B;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  gap: 32px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.proof-label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 120px;
}

/* Stage Monitor */
.hero-visual {
  position: relative;
}

.stage-monitor {
  background: #111110;
  border-radius: 16px;
  padding: 28px;
  color: #F0EDE8;
  font-family: 'Courier New', Courier, monospace;
  box-shadow: 0 32px 64px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
}

.monitor-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.monitor-line {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.monitor-section {
  margin-bottom: 18px;
}

.ms-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--accent-warm);
  margin-bottom: 6px;
}

.ms-item {
  font-size: 12px;
  color: #C8C4BC;
  line-height: 1.5;
  margin-bottom: 4px;
  padding-left: 8px;
  border-left: 2px solid rgba(232, 93, 4, 0.3);
}

.monitor-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  color: #888;
}

.rec-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Waveform */
.waveform-art {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 48px;
  margin-top: 20px;
}

.wave-bar {
  flex: 1;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.4;
}

.w1{height:20%;} .w2{height:45%;} .w3{height:70%;} .w4{height:90%;} .w5{height:100%;}
.w6{height:80%;} .w7{height:60%;} .w8{height:95%;} .w9{height:75%;} .w10{height:55%;}
.w11{height:40%;} .w12{height:85%;} .w13{height:65%;} .w14{height:50%;} .w15{height:70%;}
.w16{height:45%;} .w17{height:30%;} .w18{height:60%;} .w19{height:80%;} .w20{height:40%;}
.w21{height:55%;} .w22{height:35%;} .w23{height:20%;} .w24{height:45%;}

/* SHOW SECTION */
.show-section {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.show-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.show-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.show-heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

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

/* Pipeline */
.pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pipe-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.pipe-item:first-child {
  border-top: 1px solid var(--border);
}

.pipe-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pipe-body { flex: 1; }

.pipe-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pipe-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.pipe-arrow {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin-left: 16px;
}

/* PROCESS */
.process-section {
  padding: 96px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.process-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 64px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}

.step { padding: 0 32px 0 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

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

.step-divider {
  background: var(--border);
  width: 1px;
  align-self: stretch;
}

/* MANIFESTO */
.manifesto-section {
  padding: 96px 48px;
  background: var(--fg);
  color: var(--bg);
}

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

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 32px;
}

.manifesto-quote p {
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: #C8C4BC;
  font-family: var(--font-display);
  font-weight: 300;
}

.manifesto-statement {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.manifesto-statement p {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--bg);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* CLOSING */
.closing-section {
  padding: 96px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 56px;
}

.closing-stakes {
  display: flex;
  justify-content: center;
  gap: 48px;
}

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

.stake-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.stake-icon svg {
  width: 100%;
  height: 100%;
}

.stake-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  background: var(--surface);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

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

.footer-meta {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .show-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .step-divider { height: 1px; width: 100%; }
  .closing-stakes { flex-direction: column; align-items: center; gap: 32px; }
  .manifesto-quote p { font-size: 17px; }
  .footer-inner { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px 40px; }
  .show-section, .process-section { padding: 64px 20px; }
  .manifesto-section, .closing-section { padding: 64px 20px; }
  .footer { padding: 32px 20px; }
}