/* AmpCard — Dark Industrial Mission Control */
:root {
  --bg: #0d0d0d;
  --bg-card: #141414;
  --bg-card-2: #1a1a1a;
  --border: #242424;
  --border-2: #2e2e2e;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --blue: #0ea5e9;
  --blue-dim: rgba(14, 165, 233, 0.12);
  --green: #10b981;
  --green-dim: rgba(16, 185, 129, 0.12);
  --red: #ef4444;
  --red-dim: rgba(239, 68, 68, 0.12);
  --text: #f5f5f5;
  --text-muted: #888;
  --text-dim: #555;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.logo-mark { color: var(--amber); font-size: 1.3rem; line-height: 1; }
.nav-status { display: flex; align-items: center; gap: 8px; }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.status-label {
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 24px 60px;
  max-width: 1200px; margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.eyebrow-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  flex-shrink: 0;
}
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.72rem; color: var(--text-muted);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 440px; line-height: 1.65;
  margin-bottom: 36px;
}
.hero-proof {
  display: flex; align-items: center; gap: 24px;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-number {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.proof-label {
  font-size: 0.7rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.05em;
  max-width: 80px; line-height: 1.3;
}
.proof-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* CARD STACK */
.hero-card-stack {
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.license-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 18px 20px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.license-card:hover {
  transform: translateX(-4px);
  box-shadow: -4px 0 20px rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}
.license-card--ca { border-left: 3px solid #f59e0b; }
.license-card--wa { border-left: 3px solid #0ea5e9; }
.license-card--or { border-left: 3px solid #10b981; }

.card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.card-state-seal {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0;
}
.license-card--ca .card-state-seal { background: var(--amber-dim); color: var(--amber); }
.license-card--wa .card-state-seal { background: var(--blue-dim); color: var(--blue); }
.license-card--or .card-state-seal { background: var(--green-dim); color: var(--green); }

.card-meta { flex: 1; }
.card-state-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
}
.card-type {
  display: block;
  font-size: 0.72rem; color: var(--text-muted);
  margin-top: 1px;
}
.card-status {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 500;
  padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.card-status--active { background: var(--green-dim); color: var(--green); }

.card-body { display: flex; flex-direction: column; gap: 8px; }
.card-field { display: flex; flex-direction: column; gap: 2px; }
.field-label {
  font-family: var(--font-mono);
  font-size: 0.6rem; color: var(--text-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.field-value {
  font-size: 0.85rem; color: var(--text);
}
.mono { font-family: var(--font-mono); }

.progress-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 3px;
}
.progress-bar {
  flex: 1; height: 5px; border-radius: 3px;
  background: var(--border);
  overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 3px;
  background: var(--amber);
  transition: width 0.3s ease;
}
.progress-text {
  font-size: 0.72rem; color: var(--text-muted);
  white-space: nowrap;
}

.card-alert {
  margin-top: 10px; padding: 6px 10px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.03em;
}
.card-alert--amber { background: var(--amber-dim); color: var(--amber); }
.card-alert--green { background: var(--green-dim); color: var(--green); }
.card-alert--red { background: var(--red-dim); color: var(--red); }

/* STATS */
.stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.stat-block:first-child { padding-left: 0; }
.stat-block:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.4;
}

/* FEATURES */
.features {
  padding: 80px 24px;
  max-width: 1200px; margin: 0 auto;
}
.features-header { max-width: 560px; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--amber);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted); font-size: 1rem; line-height: 1.6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 32px;
  transition: background 0.2s ease;
}
.feature-card:hover { background: var(--bg-card-2); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.6;
}

/* STATES TABLE */
.states {
  padding: 60px 24px 80px;
  max-width: 1200px; margin: 0 auto;
}
.states-header { margin-bottom: 40px; }
.states-grid {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.state-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 2.5fr;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  gap: 16px;
}
.state-row:last-child { border-bottom: none; }
.state-row--head {
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--text-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.state-col--state {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.state-badge {
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 800;
  flex-shrink: 0;
}
.state-badge--ca { background: var(--amber-dim); color: var(--amber); }
.state-badge--wa { background: var(--blue-dim); color: var(--blue); }
.state-badge--or { background: var(--green-dim); color: var(--green); }
.state-badge--nv { background: rgba(139,92,246,0.12); color: #a78bfa; }
.state-col--hours { font-family: var(--font-mono); }
.state-col--exam { font-family: var(--font-mono); color: var(--red); }
.state-col--notes { color: var(--text-muted); font-size: 0.8rem; }
.states-disclaimer {
  margin-top: 16px;
  font-size: 0.75rem; color: var(--text-dim);
  font-style: italic;
}

/* CLOSING */
.closing {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}
.closing-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 60px;
}
.closing-visual { flex-shrink: 0; }
.closing-badge {
  width: 120px; height: 120px;
  border: 2px solid var(--amber);
  border-radius: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  position: relative;
  background: var(--amber-dim);
}
.badge-icon {
  font-size: 2rem; color: var(--amber);
}
.badge-lines { display: flex; flex-direction: column; gap: 4px; }
.badge-line {
  height: 2px; border-radius: 2px; background: var(--amber); opacity: 0.5;
}
.badge-line--1 { width: 50px; }
.badge-line--2 { width: 36px; }
.badge-line--3 { width: 24px; }
.closing-content { flex: 1; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.closing-sub {
  color: var(--text-muted); font-size: 1rem; line-height: 1.65;
  max-width: 540px; margin-bottom: 24px;
}
.closing-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem; color: var(--amber);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  color: var(--text-muted);
}
.footer-tagline {
  font-size: 0.75rem; color: var(--text-dim);
  margin-top: 3px;
}
.footer-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.75rem; color: var(--text-dim);
}
.footer-link { transition: color 0.2s; }
.footer-link:hover { color: var(--text-muted); }
.footer-divider { color: var(--border-2); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 48px 20px 40px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card-stack { display: none; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-block { border-right: none; padding: 0; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .state-row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.8rem;
  }
  .state-col--exam, .state-col--notes { display: none; }
  .closing-inner { flex-direction: column; gap: 32px; }
  .closing-badge { width: 80px; height: 80px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .section-headline { font-size: 1.8rem; }
  .hero-headline { font-size: 2.4rem; }
}