html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

:root {
  --nv-ink: #122033;
  --nv-muted: #607089;
  --nv-blue: #2563eb;
  --nv-cyan: #06b6d4;
  --nv-panel: #f7f9fc;
  --nv-border: #e4e9f2;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(37, 99, 235, .35);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 80px;
  color: var(--nv-ink);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .10), transparent 32rem),
    radial-gradient(circle at top right, rgba(6, 182, 212, .12), transparent 28rem),
    #ffffff;
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -.03em;
}

.footer {
  background: #fff;
  line-height: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.hero-section {
  min-height: 560px;
}

.eyebrow {
  color: var(--nv-blue);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.lead {
  color: var(--nv-muted);
}

.hero-proof {
  border-left: 4px solid var(--nv-blue);
  background: rgba(37, 99, 235, .07);
  border-radius: .9rem;
  color: #1e3a8a;
  padding: 1rem 1.1rem;
}

.endpoint-card,
.feature-card,
.mini-card,
.step-card,
.example-card {
  border: 1px solid var(--nv-border);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.88);
}

.endpoint-card {
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.endpoint-card-header {
  color: var(--nv-muted);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.endpoint-card code,
.step-card code {
  display: block;
  color: #0f766e;
  background: #ecfeff;
  border-radius: .75rem;
  padding: .8rem;
  overflow-x: auto;
}

pre {
  color: #dbeafe;
  background: #0f172a;
  border-radius: 1rem;
  padding: 1rem;
  overflow-x: auto;
  margin-top: 1rem;
}

.feature-card,
.mini-card,
.step-card,
.example-card {
  padding: 1.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.feature-card h2,
.step-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
}

.feature-card p,
.mini-card p,
.step-card p,
.example-card p {
  color: var(--nv-muted);
}

.split-section {
  border-top: 1px solid var(--nv-border);
  border-bottom: 1px solid var(--nv-border);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.capability-grid span {
  border: 1px solid var(--nv-border);
  border-radius: 999px;
  padding: .75rem 1rem;
  background: #fff;
  font-weight: 700;
  color: #24364f;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nv-blue), var(--nv-cyan));
  color: #fff;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-panel {
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #0891b2);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 22px 70px rgba(37, 99, 235, .25);
}

.cta-panel p {
  color: rgba(255,255,255,.82);
  max-width: 760px;
}

@media (max-width: 767px) {
  .display-3 { font-size: 2.6rem; }
  .capability-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 2rem; }
}

.pricing-card {
  border: 1px solid var(--nv-border);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.6rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, .45);
  box-shadow: 0 22px 60px rgba(37, 99, 235, .16);
  transform: translateY(-.35rem);
}

.pricing-card h3 {
  font-weight: 900;
}

.price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--nv-blue);
  margin: .5rem 0 1rem;
}

.pricing-card li {
  margin-bottom: .4rem;
}

.mini-card code {
  display: inline-block;
  color: #0f766e;
  background: #ecfeff;
  border-radius: .6rem;
  padding: .35rem .55rem;
  margin-top: .25rem;
}

.auth-shell {
  min-height: 620px;
}

.auth-card,
.info-form {
  border: 1px solid var(--nv-border);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.92);
  padding: 2rem;
  box-shadow: 0 22px 65px rgba(15, 23, 42, .08);
}

.plan-kicker {
  color: var(--nv-muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}

.pricing-card h2 {
  font-size: 1.25rem;
  font-weight: 900;
}

.price span {
  color: var(--nv-muted);
  font-size: 1rem;
  font-weight: 700;
}

.business-plan {
  border-color: rgba(124, 58, 237, .35);
}

.enterprise-plan {
  border-color: rgba(220, 38, 38, .35);
}

.large-list {
  font-size: 1.15rem;
  line-height: 1.9;
}
