@import url("https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
:root {
  color-scheme: light;
  --page-bg: rgba(255,255,255,1);
  --highlight: rgba(214, 222, 230, 1);
  --highlight-faded: rgba(214, 222, 230, 0.8);
  --page-bg-dark: rgba(18,20,22,1);
  --bg-dark: rgba(16,16,16,1);
  --text: rgba(19,25,33,1);
  --surface: #fafafa;
  --surface-muted: #787773;
  --surface-muted-light: #989793;
  --input-surface: var(--page-bg);
  --header-footer-links: #bababa;
  --links: #00738f;
  --text-muted: #44444f;
  --border: #d9d7cf;
  --accent: #232321;
  --success: #1c7c54;
  --warning: #bd8100;
  --danger: #b42318;
  --headers-font-family: "Sansation", system-ui, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --site-header-shadow-opacity: 0;
  --border-dark: rgba(200,200,200,0.24);
  --site-header-background: linear-gradient(
    180deg,
    rgba(20, 60, 90, 0.30) 0%,
    rgba(20, 60, 90, 0.0) 100%
  );
  --site-header-border: rgba(0, 0, 0, 0.7);
  --site-header-shadow: 0 10px 28px rgba(32, 28, 18, 0.38);
  --btn-link-border-radius: 3px;
  --max-width: 1120px;
  --header-bar-height: 72px;
  --home-splash-height: calc(100vh - 4.5rem);
  --home-splash-height-svh: calc(100svh - 4.5rem);
  --footer-min-height: 260px;
  --radius: 3px;
  --radius-sm: 2px;
  --shadow: 0 12px 30px rgba(32, 28, 18, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-bar-height) + 1rem);
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis {
  scroll-behavior: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--headers-font-family);
  background: var(--page-bg-dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 0.82rem;
}

html.has-mobile-menu-open,
body.has-mobile-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--links);
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  border-bottom: none;
  background: transparent;
  box-shadow: 0 18px 24px rgba(0, 0, 0, var(--site-header-shadow-opacity, 0));
  color: var(--surface);
  will-change: transform;
  transition: transform 240ms ease, box-shadow 180ms ease;
}
.site-header.is-hidden {
  transform: translateY(calc(-100% - 0.5rem));
  pointer-events: none;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(var(--page-bg-dark), var(--site-header-backdrop-opacity, 0.6));
  backdrop-filter: blur(var(--site-header-backdrop-blur, 0px)) saturate(var(--site-header-backdrop-saturate, 100%));
  -webkit-backdrop-filter: blur(var(--site-header-backdrop-blur, 0px)) saturate(var(--site-header-backdrop-saturate, 100%));
  pointer-events: none;
  transition: background-color 180ms ease, backdrop-filter 180ms ease, -webkit-backdrop-filter 180ms ease;
}
.site-header a {
  color: var(--header-footer-links);
}

.site-header__inner,
.site-main__inner,
.site-footer__inner,
.noscript-message {
  width: min(var(--max-width), 100% - 2rem);
  margin: 0 auto;
}

.site-header__bar {
  min-height: var(--header-bar-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.site-header__primary {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-width: 0;
  flex: 1 1 auto;
}

.brand-text {
  font-family: var(--headers-font-family);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  color: var(--highlight);
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.98);
}

.brand-logo {
  max-width: 28px;
  position: relative;
  top: 4px;
  float: left;
  margin-right: -10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.brand--footer {
  margin-bottom: 0;
  display: inline-block;
}
.brand--footer .brand-text {
  color: var(--highlight);
  font-size: 0.9rem;
}

.brand__mark {
  width: 12rem;
  height: 4rem;
}

.brand__name {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.site-header__links {
  display: none;
  align-items: center;
  gap: 0.35rem;
}
@media (min-width: 780px) {
  .site-header__links {
    display: flex;
    margin: 0 auto;
  }
}

.site-header__links--secondary {
  margin-left: auto;
  justify-content: flex-end;
  gap: 0.55rem;
}

.site-header__menu-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  padding: 0.55rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--highlight);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
@media (min-width: 780px) {
  .site-header__menu-button {
    display: none;
  }
}
.site-header__menu-button:hover, .site-header__menu-button.is-open {
  border-color: rgba(132, 220, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 30px rgba(4, 12, 24, 0.22), 0 0 22px rgba(132, 220, 255, 0.12);
}
.site-header__menu-button:hover {
  transform: translateY(-1px);
}
.site-header__menu-button:focus-visible {
  outline: 2px solid rgba(132, 220, 255, 0.28);
  outline-offset: 3px;
  border-color: rgba(132, 220, 255, 0.3);
}

.site-header__menu-button-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header__menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1rem;
  height: 0.8rem;
}

.site-header__menu-line {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__menu-button.is-open .site-header__menu-line:nth-child(1) {
  transform: translateY(0.32rem) rotate(45deg);
}
.site-header__menu-button.is-open .site-header__menu-line:nth-child(2) {
  opacity: 0;
}
.site-header__menu-button.is-open .site-header__menu-line:nth-child(3) {
  transform: translateY(-0.32rem) rotate(-45deg);
}

.site-header__secondary-separator {
  width: 1px;
  height: 1.5rem;
  margin: 0 0.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 0.9;
}

.site-header__secondary-label {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 0.25rem 0.625rem 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 10px;
  opacity: 0.6;
}

.nav-link,
.nav-panel__link,
.footer-list a {
  color: var(--links);
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.footer-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}
.footer-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(132, 220, 255, 0.95), rgba(72, 150, 214, 0.9));
  box-shadow: 0 0 16px rgba(132, 220, 255, 0.34);
}

.footer-list > li > a {
  display: block;
}

.nav-link {
  padding: 0.625rem 0.875rem;
  border-radius: var(--btn-link-border-radius);
  border-bottom: solid transparent 2px;
}
.nav-link:hover, .nav-link.is-active {
  color: var(--highlight);
  border-bottom: solid #fff 2px;
}

.account-menu {
  position: relative;
}

.account-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.3rem 0.55rem 0.3rem 0.32rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--surface);
  box-shadow: none;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.account-menu__trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(132, 220, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 30px rgba(4, 12, 24, 0.22), 0 0 22px rgba(132, 220, 255, 0.12);
}
.account-menu__trigger:focus-visible {
  outline: 2px solid rgba(132, 220, 255, 0.26);
  outline-offset: 3px;
  border-color: rgba(132, 220, 255, 0.32);
}

