/* ===== SEEKHOAI.FUN — STYLES ===== */
:root {
  --primary: #6C3EF4;
  --secondary: #F97316;
  --accent: #22D3EE;
  --bg: #0A0A0F;
  --bg2: #12121A;
  --card: #1A1A26;
  --text: #F1F1F1;
  --muted: #888;
  --radius: 16px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 100;
}
.logo { font-size: 1.4rem; font-weight: 800; }
.nav-cta {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(108,62,244,0.2) 0%, transparent 70%);
}
.badge {
  display: inline-block;
  background: rgba(108,62,244,0.15);
  border: 1px solid rgba(108,62,244,0.4);
  color: #A78BFA;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.gradient {
  background: linear-gradient(135deg, #6C3EF4, #F97316, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}
.subtitle strong { color: var(--text); }

/* WAITLIST */
.waitlist-box {
  background: var(--card);
  border: 1px solid rgba(108,62,244,0.3);
  border-radius: var(--radius);
  padding: 32px 40px;
  max-width: 520px;
  margin: 0 auto;
}
.waitlist-label { font-size: 0.95rem; margin-bottom: 16px; color: var(--muted); }
.waitlist-label strong { color: var(--secondary); }
.waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.waitlist-form input {
  flex: 1;
  min-width: 200px;
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-form input:focus { border-color: var(--primary); }
.waitlist-form button {
  background: linear-gradient(135deg, #6C3EF4, #F97316);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.waitlist-form button:hover { transform: scale(1.03); opacity: 0.92; }
.waitlist-note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; }

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg2);
}
.how-it-works h2, .skills h2, .social-proof h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 48px;
}
.steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(108,62,244,0.4); }
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #6C3EF4, #F97316);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* SKILLS */
.skills {
  padding: 80px 20px;
  text-align: center;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.skill-tags span {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.skill-tags span:hover {
  border-color: var(--primary);
  background: rgba(108,62,244,0.12);
}

/* SOCIAL PROOF */
.social-proof {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg2);
}
.testimonials {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: left;
}
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; font-style: italic; }
.card strong { color: var(--primary); font-size: 0.9rem; }

/* FINAL CTA */
.final-cta {
  padding: 100px 20px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(108,62,244,0.25) 0%, transparent 70%);
}
.final-cta h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 16px; }
.final-cta p { color: var(--muted); font-size: 1.1rem; margin-bottom: 32px; }
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #6C3EF4, #F97316);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s, opacity 0.2s;
}
.cta-btn:hover { transform: scale(1.04); opacity: 0.92; }

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer a { color: var(--primary); text-decoration: none; }

/* SUCCESS STATE */
.success-msg {
  color: #4ADE80;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 0;
  display: none;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .hero { padding: 70px 16px 60px; }
  .waitlist-box { padding: 24px 20px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form button { width: 100%; }
}
