:root {
  --bg:#0b1220;
  --panel:#0e1630;
  --text:#e8ecf3;
  --muted:#a7b0c3;
  --brand1:#6a11cb;
  --brand2:#2575fc;
  --accent: linear-gradient(135deg,var(--brand1),var(--brand2));
  --card:#121b3a;
  --ring: rgba(101, 132, 255, .35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0; max-width: 100%; overflow-x: hidden;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 50% 0%, #1a2456 0%, transparent 60%), var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; transition: 0.2s; }
a:hover { color: #fff; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* --- Header --- */
.header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; }
.brand img { width: 32px; height: 32px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px; border-radius: 12px;
  background: var(--accent); color: white; font-weight: 600;
  border: 0; cursor: pointer; box-shadow: 0 6px 30px -10px var(--ring);
  transition: transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,.15); box-shadow: none; }
.small-btn { padding: 8px 16px; font-size: 0.9rem; }

/* --- Hero Section & Typography --- */
.hero { padding: 140px 0 60px; text-align: center; }
.center-hero { display: flex; flex-direction: column; align-items: center; justify-content: center; }

.tag {
  display: inline-block; padding: 6px 14px;
  border-radius: 99px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--brand2); font-weight: 500; font-size: 0.9rem;
  margin-bottom: 20px;
}

/* BIG COMING SOON FONT */
.coming-soon-title {
  font-size: clamp(3rem, 8vw, 6rem); /* Huge responsive font */
  line-height: 1.1;
  margin: 10px 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(to right, #fff, #8ca6db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* --- Waitlist Form --- */
.waitlist-container {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.waitlist-form .input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 16px;
  outline: none;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .waitlist-form { flex-direction: column; background: transparent; border: none; padding: 0; }
  .waitlist-form .input { background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 10px; }
  .btn { width: 100%; }
}

/* --- Features Grid --- */
.grid { display: grid; gap: 24px; }
.features { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 40px; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

.card h3 { margin-top: 0; font-size: 1.4rem; color: #fff; }
.card p { color: var(--muted); margin-bottom: 0; }

/* --- Contact / Founder Section --- */
.cta {
  background: radial-gradient(800px 300px at 50% 0%, rgba(101,132,255,.15), transparent 70%), var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-item { display: flex; flex-direction: column; gap: 5px; font-size: 0.95rem; }
.contact-item strong { color: var(--brand2); }

/* --- Footer --- */
.footer {
  padding: 40px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 60px;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.slide-in { animation: fadeInUp 0.6s ease-out forwards; opacity: 0; }
.animate-card { opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* --- Add this to your existing styles.css --- */

/* Hero Adjustments */
.coming-soon-title {
  font-size: clamp(3.5rem, 9vw, 7rem); /* Even bigger as requested */
  line-height: 1;
  margin: 10px 0 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Mission Section (Why & Impact) */
.mission-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-text h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.mission-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

/* Footer & Contact Section Layout */
.footer-section {
  background: var(--panel);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Footer List Styles */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Contact Links */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-link {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--brand2);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--brand2);
  color: white;
  transform: translateY(-3px);
  border-color: var(--brand2);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
/* --- Hamburger Menu Styles --- */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
}

.burger span {
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Hover Effect for Burger */
.burger:hover span {
  background: var(--brand2);
}

/* Dropdown Menu (Hidden by default) */
.nav-dropdown {
  position: absolute;
  top: 70px; /* Below header */
  right: 20px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 160px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none; /* Cannot click when hidden */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Active State (Visible) */
.nav-dropdown.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Link Styles inside Dropdown */
.nav-link {
  color: var(--text);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}