.account-menu.is-open .account-menu__trigger {
  border-color: rgba(132, 220, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 30px rgba(4, 12, 24, 0.22), 0 0 24px rgba(132, 220, 255, 0.14);
}

.account-menu__avatar-image,
.account-menu__avatar-fallback {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.account-menu__avatar-image {
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.account-menu__avatar-fallback {
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(132, 220, 255, 0.36), rgba(132, 220, 255, 0.14));
  color: var(--surface);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.account-menu__chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.72;
  transition: transform 180ms ease;
}

.account-menu.is-open .account-menu__chevron {
  transform: translateY(1px) rotate(225deg);
}

.account-menu__dropdown {
  position: absolute;
  top: calc(100% - 0.1rem);
  right: 0;
  z-index: 5;
  min-width: 12rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(var(--bg-dark), 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 48px rgba(4, 12, 24, 0.36);
  backdrop-filter: blur(16px) saturate(100%);
  -webkit-backdrop-filter: blur(16px) saturate(100%);
}

.account-menu__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.4rem 0.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--surface);
  text-align: left;
  transition: color 160ms ease, background-color 160ms ease;
}
.account-menu__item:hover, .account-menu__item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--highlight);
}
.account-menu__item:focus-visible {
  outline: none;
}

.account-menu__item--button {
  cursor: pointer;
  font: inherit;
}

.account-menu__item--button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.account-menu__separator {
  height: 1px;
  margin: 1px 0;
  background: rgba(255, 255, 255, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1rem;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--btn-link-border-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  color: var(--highlight);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 32px rgba(4, 12, 24, 0.22), 0 0 24px rgba(132, 220, 255, 0.12);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: opacity 160ms ease, transform 180ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 180ms ease;
}
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(132, 220, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 20px 38px rgba(4, 12, 24, 0.26), 0 0 28px rgba(132, 220, 255, 0.2);
}
.button:focus-visible {
  outline: 2px solid rgba(132, 220, 255, 0.26);
  outline-offset: 2px;
  border-color: rgba(132, 220, 255, 0.34);
}
.button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 24px rgba(4, 12, 24, 0.14);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  color: var(--surface);
}

