/* ================================================================
   LeadForgeAI — Marketplace Landing Page
   Design: off-white (#FAFAF7), charcoal (#1C1C1C), emerald (#10B981)
   Fonts: Syne (display) + Satoshi (body)
   ================================================================ */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #FAFAF7;
  --bg-card:     #FFFFFF;
  --bg-deep:     #0F1117;
  --bg-section:  #F3F3EF;
  --fg:          #1C1C1C;
  --fg-2:        #3D3D3D;
  --fg-3:        #6B7280;
  --fg-4:        #9CA3AF;
  --accent:      #10B981;
  --accent-h:    #059669;
  --accent-soft: rgba(16, 185, 129, 0.10);
  --accent-glow: rgba(16, 185, 129, 0.20);
  --border:      #E5E5E0;
  --border-str:  #D1D1CB;
  --hot:         #EF4444;
  --hot-soft:    rgba(239, 68, 68, 0.10);
  --warm:        #F59E0B;
  --warm-soft:   rgba(245, 158, 11, 0.10);
  --cold:        #3B82F6;
  --cold-soft:   rgba(59, 130, 246, 0.10);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'Satoshi', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 0;
}

.section-sub {
  color: var(--fg-3);
  font-size: 17px;
  margin-top: 12px;
}

/* ── Scroll Reveal ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ── Buttons ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--fg-2);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--border-str);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--fg-3); color: var(--fg); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--accent-glow);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(16,185,129,0.18); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  color: var(--fg-2);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border-str);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--fg-3); color: var(--fg); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.logo-mark { font-size: 20px; color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-h) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: 0.2s; }

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.nav-drawer.open { max-height: 320px; }
.nav-drawer a {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-drawer-cta {
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  border-bottom: none !important;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 500;
}
.trust-divider { color: var(--border-str); }
.trust-item { white-space: nowrap; }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Lead Ticker Panel ────────────────────────────────── */
.ticker-panel {
  background: var(--bg-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.ticker-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.ticker-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.ticker-track {
  padding: 8px 0;
  max-height: 360px;
  overflow-y: auto;
}
.ticker-track::-webkit-scrollbar { width: 4px; }
.ticker-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.ticker-placeholder {
  padding: 32px 20px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

.tick-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin: 2px 8px;
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  flex-wrap: wrap;
  border-left: 3px solid transparent;
  transition: background 0.15s;
}
.tick-card:hover { background: rgba(255,255,255,0.04); }

.tick-card.tick-hot { border-left-color: var(--hot); background: rgba(239,68,68,0.06); }
.tick-card.tick-warm { border-left-color: var(--warm); background: rgba(245,158,11,0.06); }
.tick-card.tick-cold { border-left-color: var(--cold); background: rgba(59,130,246,0.06); }

.tick-emoji { font-size: 14px; flex-shrink: 0; }
.tick-product { font-weight: 700; white-space: nowrap; }
.tick-meta { color: rgba(255,255,255,0.45); white-space: nowrap; }
.tick-score { color: rgba(255,255,255,0.7); white-space: nowrap; }
.tick-score strong { color: #fff; }

.tick-status {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.tick-status.available { background: rgba(16,185,129,0.15); color: var(--accent); }
.tick-status.sold { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.35); }

/* ── Trust Strip ──────────────────────────────────────── */
.trust-strip {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
}
.badge-icon { font-size: 16px; }

/* ── How It Works ─────────────────────────────────────── */
.how-section { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-card p { font-size: 14px; color: var(--fg-3); line-height: 1.65; }

@media (max-width: 720px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── Products ─────────────────────────────────────────── */
.products-section { background: var(--bg-section); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.product-card:hover:not(.product-card--soon) {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.product-card--soon { opacity: 0.6; }

.product-icon-wrap {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon { font-size: 22px; }

.product-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
}

.product-desc { font-size: 13px; color: var(--fg-3); line-height: 1.6; flex: 1; }

.product-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-volume { color: var(--fg-3); }
.product-price { color: var(--accent); }

.product-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  gap: 4px;
}
.product-cta::after { content: ' →'; }
.product-cta:hover { text-decoration: underline; }

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-section);
  color: var(--fg-4);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 960px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .products-grid { grid-template-columns: 1fr; } }

/* ── Tiers ────────────────────────────────────────────── */
.tiers-section { background: var(--bg-deep); }

.tiers-section .section-header h2,
.tiers-section .section-tag { color: rgba(255,255,255,0.9); }
.tiers-section .section-tag { background: rgba(16,185,129,0.15); color: var(--accent); }

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

.tier-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier-hot { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); }
.tier-warm { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); }
.tier-cold { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2); }

.tier-flame { font-size: 36px; }

.tier-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  line-height: 1;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.tier-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding-left: 16px;
  position: relative;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 720px) { .tiers-grid { grid-template-columns: 1fr; } }

/* ── Why ──────────────────────────────────────────────── */
.why-section { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: var(--shadow); }

.why-icon { font-size: 32px; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.why-card p { font-size: 15px; color: var(--fg-3); line-height: 1.65; }

@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials-section { background: var(--bg-section); }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }

.testimonial-stars { color: var(--warm); font-size: 15px; letter-spacing: 2px; }

blockquote {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; color: var(--fg); }
.author-role { font-size: 12px; color: var(--fg-4); }

.testimonial-disclaimer {
  font-size: 10px;
  color: var(--fg-4);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── Pricing ──────────────────────────────────────────── */
.pricing-section { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); }

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.pricing-amount span { font-size: 16px; font-weight: 500; color: var(--fg-3); }

.pricing-leads { font-size: 13px; color: var(--fg-4); font-weight: 500; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-4);
}

@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ── Sign-Up ──────────────────────────────────────────── */
.signup-section {
  background: linear-gradient(160deg, #0f1117 0%, #162523 100%);
  padding: 100px 0;
}

.signup-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: start;
}

.signup-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  line-height: 1.15;
  margin-bottom: 20px;
}

.signup-copy p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
}

.signup-proof {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.signup-proof span {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.signup-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-row input,
.form-row select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.9);
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-row input::placeholder { color: rgba(255,255,255,0.25); }
.form-row select option { background: #1a1a1a; color: #fff; }
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  text-align: center;
}

.form-success {
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
}

.form-error {
  padding: 12px 16px;
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  font-size: 14px;
  color: #f87171;
}

@media (max-width: 900px) {
  .signup-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; color: rgba(255,255,255,0.85); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 280px; }

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { flex-direction: column; gap: 28px; }
}
