/* ─────────────────────────────────────────────────────────
   IAM UNION — Bold / Street / Tech Design System
   Primary: Bold Movement (hero) | Secondary: Underground Street (social) | Accent: Futuristic Tech (ownership)
   ───────────────────────────────────────────────────────── */

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

:root {
  /* Neon palette */
  --bg:          #06060A;
  --surface:     #0E0E18;
  --surface-2:   #141424;
  --surface-3:   #1A1A2E;

  /* Brand neon */
  --neon-pink:   #FF1493;
  --neon-blue:   #00B4FF;
  --neon-cyan:   #00F5E0;
  --neon-purple: #9B44FF;
  --neon-yellow: #F5E300;

  /* Text */
  --text:        #FFFFFF;
  --text-2:      #A0A8C0;
  --text-3:      #505878;

  /* Glow versions */
  --glow-pink:   rgba(255, 20, 147, 0.25);
  --glow-blue:   rgba(0, 180, 255, 0.20);
  --glow-cyan:   rgba(0, 245, 224, 0.20);

  /* Borders */
  --border:      rgba(0, 180, 255, 0.12);
  --border-glow: rgba(0, 245, 224, 0.30);

  /* Accent amber (CTA — keep for buttons) */
  --accent:      #F5A623;
  --accent-dim:  rgba(245, 166, 35, 0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', 'Arial Narrow', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 3px; }

/* ─── TYPOGRAPHY SYSTEM ──────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text);
}

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(6, 6, 10, 0.94);
  backdrop-filter: blur(16px);
  z-index: 100;
}
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-brand {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FF1493, #00B4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-tagline {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  font-weight: 500;
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--neon-pink);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 0 20px var(--glow-pink), inset 0 0 0 1px rgba(255,20,147,0.4);
  transition: all 0.2s;
}
.nav-cta:hover {
  box-shadow: 0 0 30px rgba(255,20,147,0.5), inset 0 0 0 1px rgba(255,20,147,0.6);
  transform: translateY(-1px);
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Multi-layer neon atmosphere */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255, 20, 147, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 180, 255, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(0, 245, 224, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Horizontal scan lines texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 245, 224, 0.015) 3px,
    rgba(0, 245, 224, 0.015) 4px
  );
  pointer-events: none;
}

/* First hero-inner has headline+CTAs; second has waveform+stats */
.hero-inner {
  max-width: 1100px;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.hero-inner:first-child { padding-top: 80px; }
.hero-inner:last-of-type { padding-bottom: 96px; }

.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 28px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

/* Main headline — giant industrial type */
.hero-headline {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* I AM — the anchor of the whole page */
.hero-headline .iam-line {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(72px, 13vw, 160px);
  line-height: 0.85;
  background: linear-gradient(135deg, #FF1493 0%, #FF6EC7 30%, #00B4FF 70%, #00F5E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: 0.01em;
  animation: iam-glow 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 30px rgba(255,20,147,0.4));
}
@keyframes iam-glow {
  0%   { filter: drop-shadow(0 0 20px rgba(255,20,147,0.3)); }
  100% { filter: drop-shadow(0 0 50px rgba(0,245,224,0.5)); }
}

.hero-headline .line-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 4px;
  line-height: 1;
}
.hero-headline .line-sub .accent { color: var(--neon-pink); }

/* IAM acronym badge */
.iam-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 245, 224, 0.3);
  border-radius: 4px;
  background: rgba(0, 245, 224, 0.05);
  margin-bottom: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 245, 224, 0.15);
}
.iam-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
}

.hero-lede {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-lede strong { color: var(--text); font-weight: 600; }

/* CTA buttons */
.hero-actions { display: flex; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--neon-pink);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(255,20,147,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(transparent, rgba(255,255,255,0.08));
  transform: rotate(30deg);
  transition: all 0.4s;
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(255,20,147,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-primary:hover::after { left: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--neon-blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 180, 255, 0.4);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(0, 180, 255, 0.8);
  box-shadow: 0 0 16px rgba(0,180,255,0.2);
  color: #fff;
}

/* Hero brand image — full-width, edge-to-edge, no border/card */
.hero-visual-full {
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 0; /* kill inline gap below img */
}
.hero-brand-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Waveform visual */
.waveform-container {
  width: 100%;
  height: 120px;
  margin-bottom: 40px;
  position: relative;
}
.waveform-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,224,0.3), rgba(255,20,147,0.5), rgba(0,180,255,0.3), transparent);
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 42px;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(0, 245, 224, 0.3);
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}

/* ─── MANIFESTO ─────────────────────────────────────────── */
.manifesto {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
}
.manifesto::after {
  content: 'IAM';
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: 200px;
  color: rgba(255,20,147,0.03);
  letter-spacing: 0.05em;
  pointer-events: none;
}
.manifesto-inner { max-width: 800px; position: relative; z-index: 1; }
.manifesto-rule {
  width: 48px;
  height: 2px;
  background: var(--neon-pink);
  margin-bottom: 36px;
  box-shadow: 0 0 10px rgba(255,20,147,0.6);
}
.manifesto-quote {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 48px;
}
.manifesto-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.manifesto-body p {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  font-weight: 400;
}
.manifesto-body p strong { color: var(--neon-cyan); font-weight: 600; }

