/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0f1117;
  color: #e5e7eb;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo-img { height: 40px; }
.nav { display: flex; gap: 32px; }
.nav-link {
  color: #374151; font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: #111827; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; border-radius: 8px; border: none;
  cursor: pointer; transition: all 0.2s; padding: 10px 24px;
}
.btn-primary {
  background: #22c55e; color: #fff;
}
.btn-primary:hover { background: #16a34a; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2px; background: #374151; display: block; border-radius: 2px; }

/* ── Coming Soon ── */
.coming-soon {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, #1a2a1a 0%, #0f1117 60%);
}

/* Particles */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.coming-soon-content {
  position: relative; z-index: 2;
  max-width: 700px;
}

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  color: #22c55e; font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 999px; margin-bottom: 32px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* Hero text */
.hero-title {
  font-size: 56px; font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 20px; letter-spacing: -1px;
}
.gradient-text {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #4ade80 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; color: #9ca3af; line-height: 1.7;
  margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* Countdown */
.countdown {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 40px;
}
.countdown-item { text-align: center; }
.countdown-num {
  font-size: 48px; font-weight: 800; color: #fff;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
}
.countdown-label { font-size: 12px; color: #6b7280; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
.countdown-sep { font-size: 36px; font-weight: 700; color: #374151; margin-top: -20px; }

/* Notify */
.notify-form {
  display: flex; gap: 8px; max-width: 440px; margin: 0 auto 16px;
}
.notify-input {
  flex: 1; padding: 14px 20px; border-radius: 10px;
  border: 1px solid #374151; background: rgba(255,255,255,0.05);
  color: #fff; font-size: 15px; outline: none;
  transition: border-color 0.2s;
}
.notify-input:focus { border-color: #22c55e; }
.notify-input::placeholder { color: #6b7280; }
.notify-btn { padding: 14px 28px; border-radius: 10px; white-space: nowrap; }
.notify-msg { font-size: 13px; margin-bottom: 40px; min-height: 20px; }

/* Feature pills */
.features-preview {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.feature-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 20px; border-radius: 999px; font-size: 14px; color: #d1d5db;
  transition: all 0.3s;
}
.feature-pill:hover {
  border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.05);
  color: #fff; transform: translateY(-2px);
}
.feature-icon { font-size: 16px; }

/* Trust */
.trust-badges { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #9ca3af;
}

/* ── Footer ── */
.footer { background: #f3f4f6; color: #374151; padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid #e5e7eb;
}
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: #6b7280; line-height: 1.6; }
.footer-heading { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-link { display: block; font-size: 14px; color: #6b7280; margin-bottom: 12px; transition: color 0.2s; }
.footer-link:hover { color: #111827; }
.footer-cta { color: #22c55e; font-weight: 600; }
.footer-cta:hover { color: #16a34a; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 13px; color: #9ca3af;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #9ca3af; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #374151; }

/* ── Animations ── */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
.animate-slide-up {
  opacity: 0; transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 24px; gap: 16px;
    border-bottom: 1px solid #e5e7eb; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav.open { display: flex; }
  .header-inner .btn { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 15px; }

  .countdown { gap: 8px; }
  .countdown-num { font-size: 32px; width: 64px; height: 64px; border-radius: 12px; }
  .countdown-sep { font-size: 24px; }
  .countdown-label { font-size: 10px; }

  .notify-form { flex-direction: column; }
  .notify-btn { width: 100%; }

  .features-preview { gap: 8px; }
  .feature-pill { font-size: 12px; padding: 8px 14px; }

  .trust-badges { flex-direction: column; align-items: center; gap: 12px; }

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

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .countdown-num { font-size: 24px; width: 52px; height: 52px; }
}
