:root {
  --brand:       #3dd9ff;
  --brand-dim:   #1a9fc7;
  --bg-base:     #090e18;
  --bg-card:     #0d1626;
  --bg-card-alt: #111c30;
  --border:      rgba(61, 217, 255, 0.12);
  --muted:       #6c8299;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  color: #c9d8e8;
  overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  background: rgba(9, 14, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 1.15rem;
  color: #fff !important;
}
.navbar-brand span { color: var(--brand); }
.nav-link { color: var(--muted) !important; font-size: .875rem; }
.nav-link:hover { color: #fff !important; }

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(61,217,255,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(61,217,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(61,217,255,.08);
  border: 1px solid rgba(61,217,255,.2);
  padding: .35em 1em;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #fff;
}
.hero h1 .accent { color: var(--brand); }
.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.btn-brand {
  background: var(--brand);
  color: #060a12;
  font-weight: 600;
  border: none;
  padding: .65rem 1.75rem;
  border-radius: 8px;
  font-size: .95rem;
  transition: filter .2s, transform .15s;
}
.btn-brand:hover { filter: brightness(1.12); transform: translateY(-1px); color: #060a12; }
.btn-outline-brand {
  border: 1px solid rgba(61,217,255,.4);
  color: var(--brand);
  background: transparent;
  padding: .65rem 1.75rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 500;
  transition: border-color .2s, background .2s;
}
.btn-outline-brand:hover {
  border-color: var(--brand);
  background: rgba(61,217,255,.06);
  color: var(--brand);
}

/* ── TERMINAL MOCKUP ─────────────────────────── */
.terminal {
  background: #070c17;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03);
}
.terminal-bar {
  background: #0d1626;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.terminal-body {
  padding: 1.25rem 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  line-height: 1.8;
}
.t-dim    { color: #3d5268; }
.t-cmd    { color: #fff; }
.t-key    { color: var(--brand); }
.t-val    { color: #8ec3d8; }
.t-ok     { color: #3dffa0; }
.t-warn   { color: #ffcc44; }
.t-section{ color: var(--muted); margin-top: .4rem; }

/* ── SECTION HEADERS ─────────────────────────── */
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

/* ── CARDS ───────────────────────────────────── */
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  transition: border-color .25s, transform .2s;
}
.feat-card:hover {
  border-color: rgba(61,217,255,.35);
  transform: translateY(-2px);
}
.feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(61,217,255,.08);
  border: 1px solid rgba(61,217,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--brand);
  margin-bottom: 1rem;
}
.feat-card h5 {
  font-size: .95rem;
  font-weight: 600;
  color: #e0edf8;
  margin-bottom: .5rem;
}
.feat-card p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ── HOW IT WORKS ────────────────────────────── */
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(61,217,255,.08);
  border: 1px solid rgba(61,217,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand);
  flex-shrink: 0;
}
.step-connector {
  width: 1px;
  background: var(--border);
  flex-grow: 1;
  margin: .4rem auto;
}
.step-body h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #e0edf8;
  margin-bottom: .35rem;
}
.step-body p {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ── DATA LOOKUP GRID ────────────────────────── */
.lookup-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.lookup-card .lookup-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
}
.lookup-card ul {
  list-style: none;
  padding: 0; margin: 0;
}
.lookup-card ul li {
  font-size: .85rem;
  color: #8dafc9;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(61,217,255,.05);
  display: flex; align-items: center; gap: .5rem;
}
.lookup-card ul li:last-child { border-bottom: none; }
.lookup-card ul li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .5;
  flex-shrink: 0;
}

/* ── DIVIDER ─────────────────────────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── CTA BAND ────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0d1a30 0%, #091525 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
}

/* ── BADGE STRIP ─────────────────────────────── */
.badge-strip .badge {
  background: rgba(61,217,255,.07);
  border: 1px solid rgba(61,217,255,.15);
  color: var(--brand);
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  font-weight: 400;
  padding: .4em .9em;
  border-radius: 100px;
}

/* ── PRICING ─────────────────────────────────── */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .2s;
}
.pricing-card:hover {
  border-color: rgba(61,217,255,.35);
  transform: translateY(-2px);
}
.pricing-card.featured {
  background: var(--bg-card-alt);
  border-color: rgba(61,217,255,.5);
  box-shadow: 0 0 0 1px rgba(61,217,255,.12), 0 20px 56px rgba(61,217,255,.09);
}
.pricing-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: .6rem;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1.5px;
}
.pricing-price sup {
  font-size: 1.1rem;
  font-weight: 500;
  vertical-align: super;
  color: var(--muted);
  letter-spacing: 0;
}
.pricing-price .mo {
  font-size: .875rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.pricing-volume {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: var(--brand);
  margin-top: .4rem;
  margin-bottom: 1.25rem;
}
.pricing-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.1rem 0;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.pricing-features li {
  font-size: .84rem;
  color: #8dafc9;
  padding: .38rem 0;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(61,217,255,.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i {
  color: var(--brand);
  font-size: .78rem;
  flex-shrink: 0;
  margin-top: .18rem;
}
.pricing-cta { margin-top: 1.5rem; }
.btn-outline-muted {
  border: 1px solid var(--border);
  color: #8dafc9;
  background: transparent;
  padding: .6rem 1.5rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  transition: border-color .2s, color .2s;
  width: 100%;
  text-align: center;
  display: block;
  text-decoration: none;
}
.btn-outline-muted:hover {
  border-color: rgba(61,217,255,.35);
  color: var(--brand);
}
.pricing-enterprise {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  transition: border-color .25s;
}
.pricing-enterprise:hover {
  border-color: rgba(61,217,255,.25);
}
