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

[hidden] {
  display: none !important;
}

:root {
  --blue: #6eb8eb;
  --blue-deep: #5aa8dc;
  --navy: #3a5678;
  --navy-deep: #2c4563;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --border: rgba(44, 69, 99, 0.14);
  --text: var(--navy-deep);
  --text-muted: rgba(44, 69, 99, 0.78);
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --radius: 10px;
  --max: 54rem;
  --header-h: 3.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--blue);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--navy-deep);
}

code {
  font-family: var(--mono);
  font-size: 0.86em;
  background: rgba(255, 255, 255, 0.45);
  color: var(--navy-deep);
  padding: 0.12em 0.4em;
  border-radius: 4px;
}

h1, h2 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4.5vw, 1.875rem);
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}

p {
  margin: 0 0 0.75rem;
}

p:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.btn--ghost {
  background: var(--surface-strong);
  color: var(--navy-deep);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--white);
}

.btn--sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
}

.btn--danger {
  color: #9b2c2c;
  border-color: rgba(180, 40, 40, 0.22);
}

.btn--danger:hover {
  background: rgba(180, 40, 40, 0.08);
  color: #7a2020;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deep);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy);
  text-decoration: none;
}

.brand__icon {
  display: block;
  border-radius: 8px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0);
  background: var(--surface-strong);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 0.35rem 1.25rem rgba(44, 69, 99, 0.08);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--navy-deep);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.site-header__toggle:hover {
  background: var(--white);
  border-color: rgba(44, 69, 99, 0.22);
}

.site-header__toggle-icon {
  display: block;
}

.site-header__toggle-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .site-header__toggle-line--top {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-line--mid {
  opacity: 0;
}

.site-header.is-open .site-header__toggle-line--bot {
  transform: translateY(-4px) rotate(-45deg);
}

.site-header__panel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.site-header__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.site-header__link:hover {
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.site-header__link--current,
.site-header__link[aria-current="page"] {
  color: var(--navy-deep);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(44, 69, 99, 0.08);
}

.site-header__link--external::after {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  background: currentColor;
  opacity: 0.55;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='black' d='M3.5 1h7v7M10 2 4.5 7.5M2 4v6h6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-header__divider {
  width: 1px;
  height: 1.35rem;
  background: var(--border);
  flex-shrink: 0;
}

.site-header__auth {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.site-header__account {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 13rem;
  padding: 0.35rem 0.75rem 0.35rem 0.55rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  line-height: 1.25;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.site-header__account:hover {
  background: var(--white);
  border-color: rgba(44, 69, 99, 0.22);
}

.site-header__account:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

.site-header__account.is-copied {
  border-color: rgba(46, 125, 50, 0.35);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

.site-header__account-status {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #3dba6a;
  box-shadow: 0 0 0 2px rgba(61, 186, 106, 0.22);
}

.site-header__account-details {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.site-header__account-name {
  overflow: hidden;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header__connect {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__panel {
    position: absolute;
    top: calc(100% + env(safe-area-inset-top, 0));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem 1rem;
    background: var(--surface-strong);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 0.75rem 1.75rem rgba(44, 69, 99, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.35rem);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }

  .site-header.is-open .site-header__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-header__link {
    justify-content: center;
    padding: 0.55rem 0.85rem;
  }

  .site-header__divider {
    width: 100%;
    height: 1px;
  }

  .site-header__auth {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__account {
    max-width: none;
    width: 100%;
  }

  .site-header__connect,
  .site-header__auth .btn {
    width: 100%;
  }
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.5rem) 1.25rem 2rem;
}

.hero {
  text-align: center;
  margin-bottom: 1.75rem;
}

.hero--compact {
  margin-bottom: 1.25rem;
}

.hero--compact .hero__title {
  margin-bottom: 0.5rem;
}

.hero__logo {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  box-shadow: 0 0.35rem 1rem rgba(44, 69, 99, 0.12);
}

.hero__lead {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero__stats strong {
  display: block;
  font-size: 1.125rem;
  color: var(--navy-deep);
  font-weight: 700;
}

.panel {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.steps li {
  margin-bottom: 0.45rem;
}

.steps li:last-child {
  margin-bottom: 0;
}

.code-block {
  margin: 0;
  padding: 0.85rem;
  overflow-x: auto;
  font-size: 0.72rem;
  line-height: 1.5;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
}

.code-block code {
  background: none;
  padding: 0;
  color: var(--navy-deep);
  white-space: pre;
}

.tok-comment {
  color: rgba(44, 69, 99, 0.55);
}

.panel__note,
.panel__intro {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.api-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.api-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.api-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.panel__links {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}

.site-footer {
  padding: 0 1rem 1.5rem;
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 480px) {
  .page {
    padding-inline: 1.25rem;
  }
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: start;
  }
}

.pricing-card {
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pricing-card--featured {
  background: var(--surface-strong);
  border-color: rgba(44, 69, 99, 0.2);
  box-shadow: 0 0.5rem 1.5rem rgba(44, 69, 99, 0.1);
}

.pricing-card__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.pricing-card__price {
  margin: 0 0 0.35rem;
  font-size: clamp(2rem, 6vw, 2.5rem);
  line-height: 1.05;
  color: var(--navy-deep);
}

.pricing-card__price strong {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-card__price span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__lead {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-card__features {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-card__features li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.45rem;
}

.pricing-card__features li:last-child {
  margin-bottom: 0;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blue-deep);
  box-shadow: 0 0 0 2px rgba(90, 168, 220, 0.25);
}

.pricing-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pricing-details {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-details li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-details li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-details strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--navy-deep);
}

.pricing-faq {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-faq li + li {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.pricing-faq h3 {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.pricing-faq p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}




/*# sourceMappingURL=pricing.css.map*/