.home-splash__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--btn-link-border-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  color: var(--highlight);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 20px 40px rgba(4, 12, 24, 0.24), 0 0 28px rgba(132, 220, 255, 0.16);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.home-splash__cta:hover {
  transform: translateY(-1px);
  border-color: rgba(132, 220, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 22px 42px rgba(4, 12, 24, 0.28), 0 0 34px rgba(132, 220, 255, 0.22);
}
.home-splash__cta:focus-visible {
  outline: 2px solid rgba(132, 220, 255, 0.28);
  outline-offset: 3px;
}

.site-header__panel {
  position: fixed;
  top: var(--header-bar-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: calc(100vh - var(--header-bar-height));
  height: calc(100dvh - var(--header-bar-height));
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms step-end, border-color 180ms ease;
  background: linear-gradient(180deg, rgba(18, 20, 22, 0.92), rgba(14, 17, 20, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  overscroll-behavior: contain;
}
@media (min-width: 780px) {
  .site-header__panel {
    display: none;
  }
}

.site-header.is-expanded .site-header__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  border-top: 1px solid var(--border-dark);
}

.site-header__panel-inner {
  width: 100%;
  min-height: 100%;
  padding: 1rem max(1rem, env(safe-area-inset-right)) calc(1.25rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-content: start;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.site-header__panel .nav-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.site-header__panel .section-label {
  color: rgba(255, 255, 255, 0.58);
}
.site-header__panel .nav-panel__link,
.site-header__panel .nav-panel__button {
  color: var(--header-footer-links);
}
.site-header__panel .nav-panel__link:hover,
.site-header__panel .nav-panel__link.is-active,
.site-header__panel .nav-panel__button:hover,
.site-header__panel .nav-panel__button:focus-visible {
  color: var(--highlight);
}
.site-header__panel .nav-panel__account-name {
  color: var(--highlight);
}
.site-header__panel .supporting-copy {
  color: rgba(214, 222, 230, 0.72);
}

.nav-panel,
.surface-card,
.footer-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--accent);
  box-shadow: var(--shadow);
}

.footer-panel {
  background: var(--text);
  background: transparent;
  color: var(--highlight);
  border: 0;
}

.surface-card {
  background: var(--surface);
  border: 0;
  box-shadow: none;
}
.surface-card.surface-card-main {
  background: var(--page-bg);
}

.nav-panel {
  padding: 1.25rem;
  background: var(--highlight);
  border: 1px solid var(--border-dark);
  box-shadow: none;
}

.nav-panel__list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.nav-panel__link,
.footer-list a {
  display: inline-flex;
  padding: 0.125rem 0;
}
.nav-panel__link:hover, .nav-panel__link.is-active,
.footer-list a:hover,
.footer-list a.is-active {
  color: var(--surface);
}

.nav-panel__button {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 0.125rem 0;
  border: 0;
  background: transparent;
  color: var(--links);
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease;
}
.nav-panel__button:hover, .nav-panel__button:focus-visible {
  color: var(--surface);
}
.nav-panel__button:focus-visible {
  outline: none;
}
.nav-panel__button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.nav-panel__account-summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
}

.nav-panel__account-summary-copy {
  display: grid;
  gap: 0.1rem;
}

.nav-panel__account-name {
  margin: 0;
  color: var(--surface);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-main {
  flex: 1;
  padding: 0 0 0;
}

.page {
  display: grid;
  gap: 1.5rem;
}

.page--home,
.page--document {
  position: relative;
  isolation: isolate;
  --site-header-overlay-opacity: 0;
  --site-header-overlay-offset: 0px;
}
.page--home::before,
.page--document::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 100vw;
  height: var(--header-bar-height);
  transform: translate(-50%, var(--site-header-overlay-offset));
  background-color: rgb(17, 19, 21, var(--site-header-overlay-opacity));
  pointer-events: none;
  transition: transform 240ms ease, background-color 180ms ease;
}

.page--home {
  gap: 0;
  top: 0;
  --home-splash-background:
    linear-gradient(
      90deg,
      rgba(17, 19, 47, 0.88) 0%,
      rgba(17, 19, 47, 0.58) 46%,
      rgba(17, 19, 47, 0.2) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0)
    ),
    url("assets/ai015.png") center center / cover no-repeat,
    var(--page-bg-dark);
}
.page--home .page-section--splash {
  position: relative;
  z-index: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: calc(-1 * var(--header-bar-height));
  min-height: var(--home-splash-height);
  min-height: var(--home-splash-height-svh);
}
.page--home .page-section--splash .home-splash__copy {
  font-size: 1rem;
  line-height: 1.9rem;
  color: var(--highlight-faded);
}

.page--document {
  position: relative;
  isolation: isolate;
  gap: 0;
  background: var(--page-bg-dark);
}

.home-page__content {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(0rem, 4vw, 0rem) 0 clamp(0rem, 5vw, 0rem);
  background: var(--page-bg);
  box-shadow: 0 -20px 40px rgba(17, 17, 17, 0.12);
}
.home-page__content > .page-section {
  width: min(var(--max-width), 100% - 2rem);
  margin: 0 auto;
}
.home-page__content form .button,
.home-page__content form .button--ghost {
  border-color: rgba(18, 34, 50, 0.42);
  background: linear-gradient(180deg, rgba(28, 40, 56, 0.88), rgba(10, 18, 28, 0.78));
  color: #f4fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 32px rgba(4, 12, 24, 0.18), 0 0 24px rgba(86, 172, 214, 0.12);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.42);
}
.home-page__content form .button:hover,
.home-page__content form .button--ghost:hover {
  border-color: rgba(72, 150, 214, 0.4);
  background: linear-gradient(180deg, rgba(34, 48, 66, 0.92), rgba(12, 21, 32, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 38px rgba(4, 12, 24, 0.22), 0 0 28px rgba(86, 172, 214, 0.18);
}
.home-page__content form .button:focus-visible,
.home-page__content form .button--ghost:focus-visible {
  outline-color: rgba(86, 172, 214, 0.28);
  border-color: rgba(86, 172, 214, 0.46);
}
.home-page__content form .button:disabled,
.home-page__content form .button--ghost:disabled {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 24px rgba(4, 12, 24, 0.14);
}

.home-page__content-dark {
  position: relative;
  inset: 0;
  z-index: -1;
  background: transparent;
  opacity: 1;
}
.home-page__content-dark .section-label {
  color: var(--highlight);
}
.home-page__content-dark .surface-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  min-height: 400px;
}
.home-page__content-dark .surface-card.surface-card-main {
  background: transparent;
  color: #eeeeee;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 0 clamp(2rem, 4vw, 3rem);
}
.home-page__content-dark .home-page__bosscard {
  display: grid;
  gap: 0.9rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  color: rgb(125, 125, 125);
  margin-bottom: 80px;
  margin-top: 40px;
}
.home-page__content-dark .home-page__bosscard > .page-subtitle {
  margin: 0;
  color: #eeeeee;
}
.home-page__content-dark .home-page__bosscard > p {
  margin: 0;
  color: rgba(220, 228, 236, 0.82);
}
.home-page__content-dark .content-template__panel:last-child,
.home-page__content-dark .surface-card {
  background: transparent;
  color: #eeeeee;
}
.home-page__content-dark .grid.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
  margin-bottom: 30px;
}
@media (max-width: 920px) {
  .home-page__content-dark .grid.cards {
    grid-template-columns: 1fr;
  }
}
.home-page__content-dark .grid.cards > .card {
  position: relative;
  display: grid;
  gap: 0.95rem;
  min-height: 100%;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 0, 0, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.home-page__content-dark .grid.cards > .card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  border-radius: inherit;
  background: radial-gradient(circle at 14% 16%, rgba(132, 220, 255, 0.01) 0%, rgba(132, 220, 255, 0) 34%), radial-gradient(circle at 88% 100%, rgba(132, 220, 255, 0) 0%, rgba(132, 220, 255, 0) 40%), radial-gradient(circle at 14% 16%, rgba(27, 83, 105, 0.31) 0%, rgba(0, 102, 255, 0.05) 34%), radial-gradient(circle at 88% 100%, rgba(131, 175, 255, 0.2) 0%, rgba(132, 220, 255, 0) 40%);
  pointer-events: none;
}
.home-page__content-dark .grid.cards > .card::after {
  content: "";
  position: absolute;
  inset: auto -14% -28% 34%;
  z-index: -1;
  height: 48%;
  background: radial-gradient(ellipse, rgba(132, 220, 255, 0.24) 0%, rgba(132, 220, 255, 0) 70%);
  filter: blur(24px);
  opacity: 0.88;
  pointer-events: none;
}
.home-page__content-dark .grid.cards > .card:hover {
  transform: translateY(-2px);
  border-color: rgba(132, 220, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 44px rgba(0, 0, 0, 0.22);
}
.home-page__content-dark .grid.cards > .card > h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--highlight);
  font-family: var(--headers-font-family);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
  line-height: 32px;
}
.home-page__content-dark .grid.cards > .card > h3 > img {
  display: inline-block;
  float: left;
  margin-right: 5px;
  margin-left: -10px;
  filter: brightness(0) saturate(100%) invert(94%) sepia(6%) saturate(357%) hue-rotate(168deg) brightness(101%) contrast(96%);
}
.home-page__content-dark .grid.cards > .card > p {
  margin: 0;
  color: rgba(214, 222, 230, 0.8);
}
.home-page__content-dark .grid.cards > .card > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: rgba(236, 241, 245, 0.92);
}
.home-page__content-dark .grid.cards > .card > ul > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}
.home-page__content-dark .grid.cards > .card > ul > li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(132, 220, 255, 0.95), rgba(72, 150, 214, 0.9));
  box-shadow: 0 0 16px rgba(132, 220, 255, 0.34);
}

.home-page__splash-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 20, 22, 0.1) 0%, rgba(18, 20, 22, 0.99) 90%, rgb(18, 20, 22) 100%);
}

.logo-marquee {
  width: 70%;
  margin: 0 auto;
  padding: 0 0 clamp(1rem, 2vw, 1.6rem);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, transparent 100%);
}
.logo-marquee > p {
  text-align: center;
  font-size: 1.2em;
  color: var(--highlight);
  opacity: 0.6;
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  gap: 1.2rem;
  animation: logo-marquee-scroll 34s linear infinite;
}

.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.logo-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: max-content;
  padding: 0.75rem 1.15rem;
  border-radius: 0;
  background: transparent;
  backdrop-filter: blur(12px);
  color: var(--highlight-faded);
}

.logo-marquee__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.34), transparent 54%), linear-gradient(135deg, rgba(132, 220, 255, 0.92), rgba(37, 98, 176, 0.92));
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.logo-marquee__name {
  font-family: var(--headers-font-family);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes logo-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 0.6rem), 0, 0);
  }
}
.page-section {
  scroll-margin-top: calc(var(--header-bar-height) + 1rem);
}
.page-section .supporting-copy {
  color: #444;
}

.surface-card,
.footer-panel {
  padding: clamp(0.5rem, 2vw, 0.5rem);
}
.surface-card:first-child,
.footer-panel:first-child {
  padding: clamp(0.5rem, 2vw, 0.5rem);
}

.surface-card:empty {
  background: transparent;
}

.content-template {
  display: grid;
  gap: 1.5rem;
}

.content-template--single {
  grid-template-columns: 1fr;
}

