/* === LEAD MAGNET PAGE — Dark Premium Gold Accent === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080C14;
  --surface: #0D1421;
  --surface-2: #111C2E;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --gold: #E8C27A;
  --gold-dim: rgba(232, 194, 122, 0.6);
  --gold-glow: rgba(232, 194, 122, 0.12);
  --cyan: #00D4FF;
  --text: #F0EDE8;
  --muted: #6B7280;
  --white: #FFFFFF;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 20, 0.85);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: auto; }

.nav-cta-link {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(232, 194, 122, 0.3);
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  background: var(--gold-glow);
}

.nav-cta-link:hover {
  background: rgba(232, 194, 122, 0.2);
  border-color: rgba(232, 194, 122, 0.6);
}

/* === HERO === */
.lm-hero {
  min-height: 100vh;
  padding: 100px 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

.lm-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(232, 194, 122, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lm-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.lm-hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 194, 122, 0.08), transparent 70%);
  top: -80px;
  right: 200px;
}

.lm-hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05), transparent 70%);
  bottom: 100px;
  left: 100px;
}

.lm-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.lm-hero-content {
  position: relative;
  z-index: 2;
}

.lm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(232, 194, 122, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--gold-glow);
  margin-bottom: 28px;
}

.lm-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.lm-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 3.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.lm-headline-accent {
  color: var(--gold);
}

.lm-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* FORM */
.lm-form { max-width: 480px; }

.lm-form-inner {
  display: flex;
  gap: 0;
  border: 1px solid rgba(232, 194, 122, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
  background: var(--surface);
}

.lm-form-inner:focus-within {
  border-color: rgba(232, 194, 122, 0.6);
  box-shadow: 0 0 0 3px rgba(232, 194, 122, 0.1);
}

.lm-input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}

.lm-input::placeholder { color: var(--muted); }

.lm-btn {
  padding: 16px 24px;
  background: var(--gold);
  color: #080C14;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.lm-btn:hover:not(:disabled) {
  background: #f0d090;
  box-shadow: 0 0 20px rgba(232, 194, 122, 0.3);
}

.lm-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lm-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

.lm-success {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #4ade80;
  font-size: 14px;
  font-weight: 500;
}

.lm-error {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #f87171;
  font-size: 14px;
}

.lm-community-upsell {
  display: none;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--gold-glow);
  border: 1px solid rgba(232, 194, 122, 0.2);
  border-radius: 10px;
  font-size: 14px;
  color: rgba(240, 237, 232, 0.75);
  text-align: center;
  line-height: 1.6;
}

.lm-community-upsell a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.lm-community-upsell a:hover {
  text-decoration: underline;
}

/* PROOF ROW */
.lm-proof-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.lm-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lm-proof-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}

.lm-proof-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lm-proof-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* PROMPT PREVIEW */
.lm-preview {
  position: relative;
  z-index: 2;
}

.lm-preview-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.lm-preview-card {
  background: var(--surface);
  border: 1px solid rgba(232, 194, 122, 0.2);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 40px rgba(232, 194, 122, 0.08);
}

.lm-preview-item { padding: 0; }

.lm-preview-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lm-preview-prompt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  background: var(--surface-2);
  border-left: 2px solid rgba(232, 194, 122, 0.4);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 0;
}

.lm-preview-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.lm-preview-footer {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gold-dim);
  text-align: center;
  font-weight: 600;
}

/* === CATEGORIES === */
.lm-categories {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.lm-categories-inner { max-width: 1280px; margin: 0 auto; }

.lm-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.lm-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lm-cat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.lm-cat-card:hover {
  border-color: rgba(232, 194, 122, 0.3);
  box-shadow: 0 0 20px rgba(232, 194, 122, 0.05);
}

.lm-cat-icon { font-size: 28px; margin-bottom: 12px; }

.lm-cat-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.lm-cat-count {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.lm-cat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* === HOW IT WORKS === */
.lm-how { padding: 80px 64px; }

.lm-how-inner { max-width: 1280px; margin: 0 auto; }

.lm-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.lm-step {
  flex: 1;
  display: flex;
  gap: 16px;
  padding: 0 24px;
}

.lm-step:first-child { padding-left: 0; }
.lm-step:last-child { padding-right: 0; }

.lm-step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: rgba(232, 194, 122, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.lm-step-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.lm-step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.lm-step-arrow {
  font-size: 24px;
  color: rgba(232, 194, 122, 0.3);
  padding-top: 8px;
  flex-shrink: 0;
}

/* === TESTIMONIALS === */
.lm-testimonials {
  padding: 80px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.lm-testimonials-inner { max-width: 1280px; margin: 0 auto; }

.lm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lm-testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.lm-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.lm-testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.lm-testimonial-author {
  font-size: 12px;
  color: var(--muted);
}

/* === BOTTOM CTA === */
.lm-cta-bottom {
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lm-cta-bottom-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 194, 122, 0.06), transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.lm-cta-bottom-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.lm-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.lm-cta-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.lm-form-bottom {
  max-width: 520px;
  margin: 0 auto;
}

/* === FOOTER === */
.lm-footer {
  padding: 40px 64px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.lm-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lm-footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.lm-footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

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

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

.lm-footer-links a:hover { color: var(--text); }

.lm-footer-copy {
  font-size: 12px;
  color: rgba(107, 114, 128, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .lm-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .lm-testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lm-hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    min-height: auto;
    gap: 48px;
  }

  .lm-headline { font-size: 36px; }

  .lm-form-inner { flex-direction: column; }
  .lm-btn { padding: 16px; border-radius: 0 0 10px 10px; }

  .lm-steps { flex-direction: column; gap: 24px; }
  .lm-step { padding: 0; }
  .lm-step-arrow { display: none; }

  .lm-preview { display: none; }
  .lm-cat-grid { grid-template-columns: 1fr; }
  .lm-categories, .lm-how, .lm-testimonials, .lm-cta-bottom { padding: 60px 24px; }
  .lm-footer { padding: 32px 24px; }
  .nav-links { display: none; }
}