/* WAVY — Dark Club Aesthetic */

:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1C1C1C;
  --fg: #F5F5F0;
  --fg-muted: #8A8A80;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --accent-glow: rgba(255, 77, 0, 0.25);
  --border: rgba(255, 255, 255, 0.06);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,77,0,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,77,0,0.08) 0%, transparent 70%);
  bottom: 0; left: -50px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.lines-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,77,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

.wavy-logo {
  margin-bottom: 2.5rem;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* ── MANIFESTO ── */

.manifesto {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.manifesto-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--fg-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--fg-muted);
}

.manifesto-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--fg);
  margin-bottom: 2rem;
}

.manifesto-divider {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
}

.manifesto-resolve {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--fg-muted);
}

/* ── PILLARS ── */

.pillars {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-header {
  margin-bottom: 4rem;
}

.pillars-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 0.75rem;
}

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

.pillar-card {
  background: var(--surface);
  padding: 3rem;
  transition: background 0.3s;
}

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

.pillar-icon {
  margin-bottom: 1.5rem;
}

.pillar-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.pillar-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── PLAYBOOK ── */

.playbook {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.playbook-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.playbook-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-top: 0.75rem;
}

.playbook-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.6;
}

.step-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.step-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 640px;
}

/* ── COLLECTIVE ── */

.collective {
  position: relative;
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.collective-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.freq-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(255,77,0,0.03) 30px,
      rgba(255,77,0,0.03) 31px
    );
}

.collective-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.collective-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
}

.collective-text p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

.collective-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-weight: 500;
}

.wave-viz {
  margin-bottom: 2.5rem;
}

.wave-viz svg {
  width: 100%;
  height: auto;
}

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

.stat {
  background: var(--surface);
  padding: 1.5rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.3rem;
}

/* ── CLOSING ── */

.closing {
  padding: 7rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-line {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 3rem;
}

.closing-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── FOOTER ── */

footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand p {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}

.footer-note p {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── MOBILE ── */

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .collective-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .step {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.5rem; }
  .pillar-card { padding: 2rem; }
  .stats-row { grid-template-columns: 1fr; }
}