:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #f1f5ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
  --brand: #2563eb;
  --brand-2: #0ea5e9;
  --focus: #f59e0b;
  --danger: #e11d48;
  --radius: 14px;
  --radius-sm: 12px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Noto Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration-color: rgba(37, 99, 235, 0.45);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: rgba(37, 99, 235, 0.9);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--focus);
  color: #111;
  padding: 10px 12px;
  border-radius: 12px;
  transform: translateY(-200%);
  transition: transform 120ms ease;
  z-index: 50;
  font-weight: 650;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

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

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

p {
  margin: 0 0 14px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid var(--border);
  padding: 0.1em 0.35em;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 0.86rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  padding: 9px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
  border: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--border);
  background: rgba(15, 23, 42, 0.04);
}

.site-nav a[aria-current="page"] {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.10);
}

.nav-cta {
  border-color: rgba(37, 99, 235, 0.35) !important;
  background: rgba(37, 99, 235, 0.10);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.03);
  color: inherit;
  cursor: pointer;
}

.nav-toggle-bars {
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(15, 23, 42, 0.9);
}

.nav-toggle-bars::before {
  top: 0;
}

.nav-toggle-bars::after {
  bottom: 0;
}

.nav-toggle-bars span {
  top: 5px;
}

.hero {
  padding: 62px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: rgba(15, 23, 42, 0.95);
}

.lead {
  font-size: 1.08rem;
  color: rgba(15, 23, 42, 0.92);
}

.hero-note {
  margin-top: 10px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  user-select: none;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.16);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.03);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.hero-panel {
  position: relative;
}

.panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}

.panel-title {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  color: rgba(15, 23, 42, 0.92);
}

.checklist li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 4px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
}

.panel-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 52px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.cards {
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.card-soft {
  background: rgba(15, 23, 42, 0.02);
  border-color: var(--border);
}

.callout {
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(37, 99, 235, 0.06);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.callout-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 650;
}

.divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 26px 0;
}

.page-hero {
  padding: 44px 0 16px;
}

.page {
  padding-bottom: 20px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(15, 23, 42, 0.92);
}

.address {
  font-style: normal;
  color: rgba(15, 23, 42, 0.92);
  margin-bottom: 10px;
}

.stack {
  margin: 0 0 12px;
}

.pricing-card .bullets {
  margin-top: 12px;
}

.form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.field label {
  display: block;
  font-weight: 650;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

input:invalid,
textarea:invalid {
  border-color: rgba(225, 29, 72, 0.55);
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.form-hint {
  margin: 0;
}

.mt {
  margin-top: 14px;
}

.prose ul {
  margin: 12px 0 16px;
  padding-left: 20px;
}

.prose li {
  margin-bottom: 8px;
}

.site-footer {
  padding: 36px 0 20px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: start;
}

.footer-title {
  margin: 0 0 10px;
  font-weight: 750;
}

.footer-address,
.footer-contact {
  margin: 0 0 10px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-links a {
  color: rgba(15, 23, 42, 0.92);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.footer-links a:hover {
  border-color: var(--border);
  background: rgba(15, 23, 42, 0.04);
}

.footer-bottom {
  margin-top: 10px;
  color: rgba(71, 85, 105, 0.95);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid.cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-block {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px 20px 14px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
  }
  .site-nav a {
    padding: 12px 12px;
  }
  .site-nav[data-open="true"] {
    display: flex;
  }
  .grid.cards {
    grid-template-columns: 1fr;
  }
  .grid.two {
    grid-template-columns: 1fr;
  }
  .grid.three {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
