:root {
  --bg-dark: #070a10;
  --bg-surface: #0e1320;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(168, 85, 247, 0.4);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --primary-purple: #a855f7;
  --primary-indigo: #6366f1;
  --emerald: #10b981;
  --amber: #f59e0b;
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background Glows */
.bg-glow-top {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, rgba(99, 102, 241, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Navbar */
.navbar-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(7, 10, 16, 0.8);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  font-size: 26px;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon-pill {
  background: rgba(168, 85, 247, 0.15);
  color: #d8b4fe;
  border: 1px solid rgba(168, 85, 247, 0.3);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.btn-nav {
  background: var(--primary-gradient);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 90px 0 60px;
  text-align: center;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 13px;
  color: #d8b4fe;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 840px;
}

.gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 36px;
}

/* Waitlist Form Card */
.waitlist-card {
  background: var(--bg-surface);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 20px;
  padding: 32px 36px;
  max-width: 580px;
  width: 100%;
  margin-bottom: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.waitlist-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.waitlist-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.waitlist-header strong {
  color: var(--amber);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Google Auth & Waitlist Styling */
.google-auth-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 11px;
  margin: 16px 0;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.or-divider span {
  padding: 0 10px;
}

.auth-card {
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}

.auth-user-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-purple);
}

.auth-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.auth-details strong {
  font-size: 14px;
  color: #fff;
}

.auth-details span {
  font-size: 12px;
  color: var(--text-muted);
}

.vip-badge {
  background: var(--gold-gradient);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.auth-note {
  font-size: 12px;
  color: #d8b4fe;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 12px;
  border-radius: 8px;
}

.user-greeting {
  font-size: 13px;
  color: var(--text-muted);
  margin-right: 10px;
}

.btn-signout {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-signout:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.input-wrapper {
  display: flex;
  gap: 10px;
}

.input-wrapper input {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.input-wrapper input:focus {
  border-color: var(--primary-purple);
}

.btn-submit {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.btn-submit:hover {
  opacity: 0.95;
}

.form-feedback {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 13px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.waitlist-meta {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Experience Preview Card */
.preview-container {
  width: 100%;
  max-width: 760px;
}

.preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.preview-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.preview-title {
  font-size: 12px;
  color: var(--text-muted);
}

.preview-status {
  font-size: 11px;
  color: var(--emerald);
  font-weight: 600;
}

.preview-body {
  padding: 24px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 12px;
}

.strip-icon {
  font-size: 24px;
}

.strip-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.strip-text strong {
  font-size: 13px;
  color: #fff;
}

.strip-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* Sections General */
section {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-purple);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title-wrap h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 20px;
  transition: transform 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.popular {
  background: radial-gradient(100% 100% at 0% 0%, rgba(168, 85, 247, 0.15) 0%, rgba(99, 102, 241, 0.04) 100%);
  border-color: rgba(168, 85, 247, 0.35);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
}

.card-tier {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.price-val span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.card-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #e5e7eb;
}

/* FAQ */
.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}

.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.footer-container {
  border-top: 1px solid var(--border-color);
  padding: 50px 0 25px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: 11px;
  color: #6b7280;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
}

.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 640px) {
  .hero-headline {
    font-size: 32px;
  }
  .input-wrapper {
    flex-direction: column;
  }
  .btn-submit {
    width: 100%;
  }
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