.content-template--split-left-primary {
  grid-template-columns: minmax(0, 3.35fr) minmax(0, 2.35fr);
}
@media (max-width: 960px) {
  .content-template--split-left-primary {
    grid-template-columns: 1fr;
  }
}

.content-template--split-right-primary {
  grid-template-columns: minmax(0, 1fr) minmax(0, 5fr);
}
@media (max-width: 960px) {
  .content-template--split-right-primary {
    grid-template-columns: 1fr;
  }
}

.content-template__panel {
  min-width: 0;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.page-placeholder {
  display: grid;
  gap: 1rem;
}

.home-splash {
  position: relative;
  min-height: var(--home-splash-height);
  min-height: var(--home-splash-height-svh);
  display: flex;
  align-items: center;
  padding-block: clamp(1.5rem, 4vw, 3rem);
  padding-inline: max(1rem, (100vw - var(--max-width)) / 2 + 1rem);
  border-bottom: 0 solid var(--border-dark);
  overflow: hidden;
  background: var(--home-splash-background);
  box-shadow: var(--shadow);
  color: var(--surface);
}
.home-splash .hero-metrics .metric {
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.98);
}

.home-splash__lava {
  position: absolute;
  inset: -12% -12%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.94;
}
.home-splash__lava::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 6%, rgba(112, 196, 230, 0.08) 0%, rgba(112, 196, 230, 0) 34%), linear-gradient(180deg, rgba(3, 8, 15, 0.68) 0%, rgba(5, 16, 28, 0.46) 36%, rgba(12, 34, 52, 0.28) 72%, rgba(28, 92, 128, 0.14) 100%);
  opacity: 0.86;
}
.home-splash__lava::after {
  content: "";
  position: absolute;
  inset: -18% 0;
  background: radial-gradient(ellipse at 52% 12%, rgba(88, 168, 204, 0.18) 0%, rgba(88, 168, 204, 0) 40%), linear-gradient(180deg, rgba(10, 26, 42, 0.1) 0%, rgba(38, 102, 142, 0.22) 55%, rgba(146, 224, 255, 0.14) 100%);
  filter: blur(30px);
  animation: home-splash-lava-curtain 24s ease-in-out infinite alternate;
}
@media (max-width: 920px) {
  .home-splash__lava {
    inset: -18% -22%;
    opacity: 0.8;
  }
}

.home-splash__lava-blob {
  --lava-duration: 24s;
  --lava-delay: 0s;
  --lava-left: 50%;
  --lava-start-x: 0vw;
  --lava-end-x: 0vw;
  --lava-scale-start: 0.84;
  --lava-scale-mid: 1;
  --lava-scale-end: 1.16;
  position: absolute;
  top: -42%;
  left: var(--lava-left);
  width: clamp(15rem, 20vw, 24rem);
  height: clamp(20rem, 34vw, 34rem);
  border-radius: 44% 56% 52% 48%/38% 42% 58% 62%;
  background: radial-gradient(ellipse at 46% 28%, rgba(128, 220, 255, 0.52) 0%, rgba(74, 160, 206, 0.34) 20%, rgba(18, 54, 84, 0.76) 56%, rgba(4, 10, 18, 0.96) 100%), radial-gradient(ellipse at 62% 72%, rgba(84, 182, 226, 0.28) 0%, rgba(17, 52, 84, 0.52) 46%, rgba(4, 10, 18, 0) 100%);
  filter: blur(clamp(28px, 3.5vw, 46px)) brightness(0.42) saturate(0.9);
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform, opacity, filter;
  animation: home-splash-lava-fall var(--lava-duration) ease-in-out infinite;
  animation-delay: var(--lava-delay);
}

.home-splash__lava-blob--one {
  --lava-left: 10%;
  --lava-duration: 10s;
  --lava-delay: -14s;
  --lava-start-x: -3vw;
  --lava-end-x: 4vw;
  --lava-scale-start: 0.8;
  --lava-scale-end: 1.12;
}

.home-splash__lava-blob--two {
  --lava-left: 34%;
  --lava-duration: 12s;
  --lava-delay: -6s;
  --lava-start-x: 2vw;
  --lava-end-x: -2vw;
  width: clamp(17rem, 24vw, 28rem);
  height: clamp(22rem, 38vw, 38rem);
}

.home-splash__lava-blob--three {
  --lava-left: 58%;
  --lava-duration: 14s;
  --lava-delay: -19s;
  --lava-start-x: -2vw;
  --lava-end-x: 2vw;
  --lava-scale-start: 0.88;
  --lava-scale-end: 1.2;
  width: clamp(14rem, 18vw, 21rem);
}

.home-splash__lava-blob--four {
  --lava-left: 78%;
  --lava-duration: 20s;
  --lava-delay: -11s;
  --lava-start-x: 3vw;
  --lava-end-x: -4vw;
  width: clamp(16rem, 22vw, 26rem);
  height: clamp(18rem, 32vw, 32rem);
}

@keyframes home-splash-lava-curtain {
  0% {
    transform: translate3d(0, -4%, 0);
    opacity: 0.72;
    filter: blur(26px) brightness(0.72);
  }
  100% {
    transform: translate3d(0, 6%, 0);
    opacity: 0.96;
    filter: blur(34px) brightness(1.18);
  }
}
@keyframes home-splash-lava-fall {
  0% {
    transform: translate3d(var(--lava-start-x), -8%, 0) scale(var(--lava-scale-start));
    opacity: 0;
    filter: blur(clamp(28px, 3.5vw, 46px)) brightness(0.32) saturate(0.88);
  }
  18% {
    opacity: 0.1;
    filter: blur(clamp(28px, 3.5vw, 46px)) brightness(0.54) saturate(0.94);
  }
  46% {
    transform: translate3d(calc(var(--lava-start-x) * 0.45), 52vh, 0) scale(var(--lava-scale-mid));
    opacity: 0.46;
    filter: blur(clamp(28px, 3.5vw, 46px)) brightness(0.92) saturate(1.02);
  }
  78% {
    opacity: 0.52;
    filter: blur(clamp(28px, 3.5vw, 46px)) brightness(1.26) saturate(1.08);
  }
  100% {
    transform: translate3d(var(--lava-end-x), 128vh, 0) scale(var(--lava-scale-end));
    opacity: 0;
    filter: blur(clamp(28px, 3.5vw, 46px)) brightness(1.5) saturate(1.16);
  }
}
.home-splash__smoke {
  position: absolute;
  inset: -8% -18%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.98;
}
.home-splash__smoke::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 34%), linear-gradient(270deg, rgba(10, 100, 200, 0.16) 0%, rgba(10, 100, 200, 0.1) 20%, rgba(10, 100, 200, 0.04) 42%, rgba(10, 100, 200, 0) 72%);
  filter: blur(36px);
  transform: translate3d(8vw, 0, 0);
  animation: home-splash-smoke-sheet 25s linear infinite alternate;
}
@media (max-width: 920px) {
  .home-splash__smoke {
    inset: -10% -28%;
    opacity: 0.72;
  }
}

