/* ============================================
   Rocket Internet (India) — Styles
   ============================================ */

:root {
  --bg-0: #06081a;
  --bg-1: #0a0e27;
  --bg-2: #11173a;
  --bg-3: #1a1f4e;

  --text: #f1f5ff;
  --text-soft: #c7cce6;
  --text-mute: #8b91b8;

  --brand: #ff6b35;
  --brand-2: #ec4899;
  --brand-3: #7c3aed;
  --brand-4: #06b6d4;

  --grad-hero: linear-gradient(135deg, #ff6b35 0%, #ec4899 50%, #7c3aed 100%);
  --grad-soft: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --grad-cool: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);

  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);

  --card: rgba(255, 255, 255, 0.04);
  --card-2: rgba(255, 255, 255, 0.06);

  --radius: 16px;
  --radius-lg: 24px;

  --maxw: 1200px;

  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 80px rgba(124, 58, 237, 0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Disclaimer Bar
   ============================================ */
.disclaimer-bar {
  background: linear-gradient(90deg, #1f1300 0%, #2a1a05 50%, #1f1300 100%);
  border-bottom: 1px solid rgba(255, 180, 50, 0.25);
  color: #ffd9a8;
  font-size: 13px;
  position: relative;
  z-index: 50;
}
.disclaimer-bar.hidden { display: none; }

.disclaimer-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
}
.disclaimer-icon { font-size: 16px; flex-shrink: 0; }
.disclaimer-bar p { flex: 1; line-height: 1.4; }
.disclaimer-bar strong { color: #ffba6b; font-weight: 600; }
.disclaimer-bar u { text-decoration-color: rgba(255, 186, 107, 0.45); }
.disclaimer-bar em { font-style: normal; color: #fff; }

.disclaimer-close {
  background: none;
  border: none;
  color: #ffd9a8;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.disclaimer-close:hover { opacity: 1; }

/* ============================================
   Navbar
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 14, 39, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 14, 39, 0.85);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(13, 33, 80, 0.45),
              0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.brand:hover .brand-logo {
  transform: translateY(-1px) rotate(-3deg);
  box-shadow: 0 8px 22px rgba(13, 33, 80, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.12);
}
.brand-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.brand-text small {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-hero);
  transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--grad-soft);
  padding: 9px 18px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(236, 72, 153, 0.5);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 18s infinite ease-in-out;
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: -120px; left: -120px;
}
.orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  top: 30%; right: -100px;
  animation-delay: -6s;
}
.orb-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
  bottom: -150px; left: 30%;
  animation-delay: -12s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 75% 15%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 50% 70%, #fff, transparent),
    radial-gradient(1px 1px at 90% 80%, #fff, transparent),
    radial-gradient(1px 1px at 10% 90%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 35% 50%, #fff, transparent),
    radial-gradient(1px 1px at 65% 40%, #fff, transparent),
    radial-gradient(1px 1px at 85% 55%, #fff, transparent);
  opacity: 0.35;
  animation: twinkle 4s infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.2; }
  to { opacity: 0.45; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}
.pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-anim 2s infinite;
}
@keyframes pulse-anim {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.grad-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  font-family: inherit;
}
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--grad-hero);
  color: #fff;
  box-shadow: 0 14px 32px rgba(236, 72, 153, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(236, 72, 153, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-2);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 32px;
  font-size: 17px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}
.stat span {
  font-size: 13px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rocket-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.18), rgba(236, 72, 153, 0.08));
  border: 1px solid var(--border-2);
  border-radius: 32px;
  padding: 30px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rocket-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 60%);
  z-index: 0;
}
.rocket-svg {
  position: relative;
  z-index: 1;
  width: 70%;
  filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.4));
  animation: hover 4s ease-in-out infinite;
}
.flame { animation: flame 0.25s infinite alternate; transform-origin: center top; }
@keyframes flame {
  from { transform: scaleY(1); opacity: 1; }
  to { transform: scaleY(1.15); opacity: 0.85; }
}
@keyframes hover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.rocket-card-tag {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  z-index: 2;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 2px solid var(--border-2);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  z-index: 3;
}
.scroll-indicator span {
  width: 3px;
  height: 8px;
  background: var(--text-soft);
  border-radius: 2px;
  animation: scroll-dot 1.6s infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================
   Section Layout
   ============================================ */
.section {
  padding: 110px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.eyebrow.light {
  background: linear-gradient(135deg, #fff, #fde4f2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-head p {
  color: var(--text-soft);
  font-size: 17px;
}

/* ============================================
   Grids
   ============================================ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============================================
   Feature Cards (What We Do)
   ============================================ */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(236, 72, 153, 0.05));
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 36px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(124, 58, 237, 0.15));
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}
.feature-card p {
  color: var(--text-soft);
  font-size: 14.5px;
  position: relative;
}

/* ============================================
   Project Cards
   ============================================ */
.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: block;
  position: relative;
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-2);
  box-shadow: var(--shadow-lg);
}

.project-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
  color: #fff;
  z-index: 2;
}

