/* ─── Base ─── */
:root {
  --bg: #0b1628;
  --bg-2: #0f1f38;
  --accent: #00e5b4;
  --accent-2: #00b89a;
  --text: #f0f4f8;
  --text-muted: #8899aa;
  --text-dim: #4a5a6a;
  --card: #11203a;
  --border: #1a2e4a;
  --workflow-green: #22c55e;
  --workflow-yellow: #eab308;
  --workflow-red: #ef4444;
  --workflow-ai: #a78bfa;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, 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: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--card);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ─── Section Shared ─── */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 48px;
}

/* ─── Hero ─── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.proof-label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 80px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 24px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.workflow-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.workflow-header {
  background: var(--bg-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.workflow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.workflow-dot.green { background: var(--workflow-green); }
.workflow-dot.yellow { background: var(--workflow-yellow); }
.workflow-dot.red { background: var(--workflow-red); }
.workflow-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}
.workflow-steps {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wf-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
}
.wf-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.wf-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: auto;
}
.wf-badge.new { background: rgba(34,197,94,0.15); color: #22c55e; }
.wf-badge.ai { background: rgba(167,139,250,0.15); color: #a78bfa; }
.wf-badge.done { background: rgba(0,229,180,0.15); color: var(--accent); }
.wf-badge.warm { background: rgba(234,179,8,0.15); color: #eab308; }
.wf-arrow {
  color: var(--text-dim);
  padding-left: 44px;
}
.workflow-time {
  padding: 10px 20px 14px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.workflow-time strong { color: var(--accent); }
.hero-stat-bar {
  display: flex;
  align-items: center;
}
.stat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
}
.stat-dot {
  width: 6px;
  height: 6px;
  background: var(--workflow-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── Workflows Section ─── */
.workflows {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.workflow-card-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.workflow-card-item:hover { border-color: var(--accent); }
.workflow-card-item.accent-card {
  background: linear-gradient(135deg, rgba(0,229,180,0.08), rgba(0,184,154,0.05));
  border-color: rgba(0,229,180,0.3);
}
.wc-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.workflow-card-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.workflow-card-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.wc-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  display: block;
}

/* ─── Process Section ─── */
.process {
  background: var(--bg-2);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process .section-label,
.process .section-title {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.proc-step { padding: 0 16px; }
.proc-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 16px;
  line-height: 1;
}
.proc-content h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.proc-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.proc-connector {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
.proc-connector::after {
  content: '';
  width: 1px;
  height: 120px;
  background: var(--border);
}

/* ─── Outcomes Section ─── */
.outcomes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcomes-text .section-title { margin-bottom: 20px; }
.outcomes-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.outcome-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ost-item { display: flex; align-items: baseline; gap: 12px; }
.ost-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  min-width: 80px;
}
.ost-label {
  font-size: 14px;
  color: var(--text-muted);
}
.outcomes-quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  border-left: 3px solid var(--accent);
}
blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
}
cite {
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
}

/* ─── Pricing Section ─── */
.pricing {
  background: var(--bg-2);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing .section-label,
.pricing .section-title { text-align: center; max-width: 1200px; margin-left: auto; margin-right: auto; }
.pricing-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(0,229,180,0.08) 0%, var(--card) 100%);
  border-color: rgba(0,229,180,0.3);
}
.pc-header h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pc-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.pc-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}
.pc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pc-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 24px auto 0;
}

/* ─── Closing ─── */
.closing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto 24px;
}
.closing p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.7;
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 32px;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 40px; gap: 40px; }
  .hero-visual { order: -1; }
  .workflow-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .proc-connector { display: none; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-headline { letter-spacing: -1px; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 12px; }
  .proof-divider { display: none; }
  .nav { padding: 16px 24px; }
  .workflows, .process, .outcomes, .pricing, .closing { padding: 60px 24px; }
}