.home-splash__smoke-plume {
  --smoke-opacity: 0.34;
  --smoke-duration: 32s;
  --smoke-delay: 0s;
  --smoke-y-start: 0px;
  --smoke-y-end: 0px;
  --smoke-scale-start: 0.94;
  --smoke-scale-end: 1.1;
  position: absolute;
  right: -24vw;
  width: clamp(20rem, 32vw, 38rem);
  height: clamp(9rem, 14vw, 16rem);
  border-radius: 999px;
  background: radial-gradient(ellipse at 24% 48%, rgba(0, 180, 255, 0.34) 0%, rgba(0, 180, 255, 0.9) 18%, rgba(0, 180, 255, 0.5) 40%, rgba(0, 180, 255, 0.4) 68%), radial-gradient(ellipse at 24% 48%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.9) 18%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0.4) 68%), radial-gradient(ellipse at 66% 34%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0) 66%), radial-gradient(ellipse at 58% 72%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 34%, rgba(255, 255, 255, 0) 64%);
  filter: blur(clamp(26px, 4vw, 50px));
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  animation: home-splash-smoke-drift var(--smoke-duration) linear infinite;
  animation-delay: var(--smoke-delay);
}

.home-splash__smoke-plume--one {
  top: 10%;
  --smoke-opacity: 0.20;
  --smoke-duration: 12s;
  --smoke-delay: -8s;
  --smoke-y-start: -12px;
  --smoke-y-end: 10px;
}

.home-splash__smoke-plume--two {
  top: 28%;
  width: clamp(24rem, 40vw, 46rem);
  height: clamp(10rem, 16vw, 18rem);
  --smoke-opacity: 0.38;
  --smoke-duration: 42s;
  --smoke-delay: -22s;
  --smoke-y-start: 14px;
  --smoke-y-end: -18px;
}

.home-splash__smoke-plume--three {
  top: 52%;
  width: clamp(22rem, 34vw, 40rem);
  --smoke-opacity: 0.3;
  --smoke-duration: 34s;
  --smoke-delay: -15s;
  --smoke-y-start: -8px;
  --smoke-y-end: 16px;
}

.home-splash__smoke-plume--four {
  top: 70%;
  width: clamp(18rem, 28vw, 32rem);
  height: clamp(8rem, 12vw, 13rem);
  --smoke-opacity: 0.22;
  --smoke-duration: 28s;
  --smoke-delay: -4s;
  --smoke-y-start: 10px;
  --smoke-y-end: -10px;
}

@keyframes home-splash-smoke-sheet {
  0% {
    transform: translate3d(10vw, -1.5%, 0);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(-130vw, 1.5%, 0);
    opacity: 0;
  }
}
@keyframes home-splash-smoke-drift {
  0% {
    transform: translate3d(18vw, var(--smoke-y-start), 0) scale(var(--smoke-scale-start));
    opacity: 0;
  }
  14% {
    opacity: var(--smoke-opacity);
  }
  68% {
    opacity: var(--smoke-opacity);
  }
  100% {
    transform: translate3d(-118vw, var(--smoke-y-end), 0) scale(var(--smoke-scale-end));
    opacity: 0;
  }
}
.home-splash__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
}
.home-splash__layout.single-column {
  display: flex;
  padding-top: 80px;
  grid-template-columns: 1fr;
}
.home-splash__layout.single-column .home-splash__content {
  justify-content: center;
}
.home-splash__layout {
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 920px) {
  .home-splash__layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track {
    animation: none;
  }
  .home-splash__lava::after,
  .home-splash__lava-blob,
  .home-splash__smoke::before,
  .home-splash__smoke-plume {
    animation: none;
  }
  .home-splash__lava::after {
    transform: translate3d(0, 0, 0);
    opacity: 0.58;
  }
  .home-splash__lava-blob {
    opacity: 0.22;
    filter: blur(clamp(28px, 3.5vw, 46px)) brightness(1) saturate(1);
  }
  .home-splash__smoke::before {
    transform: translate3d(0, 0, 0);
  }
  .home-splash__smoke-plume {
    opacity: calc(var(--smoke-opacity) * 0.72);
    transform: translate3d(-12vw, 0, 0);
  }
}
.home-splash__content {
  width: min(68rem, 100%);
  display: grid;
  gap: 0.9rem;
  text-align: center;
}

.home-splash__aside {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 920px) {
  .home-splash__aside {
    justify-content: flex-start;
  }
}

.home-splash__placeholder {
  width: min(100%, 28rem);
  display: grid;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(8px);
}

.home-splash__placeholder-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.98);
}

.home-splash__placeholder-body {
  min-height: clamp(10rem, 20vw, 15rem);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.home-splash__eyebrow {
  margin: 0;
  width: fit-content;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--btn-link-border-radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-splash__title {
  margin: 0;
  font-family: var(--headers-font-family);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.32;
  max-width: 30ch;
  text-shadow: 0px 0px 24px rgba(0, 0, 0, 0.98);
}
.home-splash__title > strong {
  font-weight: 700;
}

.home-splash__copy {
  margin: 0;
  max-width: 40rem;
  color: rgb(185, 185, 185);
  text-align: center;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.home-page__content-dark .section-heading .section-label {
  color: rgba(255, 255, 255, 0.72);
}
.home-page__content-dark .section-heading .page-title,
.home-page__content-dark .section-heading .section-title {
  color: var(--surface);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.98);
}
.home-page__content-dark .section-heading .supporting-copy {
  color: rgb(185, 185, 185);
}

.section-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-title,
.section-title {
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
}

.page-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-family: var(--headers-font-family);
}

.page-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--headers-font-family);
}

.section-title {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-family: var(--headers-font-family);
}

.supporting-copy,
.document-block__copy,
.document-list,
.footer-meta {
  margin: 0;
  color: var(--surface-muted);
}

