:root {
  --bg: #0B1628;
  --bg2: #0F1E35;
  --fg: #E8EDF5;
  --fg2: #8B9BB4;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --red: #EF4444;
  --green: #22C55E;
  --border: rgba(139, 155, 180, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 22, 40, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* Section commons */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.125rem;
  color: var(--fg2);
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* Hero */
.hero {
  padding: 5rem 2rem 6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--fg2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}
.proof-label {
  font-size: 0.8125rem;
  color: var(--fg2);
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Dashboard mockup */
.dashboard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.1);
}
.dash-header {
  background: rgba(15, 30, 53, 0.8);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.dash-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
}
.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dash-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.dash-text { font-family: 'Space Grotesk', sans-serif; }
.dash-time {
  font-size: 0.75rem;
  color: var(--fg2);
}
.dash-cols {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  padding: 8px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fg2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dash-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(139, 155, 180, 0.06);
  font-size: 0.8125rem;
}
.dash-row:last-of-type { border-bottom: none; }
.dash-cell { color: var(--fg2); font-size: 0.8125rem; }
.dash-cell.pass {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
.dash-cell.flagged {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.green-dot { background: var(--green); }
.red-dot { background: var(--red); box-shadow: 0 0 6px var(--red); }
.dash-alert {
  background: rgba(239, 68, 68, 0.1);
  border-top: 1px solid rgba(239, 68, 68, 0.2);
  padding: 10px 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 500;
  line-height: 1.5;
}
.alert-icon { flex-shrink: 0; margin-top: 2px; }

/* How It Works */
.how { background: var(--bg2); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  background: rgba(11, 22, 40, 0.5);
  position: relative;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(245, 158, 11, 0.15);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9375rem;
  color: var(--fg2);
  line-height: 1.65;
}

/* Compliance Types */
.types-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.types-desc {
  font-size: 1rem;
  color: var(--fg2);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 380px;
}
.types-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.type-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.type-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.type-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.type-desc {
  font-size: 0.875rem;
  color: var(--fg2);
  line-height: 1.55;
}

/* Why */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  background: var(--bg2);
}
.why-icon {
  margin-bottom: 1rem;
}
.why-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.625rem;
}
.why-desc {
  font-size: 0.9375rem;
  color: var(--fg2);
  line-height: 1.65;
}

/* Closing */
.closing { background: var(--bg2); }
.closing-inner { text-align: center; }
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.badge-dot.amber { background: var(--accent); }
.closing-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1.0625rem;
  color: var(--fg2);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cstat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.cstat-label {
  font-size: 0.8125rem;
  color: var(--fg2);
  text-align: center;
  max-width: 160px;
  line-height: 1.4;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--fg);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}
.footer-copy { font-size: 0.875rem; color: var(--fg2); }
.footer-sub { font-size: 0.75rem; color: rgba(139, 155, 180, 0.5); }

/* Responsive */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .types-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 2rem; }
  .hero-proof { flex-wrap: wrap; gap: 1.5rem; }
  .proof-divider { display: none; }
}
@media (max-width: 480px) {
  .section-inner { padding: 4rem 1.25rem; }
  .hero { padding: 3rem 1.25rem 4rem; }
}