/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: #e2e8f0;
  background: #0c0c10;
  line-height: 1.6;
}
a { color: #22d3ee; text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  background: #0c0c10;
  border-bottom: 1px solid #1e1e2c;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-weight: 700;
  font-size: 18px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo:hover { text-decoration: none; }
.logo-icon {
  background: #22d3ee;
  color: #0c0c10;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: #94a3b8; font-size: 14px; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: #22d3ee; text-decoration: none; }
.nav-status {
  background: rgba(34, 211, 238, 0.08);
  color: #22d3ee !important;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px !important;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0e0e16 0%, #0c0c10 60%, #0a0f16 100%);
  color: #e2e8f0;
  padding: 100px 0 90px;
  text-align: center;
  border-bottom: 1px solid #1e1e2c;
}
.badge {
  display: inline-block;
  background: rgba(34, 211, 238, 0.08);
  color: #22d3ee;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 211, 238, 0.2);
}
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: #94a3b8; max-width: 640px; margin: 0 auto 36px; line-height: 1.7; text-align: center; }

.page-hero {
  background: linear-gradient(160deg, #0e0e16 0%, #0c0c10 100%);
  color: #e2e8f0;
  padding: 70px 0 60px;
  text-align: center;
  border-bottom: 1px solid #1e1e2c;
}
.page-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 12px; }
.page-hero .hero-sub { font-size: 18px; color: #94a3b8; max-width: 580px; margin: 0 auto; text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: #22d3ee; color: #0c0c10; }
.btn-primary:hover { background: #06b6d4; }
.btn-secondary { background: transparent; color: #e2e8f0; border: 1px solid #2e2e3e; }
.btn-secondary:hover { background: #1a1a24; border-color: #3e3e50; }
.hero-actions { display: flex; gap: 14px; justify-content: center; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar { background: #0f0f14; border-bottom: 1px solid #1e1e2c; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number { font-size: 36px; font-weight: 800; color: #22d3ee; }
.stat-label { font-size: 14px; color: #64748b; margin-top: 4px; }

/* ── Features ─────────────────────────────────────────────── */
.features { padding: 80px 0; }
.features h2 { text-align: center; font-size: 32px; margin-bottom: 48px; color: #e2e8f0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: #131318;
  border: 1px solid #1e1e2c;
  border-radius: 14px;
  padding: 32px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: 0 0 0 1px #22d3ee22, 0 8px 32px rgba(0,0,0,0.4);
  border-color: #22d3ee33;
}
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; color: #e2e8f0; }
.feature-card p { font-size: 14px; color: #64748b; line-height: 1.65; }

/* ── Integration Highlight ────────────────────────────────── */
.integration-highlight { background: #0f0f14; padding: 80px 0; border-top: 1px solid #1e1e2c; border-bottom: 1px solid #1e1e2c; }
.integration-content h2 { font-size: 28px; margin-bottom: 16px; color: #e2e8f0; }
.integration-content > p { font-size: 16px; color: #94a3b8; max-width: 700px; margin-bottom: 28px; }
pre {
  background: #080810;
  color: #e2e8f0;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #1e1e2c;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.7;
}
code { font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', Menlo, monospace; }
.code-comment { color: #475569; }
.code-keyword { color: #c084fc; }
.code-string { color: #86efac; }
.code-key { color: #7dd3fc; }

/* ── Customers ────────────────────────────────────────────── */
.customers { padding: 60px 0 80px; }
.customers h2 { text-align: center; font-size: 14px; color: #475569; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 32px; }
.customer-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; text-align: center; }
.customer-logo {
  background: #131318;
  border: 1px solid #1e1e2c;
  border-radius: 10px;
  padding: 20px 16px;
  font-weight: 700;
  font-size: 13px;
  color: #475569;
  letter-spacing: 0.5px;
}

/* ── Platform Page ────────────────────────────────────────── */
.platform-section { padding: 60px 0 80px; }
.platform-block { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid #1a1a24; }
.platform-block:last-child { border-bottom: none; }
.platform-block h2 { font-size: 22px; margin-bottom: 14px; color: #22d3ee; font-weight: 700; }
.platform-block p { font-size: 15px; color: #94a3b8; line-height: 1.75; margin-bottom: 10px; }
.endpoint-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #080810;
  color: #e2e8f0;
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
  border: 1px solid #1e1e2c;
  font-family: 'SF Mono', 'Fira Code', Menlo, monospace;
}
.endpoint-badge {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
}

/* ── Docs Page ────────────────────────────────────────────── */
.docs-content { padding: 60px 0 80px; }
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
.docs-card {
  background: #131318;
  border: 1px solid #1e1e2c;
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s;
}
.docs-card:hover { border-color: #22d3ee33; }
.docs-card h3 { font-size: 17px; margin-bottom: 8px; color: #e2e8f0; }
.docs-card p { font-size: 14px; color: #64748b; margin-bottom: 14px; }
.docs-card a { font-size: 14px; font-weight: 600; color: #22d3ee; }
.api-example h2 { font-size: 22px; margin-bottom: 20px; color: #e2e8f0; }

/* ── Pricing Page ─────────────────────────────────────────── */
.pricing-section { padding: 60px 0 80px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  background: #131318;
  border: 1px solid #1e1e2c;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  border: 1px solid #22d3ee44;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.06);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #22d3ee;
  color: #0c0c10;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}
.pricing-card h3 { font-size: 22px; margin-bottom: 8px; color: #e2e8f0; }
.price { font-size: 42px; font-weight: 800; color: #e2e8f0; }
.price-period { font-size: 14px; color: #475569; margin-bottom: 28px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-card li { padding: 9px 0; border-bottom: 1px solid #1a1a24; font-size: 14px; color: #94a3b8; }
.pricing-card li::before { content: "✓ "; color: #22d3ee; font-weight: 700; }

/* ── About / Company Page ─────────────────────────────────── */
.about-content { padding: 60px 0 80px; }
.about-block { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid #1a1a24; }
.about-block:last-child { border-bottom: none; }
.about-block h2 { font-size: 22px; margin-bottom: 16px; color: #e2e8f0; }
.about-block p { font-size: 15px; color: #94a3b8; line-height: 1.75; margin-bottom: 12px; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.team-card {
  background: #131318;
  border: 1px solid #1e1e2c;
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: #22d3ee33; }
.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(34, 211, 238, 0.2);
}
.team-card h3 { font-size: 16px; margin-bottom: 2px; color: #e2e8f0; }
.team-role { font-size: 13px; color: #22d3ee; font-weight: 600; margin-bottom: 8px; }
.team-card > p:last-child { font-size: 13px; color: #64748b; line-height: 1.6; }

/* ── CTA ──────────────────────────────────────────────────── */
.cta { background: #0f0f14; color: #e2e8f0; padding: 72px 0; text-align: center; border-top: 1px solid #1e1e2c; }
.cta h2 { font-size: 28px; margin-bottom: 12px; color: #e2e8f0; }
.cta p { color: #64748b; margin-bottom: 28px; font-size: 16px; }

/* ── Footer ───────────────────────────────────────────────── */
footer { background: #0c0c10; border-top: 1px solid #1e1e2c; padding: 48px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: #475569; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: #64748b; padding: 5px 0; }
.footer-col a:hover { color: #22d3ee; text-decoration: none; }
.footer-bottom { border-top: 1px solid #1a1a24; padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: #334155; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .customer-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}
