@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #00e87b;
  --accent-dim: rgba(0, 232, 123, 0.12);
  --accent-glow: rgba(0, 232, 123, 0.25);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- NAV --- */
.nav {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: var(--fg-muted);
  font-weight: 400;
}
.nav-status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- HERO --- */
.hero {
  padding: 120px 0 100px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 750px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* --- METRICS --- */
.metrics {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.metric-card {
  background: var(--bg-elevated);
  padding: 36px 28px;
  text-align: center;
}
.metric-value {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- CAPABILITIES --- */
.capabilities {
  padding: 100px 0;
}
.section-header {
  margin-bottom: 64px;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.cap-card:hover {
  border-color: rgba(0, 232, 123, 0.2);
  transform: translateY(-2px);
}
.cap-icon {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-dim);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.cap-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cap-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* --- PROCESS --- */
.process {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.step {
  position: relative;
  padding-left: 0;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(0,232,123,0.3) 0%, rgba(0,232,123,0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* --- CLOSING --- */
.closing {
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}
.closing .container {
  position: relative;
  z-index: 1;
}
.closing h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.closing h2 em {
  font-style: normal;
  color: var(--accent);
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-right {
  font-size: 12px;
  color: var(--fg-muted);
}

/* --- PRICING --- */
.pricing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 12px;
  max-width: 460px;
  line-height: 1.65;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.pricing-card:hover {
  border-color: rgba(0, 232, 123, 0.15);
  transform: translateY(-2px);
}
.pricing-card--popular {
  border-color: rgba(0, 232, 123, 0.35);
  background: var(--bg-elevated);
  box-shadow: 0 0 40px rgba(0, 232, 123, 0.08);
}
.pricing-card--popular:hover {
  border-color: rgba(0, 232, 123, 0.55);
}
.pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pc-header {
  margin-bottom: 16px;
}
.pc-tier {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 12px;
}
.pc-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
  margin-bottom: 6px;
}
.pc-currency {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--fg-muted);
  padding-top: 6px;
}
.pc-amount {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.pc-period {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pc-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 40px;
}
.pc-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-features li {
  font-size: 14px;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pc-check {
  flex-shrink: 0;
  margin-top: 2px;
}
.pc-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.pc-cta--primary {
  background: var(--accent);
  color: #0a0a0f;
}
.pc-cta--primary:hover {
  background: #00ff8a;
  box-shadow: 0 4px 20px rgba(0, 232, 123, 0.3);
}
.pc-cta--secondary {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0, 232, 123, 0.2);
}
.pc-cta--secondary:hover {
  background: rgba(0, 232, 123, 0.2);
  border-color: rgba(0, 232, 123, 0.4);
}
.pricing-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 40px;
  line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .hero { padding: 80px 0 60px; }
  .nav-status { display: none; }
}
@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
}