.connect-lead {
  width: min(34rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: 0 18px 48px rgba(44, 69, 99, 0.22);
}

.connect-lead::backdrop {
  background: rgba(44, 69, 99, 0.42);
}

.connect-lead__form {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.25rem 1.1rem;
  margin: 0;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

.connect-lead__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.connect-lead__title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.125rem;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.connect-lead__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: -0.2rem -0.35rem 0 0;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.connect-lead__close:hover {
  color: var(--navy-deep);
  background: rgba(58, 86, 120, 0.08);
}

.connect-lead__close:focus-visible {
  outline: 2px solid rgba(110, 184, 235, 0.65);
  outline-offset: 1px;
}

.connect-lead__intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.connect-lead__field {
  display: grid;
  gap: 0.35rem;
}

.connect-lead__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.connect-lead__optional {
  font-weight: 500;
  color: var(--text-muted);
}

.connect-lead__input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: var(--white);
}

.connect-lead__input:focus {
  outline: 2px solid rgba(110, 184, 235, 0.65);
  outline-offset: 1px;
}

.connect-lead__error {
  margin: 0;
  font-size: 0.8125rem;
  color: #9b2c2c;
}

.connect-lead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.connect-lead__actions .btn {
  width: 100%;
}

.connect-lead__role {
  margin: 0;
  padding: 0;
  border: 0;
}

.connect-lead__role .connect-lead__label {
  margin-bottom: 0.45rem;
}

.connect-lead__role-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.connect-lead__role-option {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.connect-lead__role-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.connect-lead__role-option span {
  display: block;
  padding: 0.5rem 0.65rem;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-muted);
  background: transparent;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.connect-lead__role-option:hover span {
  color: var(--navy);
  background: rgba(58, 86, 120, 0.06);
}

.connect-lead__role-option input:checked + span {
  color: var(--navy-deep);
  background: linear-gradient(145deg, rgba(58, 86, 120, 0.14), rgba(110, 184, 235, 0.22));
  border-color: rgba(58, 86, 120, 0.35);
  box-shadow: 0 1px 3px rgba(44, 69, 99, 0.1);
}

.connect-lead__role-option input:focus-visible + span {
  outline: 2px solid rgba(110, 184, 235, 0.65);
  outline-offset: 1px;
}

.connect-lead__browsers {
  margin: 0;
  padding: 0;
  border: 0;
}

.connect-lead__browsers .connect-lead__label {
  margin-bottom: 0.45rem;
}

.connect-lead__browser-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.connect-lead__browser-option {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.connect-lead__browser-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.connect-lead__browser-option span {
  display: block;
  padding: 0.5rem 0.45rem;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-muted);
  background: transparent;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.connect-lead__browser-option:hover span {
  color: var(--navy);
  background: rgba(58, 86, 120, 0.06);
}

.connect-lead__browser-option input:checked + span {
  color: var(--navy-deep);
  background: linear-gradient(145deg, rgba(58, 86, 120, 0.14), rgba(110, 184, 235, 0.22));
  border-color: rgba(58, 86, 120, 0.35);
  box-shadow: 0 1px 3px rgba(44, 69, 99, 0.1);
}

.connect-lead__browser-option input:checked:hover + span {
  background: linear-gradient(145deg, rgba(58, 86, 120, 0.16), rgba(110, 184, 235, 0.24));
}

.connect-lead__browser-option input:focus-visible + span {
  outline: 2px solid rgba(110, 184, 235, 0.65);
  outline-offset: 1px;
}

.connect-lead__developer-fields {
  display: grid;
  gap: 0.85rem;
}

.connect-lead__developer-fields[hidden] {
  display: none;
}

.connect-lead__panel {
  display: grid;
  gap: 0.85rem;
}

.connect-lead__panel[hidden] {
  display: none;
}

.connect-lead__success {
  padding: 0.25rem 0 0.15rem;
  text-align: center;
}

.connect-lead__success-icon {
  display: flex;
  justify-content: center;
  color: #027a48;
}

.connect-lead__success-lead {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.connect-lead__success-copy {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

*,
*::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: 8px;
  /* Shared content width: fits landing hero + stage, compare table, and pricing grid */
  --max: 76rem;
  --content-max: min(var(--max), calc(100vw - 2rem));
  --header-h: 3.5rem;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: #f7fcff;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  background: linear-gradient(180deg, #eef6fc 0%, #f7fcff 18rem);
  background-color: #f7fcff;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}

body > .page {
  flex: 1 0 auto;
  width: 100%;
}

body > .site-footer {
  flex-shrink: 0;
}

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;
}

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;
  gap: 0.45rem;
  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.is-loading {
  pointer-events: none;
  cursor: wait;
}

.btn.is-loading:hover {
  transform: none;
}

.btn__spinner {
  display: none;
  width: 0.95em;
  height: 0.95em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.65s linear infinite;
}

.btn.is-loading .btn__spinner {
  display: block;
}

.btn--primary.is-loading .btn__spinner {
  border-color: rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.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(--content-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=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27black%27 d=%27M3.5 1h7v7M10 2 4.5 7.5M2 4v6h6%27/%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: 900px) {
  .site-header__inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .site-header__toggle {
    display: inline-flex;
    min-width: 2.75rem;
    min-height: 2.75rem;
  }

  .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(--content-max);
  margin: 0 auto;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-right: max(1.25rem, env(safe-area-inset-right));
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  padding-left: max(1.25rem, env(safe-area-inset-left));
}

@media (max-width: 767px) {
  .page {
    padding-top: calc(var(--header-h) + 1rem);
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

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

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

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

.hero--page {
  margin-bottom: 1.5rem;
}

.hero--page .hero__lead {
  max-width: 36rem;
  margin-bottom: 0;
}

.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__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10.5rem), 1fr));
  gap: 0.6rem;
  max-width: 42rem;
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
}

.hero__summary li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-height: 4.1rem;
  padding: 0.75rem 0.85rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 0.25rem 0.8rem rgba(44, 69, 99, 0.06);
}

.hero__summary strong {
  color: var(--navy-deep);
  font-size: 0.875rem;
  line-height: 1.25;
}

.hero__summary span {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.section-head {
  display: grid;
  gap: 0.25rem;
  max-width: 36rem;
  margin: 0 auto 0.85rem;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: 0;
  text-transform: none;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.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;
}

.cta-panel {
  margin-bottom: 1rem;
  padding: 1.35rem;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(110, 184, 235, 0.18));
  border: 1px solid rgba(44, 69, 99, 0.2);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0.5rem 1.5rem rgba(44, 69, 99, 0.1);
}

.cta-panel h2 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--navy-deep);
}

