/* ═══════════════════════════════════════════
   FatCats — styles.css
   Civic Intelligence — Dark Theme
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #0A0E14;
  --bg-subtle: #0D1117;
  --surface: #111820;
  --surface-2: #1A2230;
  --surface-hover: #1E2A38;
  --border: #1E2736;
  --border-subtle: rgba(30, 39, 54, 0.5);
  --orange: #E8652B;
  --orange-hover: #F0784A;
  --orange-glow: rgba(232, 101, 43, 0.15);
  --orange-glow-strong: rgba(232, 101, 43, 0.25);
  --text: #E8E6E3;
  --text-secondary: #B8BCC4;
  --text-muted: #7A8494;
  --text-faint: #4A5568;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1120px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: rgba(232, 101, 43, 0.3);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─── Ambient Background ─── */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(10, 14, 20, 0.82);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-logo span {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 200ms ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 300ms ease, opacity 200ms ease;
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Sections ─── */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 1.5rem;
  width: 100%;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-subtitle {
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.section-subtitle.center {
  text-align: center;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(64px + 4rem) 1.5rem 2rem;
  min-height: 100vh;
  justify-content: center;
}

/* ─── Darshan Line ─── */
.darshan-line {
  font-size: clamp(0.85rem, 0.75rem + 0.5vw, 1.05rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 440px;
  line-height: 1.5;
  position: relative;
}

.darshan-line::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
  opacity: 0.4;
  margin: 0 auto 1rem;
}

.hero-logo {
  width: 80px;
  height: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 40px rgba(232, 101, 43, 0.25));
  animation: float-logo 6s ease-in-out infinite;
}

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

.hero-headline {
  font-size: clamp(2.8rem, 2rem + 4vw, 4.5rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Status Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-bottom: 2.5rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(232, 101, 43, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(232, 101, 43, 0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 4px rgba(232, 101, 43, 0.3); }
}

/* ─── Waitlist Form ─── */
.waitlist-form {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-faint);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
  background: var(--bg-subtle);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A8494' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--surface);
  color: var(--text);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Primary Button */
.btn-primary {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background 200ms ease, transform 120ms ease, box-shadow 300ms ease;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(232, 101, 43, 0.35);
  opacity: 0;
  transition: opacity 300ms ease;
}

.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 28px rgba(232, 101, 43, 0.35);
  transform: translateY(-1px);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: scale(0.98) translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.25rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.form-success.visible {
  display: block;
  animation: fadeIn 0.5s var(--ease-out);
}

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

.trust-line {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2rem;
  text-align: center;
  font-weight: 500;
}

/* ─── Cards Grid ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 300ms ease, transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.card:hover {
  border-color: rgba(232, 101, 43, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232, 101, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
  font-size: 1.25rem;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
  letter-spacing: -0.2px;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Stats ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 300ms ease;
}

.stat-item:hover {
  border-color: rgba(232, 101, 43, 0.25);
}

.stat-number {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stats-footnote {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ─── Vision Section ─── */
.vision-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.vision-quote {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.vision-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* ─── Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 300ms ease, transform 300ms var(--ease-out);
}

.team-card:hover {
  border-color: rgba(232, 101, 43, 0.25);
  transform: translateY(-2px);
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232, 101, 43, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
  border: 2px solid rgba(232, 101, 43, 0.2);
}

.team-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.2px;
}

.team-creds {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── CTA Section ─── */
.cta-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-faint);
}

.footer a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color 200ms ease;
}

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

.footer-sep {
  color: var(--border);
}

/* ─── Investor Page Specifics ─── */
.investor-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(64px + 5rem) 1.5rem 3rem;
  max-width: 640px;
  margin: 0 auto;
}

.investor-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.investor-headline {
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.investor-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 540px;
}

/* Investor opportunity stats */
.opp-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.opp-stat {
  text-align: center;
}

.opp-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
}

.opp-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Feature grid 2x3 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 300ms ease, transform 300ms var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(232, 101, 43, 0.3);
  transform: translateY(-3px);
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Market phases */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.phase {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  transition: border-color 300ms ease;
}

.phase:hover {
  border-color: rgba(232, 101, 43, 0.25);
}

.phase-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.phase-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.phase-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Defensibility list */
.defense-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.defense-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.defense-icon {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 0.4rem;
}

.defense-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.defense-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Problem evidence cards */
.problem-evidence {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.problem-card {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 300ms ease;
}

.problem-card:hover {
  border-color: rgba(232, 101, 43, 0.25);
}

.problem-number {
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.problem-context {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Thesis block */
.thesis-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* Why Now grid */
.why-now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.why-now-item {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
  transition: border-color 300ms ease;
}

.why-now-item:hover {
  border-color: rgba(232, 101, 43, 0.25);
}

.why-now-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.why-now-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Investor form */
.investor-form {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 auto;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 0.5rem;
}

/* ─── Divider ─── */
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--orange);
  opacity: 0.4;
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* ─── Mobile Menu Overlay ─── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 300ms ease;
}

.mobile-overlay.open {
  display: flex;
  opacity: 1;
}

.mobile-overlay a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  transition: color 200ms ease;
}

.mobile-overlay a:hover {
  color: var(--orange);
}

.mobile-overlay a.active {
  color: var(--orange);
}

/* ─── Responsive ─── */

/* Tablet */
@media (max-width: 1024px) {
  .cards-grid,
  .features-grid,
  .phases,
  .why-now-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav {
    padding: 0 1.25rem;
    height: 56px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: calc(56px + 3rem) 1.25rem 2rem;
    min-height: auto;
  }

  .hero-logo {
    width: 64px;
    margin-bottom: 2rem;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 1.5rem + 4vw, 3.5rem);
  }

  .section {
    padding: clamp(3rem, 6vw, 5rem) 1.25rem;
  }

  .cards-grid,
  .stats-grid,
  .team-grid,
  .features-grid,
  .phases,
  .defense-list,
  .problem-evidence,
  .why-now-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    text-align: center;
  }

  .footer-sep {
    display: none;
  }

  .investor-hero {
    padding: calc(56px + 3rem) 1.25rem 2rem;
  }

  .opp-stats {
    gap: 1.5rem;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none; }
  #ambient-canvas { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-logo { animation: none; }
  .card, .team-card, .feature-card, .phase, .stat-item, .problem-card, .why-now-item { transition: none; }
}
