:root {
  --bs-primary: #234a74;
  --bs-primary-rgb: 35, 74, 116;
  --bs-link-color: #234a74;
  --bs-link-color-rgb: 35, 74, 116;
  --bs-link-hover-color: #16324f;
  --bs-link-hover-color-rgb: 22, 50, 79;
  --bs-focus-ring-color: rgba(35, 74, 116, 0.3);
}

.btn-primary {
  --bs-btn-bg: #234a74;
  --bs-btn-border-color: #234a74;
  --bs-btn-hover-bg: #1b3d63;
  --bs-btn-hover-border-color: #1b3d63;
  --bs-btn-active-bg: #16324f;
  --bs-btn-active-border-color: #16324f;
  --bs-btn-disabled-bg: #234a74;
  --bs-btn-disabled-border-color: #234a74;
  box-shadow: 0 0.5rem 1.25rem rgba(35, 74, 116, 0.22);
  transition: box-shadow 0.2s ease-out;
}
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 0.75rem 1.75rem rgba(35, 74, 116, 0.32);
}

.btn-outline-primary {
  --bs-btn-color: #234a74;
  --bs-btn-border-color: #234a74;
  --bs-btn-hover-bg: #234a74;
  --bs-btn-hover-border-color: #234a74;
  --bs-btn-active-bg: #1b3d63;
  --bs-btn-active-border-color: #1b3d63;
}

.bg-brand-subtle {
  background-color: #eef3f8;
}

html {
  scroll-padding-top: 5rem;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.card-hover {
  position: relative;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.card-hover::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #4d86bd, #234a74);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.card-hover .icon-tile {
  transition: transform 0.2s ease-out;
}
.card-hover:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 1.5rem rgba(22, 50, 79, 0.12) !important;
}
.card-hover:hover::before {
  opacity: 1;
}
.card-hover:hover .icon-tile {
  transform: scale(1.08);
}

.platform-upcoming {
  color: var(--bs-secondary-color);
  border: 1px dashed rgba(35, 74, 116, 0.35);
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #eef3f8 0%, #fff 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(circle, rgba(35, 74, 116, 0.14) 1px, transparent 1.6px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 74% 52%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 72% 68% at 74% 52%, #000 0%, transparent 72%);
}
.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-title-gradient {
  background: linear-gradient(100deg, #16324f 10%, #2c5b8c 60%, #4d86bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #234a74;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-kicker-tick {
  display: inline-block;
  width: 3px;
  height: 1.1rem;
  background: linear-gradient(180deg, #4d86bd, #16324f);
  border-radius: 999px;
}

@keyframes hero-glow-near {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(6%, -5%, 0) scale(1.14);
  }
  66% {
    transform: translate3d(-4%, 4%, 0) scale(1.06);
  }
}
@keyframes hero-glow-far {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1.08);
  }
  40% {
    transform: translate3d(-7%, 4%, 0) scale(1);
  }
  75% {
    transform: translate3d(4%, 6%, 0) scale(1.12);
  }
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 45%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 45%, transparent 92%);
}
.hero-backdrop::before, .hero-backdrop::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  will-change: transform;
}
.hero-backdrop::before {
  inset: -40% 45% 10% -25%;
  background: radial-gradient(circle at center, rgba(77, 134, 189, 0.3), rgba(77, 134, 189, 0) 70%);
  animation: hero-glow-near 31s ease-in-out infinite;
}
.hero-backdrop::after {
  inset: 0 -30% -35% 40%;
  background: radial-gradient(circle at center, rgba(35, 74, 116, 0.18), rgba(35, 74, 116, 0) 66%);
  animation: hero-glow-far 43s ease-in-out infinite;
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #234a74;
  background: linear-gradient(135deg, #eef3f8 0%, #dce8f2 100%);
  border-radius: 0.75rem;
}

@keyframes pane-mock-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
}
.pane-mock {
  max-width: 22rem;
  font-size: 0.8125rem;
  background-color: #fff;
  border: 1px solid rgba(35, 74, 116, 0.15);
  border-radius: 0.75rem;
  box-shadow: 0 1.5rem 3rem rgba(22, 50, 79, 0.18);
  animation: pane-mock-float 6s ease-in-out infinite;
}
.pane-mock dl {
  margin-bottom: 0;
}
.pane-mock dt {
  font-weight: 400;
  color: var(--bs-secondary-color);
}
.pane-mock dd {
  margin-bottom: 0;
}
.pane-mock .pane-mock-meta {
  font-size: 0.75rem;
}
.pane-mock .pane-mock-label {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
}

.pane-mock-header {
  color: #fff;
  background-color: #234a74;
  border-radius: 0.6875rem 0.6875rem 0 0;
}

.pane-mock-tab {
  color: rgba(255, 255, 255, 0.75);
}
.pane-mock-tab.pane-mock-tab-current {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.pane-mock-suggestion {
  background-color: #eef3f8;
  border: 1px solid rgba(35, 74, 116, 0.25);
  border-radius: 0.5rem;
}

.pane-mock-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background-color: #2c5b8c;
  border-radius: 50%;
}

.locale-menu {
  position: relative;
}
.locale-menu summary {
  cursor: pointer;
  list-style: none;
}
.locale-menu summary::-webkit-details-marker {
  display: none;
}
.locale-menu summary:hover {
  background-color: #eef3f8;
}
.locale-menu .locale-menu-chevron {
  transition: transform 0.2s ease-in-out;
}
.locale-menu[open] summary .locale-menu-chevron {
  transform: rotate(180deg);
}

.locale-menu-list {
  position: absolute;
  top: calc(100% + 0.375rem);
  right: 0;
  z-index: 1021;
  min-width: 12rem;
  max-height: min(24rem, 60vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.locale-menu-item {
  white-space: nowrap;
}
.locale-menu-item:hover {
  background-color: #eef3f8;
}

.locale-menu-code {
  min-width: 1.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}
.section-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3rem;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #4d86bd, #234a74);
  border-radius: 999px;
  transform: translateX(-50%);
}
.section-title.section-title-start::after {
  left: 0;
  transform: none;
}

.pricing-card {
  position: relative;
  box-shadow: 0 1rem 3rem rgba(22, 50, 79, 0.12) !important;
}
.pricing-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #4d86bd, #234a74, #16324f);
  border-radius: inherit;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1b3d63 0%, #234a74 55%, #2c5b8c 100%);
}
.cta-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, #000 0%, transparent 85%);
  mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, #000 0%, transparent 85%);
}
.cta-panel > .card-body {
  position: relative;
  z-index: 1;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .faq-chevron {
  transition: transform 0.2s ease-in-out;
}
.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg);
}

.platform-panels .platform-panel {
  display: none;
}
.platform-panels .platform-panel:target {
  display: block;
}
.platform-panels:not(:has(.platform-panel:target)) .platform-panel:first-child {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary .faq-chevron,
  .locale-menu .locale-menu-chevron,
  .card-hover,
  .card-hover::before,
  .card-hover .icon-tile,
  .btn-primary {
    transition: none;
  }
  .card-hover:hover {
    transform: none;
  }
  .card-hover:hover .icon-tile {
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-backdrop::before,
  .hero-backdrop::after,
  .pane-mock {
    animation: none;
  }
}
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