.cta-panel p {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.85rem;
}

.site-footer {
  padding: 1.25rem clamp(1rem, 4vw, 1.5rem);
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer__copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.site-footer__attribution {
  color: var(--text-muted);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__attribution:hover,
.site-footer__attribution:focus-visible {
  color: var(--navy-deep);
}

.site-footer__attribution:focus-visible {
  outline: none;
  text-decoration: underline;
  border-radius: 4px;
}

.site-footer__legal {
  font-size: 0.6875rem;
  color: rgba(44, 69, 99, 0.55);
}

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

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

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

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

.pricing-card--featured {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(110, 184, 235, 0.16));
  border-color: rgba(58, 86, 120, 0.28);
  box-shadow:
    0 0.5rem 1.5rem rgba(44, 69, 99, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.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(2.25rem, 6vw, 2.75rem);
  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;
  line-height: 1.55;
  color: var(--text-muted);
}

.pricing-card__meter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 1.05rem;
}

.pricing-card__meter span {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  padding: 0.65rem 0.55rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pricing-card__meter strong {
  color: var(--navy-deep);
  font-size: 1rem;
  line-height: 1;
}

.pricing-card__meter small {
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
}

.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.05rem;
  color: #027a48;
  font-size: 0.75rem;
  font-weight: 700;
}

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

.pricing-side__title {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-deep);
}

.pricing-fee-cards {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.pricing-fee-card--highlight {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(58, 86, 120, 0.22);
}

.pricing-fee-card__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.8125rem;
  color: var(--navy-deep);
}

.pricing-fee-card__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.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-math {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
  .pricing-math {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.pricing-math h2 {
  margin-bottom: 0.35rem;
  color: var(--navy-deep);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

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

.pricing-math__formula {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.7rem 0.8rem;
  color: var(--text-muted);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  white-space: nowrap;
}

.pricing-math__formula span,
.pricing-math__formula strong {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0 0.55rem;
  border-radius: 999px;
}

.pricing-math__formula span {
  background: rgba(44, 69, 99, 0.06);
}

.pricing-math__formula strong {
  color: var(--white);
  background: var(--navy);
}




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