.document-updated {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.page-section--document-hero,
.document-page__content {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.page-section--document-hero {
  margin-top: calc(-1 * var(--header-bar-height));
}

.document-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-bar-height) + clamp(3rem, 7vw, 5rem)) max(1rem, (100vw - var(--max-width)) / 2 + 1rem) clamp(4rem, 8vw, 6rem);
  background: radial-gradient(circle at 18% 24%, rgba(92, 188, 224, 0.2), transparent 28%), radial-gradient(circle at 82% 16%, rgba(58, 98, 188, 0.22), transparent 24%), linear-gradient(135deg, rgba(15, 21, 32, 0.98) 0%, rgba(19, 30, 46, 0.94) 48%, rgba(11, 18, 28, 0.98) 100%);
  color: var(--highlight);
}
.document-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -20% 45%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(132, 220, 255, 0.2) 0%, rgba(132, 220, 255, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.document-hero__inner {
  position: relative;
  z-index: 1;
  width: min(54rem, 100%);
  display: grid;
  gap: 1rem;
}

.document-hero__label {
  color: rgba(207, 230, 242, 0.76);
}

.document-hero__title {
  max-width: 16ch;
  color: var(--highlight);
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.32);
}

.document-hero__intro {
  margin: 0;
  max-width: 44rem;
  font-size: clamp(0.84rem, 2vw, 0.96rem);
  line-height: 1.85;
  color: rgba(220, 228, 236, 0.84);
}

.document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.document-meta__item {
  margin: 0;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(232, 240, 245, 0.86);
  backdrop-filter: blur(12px) saturate(145%);
  -webkit-backdrop-filter: blur(12px) saturate(145%);
}
.document-meta__item strong {
  color: var(--highlight);
  font-weight: 600;
}

.document-page__content {
  position: relative;
  z-index: 1;
  margin-top: -2.5rem;
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--highlight);
  box-shadow: 0 -20px 40px rgba(17, 17, 17, 0.12);
}

.page-section--document-body {
  width: min(var(--max-width), 100% - 2rem);
  margin: 0 auto;
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
  background: var(--highlight);
}

.document-layout {
  display: grid;
  grid-template-columns: minmax(14.5rem, 18rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 980px) {
  .document-layout {
    grid-template-columns: 1fr;
  }
}

.document-rail {
  min-width: 0;
  position: sticky;
  top: 2rem;
  align-self: start;
}
@media (max-width: 980px) {
  .document-rail {
    position: static;
    top: auto;
  }
}

.document-rail__panel {
  display: grid;
  gap: 1rem;
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem;
  border: 1px solid rgba(124, 154, 184, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 252, 0.66));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 18px 36px rgba(20, 42, 66, 0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
@media (max-width: 980px) {
  .document-rail__panel {
    max-height: none;
    overflow: visible;
  }
}

.document-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.document-nav a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.7rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: background-color 160ms ease, color 160ms ease, transform 180ms ease;
}
.document-nav a:hover, .document-nav a:focus-visible {
  background: rgba(132, 220, 255, 0.08);
  color: var(--text);
  transform: translateX(2px);
}

.document-nav__number {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(46, 98, 146, 0.78);
}

.document-nav__title {
  line-height: 1.4;
}

.document-article {
  width: min(100%, 52rem);
  min-width: 0;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.document-section {
  display: grid;
  gap: 1.4rem;
  scroll-margin-top: calc(var(--header-bar-height) + 1.25rem);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(124, 154, 184, 0.18);
}
.document-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.document-section__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
@media (max-width: 640px) {
  .document-section__header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.document-section__index {
  margin: 0;
  width: fit-content;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(124, 154, 184, 0.22);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 249, 255, 0.6));
  color: rgba(46, 98, 146, 0.8);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 20px rgba(20, 42, 66, 0.04);
}

.document-section__heading {
  min-width: 0;
  display: grid;
  gap: 0.55rem;
}
.document-section__heading .section-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.document-section__description {
  margin: 0;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.placeholder-surface {
  min-height: 240px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgb(248, 240, 240), rgb(255, 255, 255)), var(--surface-muted);
  border: 0;
}

.surface-card--form {
  background: var(--surface);
}

.surface-card--embedded {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 760px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field--full {
  grid-column: 1/-1;
}

.field__label {
  font-weight: 500;
}

.field input:not([type=checkbox]),
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.675rem 0.8rem;
  border: 1px solid rgba(124, 154, 184, 0.24);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 249, 255, 0.5));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 30px rgba(20, 42, 66, 0.08), 0 0 20px rgba(132, 220, 255, 0.06);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.field input:not([type=checkbox])::placeholder,
.field select::placeholder,
.field textarea::placeholder {
  color: rgba(84, 98, 116, 0.72);
}
.field input:not([type=checkbox]):focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(132, 220, 255, 0.2);
  outline-offset: 2px;
  border-color: rgba(94, 170, 220, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 16px 34px rgba(20, 42, 66, 0.12), 0 0 24px rgba(132, 220, 255, 0.14);
}
.field input:not([type=checkbox]):hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(124, 154, 184, 0.34);
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field select option {
  color: var(--text);
  background: rgba(244, 248, 252, 0.98);
}

.field__error {
  min-height: 1rem;
  font-size: 0.9rem;
  color: var(--danger);
}

.checkbox-stack {
  display: grid;
  gap: 0.5rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 3rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(124, 154, 184, 0.22);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(243, 249, 255, 0.44));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 10px 24px rgba(20, 42, 66, 0.06), 0 0 18px rgba(132, 220, 255, 0.05);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.checkbox-row:focus-within {
  border-color: rgba(94, 170, 220, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 0 0 2px rgba(132, 220, 255, 0.1), 0 14px 28px rgba(20, 42, 66, 0.1);
}

.checkbox-row input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  min-height: 1rem;
  padding: 0;
  margin-top: 0;
  border: 1px solid rgba(94, 124, 154, 0.44);
  border-radius: 0.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(235, 243, 252, 0.72));
  display: grid;
  place-items: center;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.checkbox-row input::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  transform: scale(0);
  transition: transform 140ms ease;
  box-shadow: inset 1rem 1rem #fff;
  clip-path: polygon(14% 44%, 0 59%, 42% 100%, 100% 18%, 84% 4%, 39% 62%);
}
.checkbox-row input:checked {
  border-color: rgba(72, 150, 214, 0.92);
  background: linear-gradient(180deg, rgba(132, 220, 255, 0.95), rgba(72, 150, 214, 0.92));
  box-shadow: 0 0 16px rgba(132, 220, 255, 0.22);
}
.checkbox-row input:checked::before {
  transform: scale(1);
}
.checkbox-row input:focus-visible {
  outline: 2px solid rgba(132, 220, 255, 0.2);
  outline-offset: 2px;
}

.checkbox-row span {
  display: inline-grid;
  align-items: center;
  color: var(--text-muted);
  line-height: 1.3;
  grid-auto-flow: column;
  gap: 0.3rem;
}

.checkbox-row a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.form-actions {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.form-note {
  margin: 0;
  max-width: 30rem;
  color: var(--surface-muted);
}

.tripsopsio-status {
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--page-bg);
  color: var(--text-muted);
  transform-origin: top center;
  will-change: opacity, transform;
}

