/* ============================================
   EKKSAATH — Design System
   Palette: Deep Black + Red #F21228 + Warm White
   Fonts: Clash Display + Plus Jakarta Sans
============================================ */

:root {
  --red: #F21228;
  --red-dark: #C00D20;
  --red-light: #FF3347;
  --red-glow: rgba(242, 18, 40, 0.25);
  --red-subtle: rgba(242, 18, 40, 0.08);

  --black: #080808;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --black-4: #242424;
  --black-5: #2E2E2E;

  --white: #FAFAF8;
  --white-2: #F0EDE8;
  --white-3: #E0DDD8;
  --muted: #888880;
  --muted-2: #666660;

  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-red: 0 0 40px rgba(242, 18, 40, 0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  border: 1px solid rgba(242, 18, 40, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-tag.light { color: var(--red-light); background: rgba(242,18,40,0.15); border-color: rgba(242,18,40,0.3); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--red); }
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(242,18,40,0.4);
}
.btn-primary:hover {
  background: var(--red-light);
  box-shadow: 0 8px 32px rgba(242,18,40,0.6);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-subtle);
}
.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.875rem;
  box-shadow: 0 2px 12px rgba(242,18,40,0.35);
}
.btn-nav:hover { background: var(--red-light); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .btn-nav { margin-top: 16px; text-align: center; justify-content: center; }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#connectionCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242,18,40,0.2) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,18,40,0.12) 0%, transparent 70%);
  bottom: 0; right: 10%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(242,18,40,0.1);
  border: 1px solid rgba(242,18,40,0.25);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero-title .line-1 { color: var(--white); }
.hero-title .line-2 { color: var(--white-3); }
.hero-title .line-accent {
  color: var(--red);
  text-shadow: 0 0 60px rgba(242,18,40,0.5);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin: 0 28px 0 0;
}

/* Phone Mockup */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--black-3);
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--black);
  border-radius: 20px;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a2e 0%, #0f0f1a 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 52px 20px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
}
.phone-app-ui {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.app-header {
  padding: 12px 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-avatar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.app-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.av1 { background: linear-gradient(135deg, #F21228, #FF6B6B); }
.av2 { background: linear-gradient(135deg, #6C63FF, #A78BFA); }
.av3 { background: linear-gradient(135deg, #F59E0B, #FCD34D); }
.app-avatar-more {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}
.app-greeting {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.app-feed {
  flex: 1;
  padding: 12px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.feed-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 12px;
  animation: fadeSlide 0.5s ease forwards;
}
.fc1 { animation-delay: 0.2s; }
.fc2 { animation-delay: 0.4s; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.feed-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.feed-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fa1 { background: linear-gradient(135deg, #F21228, #FF6B6B); }
.fa2 { background: linear-gradient(135deg, #6C63FF, #A78BFA); }
.feed-name { font-size: 11px; font-weight: 700; color: var(--white); }
.feed-time { font-size: 10px; color: var(--muted); }
.feed-reaction { margin-left: auto; font-size: 16px; }
.feed-img-placeholder {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, rgba(242,18,40,0.2), rgba(108,99,255,0.2));
  border-radius: 8px;
  margin-bottom: 8px;
}
.feed-caption { font-size: 11px; color: var(--white-3); }
.feed-caption-only { font-size: 11px; color: var(--white-3); }
.app-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
  margin-top: auto;
}
.app-nav-item {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--muted-2);
  transition: var(--transition);
}
.app-nav-item.active { color: var(--red); background: rgba(242,18,40,0.1); }
.app-nav-center {
  width: 44px; height: 44px;
  background: var(--red);
  color: white;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(242,18,40,0.5);
}
.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(242,18,40,0.25) 0%, transparent 70%);
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.75rem;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted-2), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   ABOUT
============================================ */
.about {
  padding: 120px 0;
  background: var(--black-2);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,18,40,0.3), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-body strong { color: var(--white); font-weight: 600; }
.about-body em { color: var(--red); font-style: italic; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tag {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--black-4);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white-3);
  transition: var(--transition);
}
.tag:hover { border-color: var(--red); color: var(--red); }

/* Card Stack */
.about-visual { display: flex; justify-content: center; align-items: center; }
.about-card-stack {
  position: relative;
  width: 320px;
  height: 280px;
}
.about-card {
  position: absolute;
  width: 280px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition-slow);
}
.ac-back {
  background: var(--black-4);
  top: 0; left: 40px;
  transform: rotate(6deg);
  z-index: 1;
}
.ac-mid {
  background: var(--black-3);
  top: 20px; left: 20px;
  transform: rotate(3deg);
  z-index: 2;
}
.ac-front {
  background: linear-gradient(135deg, var(--black-3), var(--black-4));
  border-color: rgba(242,18,40,0.2);
  top: 40px; left: 0;
  transform: rotate(0deg);
  z-index: 3;
  box-shadow: var(--shadow-card);
}
.about-card-stack:hover .ac-back { transform: rotate(8deg) translateY(-4px); }
.about-card-stack:hover .ac-mid { transform: rotate(4deg) translateY(-8px); }
.about-card-stack:hover .ac-front { transform: rotate(0deg) translateY(-12px); box-shadow: var(--shadow-red); }
.ac-icon { font-size: 2rem; margin-bottom: 12px; }
.ac-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); }
.ac-sub { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

/* ============================================
   FEATURES
============================================ */
.features {
  padding: 120px 0;
  background: var(--black);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-tag { margin: 0 auto 20px; }
.section-header .section-sub { margin: 0 auto; text-align: center; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(242,18,40,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feature-card:hover::before { opacity: 1; }
.fc-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--black-2), var(--black-3));
}
.feature-icon-wrap {
  width: 56px; height: 56px;
  background: var(--red-subtle);
  border: 1px solid rgba(242,18,40,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.fc-cta {
  background: linear-gradient(135deg, rgba(242,18,40,0.1), rgba(242,18,40,0.05));
  border-color: rgba(242,18,40,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-cta-inner { text-align: center; }
.fc-cta-emoji { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.fc-cta h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.fc-cta p { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }

/* ============================================
   VISION
============================================ */
.vision {
  padding: 120px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.vision-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vision-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(242,18,40,0.08) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.vision-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.vision-numbers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vn-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red);
}
.vn-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  min-width: 80px;
}
.vn-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* Roadmap */
.roadmap-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.roadmap-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.roadmap-items::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255,255,255,0.08);
}
.rm-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 32px;
  position: relative;
}
.rm-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--black-4);
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 2px;
  transition: var(--transition);
}
.rm-done .rm-dot {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(242,18,40,0.5);
}
.rm-active .rm-dot {
  background: transparent;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(242,18,40,0.15);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 4px rgba(242,18,40,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(242,18,40,0.05); }
}
.rm-phase {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.rm-active .rm-phase { color: var(--red); }
.rm-desc { font-size: 0.875rem; color: var(--muted); }

/* ============================================
   INVESTORS
============================================ */
.investors {
  padding: 120px 0;
  background: var(--black);
}
.investors-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.inv-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.inv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.inv-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.inv-card:hover {
  border-color: rgba(242,18,40,0.2);
  transform: translateY(-2px);
}
.inv-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.inv-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.inv-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ============================================
   WAITLIST
============================================ */
.waitlist {
  padding: 120px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(242,18,40,0.06) 0%, transparent 60%);
}
.waitlist-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.wl-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  background: var(--red-subtle);
  border: 1px solid rgba(242,18,40,0.25);
  border-radius: var(--radius-full);
  color: var(--red-light);
  margin-bottom: 24px;
}
.wl-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.wl-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.wl-form { width: 100%; }
.wl-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.wl-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--black-3);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.wl-input::placeholder { color: var(--muted-2); }
.wl-input:focus {
  border-color: var(--red);
  background: var(--black-4);
  box-shadow: 0 0 0 3px rgba(242,18,40,0.1);
}
.wl-inputs .btn { width: 100%; justify-content: center; }
.wl-privacy { font-size: 0.8rem; color: var(--muted-2); }
.wl-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  background: rgba(242,18,40,0.05);
  border: 1px solid rgba(242,18,40,0.2);
  border-radius: var(--radius-lg);
}
.wl-success.show { display: flex; }
.wl-success-icon { font-size: 3rem; }
.wl-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.wl-success p { color: var(--muted); }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 8px 0 20px;
  font-style: italic;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px; height: 38px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--red-subtle);
  border-color: rgba(242,18,40,0.3);
  color: var(--red);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--muted-2); }
.footer-note { font-style: italic; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-phone { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .vision-inner { grid-template-columns: 1fr; gap: 48px; }
  .investors-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .fc-large { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .fc-large { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .inv-cards { grid-template-columns: 1fr; }
  .about-card-stack { width: 280px; height: 240px; }
  .about-card { width: 240px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .wl-inputs { padding: 0 16px; }
  .footer-links { grid-template-columns: 1fr; }
}