:root {
  --bg: #0A1628;
  --surface: #0F1E32;
  --surface-2: #152540;
  --accent: #00D4AA;
  --accent-dim: rgba(0, 212, 170, 0.12);
  --text: #F0F4F8;
  --text-muted: #8BA3BC;
  --text-dim: #5A7490;
  --border: rgba(255,255,255,0.06);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 48px 72px;
  background: linear-gradient(160deg, var(--bg) 0%, #0D1E30 60%, #0A1826 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-val {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 100px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Automation Card */
.automation-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,212,170,0.08);
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.card-status {
  font-size: 11px;
  background: rgba(0,212,170,0.15);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.card-body { display: flex; flex-direction: column; gap: 12px; }
.workflow-step { display: flex; align-items: flex-start; gap: 12px; }
.workflow-step.done .step-icon {
  background: rgba(0,212,170,0.12);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon-spin {
  background: rgba(0,212,170,0.08);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: spin 2s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.step-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 3px;
}
.card-meta {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 48px;
  background: var(--surface);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-label, .verticals-label, .process-label, .compliance-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.manifesto-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 800px;
  margin-bottom: 48px;
}
.manifesto-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.manifesto-col p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* VERTICALS */
.verticals { padding: 96px 48px; background: var(--bg); }
.verticals-inner { max-width: 1200px; margin: 0 auto; }
.verticals-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 56px;
}
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.vertical-card {
  background: var(--surface);
  padding: 32px 28px;
}
.vertical-icon {
  margin-bottom: 20px;
}
.vertical-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.vertical-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PROCESS */
.process { padding: 96px 48px; background: var(--surface); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-headline {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 56px;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  margin-bottom: 56px;
}
.process-step { }
.step-number {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-connector {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-connector::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--border);
  position: relative;
}
.process-pricing {
  display: flex;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.pricing-block {
  flex: 1;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.pricing-block.main {
  border-color: rgba(0,212,170,0.3);
  background: var(--accent-dim);
}
.pricing-type {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pricing-note {
  font-size: 13px;
  color: var(--text-dim);
}

/* COMPLIANCE */
.compliance { padding: 96px 48px; background: var(--bg); }
.compliance-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.compliance-headline {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.compliance-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compliance-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.check {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 1px;
}
.compliance-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compliance-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.cstat-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.cstat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--surface);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-links span {
  font-size: 14px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-columns { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-connector { display: none; }
  .compliance-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 24px 56px; }
  .manifesto, .verticals, .process, .compliance, .closing { padding: 64px 24px; }
  .nav { padding: 20px 24px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .process-pricing { flex-direction: column; }
}