.tripsopsio-confirmation {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(28, 124, 84, 0.14);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(233, 249, 241, 0.92), rgba(245, 252, 247, 0.98));
}

.tripsopsio-confirmation__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  line-height: 1.2;
}

.tripsopsio-status--success {
  border-color: rgba(28, 124, 84, 0.24);
  color: var(--success);
}

.tripsopsio-status--warning {
  border-color: var(--warning);
  color: var(--warning);
}

.tripsopsio-status--error {
  border-color: rgba(180, 35, 24, 0.24);
  color: var(--danger);
}

.status-banner-enter-active,
.status-banner-leave-active {
  transition: opacity 220ms ease, transform 260ms ease;
}

.status-banner-enter-from,
.status-banner-leave-to {
  opacity: 0;
  transform: translateY(-0.4rem) scale(0.985);
}

.status-banner-enter-to,
.status-banner-leave-from {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .tripsopsio-status {
    will-change: auto;
  }
  .status-banner-enter-active,
  .status-banner-leave-active {
    transition: none;
  }
}
.document-blocks {
  display: grid;
  gap: 1.5rem;
}

.early-access-aside {
  display: grid;
  gap: 1.25rem;
}

.early-access-aside__stack {
  display: grid;
  gap: 0.875rem;
}

.early-access-aside__card {
  padding: 1rem;
  border: 1px solid rgba(124, 154, 184, 0.16);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(243, 249, 255, 0.5));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 10px 24px rgba(20, 42, 66, 0.06);
}
.early-access-aside__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.2;
}
.early-access-aside__card p {
  margin: 0;
  color: var(--text-muted);
}

.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: min(28rem, 100vw - 2rem);
  display: grid;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgba(132, 220, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 23, 30, 0.94), rgba(12, 16, 22, 0.92)), rgba(11, 15, 19, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 44px rgba(4, 12, 24, 0.4), 0 0 32px rgba(132, 220, 255, 0.08);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}
@media (min-width: 720px) {
  .cookie-notice {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

.cookie-notice__copy {
  display: grid;
  gap: 0.45rem;
}

.cookie-notice__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201, 230, 242, 0.78);
}

.cookie-notice__text {
  margin: 0;
  color: rgba(237, 244, 249, 0.92);
  line-height: 1.55;
}
.cookie-notice__text a {
  color: var(--highlight);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cookie-notice-enter-active,
.cookie-notice-leave-active {
  transition: opacity 220ms ease, transform 260ms ease;
}

.cookie-notice-enter-from,
.cookie-notice-leave-to {
  opacity: 0;
  transform: translateY(0.75rem);
}

.cookie-notice-enter-to,
.cookie-notice-leave-from {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-notice-enter-active,
  .cookie-notice-leave-active {
    transition: none;
  }
}
.document-block {
  padding: 0 0 0 1.05rem;
  border-left: 1px solid rgba(124, 154, 184, 0.24);
  background: transparent;
  display: grid;
  gap: 0.85rem;
}

.document-block__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  font-family: var(--headers-font-family);
}

.document-block__copy {
  max-width: 42rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.document-block__copy + .document-block__copy {
  margin-top: 0.2rem;
}

.document-list {
  padding: 0;
  margin: 0.15rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.document-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--text-muted);
}
.document-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(132, 220, 255, 0.95), rgba(72, 150, 214, 0.9));
  box-shadow: 0 0 16px rgba(132, 220, 255, 0.2);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(124, 154, 184, 0.16);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 249, 255, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 14px 30px rgba(20, 42, 66, 0.06);
}

.faq-item__question {
  margin: 0 0 0.55rem;
  font-size: 1.06rem;
  line-height: 1.35;
  color: var(--text);
  font-family: var(--headers-font-family);
}

.faq-item__answer {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.how-it-works {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.how-it-works__intro {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
}
.how-it-works__intro > h2 {
  margin: 0;
}

.how-it-works__lead {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
  color: var(--text);
  font-weight: 600;
}

.how-it-works__copy {
  margin: 0;
  color: rgba(19, 25, 33, 0.78);
  line-height: 1.8;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.95fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}
@media (max-width: 980px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
  }
}

.how-it-works__steps {
  display: grid;
  gap: 0.85rem;
}

.how-it-works__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: clamp(0.95rem, 2vw, 1.15rem);
  border: 1px solid rgba(19, 25, 33, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 36px rgba(15, 22, 30, 0.06);
}

.how-it-works__step-index {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(31, 92, 124, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 36, 52, 0.94), rgba(12, 24, 36, 0.88));
  color: #f5fbff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(132, 220, 255, 0.08), 0 10px 22px rgba(10, 18, 28, 0.18);
}

.how-it-works__step-body {
  display: grid;
  gap: 0.35rem;
}
.how-it-works__step-body > h3,
.how-it-works__step-body > p {
  margin: 0;
}
.how-it-works__step-body > h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--text);
}
.how-it-works__step-body > p {
  color: rgba(19, 25, 33, 0.72);
  line-height: 1.75;
}

.how-it-works__step-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(33, 98, 132, 0.9);
}

.how-it-works__diagram-card {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(104, 164, 198, 0.18);
  border-radius: var(--radius);
  background: radial-gradient(circle at top right, rgba(96, 186, 228, 0.16), rgba(96, 186, 228, 0) 34%), linear-gradient(180deg, rgb(20, 22, 24), rgb(16, 18, 20));
  color: #edf7fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 46px rgba(6, 11, 18, 0.24);
  overflow: hidden;
}
.how-it-works__diagram-card::before {
  content: "";
  position: absolute;
  inset: auto -16% -24% auto;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 172, 214, 0.22) 0%, rgba(86, 172, 214, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.how-it-works__diagram-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}
.how-it-works__diagram-head > h3 {
  margin: 0;
  color: var(--highlight);
}
.how-it-works__diagram-head .section-label {
  color: rgba(214, 232, 241, 0.68);
}

.architecture-diagram {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
}

.how-it-works__step-pipeline-states {
  display: none;
}
.how-it-works__step-pipeline-states .pipeline-states {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 0.75rem;
}

.dark-icon {
  display: inline-block;
  width: 20px;
  height: 21px;
  align-self: start;
  filter: none;
}

