/* ═══════════════════════════════════════════
   MOTZY — getmotzy.com Landing Page Styles
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060911;
  --surface: #0c1220;
  --card: #111a2e;
  --border: #1a2744;
  --accent: #00E5C3;
  --amber: #FFB347;
  --red: #EF4444;
  --text: #E8ECF4;
  --text-muted: #7B89A8;
  --text-dim: #3D4B66;
  --white: #FFFFFF;
  --health-green: #22C55E;
  --health-amber: #F59E0B;
  --health-red: #EF4444;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(48px, 7vw, 80px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }
p { color: var(--text-muted); font-size: 16px; line-height: 1.7; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent), #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono { font-family: var(--font-mono); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm { font-size: 14px; padding: 8px 16px; }
.btn-md { font-size: 15px; padding: 12px 24px; }
.btn-lg { font-size: 16px; padding: 16px 32px; }
.btn-full { width: 100%; justify-content: center; font-size: 15px; padding: 14px 24px; }

.btn-primary {
  background: var(--accent);
  color: #060911;
}
.btn-primary:hover { background: #00c9aa; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0, 229, 195, 0.3); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--card); border-color: var(--text-dim); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--card); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition);
}

.nav.scrolled {
  background: rgba(6, 9, 17, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.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(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
  background: rgba(6, 9, 17, 0.95);
}

.nav-mobile a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 195, 0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 184, 255, 0.1) 0%, transparent 70%);
  bottom: 0;
  right: -50px;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 39, 68, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 39, 68, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero .container {
  position: relative;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title { margin-bottom: 24px; }

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}

.proof-item { display: flex; flex-direction: column; }
.proof-number { font-size: 36px; font-weight: 800; color: var(--accent); }
.proof-label { font-size: 13px; color: var(--text-muted); }
.proof-divider { width: 1px; height: 48px; background: var(--border); }

.hero-mockup {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero { padding-bottom: 480px; }
  .hero-mockup { position: relative; right: auto; top: auto; transform: none; margin: 40px auto 0; display: flex; justify-content: center; }
  .hero .container { max-width: 100%; }
}

/* ── PHONE MOCKUP ── */
.mockup-phone {
  width: 320px;
  height: 640px;
  background: #0c1220;
  border-radius: 40px;
  border: 2px solid #1a2744;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05), 0 0 60px rgba(0,229,195,0.1);
  position: relative;
}

.mockup-notch {
  width: 120px;
  height: 30px;
  background: #060911;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mockup-screen {
  position: absolute;
  inset: 0;
  padding: 40px 16px 16px;
  overflow: hidden;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
}

.mockup-time { color: var(--text); }
.mockup-status { display: flex; align-items: center; gap: 4px; }

.mockup-content { display: flex; flex-direction: column; gap: 12px; }
.mockup-greeting { font-size: 14px; font-weight: 600; color: var(--text-muted); }

.mockup-portfolio-score {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.score-ring {
  width: 52px;
  height: 52px;
  position: relative;
}

.score-ring svg { width: 52px; height: 52px; }
.score-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}

.score-label { font-size: 11px; font-weight: 600; color: var(--text-muted); }

.mockup-vehicles { display: flex; flex-direction: column; gap: 8px; }

.mockup-vehicle-card {
  background: var(--card);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--border);
}

.mockup-vehicle-card.amber { border-color: rgba(255, 179, 71, 0.2); }

.vehicle-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.vehicle-info { display: flex; flex-direction: column; gap: 2px; }
.vehicle-name { font-size: 11px; font-weight: 600; color: var(--text); }
.vehicle-plate { font-size: 9px; color: var(--text-muted); }
.vehicle-score { font-size: 14px; font-weight: 800; color: var(--health-green); }
.amber-score { color: var(--health-amber); }

.vehicle-expiry {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 9px;
  color: var(--text-muted);
}

.expiry-bar { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.expiry-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.amber-fill { background: var(--amber); }
.amber-expiry { color: var(--amber); }

.mockup-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 195, 0.08);
  border: 1px solid rgba(0, 229, 195, 0.2);
  border-radius: 10px;
  padding: 10px;
}

.alert-icon { font-size: 16px; }
.alert-body { flex: 1; }
.alert-title { font-size: 10px; font-weight: 600; color: var(--text); }
.alert-sub { font-size: 9px; color: var(--text-muted); }
.alert-cta {
  font-size: 10px;
  font-weight: 700;
  color: #060911;
  background: var(--accent);
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  font-family: var(--font-display);
}

/* ── TRUST BAR ── */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── PROBLEM ── */
.problem {
  padding: 120px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-text h2 { margin-bottom: 20px; }
.problem-text h2 em { font-style: italic; color: var(--red); }
.problem-text p { margin-bottom: 40px; }

.problem-stats { display: flex; flex-direction: column; gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-size: 36px; font-weight: 800; color: var(--accent); }
.stat-desc { font-size: 14px; color: var(--text-muted); }

.chaos-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.chaos-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.chaos-item.expired { background: rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.2); }
.chaos-item.warning { background: rgba(255, 179, 71, 0.08); border-color: rgba(255, 179, 71, 0.2); }
.chaos-item.ok { background: rgba(123, 137, 168, 0.08); border-color: rgba(123, 137, 168, 0.1); }

