:root {
  --bg-primary: #0b0f1a;
  --bg-card: #111827;
  --bg-card-hover: #1a2236;
  --border: rgba(255,255,255,0.06);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #7c8db0;
  --badge-text: #a78bfa;
  --accent: #8b5cf6;
  --accent-gradient: linear-gradient(135deg, #8b5cf6, #a78bfa);
  --success: #22c55e;
  --error: #ef4444;
}
[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --border: #e2e8f0;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #475569;
  --badge-text: #7c3aed;
  --accent: #7c3aed;
  --accent-gradient: linear-gradient(135deg, #7c3aed, #8b5cf6);
  --success: #16a34a;
}
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd, fieldset, legend, textarea, pre, iframe, hr, table { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--text-primary); background: var(--bg-primary);
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; padding: 16px 0; transition: background 0.2s, border-color 0.2s; }
.nav.scrolled { background: rgba(11,15,26,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
[data-theme="light"] .nav.scrolled { background: rgba(248,250,252,0.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.35rem; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { color: var(--text-secondary); padding: 8px 14px; border-radius: 8px; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text-primary); background: var(--bg-card-hover); text-decoration: none; }
.nav-links a.nav-link-active { color: var(--text-primary); background: var(--bg-card-hover); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-ghost { color: var(--text-secondary); padding: 10px 18px; border-radius: 8px; font-weight: 500; background: transparent; border: 1px solid var(--border); display: inline-flex; align-items: center; }
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-card-hover); text-decoration: none; }
.btn-accent { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px; font-weight: 600; background: var(--accent-gradient); color: #fff; border: none; cursor: pointer; }
.btn-accent:hover { opacity: 0.95; text-decoration: none; color: #fff; }
.theme-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.theme-btn:hover { color: var(--text-primary); background: var(--bg-card-hover); }
.theme-btn .icon-sun { display: none; }
.theme-btn .icon-moon { display: block; }
[data-theme="light"] .theme-btn .icon-sun { display: block; }
[data-theme="light"] .theme-btn .icon-moon { display: none; }
.nav-hamburger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; background: none; border: none; color: var(--text-primary); cursor: pointer; }

/* HERO */
.hero { padding: 100px 0 80px; text-align: center; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 999px; font-size: 0.875rem; font-weight: 500; background: rgba(139,92,246,0.15); color: var(--badge-text); margin-bottom: 24px; }
.hero h1 { font-size: 3.25rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; max-width: 820px; margin-left: auto; margin-right: auto; }
.hero-sub { font-size: 1.25rem; color: var(--text-secondary); max-width: 660px; margin: 0 auto 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-btns .btn-accent { padding: 14px 28px; font-size: 1.05rem; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-label { color: var(--text-secondary); font-size: 0.85rem; margin-top: 4px; }
[data-theme="dark"] .hero-stat-label { color: #ffffff; opacity: 0.9; }

/* SECTION COMMON */
.section { padding: 96px 0; }
.section-dark { background: #0b0f1a; color: #cbd5e1; }
[data-theme="light"] .section-dark { background: #0f172a; }
.section-dark h2, .section-dark h3 { color: #f1f5f9; }
.section-dark p, .section-dark li { color: #cbd5e1 !important; }
/* Light sections: keep readable body copy on light bg */
.section:not(.section-dark) .section-header p { color: var(--text-secondary); }
.section-dark .btn-ghost { color: #e2e8f0; border-color: #e2e8f0; }
.section-dark .btn-ghost:hover { color: #f1f5f9; border-color: #f1f5f9; background: rgba(255,255,255,0.1); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; padding: 6px 12px; border-radius: 6px; display: inline-block; color: #7c3aed; background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2); }
[data-theme="dark"] .section-badge, .section-dark .section-badge { color: #c4b5fd; background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.3); }
.section-header h2 { font-size: 2.25rem; margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.section p { color: #475569; }
[data-theme="dark"] .section p { color: #cbd5e1; }

/* PROBLEM */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 900px; margin: 0 auto; }
.problem-col h3 { font-size: 1.15rem; margin-bottom: 20px; color: var(--text-secondary); }
.problem-list { list-style: none; }
.problem-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.problem-list li:last-child { border-bottom: none; }
.problem-list .icon-wrap { flex-shrink: 0; width: 24px; height: 24px; margin-top: 2px; }
.problem-list .icon-wrap svg { width: 24px; height: 24px; }
.problem-list.bad .icon-wrap svg { color: var(--error); }
.problem-list.good .icon-wrap svg { color: var(--success); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: border-color 0.2s, box-shadow 0.2s; }
.feature-card:hover { border-color: rgba(139,92,246,0.3); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.feature-card p { color: #475569; font-size: 0.95rem; line-height: 1.7; margin-bottom: 0; }
[data-theme="dark"] .feature-card p { color: #cbd5e1; }
.feature-card .icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: rgba(139,92,246,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card .icon-wrap svg { width: 24px; height: 24px; color: var(--accent); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }

/* HOW IT WORKS */
.steps { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; position: relative; }
.step { flex: 1; text-align: center; position: relative; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-gradient); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.section-dark .step p { color: #cbd5e1; }
.section:not(.section-dark) .step h3 { color: var(--text-primary); }
.step-connector { position: absolute; top: 24px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: -1; }
.step:last-child .step-connector { display: none; }

/* MATH (light section — use theme tokens) */
.math-section { text-align: center; padding: 80px 0; }
.math-row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.math-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 4rem; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.math-op { font-size: 2rem; color: var(--text-muted); }
.math-label { font-size: 0.9rem; color: var(--text-secondary); margin-top: 4px; }
.math-copy { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.65; }
.math-copy-highlight {
  margin-top: 16px;
  font-weight: 600;
  color: var(--badge-text);
}

/* PREVIEW CTA */
.preview-section { text-align: center; }
.preview-form { max-width: 520px; margin: 32px auto 0; }
.preview-input-row { display: flex; gap: 12px; margin-bottom: 12px; }
.preview-input-row input { flex: 1; padding: 14px 16px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); font-size: 1rem; font-family: inherit; }
.preview-input-row input::placeholder { color: var(--text-muted); }
.preview-input-row input:focus { outline: none; border-color: var(--accent); }
.preview-submit { width: 100%; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 1.05rem; background: var(--accent-gradient); color: #fff; border: none; cursor: pointer; font-family: inherit; }
.preview-submit:hover { opacity: 0.95; }
.preview-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 12px; }
.section-dark .preview-note { color: #94a3b8; }

/* SOCIAL PROOF */
.proof-strip { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 16px 0; }
.proof-item { text-align: center; }
.proof-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.proof-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 2px; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.section-dark .review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.section-dark .review-card .review-text {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 16px;
}
.section-dark .review-card .review-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.section-dark .review-card .review-company {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Light theme testimonial cards (#proof only — other section-dark blocks keep dark slate) */
[data-theme="light"] #proof.section-dark {
  background: #f8f9fa;
}
[data-theme="light"] #proof.section-dark .section-header h2 {
  color: #0f172a !important;
}
[data-theme="light"] #proof.section-dark .section-badge {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}
[data-theme="light"] .review-card,
[data-theme="light"] .testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}
[data-theme="light"] .review-card p,
[data-theme="light"] .review-card .review-text,
[data-theme="light"] .testimonial-card p,
[data-theme="light"] .testimonial-card .testimonial-text,
[data-theme="light"] .review-card blockquote,
[data-theme="light"] .testimonial-card blockquote {
  color: #374151 !important;
}
[data-theme="light"] .review-card .review-author,
[data-theme="light"] .testimonial-card .testimonial-author,
[data-theme="light"] .review-card strong {
  color: #111827 !important;
}
[data-theme="light"] .review-card .review-company,
[data-theme="light"] .testimonial-card .testimonial-company {
  color: #6b7280 !important;
}

/* FINAL CTA */
.final-cta { text-align: center; padding: 96px 0; }
.final-cta h2 { font-size: 2.5rem; margin-bottom: 16px; }
.final-cta p { color: #cbd5e1 !important; font-size: 1.15rem; margin-bottom: 32px; }
.final-cta .btn-ghost { color: #e2e8f0 !important; border-color: #e2e8f0 !important; }
.final-cta .hero-btns { margin-bottom: 0; }

/* FOOTER */
.footer { background: #0b0f1a; padding: 64px 0 24px; border-top: 1px solid var(--border); }
[data-theme="light"] .footer { background: #0f172a; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-grid.footer-grid--4cols { grid-template-columns: 2fr 1fr 1fr 1fr; }
.footer-grid.footer-grid--5cols { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
.footer-brand .nav-logo { font-size: 1.25rem; margin-bottom: 12px; display: inline-block; }
.footer-brand p { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; }
.footer-col h3 { font-size: 0.9rem; font-weight: 600; color: #e2e8f0; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #94a3b8; }
.footer-col a:hover { color: #e2e8f0; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); color: #94a3b8; font-size: 0.9rem; }

.theme-float { position: fixed; bottom: 24px; right: 24px; z-index: 99; }
.theme-float .theme-btn { width: 48px; height: 48px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { flex-direction: column; gap: 32px; }
      .step-connector { display: none; }
      .problem-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid.footer-grid--4cols { grid-template-columns: 1fr 1fr; }
      .footer-grid.footer-grid--5cols { grid-template-columns: 1fr 1fr; }
    }
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 1.1rem; }
  .section { padding: 64px 0; }
  .section-header h2 { font-size: 1.75rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .preview-input-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-stats { gap: 32px; }
  .math-num { font-size: 2.5rem; }
  .final-cta h2 { font-size: 1.75rem; }
}

/* Generator hero + proxy autocomplete (shared with CTA sections) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: 14px;
}
.btn-primary:hover {
  opacity: 0.95;
}
.btn-lg {
  padding: 18px 32px;
  font-size: 17px;
}

.hero-generator {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 88px;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(139, 92, 246, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse 80% 50% at 0% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 40%),
    linear-gradient(165deg, #070b14 0%, #0f172a 38%, #111827 72%, var(--bg-primary) 100%);
}
.hero-generator::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}
/* Light theme hero — soft purple gradient (dark theme unchanged above) */
[data-theme="light"] .hero.hero-generator {
  background: linear-gradient(180deg, #f3f0ff 0%, #ede9fe 30%, #ffffff 100%);
}
[data-theme="light"] .hero-generator::before {
  opacity: 0.08;
}
.hero-generator .hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.hero-generator h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 16px;
  color: #f1f5f9;
}
[data-theme="light"] .hero.hero-generator h1 {
  color: #1a1a2e;
}
.hero-generator h1 em {
  font-style: normal;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-generator .hero-sub {
  color: #e2e8f0;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 32px;
}
[data-theme="light"] .hero.hero-generator .hero-sub {
  color: #4a4a68;
}

/* Shared layout for hero + CTA preview forms */
.hero-generator-form {
  position: relative;
  max-width: 560px;
  margin: 0 auto 32px;
}
/* Hero-only: card shell so the primary generator reads as the focal point */
.hero.hero-generator .hero-generator-form {
  margin-bottom: 36px;
  padding: 20px 20px 22px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(139, 92, 246, 0.12);
  backdrop-filter: blur(12px);
}
[data-theme="light"] .hero.hero-generator .hero-generator-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  backdrop-filter: none;
  box-shadow: none;
}
.hero-input-wrap {
  position: relative;
  margin-bottom: 16px;
}
.hero-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  color: #e2e8f0;
}
.hero.hero-generator .hero-input-icon {
  opacity: 0.65;
  color: #c4b5fd;
  filter: none;
}
.hero-places-input {
  width: 100%;
  padding: 18px 20px 18px 48px;
  font-size: 17px;
  font-family: inherit;
  border-radius: 14px;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
}
/* Bottom / inner-page CTA (preview-form): readable on section-dark, lighter than hero */
.preview-form .hero-places-input {
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}
[data-theme="light"] .preview-form .hero-places-input {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}
.preview-form .hero-places-input:focus {
  border-color: var(--accent, #7c5bf0);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
/* Hero: high-contrast field — flat, no drop shadow (card provides depth) */
.hero.hero-generator .hero-places-input {
  border: 1px solid rgba(167, 139, 250, 0.5);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: none;
  backdrop-filter: none;
}
[data-theme="light"] .hero.hero-generator .hero-places-input {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #1a1a2e;
}
.hero-places-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.hero.hero-generator .hero-places-input::placeholder {
  color: rgba(226, 232, 240, 0.55);
}
[data-theme="light"] .hero.hero-generator .hero-places-input::placeholder {
  color: #999;
}
.hero.hero-generator .hero-places-input:focus {
  border-color: #a78bfa;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.45);
}
[data-theme="light"] .hero.hero-generator .hero-places-input:focus {
  border-color: #7c3aed;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}

.hero-places-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
}
.hero-places-dropdown.active {
  display: block;
}
.hero-place-item {
  padding: 14px 18px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a2e;
  font-size: 15px;
  transition: background 0.1s;
  text-align: left;
}
.hero-place-item:last-child {
  border-bottom: none;
}
.hero-place-item:hover,
.hero-place-item:focus {
  background: #f5f0ff;
}
.hero-place-item strong {
  display: block;
  font-weight: 600;
  color: #1a1a2e;
}
.hero-place-item span {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

.hero-email-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}

/* Dark theme (default) */
.hero.hero-generator .hero-email-input {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #f1f5f9;
}
.hero.hero-generator .hero-email-input::placeholder {
  color: rgba(148, 163, 184, 0.6);
}
.hero.hero-generator .hero-email-input:focus {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.15);
}

/* Light theme */
[data-theme="light"] .hero.hero-generator .hero-email-input {
  background: #f9f8fc;
  border: 1px solid #d1d5db;
  color: #1a1a2e;
}
[data-theme="light"] .hero.hero-generator .hero-email-input::placeholder {
  color: #999;
}
[data-theme="light"] .hero.hero-generator .hero-email-input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.15);
}

.hero-build-btn {
  width: 100%;
  padding: 18px 32px;
  font-size: 17px;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s;
}
.hero-build-btn.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-stats-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-generator .hero-stats-bar .hero-stat {
  color: #cbd5e1;
  opacity: 1;
}
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}
.hero-stat svg {
  flex-shrink: 0;
  color: #cbd5e1;
  opacity: 0.95;
}
.hero-generator .hero-proof {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 24px;
  opacity: 1;
}
.hero-proof {
  font-size: 13px;
  color: #94a3b8;
}

[data-theme="light"] .hero.hero-generator .hero-stats-bar .hero-stat,
[data-theme="light"] .hero.hero-generator .hero-stats-bar .hero-stat svg {
  color: #555;
}
[data-theme="light"] .hero.hero-generator .hero-proof {
  color: #666;
}
[data-theme="light"] .hero.hero-generator .hero-build-btn.btn-primary.active {
  background: #7c3aed;
  color: #fff;
}
[data-theme="light"] .hero.hero-generator .hero-input-icon {
  color: #7c3aed;
  filter: none;
}

@media (max-width: 640px) {
  .hero-generator {
    padding: 100px 16px 60px;
    min-height: 70vh;
  }
  .hero-stats-bar {
    flex-direction: column;
    gap: 8px;
  }
  .hero-places-input {
    font-size: 16px;
    padding: 16px 16px 16px 44px;
  }
}