.architecture-diagram__node {
  border: 1px solid rgba(132, 220, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 24px rgba(0, 0, 0, 0.14);
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: start;
  column-gap: 0.75rem;
  padding: 0.85rem 0.9rem;
}
.architecture-diagram__node > .node-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  align-self: start;
  filter: brightness(0) saturate(100%) invert(94%) sepia(6%) saturate(357%) hue-rotate(168deg) brightness(101%) contrast(96%);
}
.architecture-diagram__node > .node-content {
  display: grid;
  gap: 0.25rem;
  padding: 0;
  min-width: 0;
  width: 100%;
}
.architecture-diagram__node > .node-content > strong {
  color: var(--highlight);
  font-size: 0.93rem;
  line-height: 1.35;
}
.architecture-diagram__node > .node-content > span {
  color: rgba(220, 232, 238, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.architecture-diagram__node--entry,
.architecture-diagram__node--terminal {
  border-color: rgba(132, 220, 255, 0.24);
  background: linear-gradient(180deg, rgba(36, 74, 98, 0.34), rgba(15, 28, 38, 0.2));
}

.architecture-diagram__node--accent {
  border-color: rgba(132, 220, 255, 0.28);
  background: linear-gradient(180deg, rgba(58, 126, 160, 0.32), rgba(16, 32, 44, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(86, 172, 214, 0.14);
}

.architecture-diagram__connector {
  position: relative;
  height: 1rem;
  margin-left: 1.15rem;
  width: 0px;
  margin: 0 auto;
}
.architecture-diagram__connector::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.2rem;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(132, 220, 255, 0.34), rgba(132, 220, 255, 0.08));
}
.architecture-diagram__connector::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.24rem;
  border-left: 0.28rem solid transparent;
  border-right: 0.28rem solid transparent;
  border-top: 0.4rem solid rgba(132, 220, 255, 0.42);
}

.pricing-grid-section {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.pricing-grid__intro {
  display: grid;
  gap: 0.75rem;
  max-width: 44rem;
}
.pricing-grid__intro > h2,
.pricing-grid__intro > p {
  margin: 0;
}
.pricing-grid__intro > h2 {
  color: var(--highlight);
}

.pricing-grid__tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.2rem);
}
@media (max-width: 1080px) {
  .pricing-grid__tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .pricing-grid__tiers {
    grid-template-columns: 1fr;
  }
}

.pricing-tier {
  position: relative;
  display: grid;
  gap: 1.1rem;
  align-content: start;
  min-height: 100%;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(13, 28, 42, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 34, 0.98), rgba(24, 35, 48, 0.94));
  color: #edf6fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 40px rgba(8, 14, 20, 0.14);
  overflow: hidden;
}
.pricing-tier::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--pricing-tier-accent, rgba(132, 220, 255, 0.88));
}

.pricing-tier__head {
  display: grid;
  gap: 0.8rem;
}

.pricing-tier--free {
  --pricing-tier-accent: linear-gradient(
    90deg,
    rgba(216, 132, 255, 0.9),
    rgba(138, 72, 214, 0.92)
  );
}

.pricing-tier--starter,
.pricing-tier--base {
  --pricing-tier-accent: linear-gradient(
    90deg,
    rgba(106, 216, 124, 0.92),
    rgba(48, 168, 92, 0.94)
  );
}

.pricing-tier--growth {
  --pricing-tier-accent: linear-gradient(
    90deg,
    rgba(114, 209, 238, 0.9),
    rgba(71, 146, 204, 0.92)
  );
}

.pricing-tier--pro {
  --pricing-tier-accent: linear-gradient(
    90deg,
    rgba(190, 132, 255, 0.92),
    rgba(118, 78, 212, 0.94)
  );
}

.pricing-tier--pro-plus {
  --pricing-tier-accent: linear-gradient(
    90deg,
    rgba(244, 192, 118, 0.92),
    rgba(222, 142, 58, 0.92)
  );
}

.pricing-tier--enterprise {
  --pricing-tier-accent: linear-gradient(
    90deg,
    rgba(233, 166, 134, 0.92),
    rgba(212, 112, 72, 0.92)
  );
}

.pricing-tier--featured {
  transform: translateY(-0.35rem);
  border-color: rgba(112, 224, 194, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 56px rgba(8, 14, 20, 0.18), 0 0 0 1px rgba(112, 224, 194, 0.12);
  margin: -12px;
}
@media (max-width: 720px) {
  .pricing-tier--featured {
    transform: none;
  }
}

.pricing-tier__badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.25rem 0.4rem 0.1rem;
  border: 1px solid rgba(112, 224, 194, 0.24);
  border-radius: var(--radius);
  background: rgba(112, 224, 194, 0.14);
  color: rgba(223, 252, 243, 0.6588235294);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-tier__label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.22rem 0.62rem 0.02rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 249, 252, 0.94);
}

.pricing-tier__price-block {
  display: grid;
  gap: 0.15rem;
}

.pricing-tier__price,
.pricing-tier__price-note,
.pricing-tier__summary,
.pricing-tier__action {
  margin: 0;
}

.pricing-tier__price {
  font-size: clamp(2rem, 3.2vw, 2.35rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--highlight);
}

.pricing-tier__price-note {
  color: rgba(220, 232, 238, 0.64);
  font-size: 0.88rem;
}

.pricing-tier__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.1rem;
}

.pricing-tier__item {
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(132, 220, 255, 0.1);
}
.pricing-tier__item::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(132, 220, 255, 0.95), rgba(72, 150, 214, 0.9));
  box-shadow: 0 0 16px rgba(132, 220, 255, 0.34);
}
.pricing-tier__item:first-child {
  padding-top: 0;
  border-top: 0;
}
.pricing-tier__item > strong {
  color: var(--highlight);
  font-size: 0.98rem;
  line-height: 1.4;
}
.pricing-tier__item > span {
  color: rgba(220, 232, 238, 0.72);
  line-height: 1.6;
}

.pricing-tier__summary {
  color: rgba(220, 232, 238, 0.72);
  line-height: 1.65;
  font-size: 0.8rem;
}

.pricing-tier__action {
  margin-top: auto;
  padding-top: 0.35rem;
}

.pricing-tier__cta {
  width: 100%;
  min-height: 3.1rem;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  color: var(--highlight);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 32px rgba(5, 10, 16, 0.2), 0 0 24px rgba(132, 220, 255, 0.12);
}
.pricing-tier__cta:hover {
  border-color: rgba(132, 220, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 20px 38px rgba(5, 10, 16, 0.24), 0 0 28px rgba(132, 220, 255, 0.16);
}

.site-footer {
  border-top: 1px solid var(--border-dark);
  background: #111415;
}
.site-footer .section-label {
  margin: 0 0 1rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--surface-muted-light);
}
.site-footer .section-label:last-child {
  margin-bottom: 0;
}
.site-footer a {
  color: var(--header-footer-links);
}

.site-footer__inner {
  min-height: var(--footer-min-height);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 920px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

.footer-panel {
  height: 100%;
  display: block;
  align-items: end;
  align-content: end;
  font-size: 0.8rem;
}

.footer-meta {
  margin-top: 0;
}

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

.noscript-message {
  margin: 1rem auto;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
