/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', sans-serif;
  background: #0a0a14;
  color: #ccc;
  line-height: 1.7;
  overflow-x: hidden;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: #00ffff; text-decoration: none; transition: color 0.3s; }
a:hover { color: #ff00ff; }

/* ========== CSS VARIABLES ========== */
:root {
  --magenta: #ff00ff;
  --cyan: #00ffff;
  --purple: #9d00ff;
  --dark: #0a0a14;
  --dark-card: #12121e;
  --dark-surface: #16162a;
  --peach: #ffbc7d;
  --text: #cccccc;
  --text-dim: #888888;
  --white: #f0f0f5;
  --glow-magenta: 0 0 40px rgba(255, 0, 255, 0.15);
  --glow-cyan: 0 0 40px rgba(0, 255, 255, 0.15);
  --glow-purple: 0 0 40px rgba(157, 0, 255, 0.15);
  --section-padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 80px);
  --max-width: 1140px;
}

/* ========== UTILITY ========== */
.container { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.gradient-text {
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-alt {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== AMBIENT BACKGROUND ========== */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}
.orb-1 { width: 600px; height: 600px; background: var(--magenta); top: -200px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: var(--cyan); bottom: 30%; right: -200px; }
.orb-3 { width: 400px; height: 400px; background: var(--purple); bottom: -100px; left: 30%; }

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 80px);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 0, 255, 0.1);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 3px;
  color: var(--magenta);
  text-transform: uppercase;
}
.nav-logo img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-size: 0.8rem;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: var(--white) !important;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
  color: var(--white) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* ========== SECTIONS COMMON ========== */
section {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
}
.section-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
  display: inline-block;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
}
.section-subtitle {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  max-width: 640px;
  line-height: 1.8;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== HERO ========== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(157, 0, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 60%, rgba(255, 0, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 50%, rgba(0, 255, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}
.hero-subtitle {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  margin-bottom: 48px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: var(--white);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 0, 255, 0.3);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: var(--cyan);
}
.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.05);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.15);
  color: var(--cyan);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
.hero-scroll-hint .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--magenta);
  border-bottom: 2px solid var(--magenta);
  transform: rotate(45deg);
  opacity: 0.5;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== INTRO ========== */
#intro { background: var(--dark); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.intro-step:hover {
  border-color: rgba(157, 0, 255, 0.2);
  box-shadow: var(--glow-purple);
}
.intro-step-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(157, 0, 255, 0.1);
  flex-shrink: 0;
}
.intro-step-text {
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
}
.intro-summary {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(0, 255, 255, 0.05));
  border: 1px solid rgba(255, 0, 255, 0.1);
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
}

/* ========== WHY ========== */
#why { background: var(--dark-card); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pain-points { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.pain-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(233, 69, 96, 0.06);
  border-left: 3px solid rgba(233, 69, 96, 0.4);
  color: var(--text);
  font-size: 1rem;
}
.pain-point .icon { color: #e94560; font-size: 1.1rem; }
.solution-text {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: var(--white);
}
.solution-text .highlight {
  color: var(--cyan);
  font-weight: 500;
}

/* ========== VIDEO ========== */
#video { background: var(--dark); text-align: center; }
.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 255, 0.15);
  box-shadow: 0 0 60px rgba(157, 0, 255, 0.1);
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.5);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== PROOF / MOVIES ========== */
#proof { background: var(--dark-card); }
.proof-hero-stat {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.15);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.proof-pipeline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.proof-pipeline .step {
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.proof-pipeline .arrow-icon { color: var(--magenta); font-size: 1rem; }
.proof-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.proof-video-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.proof-video-card:hover {
  border-color: rgba(255, 0, 255, 0.2);
  box-shadow: var(--glow-magenta);
}
.proof-video-card .video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.proof-video-card .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.proof-video-card .card-info {
  padding: 20px 24px;
}
.proof-video-card .card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.proof-video-card .card-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.feature-chip {
  padding: 14px 20px;
  border-radius: 10px;
  background: rgba(157, 0, 255, 0.06);
  border: 1px solid rgba(157, 0, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.3s, background 0.3s;
}
.feature-chip:hover {
  background: rgba(157, 0, 255, 0.1);
  border-color: rgba(157, 0, 255, 0.25);
}
.feature-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* ========== CREATOR ECONOMY ========== */
#economy { background: var(--dark); position: relative; }
#economy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 0, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.economy-content { position: relative; z-index: 1; }
.economy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.economy-stats { display: flex; flex-direction: column; gap: 20px; }
.economy-stat {
  padding: 24px;
  border-radius: 14px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.economy-stat:hover {
  border-color: rgba(255, 0, 255, 0.15);
  box-shadow: var(--glow-magenta);
}
.economy-stat .number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.economy-stat .label {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
#how { background: var(--dark-card); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 0, 255, 0.2);
  box-shadow: var(--glow-purple);
}
.step-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  opacity: 0.15;
  color: var(--white);
}
.step-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.step-ready {
  text-align: center;
  margin-top: 48px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
}

/* ========== WHO IT'S FOR ========== */
#who { background: var(--dark); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.who-card {
  padding: 32px 24px;
  border-radius: 14px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.who-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 255, 0.15);
  box-shadow: var(--glow-cyan);
}
.who-icon { font-size: 2.2rem; margin-bottom: 16px; }
.who-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.who-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ========== REALITY CHECK ========== */
#reality { background: var(--dark-card); }
.reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.reality-answer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reality-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(0, 255, 255, 0.04);
  border-left: 3px solid rgba(0, 255, 255, 0.3);
  font-size: 1rem;
  color: var(--text);
}
.reality-item .icon { color: var(--cyan); }
.reality-closing {
  font-family: 'Roboto Slab', serif;
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--white);
  margin-top: 24px;
}
.reality-closing .fast {
  color: var(--magenta);
  font-weight: 700;
}

/* ========== TRANSPARENCY ========== */
#transparency { background: var(--dark); }
.transparency-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.transparency-card {
  padding: 32px;
  border-radius: 14px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.transparency-card:hover {
  border-color: rgba(255, 188, 125, 0.2);
  box-shadow: 0 0 40px rgba(255, 188, 125, 0.08);
}
.transparency-card .value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--peach);
  margin-bottom: 12px;
}
.transparency-card .desc {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* ========== TEAM ========== */
#team { background: var(--dark-card); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-card:hover {
  border-color: rgba(157, 0, 255, 0.15);
  box-shadow: var(--glow-purple);
}
.team-headshot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 0, 255, 0.25);
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(157, 0, 255, 0.15);
}
.team-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 0.85rem;
  color: var(--magenta);
  font-weight: 500;
  margin-bottom: 16px;
}
.team-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* ========== WHAT'S NEXT ========== */
#next { background: var(--dark); }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  max-width: 600px;
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--magenta), transparent);
}
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 2px solid var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.timeline-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ========== CTA SECTION ========== */
#cta {
  background: var(--dark-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 0, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }

/* ========== FOOTER ========== */
footer {
  position: relative;
  z-index: 1;
  padding: 40px clamp(20px, 5vw, 80px);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--magenta);
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-links a:hover { color: var(--cyan); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .intro-grid, .why-grid, .economy-grid, .reality-grid, .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .transparency-cards { grid-template-columns: 1fr; }
  .summit-locations { grid-template-columns: 1fr !important; }
  .summit-locations + div { grid-template-columns: 1fr !important; }
  .proof-videos { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
  }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}