.project-head {
  height: 180px;
  background: linear-gradient(135deg, var(--from, #7c3aed), var(--to, #ec4899));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 50%);
}
.project-mono {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  position: relative;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.project-body {
  padding: 24px 26px 28px;
}
.project-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.project-body p {
  color: var(--text-soft);
  font-size: 14.5px;
  margin-bottom: 18px;
  min-height: 44px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  transition: gap 0.25s;
}
.project-link.soft { color: var(--text-mute); }
.project-card:hover .project-link { gap: 12px; }

.more-note {
  text-align: center;
  color: var(--text-mute);
  margin-top: 40px;
  font-size: 15px;
  font-style: italic;
}

/* ============================================
   Upcoming Cards
   ============================================ */
.upcoming-card {
  background: var(--card-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  display: block;
}
.upcoming-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), transparent 60%);
  pointer-events: none;
}
.upcoming-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-md);
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #ffaa7a;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.coming-soon .dot {
  width: 7px;
  height: 7px;
  background: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6);
  animation: pulse-anim 1.8s infinite;
}

.upcoming-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--from), var(--to));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.25);
  position: relative;
  z-index: 1;
}
.upcoming-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.upcoming-card p {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

/* ============================================
   Declaration
   ============================================ */
.declaration {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(124, 58, 237, 0.06));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.declaration::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.1), transparent 50%);
  pointer-events: none;
}
.declaration > * { position: relative; z-index: 1; }

.declaration-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.declaration h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.declaration-lead {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 18px;
}
.declaration p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.declaration strong { color: #fff; font-weight: 600; }
.declaration em { font-style: normal; color: var(--brand); font-weight: 500; }
.declaration-foot {
  margin-top: 22px !important;
  font-size: 13px !important;
  color: var(--text-mute) !important;
  font-style: italic;
}

/* ============================================
   Contact
   ============================================ */
.contact { padding: 110px 0 130px; }
.contact-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.14), rgba(124, 58, 237, 0.14));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(236, 72, 153, 0.25), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.25), transparent 60%);
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }

.contact-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.contact-card > p {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 36px;
}
.contact-foot {
  margin-top: 20px !important;
  font-size: 14px !important;
  color: var(--text-mute) !important;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--bg-0) 0%, #03051a 100%);
  border-top: 1px solid var(--border);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 56px;
  padding-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-tag {
  color: var(--text-soft);
  font-size: 14.5px;
  max-width: 320px;
  margin-top: 6px;
}
.footer-wordmark {
  display: block;
  width: 220px;
  max-width: 100%;
  margin: 10px 0 6px;
  opacity: 0.92;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-bottom: 18px;
}
.footer-col a, .footer-col .muted {
  display: block;
  font-size: 14.5px;
  color: var(--text-soft);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand); }
.footer-col .muted { color: var(--text-mute); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-mute);
}
.footer-disclaimer { color: rgba(255, 186, 107, 0.85); }

/* ============================================
   Reveal Animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-content .pill, .hero-content .hero-cta, .hero-content .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .rocket-card { max-width: 300px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 14px 18px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }

  .disclaimer-inner { padding: 10px 18px; gap: 10px; }
  .disclaimer-bar p { font-size: 12px; }

  .hero { padding: 60px 0 90px; min-height: auto; }
  .hero-title { font-size: 44px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .stat strong { font-size: 26px; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }

  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }

  .declaration { padding: 40px 24px; }
  .contact-card { padding: 50px 24px; }
  .btn-lg { padding: 16px 22px; font-size: 14.5px; }
  .btn-lg span:first-child { word-break: break-all; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .footer-cols { grid-template-columns: 1fr; }
}