.chaos-icon { font-size: 20px; }

.chaos-item div { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.chaos-item strong { font-size: 13px; font-weight: 600; color: var(--text); }
.chaos-item span { font-size: 12px; color: var(--text-muted); }

.chaos-penalty { font-size: 11px; font-weight: 700; color: var(--red); white-space: nowrap; }
.chaos-item.warning .chaos-penalty { color: var(--amber); }
.chaos-item.ok .chaos-penalty { color: var(--text-dim); }

.chaos-caption {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ── HOW IT WORKS ── */
.how-it-works { padding: 120px 0; background: var(--surface); }

.steps { display: flex; flex-direction: column; gap: 48px; max-width: 800px; margin: 0 auto; }

.step {
  display: grid;
  grid-template-columns: 60px 56px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: -8px;
}

.step-icon { padding-top: 4px; }

.step-content h3 { margin-bottom: 12px; }
.step-content p { margin-bottom: 16px; }

.step-detail { display: flex; gap: 8px; flex-wrap: wrap; }
.detail-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

@media (max-width: 600px) {
  .step { grid-template-columns: 40px 1fr; }
  .step-icon { display: none; }
}

/* ── FEATURES ── */
.features { padding: 120px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card-large {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: span 2; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(0, 229, 195, 0.3);
  transform: translateY(-2px);
}

.feature-icon { margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 10px; font-size: 20px; }
.feature-card p { font-size: 14px; }

.feature-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.metric-value { font-size: 36px; font-weight: 800; color: var(--accent); }
.metric-label { font-size: 12px; color: var(--text-muted); }

.feature-badge {
  display: inline-flex;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(255, 179, 71, 0.1);
  border: 1px solid rgba(255, 179, 71, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── STATES ── */
.states { padding: 120px 0; background: var(--surface); }

.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

@media (max-width: 768px) { .states-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .states-grid { grid-template-columns: repeat(2, 1fr); } }

.state-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  text-align: center;
  transition: all var(--transition);
}

.state-item:hover { border-color: rgba(0, 229, 195, 0.3); }

.state-item.tier-1 { border-color: rgba(0, 229, 195, 0.2); }
.state-item.tier-2 { border-color: var(--border); }
.state-item.more { border-color: var(--border); opacity: 0.6; }

.state-code { font-size: 20px; font-weight: 800; font-family: var(--font-mono); color: var(--text); }
.state-name { font-size: 11px; color: var(--text-muted); }
.state-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.state-item.tier-2 .state-tier { color: var(--text-muted); }
.state-item.more .state-tier { color: var(--text-dim); }

.states-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tier-1-dot { background: var(--accent); }
.tier-2-dot { background: var(--text-dim); }
.more-dot { background: var(--border); }

/* ── PRICING ── */
.pricing { padding: 120px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
}

.pricing-featured {
  border-color: rgba(0, 229, 195, 0.4);
  background: linear-gradient(160deg, rgba(0, 229, 195, 0.05), var(--card));
}

.pricing-fleet {
  border-color: rgba(255, 179, 71, 0.2);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: #060911;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.plan-name { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount { font-size: 36px; font-weight: 800; color: var(--text); }
.price-period { font-size: 14px; color: var(--text-muted); }

.plan-desc { font-size: 14px; margin-bottom: 24px; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-yes::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%2300E5C3' stroke-width='1.5'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2300E5C3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feat-no {
  opacity: 0.4;
}

.feat-no::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%233D4B66' stroke-width='1.5'/%3E%3Cpath d='M10 6L6 10M6 6l4 4' stroke='%233D4B66' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ── SECURITY ── */
.security { padding: 120px 0; background: var(--surface); }

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .security-grid { grid-template-columns: 1fr; } }

.security-item svg { margin-bottom: 16px; }
.security-item h4 { margin-bottom: 8px; }
.security-item p { font-size: 14px; }

/* ── WAITLIST ── */
.waitlist { padding: 120px 0; }

.waitlist-inner {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 80px;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 768px) { .waitlist-inner { padding: 48px 24px; } }

.waitlist-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 195, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.waitlist-inner h2 { margin-bottom: 16px; }
.waitlist-inner p { font-size: 18px; max-width: 560px; margin: 0 auto 32px; }

.waitlist-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.waitlist-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
}

.waitlist-form { position: relative; z-index: 1; }

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.form-input, .form-select {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  min-width: 200px;
}

.form-input::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus { border-color: var(--accent); }

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B89A8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-note {
  font-size: 13px;
  color: var(--text-dim);
}

.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.waitlist-success h3 { font-size: 28px; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-brand p { font-size: 14px; margin-top: 16px; margin-bottom: 24px; }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social a:hover { color: var(--text); border-color: var(--text-dim); }

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p { font-size: 13px; }
.footer-note { font-size: 12px; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }
