:root {
  --bg-dark: #08080F;
  --bg-card: #0F0F1A;
  --text-primary: #F5F7FA;
  --text-secondary: #A0A9B8;
  --text-tertiary: #6B7280;
  --border: #1F2937;
  --accent-bright: #A78BFA;
  --accent-purple: #A78BFA;
  --accent-pink: #EC4899;
  --accent-blue: #3B82F6;
  --accent-green: #10B981;
  --accent-orange: #F59E0B;
  --accent-gold: #FBBF24;
  --accent-cyan: #06B6D4;
  --muted: #4B5563;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
h5 { font-size: 0.875rem; font-weight: 600; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

/* Layout */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-pad { padding: 3rem 0; }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 15, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.logo .mark {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  border-radius: 6px;
}

.logo svg {
  width: 16px;
  height: 16px;
}

.logo .check {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .btn-primary { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(167, 139, 250, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-text {
  background: transparent;
  color: var(--text-secondary);
  padding: 0;
}

.btn-text:hover {
  color: var(--text-primary);
}

.play {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 247, 250, 0.1);
  border-radius: 50%;
}

.play svg {
  width: 12px;
  height: 12px;
}

/* Hero */
.hero {
  padding: 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.grad {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-feature .ic {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(167, 139, 250, 0.1);
  margin-bottom: 0.5rem;
}

.hero-feature b {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.hero-feature span {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.map-stage {
  position: relative;
  height: 600px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at center, rgba(167, 139, 250, 0.05) 0%, rgba(8, 8, 15, 1) 100%);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .map-stage {
    height: 400px;
  }
}

/* Color variants */
.tint-purple { color: var(--accent-purple); }
.tint-pink { color: var(--accent-pink); }
.tint-blue { color: var(--accent-blue); }
.tint-green { color: var(--accent-green); }
.tint-orange { color: var(--accent-orange); }
.tint-gold { color: var(--accent-gold); }
.tint-cyan { color: var(--accent-cyan); }

.ic.tint-purple { background: rgba(167, 139, 250, 0.15); }
.ic.tint-pink { background: rgba(236, 72, 153, 0.15); }
.ic.tint-blue { background: rgba(59, 130, 246, 0.15); }
.ic.tint-green { background: rgba(16, 185, 129, 0.15); }
.ic.tint-orange { background: rgba(245, 158, 11, 0.15); }
.ic.tint-gold { background: rgba(251, 191, 36, 0.15); }
.ic.tint-cyan { background: rgba(6, 182, 212, 0.15); }

.sig {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  min-width: 220px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.sig-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.sig-ic {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(167, 139, 250, 0.15);
}

.sig-head b {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.sig p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.ago {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.city-chip {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.city-chip svg {
  width: 20px;
  height: 20px;
}

.sep {
  color: var(--text-tertiary);
}

/* Section headers */
.sec-head,
.sec-head-center {
  margin-bottom: 3rem;
}

.sec-head-center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.eyebrow.pink { color: var(--accent-pink); }
.eyebrow.blue { color: var(--accent-blue); }

.dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.sec-title {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.sec-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
}

/* Noise section */
.s-noise {
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.05) 0%, transparent 100%);
}

.noise-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(15, 15, 26, 0.5);
}

.scatter {
  position: relative;
  height: 300px;
}

.arrow-mid {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  border: 1px solid var(--border);
}

.arrow-mid svg {
  width: 24px;
  height: 24px;
}

.layer-panel {
  position: relative;
  height: 300px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(236, 72, 153, 0.1));
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.layer-caption {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.layer-caption b {
  color: var(--text-primary);
}

.layer-caption span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .noise-stage {
    grid-template-columns: 1fr;
  }
  .arrow-mid {
    transform: rotate(90deg);
  }
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pillar {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(236, 72, 153, 0.05));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}

.pillar:hover {
  border-color: var(--accent-bright);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(236, 72, 153, 0.1));
}

.p-ic {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.2);
  border-radius: 10px;
  margin-bottom: 1rem;
  color: var(--c, var(--accent-bright));
}

.p-ic svg {
  width: 28px;
  height: 28px;
}

.pillar h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.p-lead {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.pillar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar li {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Signals section */
.s-signals {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.signal-card:hover {
  border-color: var(--accent-bright);
  background: rgba(15, 15, 26, 0.8);
}

.s-ic {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.15);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.s-ic svg {
  width: 24px;
  height: 24px;
}

.signal-card b {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.signal-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.signals-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.strike {
  text-decoration: line-through;
  color: var(--text-tertiary);
}

/* Access grid */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.flow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.flow-node b {
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-primary);
}

.fn-ic {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.15);
  border-radius: 10px;
}

.hero-node {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
}

.hero-node .fn-ic {
  background: none;
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--text-tertiary);
}

.flow-arrow svg {
  width: 20px;
  height: 20px;
}

.access-note {
  background: rgba(167, 139, 250, 0.1);
  border-left: 3px solid var(--accent-purple);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.access-note b {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.access-lists {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.access-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.access-card h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.access-card ul {
  list-style: none;
}

.access-card li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.li-ic {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 6px;
  flex-shrink: 0;
}

.li-ic svg {
  width: 16px;
  height: 16px;
}

.access-card.gold {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.05));
  border-color: rgba(251, 191, 36, 0.2);
}

@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}

/* Movement section */
.move-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.benefits {
  list-style: none;
  margin-top: 1.5rem;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.chk {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  border-radius: 50%;
  flex-shrink: 0;
}

.chk svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.move-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.move-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 15, 0.95) 100%);
  padding: 2rem;
  color: var(--text-primary);
}

.move-overlay b {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.facepile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.face {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  border: 2px solid var(--bg-dark);
}

.count {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .move-grid {
    grid-template-columns: 1fr;
  }
}

/* Roles */
.roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.role-card {
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s;
}

.role-card:hover {
  transform: translateY(-4px);
}

.role-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(236, 72, 153, 0.1));
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.role-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  padding: 1.5rem;
  border-radius: 0 0 12px 12px;
}

.r-ic {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.15);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.r-ic svg {
  width: 20px;
  height: 20px;
}

.role-body h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.r-tag {
  font-size: 0.85rem;
  color: var(--accent-bright);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.role-body p:last-child {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Cities */
.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.launch-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.launch-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.launch-card:hover {
  border-color: var(--accent-bright);
}

.launch-card.live {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(236, 72, 153, 0.15));
  border-color: var(--accent-purple);
}

.lc-ic {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.launch-card.live .lc-ic {
  background: var(--accent-purple);
  color: #fff;
}

.lc-ic svg {
  width: 24px;
  height: 24px;
}

.launch-card b {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.lc-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.lc-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pdot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.us-map {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(236, 72, 153, 0.05));
  border-radius: 16px;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }
  .us-map {
    min-height: 300px;
  }
}

/* Early Access */
.s-early {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(59, 130, 246, 0.05));
}

.early-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
}

.early-card .eyebrow {
  display: flex;
  justify-content: center;
}

.early-card h2 {
  margin-bottom: 1rem;
}

.intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.early-form {
  display: grid;
  gap: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.field input,
.field select {
  padding: 0.75rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent-purple);
}

.field input::placeholder {
  color: var(--text-tertiary);
}

.field.full {
  grid-column: 1/-1;
}

.field button {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  color: #fff;
}

.early-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.early-disclaimer svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .early-card {
    padding: 1.5rem;
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(167, 139, 250, 0.05) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin: 1rem 0;
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.socials a:hover {
  background: rgba(167, 139, 250, 0.25);
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-col h5 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.footer-mission span {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.2s; }
.reveal.d3 { animation-delay: 0.3s; }
.reveal.d4 { animation-delay: 0.4s; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