/* IAM acronym callout in manifesto */
.iam-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(0, 245, 224, 0.25);
  border-radius: 4px;
  background: rgba(0, 245, 224, 0.04);
  margin-top: 8px;
}
.iam-callout-acronym {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  line-height: 1;
}
.iam-callout-text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}
.iam-callout-text strong { color: var(--neon-cyan); font-weight: 600; }

/* ─── STACK ─────────────────────────────────────────────── */
.stack {
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}
.stack::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(155, 68, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.stack-header { margin-bottom: 64px; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-purple);
  margin-bottom: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--neon-purple);
  box-shadow: 0 0 8px var(--neon-purple);
}
.section-headline {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}
.section-headline .accent { color: var(--neon-pink); }
.section-headline .cyan   { color: var(--neon-cyan); }

/* Grid with neon borders */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  position: relative;
}
.stack-grid::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
}
.stack-item {
  background: var(--surface);
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s, box-shadow 0.25s;
  position: relative;
}
.stack-item:nth-child(3n) { border-right: none; }
.stack-item:nth-child(n+4) { border-bottom: none; }
.stack-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(155,68,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.stack-item:hover {
  background: var(--surface-2);
  box-shadow: inset 0 0 40px rgba(155, 68, 255, 0.06);
}
.stack-item:hover::before { opacity: 1; }

.stack-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155, 68, 255, 0.1);
  border: 1px solid rgba(155, 68, 255, 0.25);
  border-radius: 8px;
  color: var(--neon-purple);
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(155, 68, 255, 0.15);
}
.stack-item h3 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stack-item p {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  font-weight: 400;
}
.stack-item p strong { color: var(--neon-cyan); font-weight: 500; }

/* ─── HOW ──────────────────────────────────────────────── */
.how {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  position: relative;
}
.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 224, 0.3), transparent);
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.how-left .section-headline { margin-bottom: 20px; }
.how-body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  position: relative;
}
.step:first-child { border-top: 1px solid var(--border); }
.step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--neon-blue), var(--neon-cyan));
  opacity: 0;
  transition: opacity 0.2s;
}
.step:hover::before { opacity: 1; }

.step-num {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 14px;
  color: var(--neon-blue);
  letter-spacing: 0.08em;
  padding-top: 2px;
  text-shadow: 0 0 8px rgba(0, 180, 255, 0.5);
}
.step-content h4 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-2);
}

/* Community image row — musician silhouette imagery */
.community-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: start;
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 6px;
}
.community-img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 0 20px rgba(155, 68, 255, 0.12);
}
.community-img-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.community-img-caption .caption-iam {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 48px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(255,20,147,0.3);
}
.community-img-caption .caption-full {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  font-weight: 600;
  text-align: center;
}

/* ─── CLOSING ──────────────────────────────────────────── */
.closing {
  padding: 96px 48px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
}
.closing::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255, 20, 147, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.closing-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  margin: 0 auto 56px;
  box-shadow: 0 0 10px rgba(255,20,147,0.4);
}
.closing-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 36px;
}
.closing-headline .small {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  font-weight: 600;
  margin-bottom: 12px;
}
.closing-headline .large {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(72px, 11vw, 140px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  color: var(--text);
}
.closing-headline .accent { color: var(--neon-pink); }
.closing-headline .cyan   { color: var(--neon-cyan); }
.closing-body {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 12px;
}
.closing-body strong { color: var(--text); }
.closing-actions { display: flex; gap: 16px; justify-content: center; margin-top: 48px; }

/* ─── FOOTER ───────────────────────────────────────────── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,224,0.2), transparent);
}
.footer-inner {}
.footer-brand {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FF1493, #00B4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.footer-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 8px;
  font-weight: 400;
}
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links { display: flex; gap: 24px; justify-content: center; margin: 16px 0; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--neon-cyan); }
.footer-legal { font-size: 12px; color: var(--text-3); margin-top: 8px; }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .stack-item:nth-child(2n) { border-right: none; }
  .stack-item:nth-child(n+5) { border-bottom: none; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { gap: 32px; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 0; }
  .hero .hero-inner { padding: 0 24px; }
  .hero .hero-inner:first-child { padding-top: 48px; }
  .hero .hero-inner:last-of-type { padding-bottom: 64px; }
  .manifesto, .stack, .how { padding: 64px 24px; }
  .closing { padding: 64px 24px 80px; }
  .footer { padding: 32px 24px; }
  .stack-grid { grid-template-columns: 1fr; }
  .stack-item { border-right: none !important; }
  .stack-item:nth-child(n+4) { border-bottom: 1px solid var(--border); }
  .stack-item:last-child { border-bottom: none; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .closing-actions { flex-direction: column; align-items: center; }
  .iam-callout { flex-direction: column; }
  .community-img-row { grid-template-columns: 1fr; }
  .community-img-caption { display: none; }
}