:root {
  --paper: #f5f5f2;
  --paper-pure: #ffffff;
  --ink: #0b0c0f;
  --ink-soft: #4b4e57;
  --line: rgba(11, 12, 15, 0.12);
  --blue: #245cff;
  --blue-light: #6f91ff;
  --night: #0b0d12;
  --night-soft: #151923;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow-soft: 0 32px 90px rgba(13, 17, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(22px, 4vw, 68px);
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 245, 242, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand img {
  width: 31px;
  height: 31px;
}

.nav {
  display: flex;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 560;
}

.nav a,
.text-link,
.contact-copy > a,
.footer-imprint a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"],
.text-link:hover,
.contact-copy > a:hover,
.footer-imprint a:hover {
  color: var(--blue);
}

.header-action {
  justify-self: end;
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.header-action:hover {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-1px);
}

.has-site-login-modal {
  overflow: hidden;
}

.site-login-modal[hidden] {
  display: none;
}

.site-login-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  min-width: 320px;
  place-items: center;
  padding: 24px;
}

.site-login-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(36, 92, 255, 0.16), transparent 38%),
    rgba(11, 13, 18, 0.58);
  -webkit-backdrop-filter: blur(10px) saturate(0.82);
  backdrop-filter: blur(10px) saturate(0.82);
  cursor: default;
  animation: site-login-backdrop-in 180ms ease-out both;
}

.site-login-dialog {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  min-height: 420px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--paper-pure);
  box-shadow:
    0 42px 110px rgba(7, 9, 14, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  animation: site-login-dialog-in 240ms ease-out both;
}

.site-login-dialog::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px;
  border: 2px solid rgba(36, 92, 255, 0.16);
  border-top-color: var(--blue);
  border-radius: 50%;
  content: "";
  animation: site-login-spin 700ms linear infinite;
}

.site-login-dialog.is-loaded::before {
  display: none;
}

.site-login-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: min(650px, calc(100svh - 48px));
  border: 0;
  border-radius: inherit;
  background: transparent;
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-login-frame.is-loaded {
  opacity: 1;
}

@keyframes site-login-backdrop-in {
  from {
    opacity: 0;
  }
}

@keyframes site-login-dialog-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }
}

@keyframes site-login-spin {
  to {
    transform: rotate(1turn);
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 112px);
  min-height: 100svh;
  padding: 130px clamp(24px, 7vw, 118px) 74px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 12%;
  left: 52%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 92, 255, 0.1), transparent 66%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(55px, 7.3vw, 116px);
  font-weight: 620;
  line-height: 0.9;
  letter-spacing: -0.072em;
}

h1 span {
  color: var(--blue);
}

.hero-subtitle {
  max-width: 665px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: 690px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 560;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hero-proof span + span::before {
  margin-right: 22px;
  color: rgba(11, 12, 15, 0.22);
  content: "/";
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 680;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(36, 92, 255, 0.2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 620;
}

.text-link span {
  font-size: 16px;
}

.hero-code-card {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(11, 12, 15, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(36, 92, 255, 0.24), transparent 30%),
    var(--night);
  box-shadow: 0 34px 90px rgba(13, 17, 29, 0.16);
  color: #fff;
  text-align: left;
}

.hero-code-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-code-card pre {
  margin: 0;
  overflow-x: auto;
  padding: clamp(32px, 4.5vw, 52px) clamp(24px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.82);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 1.9;
  tab-size: 2;
}

.code-keyword,
.code-function {
  color: #9db4ff;
}

.code-string {
  color: #8dd8c8;
}

.hero-code-stats {
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 1.5fr;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-code-stats div {
  min-width: 0;
  padding: 24px;
}

.hero-code-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-code-stats dt {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-code-stats dd {
  margin: 11px 0 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 13px;
  font-weight: 620;
}

.hero-source-card {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(11, 12, 15, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(36, 92, 255, 0.24), transparent 30%),
    var(--night);
  box-shadow: 0 34px 90px rgba(13, 17, 29, 0.16);
  color: #fff;
  text-align: left;
}

.hero-source-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-source-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 0.95fr);
  align-items: center;
  gap: 16px;
  padding: 38px 32px;
}

.hero-source-list {
  display: grid;
  gap: 8px;
}

.hero-source-list > span,
.hero-listing-output > span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-source-list article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-source-list article i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8dd8c8;
  box-shadow: 0 0 10px rgba(141, 216, 200, 0.55);
}

.hero-source-list article strong {
  font-size: 11px;
  font-weight: 610;
}

.hero-source-connector {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-source-connector::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  content: "";
  transform: rotate(45deg);
}

.hero-source-connector i {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 10px rgba(111, 145, 255, 0.7);
  animation: data-flow 2.4s ease-in-out infinite;
}

.hero-listing-output {
  display: grid;
  align-content: center;
  min-height: 164px;
  padding: 24px;
  border: 1px solid rgba(111, 145, 255, 0.32);
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 18%, rgba(111, 145, 255, 0.42), transparent 34%),
    rgba(111, 145, 255, 0.09);
}

.hero-listing-output strong {
  color: #fff;
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 560;
  letter-spacing: -0.06em;
}

.hero-listing-output code {
  margin-top: 18px;
  color: #9db4ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
}

.hero-source-card > p {
  margin: 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 580;
  letter-spacing: 0.02em;
}

.hero-layer-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-layer-visual::before {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(36, 92, 255, 0.13), transparent 35%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0) 48%, rgba(36, 92, 255, 0.055) 49%, transparent 50%),
    radial-gradient(circle at center, transparent 67%, rgba(11, 12, 15, 0.055) 68%, transparent 68.5%);
  content: "";
}

.hero-layer-visual::after {
  position: absolute;
  inset: 13%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 92, 255, 0.08), transparent 68%);
  box-shadow: inset 0 0 90px rgba(255, 255, 255, 0.76);
  content: "";
}

.layer-field {
  position: absolute;
  inset: 6%;
}

.layer-particle {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: calc(var(--size) * 1.35);
  height: calc(var(--size) * 1.35);
  border-radius: 50%;
  background: var(--tone);
  box-shadow:
    0 0 12px color-mix(in srgb, var(--tone) 72%, transparent),
    0 0 28px color-mix(in srgb, var(--tone) 28%, transparent);
  opacity: 0.5;
  animation: layer-particle-in var(--duration) linear var(--delay) infinite;
}

.layer-inputs {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.layer-input {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(11, 12, 15, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 36px rgba(13, 17, 29, 0.09);
  backdrop-filter: blur(12px);
  color: rgba(11, 12, 15, 0.68);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.layer-input i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 12px rgba(111, 145, 255, 0.82);
}

.layer-input.is-secondary {
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: rgba(11, 12, 15, 0.48);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.14em;
  animation: none;
}

.layer-input.is-secondary i {
  width: 5px;
  height: 5px;
  background: rgba(36, 92, 255, 0.72);
  box-shadow: 0 0 10px rgba(36, 92, 255, 0.42);
}

.layer-input.is-history::after,
.layer-input.is-prices::before {
  width: 28px;
  height: 1px;
  content: "";
}

.layer-input.is-history::after {
  background: linear-gradient(90deg, rgba(11, 12, 15, 0.2), transparent);
}

.layer-input.is-prices::before {
  background: linear-gradient(90deg, transparent, rgba(11, 12, 15, 0.2));
}

.layer-input.is-markets {
  top: 13%;
  left: 12%;
  animation: layer-input-float-a 13s ease-in-out infinite;
}

.layer-input.is-sources {
  top: 21%;
  right: 7%;
  animation: layer-input-float-b 15s ease-in-out -4s infinite;
}

.layer-input.is-updates {
  bottom: 12%;
  left: 13%;
  animation: layer-input-float-c 14s ease-in-out -7s infinite;
}

.layer-input.is-history {
  top: 51%;
  left: 2%;
}

.layer-input.is-prices {
  right: 3%;
  bottom: 20%;
}

.layer-core-stable {
  --layer-core-shape: polygon(
    42.14% 7.95%,
    45.29% 5.66%,
    48.43% 4.52%,
    51.57% 4.52%,
    54.71% 5.66%,
    57.86% 7.95%,
    92.23% 39.24%,
    94.62% 41.8%,
    96.31% 44.45%,
    97.28% 47.21%,
    97.54% 50.06%,
    97.1% 53.02%,
    87.09% 90.61%,
    85.82% 93.7%,
    83.84% 96.11%,
    81.16% 97.83%,
    77.76% 98.86%,
    73.66% 99.2%,
    26.34% 99.2%,
    22.24% 98.86%,
    18.84% 97.83%,
    16.16% 96.11%,
    14.18% 93.7%,
    12.91% 90.61%,
    2.9% 53.02%,
    2.46% 50.06%,
    2.72% 47.21%,
    3.69% 44.45%,
    5.38% 41.8%,
    7.77% 39.24%
  );
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(142px, 15vw, 184px);
  aspect-ratio: 1;
  filter:
    drop-shadow(0 24px 34px rgba(13, 17, 29, 0.22))
    drop-shadow(0 0 36px rgba(36, 92, 255, 0.18));
  transform: translate(-50%, -50%);
}

.layer-core-stable::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-clip-path: var(--layer-core-shape);
  clip-path: var(--layer-core-shape);
  background: rgba(255, 255, 255, 0.72);
  content: "";
}

.layer-core-stable::after {
  position: absolute;
  inset: 1px;
  z-index: 1;
  -webkit-clip-path: var(--layer-core-shape);
  clip-path: var(--layer-core-shape);
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.04) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(255, 255, 255, 0.04) 50%, transparent 50.5%),
    linear-gradient(135deg, rgba(111, 145, 255, 0.34), transparent 34%),
    linear-gradient(315deg, rgba(36, 92, 255, 0.22), transparent 36%),
    linear-gradient(145deg, #171b27, #07080c 72%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  content: "";
}

.layer-core-stable > div {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
}

.layer-core-stable > div::before {
  position: absolute;
  inset: 12px;
  padding: 1px;
  -webkit-clip-path: var(--layer-core-shape);
  clip-path: var(--layer-core-shape);
  background: rgba(255, 255, 255, 0.08);
  content: "";
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.layer-core-stable span {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 610;
  line-height: 0.9;
  letter-spacing: -0.08em;
  transform: translateY(0.06em);
}

@keyframes layer-particle-in {
  0% {
    top: var(--y);
    left: var(--x);
    opacity: 0.32;
    transform: scale(0.72);
  }

  10% {
    opacity: 0.94;
  }

  72% {
    opacity: 0.68;
  }

  100% {
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: scale(0.18);
  }
}

@keyframes layer-input-float-a {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -7px);
  }
}

@keyframes layer-input-float-b {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-8px, 10px);
  }
}

@keyframes layer-input-float-c {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, 6px);
  }
}

.hero-object {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 600px);
  aspect-ratio: 1;
  justify-self: center;
}

.hero-object::before {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(11, 12, 15, 0.07);
  border-radius: 50%;
  background:
    linear-gradient(rgba(36, 92, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 92, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.42);
  background-size: 24px 24px;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.8);
  content: "";
}

.orbit {
  position: absolute;
  border: 1px solid rgba(36, 92, 255, 0.2);
  border-radius: 50%;
}

.orbit-outer {
  inset: 2%;
  animation: rotate 32s linear infinite;
}

.orbit-middle {
  inset: 19%;
  border-color: rgba(11, 12, 15, 0.12);
  animation: rotate-reverse 24s linear infinite;
}

.data-core {
  position: relative;
  z-index: 3;
  width: 42%;
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(224, 231, 255, 0.7));
  box-shadow:
    0 45px 90px rgba(36, 92, 255, 0.2),
    inset 0 1px 0 #fff;
  transform: rotate(-8deg);
}

.core-surface {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px;
  border-radius: 30%;
  background:
    radial-gradient(circle at 72% 24%, rgba(111, 145, 255, 0.9), transparent 23%),
    linear-gradient(145deg, #111522, #07080c 72%);
  color: #fff;
  transform: rotate(8deg);
}

.core-label {
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 620;
  letter-spacing: -0.08em;
}

.core-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ba0ff;
  box-shadow: 0 0 12px #7ba0ff;
  content: "";
}

.signal {
  position: absolute;
  z-index: 4;
  padding: 9px 13px;
  border: 1px solid rgba(11, 12, 15, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(11, 12, 15, 0.08);
  backdrop-filter: blur(12px);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-one {
  top: 18%;
  left: 5%;
}

.signal-two {
  top: 22%;
  right: 4%;
}

.signal-three {
  right: 9%;
  bottom: 18%;
}

.orbit-dot {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(36, 92, 255, 0.75);
}

.dot-one {
  top: 7%;
  left: 48%;
}

.dot-two {
  top: 49%;
  right: 1.5%;
}

.dot-three {
  bottom: 15%;
  left: 15%;
}

.hero-footnote {
  position: absolute;
  bottom: 28px;
  left: clamp(24px, 7vw, 118px);
  margin: 0;
  color: rgba(11, 12, 15, 0.47);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.statement {
  padding: clamp(120px, 16vw, 240px) clamp(24px, 8vw, 140px);
  background: var(--ink);
  color: #fff;
}

.statement-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(76px, 0.14fr) minmax(390px, 0.82fr);
  grid-template-areas:
    "copy copy copy"
    "sources connector output";
  align-items: center;
  gap: clamp(72px, 8vw, 108px) clamp(20px, 2.8vw, 42px);
  max-width: 1280px;
  margin: 0 auto;
}

.statement-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 0 clamp(56px, 7vw, 112px);
  grid-area: copy;
}

.statement-copy .eyebrow {
  grid-column: 1 / -1;
}

.statement-copy h2 {
  grid-column: 1;
}

.statement .eyebrow {
  color: #7f9eff;
}

.statement h2,
.layers-heading h2,
.preview-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 570;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.statement h2 span {
  color: rgba(255, 255, 255, 0.42);
}

.statement h2 {
  font-size: clamp(46px, 5.2vw, 76px);
}

.statement h2 .statement-line {
  display: block;
  white-space: nowrap;
}

.statement h2 .statement-line.is-primary {
  color: #fff;
}

.statement-note {
  grid-column: 2;
  align-self: end;
  max-width: 790px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.65;
  letter-spacing: -0.018em;
}

.normalization-map {
  display: contents;
}

.normalization-label {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-stack {
  grid-area: sources;
  display: grid;
  gap: 12px;
}

.source-stack article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: 21px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.source-stack article:nth-of-type(1) {
  width: 100%;
}

.source-stack article:nth-of-type(3) {
  width: 100%;
  margin-left: 0;
}

.source-stack strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 620;
}

.source-stack code {
  overflow: hidden;
  color: #8dd8c8;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.normalization-connector {
  grid-area: connector;
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.normalization-connector::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
  transform: rotate(45deg);
}

.normalization-connector span {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.normalization-connector i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 14px rgba(111, 145, 255, 0.8);
  animation: normalization-flow 2.8s ease-in-out infinite;
}

.normalized-listing {
  grid-area: output;
  min-width: 0;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid rgba(111, 145, 255, 0.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(36, 92, 255, 0.28), transparent 34%),
    rgba(111, 145, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.normalized-listing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.normalized-listing-heading span {
  color: #8ba6ff;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.normalized-listing h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.normalized-listing dl {
  margin: 44px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.normalized-listing dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
}

.normalized-listing dt {
  color: #9db4ff;
}

.normalized-listing dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: right;
}

.normalized-listing > small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.34);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
}

@keyframes normalization-flow {
  0%,
  15% {
    left: 0;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  85% {
    left: calc(100% - 7px);
    opacity: 1;
  }

  100% {
    left: calc(100% - 7px);
    opacity: 0;
  }
}

@keyframes normalization-flow-vertical {
  0%,
  15% {
    top: 0;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  85% {
    top: calc(100% - 7px);
    opacity: 1;
  }

  100% {
    top: calc(100% - 7px);
    opacity: 0;
  }
}

.layers-section {
  padding: clamp(110px, 13vw, 190px) clamp(24px, 7vw, 118px);
  background: #fff;
}

.layers-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  column-gap: clamp(46px, 8vw, 130px);
  max-width: 1240px;
  margin: 0 auto 72px;
}

.layers-heading .eyebrow {
  grid-column: 1 / -1;
}

.layers-heading h2 {
  font-size: clamp(42px, 5.4vw, 78px);
}

.layers-heading h2 span {
  color: rgba(11, 12, 15, 0.5);
}

.layers-heading > p:last-child {
  align-self: end;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.layer-console {
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 26px 80px rgba(13, 17, 29, 0.08);
}

.source-disclaimer {
  max-width: 1240px;
  margin: 18px auto 0;
  color: rgba(11, 12, 15, 0.62);
  font-size: 9px;
  line-height: 1.5;
  text-align: right;
}

.layer-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.layer-tabs.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.layer-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  color: rgba(11, 12, 15, 0.68);
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.layer-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
}

.layer-tab.is-active {
  border-color: rgba(11, 12, 15, 0.06);
  background: #fff;
  box-shadow:
    0 8px 24px rgba(13, 17, 29, 0.07),
    inset 0 -1px 0 rgba(11, 12, 15, 0.04);
  color: var(--ink);
}

.layer-icon {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(11, 12, 15, 0.055);
  color: rgba(11, 12, 15, 0.68);
}

.layer-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.layer-tab.is-active .layer-icon {
  background: linear-gradient(145deg, var(--blue), #5f76ff);
  box-shadow: 0 8px 20px rgba(36, 92, 255, 0.22);
  color: #fff;
}

.layer-name {
  overflow: hidden;
  font-size: 13px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.layer-state {
  overflow: hidden;
  color: rgba(11, 12, 15, 0.62);
  font-size: 9px;
  font-weight: 630;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.layer-state.is-live {
  color: var(--blue);
}

.layer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(52px, 9vw, 150px);
  min-height: 390px;
  padding: clamp(48px, 7vw, 92px);
  background:
    radial-gradient(circle at 78% 28%, rgba(36, 92, 255, 0.09), transparent 30%),
    #fff;
}

.layer-panel-copy {
  align-self: center;
  max-width: 720px;
}

.layer-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.layer-panel h3 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.06em;
}

.layer-panel-copy > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.function-visual {
  display: grid;
  gap: 28px;
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(11, 12, 15, 0.08);
  border-radius: 22px;
  background: rgba(245, 245, 242, 0.72);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.function-visual.is-changing {
  border-color: rgba(36, 92, 255, 0.22);
  box-shadow: 0 18px 44px rgba(36, 92, 255, 0.08);
}

.function-flow {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) 24px minmax(78px, 1fr) 24px minmax(72px, 1fr);
  align-items: center;
}

.function-node,
.function-core {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 12px 8px;
  border-radius: 18px;
  text-align: center;
}

.function-node {
  border: 1px solid rgba(11, 12, 15, 0.09);
  background: #fff;
}

.function-core {
  background:
    radial-gradient(circle at 72% 20%, rgba(111, 145, 255, 0.76), transparent 26%),
    linear-gradient(145deg, #111522, #08090d 76%);
  box-shadow: 0 14px 30px rgba(36, 92, 255, 0.18);
  color: #fff;
}

.function-node span,
.function-core span {
  color: rgba(11, 12, 15, 0.62);
  font-size: 8px;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.function-core span {
  color: rgba(255, 255, 255, 0.52);
}

.function-node strong,
.function-core strong {
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 10px;
  font-weight: 680;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.function-core strong {
  color: #fff;
}

.function-connector {
  position: relative;
  height: 1px;
  overflow: visible;
  background: rgba(11, 12, 15, 0.13);
}

.function-connector::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(11, 12, 15, 0.32);
  border-right: 1px solid rgba(11, 12, 15, 0.32);
  content: "";
  transform: rotate(45deg);
}

.function-connector i {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(36, 92, 255, 0.58);
  animation: data-flow 2.4s ease-in-out infinite;
}

.function-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.function-signals span {
  padding: 7px 9px;
  border: 1px solid rgba(11, 12, 15, 0.08);
  border-radius: 999px;
  background: #fff;
  color: rgba(11, 12, 15, 0.62);
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.function-engines {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.function-engines[hidden] {
  display: none;
}

.engine-mark {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 34px;
  border: 1px solid rgba(11, 12, 15, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(13, 17, 29, 0.04);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
}

.engine-mark.is-google {
  color: #4285f4;
  font-size: 17px;
}

.engine-mark.is-bing {
  color: #008373;
  font-size: 17px;
}

.engine-mark.is-yahoo {
  color: #6001d2;
}

.engine-mark.is-baidu {
  color: #2932e1;
}

.engine-mark.is-yandex {
  color: #fc3f1d;
}

.engine-mark.is-duckduckgo {
  color: #de5833;
}

@keyframes data-flow {
  0%,
  15% {
    left: 0;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  85% {
    left: calc(100% - 5px);
    opacity: 1;
  }

  100% {
    left: calc(100% - 5px);
    opacity: 0;
  }
}

.path-comparison {
  padding: clamp(110px, 13vw, 190px) clamp(24px, 7vw, 118px);
  background:
    linear-gradient(180deg, rgba(111, 145, 255, 0.035), transparent 22%),
    #f6f6f3;
}

.path-comparison-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.52fr);
  align-items: end;
  gap: clamp(42px, 7vw, 112px);
  max-width: 1240px;
  margin: 0 auto 68px;
}

.path-comparison-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 570;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.path-comparison-heading > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.path-comparison-frame {
  max-width: 1240px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(11, 12, 15, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(13, 17, 29, 0.07);
  outline: none;
  scrollbar-color: rgba(11, 12, 15, 0.28) transparent;
  scrollbar-width: thin;
}

.path-comparison-frame:focus-visible {
  box-shadow:
    0 0 0 3px rgba(36, 92, 255, 0.22),
    0 26px 80px rgba(13, 17, 29, 0.07);
}

.path-comparison-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.path-comparison-table th,
.path-comparison-table td {
  border-right: 1px solid rgba(11, 12, 15, 0.08);
  border-bottom: 1px solid rgba(11, 12, 15, 0.08);
  text-align: left;
  vertical-align: middle;
}

.path-comparison-table th:last-child,
.path-comparison-table td:last-child {
  border-right: 0;
}

.path-comparison-table tbody tr:last-child th,
.path-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.path-comparison-table thead th {
  height: 210px;
  padding: 28px;
  background: #fbfbf9;
}

.path-comparison-table thead th:first-child {
  z-index: 3;
  width: 24%;
  color: rgba(11, 12, 15, 0.42);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.13em;
  position: sticky;
  left: 0;
  text-transform: uppercase;
}

.path-comparison-table thead th:not(:first-child) {
  width: 25.333%;
}

.path-comparison-table thead strong,
.path-comparison-table thead small {
  display: block;
}

.path-comparison-table thead strong {
  max-width: 260px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.path-comparison-table thead small {
  margin-top: 7px;
  color: rgba(11, 12, 15, 0.48);
  font-size: 11px;
  font-weight: 520;
  line-height: 1.4;
}

.path-legend {
  display: flex;
  gap: 7px;
  margin-top: 24px;
}

.path-legend i {
  display: inline-grid;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  font-size: 15px;
  font-style: normal;
  place-items: center;
}

.path-legend .is-no {
  background: #fff0f1;
  color: #cf3c4a;
}

.path-legend .is-partial {
  background: #fff5d8;
  color: #ad7400;
}

.path-legend .is-yes {
  background: var(--blue);
  color: #fff;
}

.path-method-visual {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(11, 12, 15, 0.1);
  border-radius: 19px;
  background: #fff;
  color: var(--ink);
  place-items: center;
}

.path-method-visual.is-manual i {
  position: absolute;
  width: 23px;
  height: 29px;
  border: 1px solid rgba(11, 12, 15, 0.32);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(11, 12, 15, 0.06);
}

.path-method-visual.is-manual i:nth-child(1) {
  transform: translate(-8px, 3px) rotate(-8deg);
}

.path-method-visual.is-manual i:nth-child(2) {
  transform: translate(2px, -2px) rotate(3deg);
}

.path-method-visual.is-manual i:nth-child(3) {
  transform: translate(10px, 4px) rotate(9deg);
}

.path-method-visual.is-api {
  background: #12151d;
  color: #9db4ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.path-method-visual.is-cleanedweb-mark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.path-method-visual.is-cleanedweb-mark img {
  width: 35px;
  height: 35px;
}

.path-comparison-table tbody th {
  z-index: 2;
  padding: 19px 24px;
  position: sticky;
  left: 0;
  background: #fff;
  color: var(--ink);
}

.path-comparison-table tbody th > span:last-child {
  display: inline-block;
  min-width: 0;
  font-size: 13px;
  font-weight: 660;
  letter-spacing: -0.015em;
  line-height: 1.25;
  vertical-align: middle;
}

.path-comparison-table tbody th small {
  display: block;
  margin-top: 4px;
  color: rgba(11, 12, 15, 0.42);
  font-size: 9px;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.3;
}

.comparison-feature-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  border: 1px solid rgba(36, 92, 255, 0.14);
  border-radius: 12px;
  background: rgba(36, 92, 255, 0.06);
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.08em;
  vertical-align: middle;
  place-items: center;
}

.comparison-feature-icon.is-world {
  position: relative;
}

.comparison-feature-icon.is-world::before,
.comparison-feature-icon.is-world::after {
  position: absolute;
  content: "";
}

.comparison-feature-icon.is-world::before {
  width: 15px;
  height: 15px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.comparison-feature-icon.is-world::after {
  width: 15px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.path-comparison-table tbody td {
  padding: 19px 22px;
  color: rgba(11, 12, 15, 0.68);
  font-size: 12px;
  line-height: 1.35;
}

.path-comparison-table tbody td strong {
  display: inline-block;
  max-width: calc(100% - 48px);
  margin-left: 10px;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: -0.01em;
  vertical-align: middle;
}

.path-status {
  display: inline-grid;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 680;
  line-height: 1;
  vertical-align: middle;
  place-items: center;
}

.path-status.is-no {
  background: #fff0f1;
  color: #cf3c4a;
}

.path-status.is-partial {
  background: #fff5d8;
  color: #ad7400;
}

.path-status.is-yes {
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(36, 92, 255, 0.2);
  color: #fff;
}

.path-comparison-table .is-cleanedweb {
  border-color: rgba(111, 145, 255, 0.18);
  background: #eef2ff;
}

.path-comparison-table thead .is-cleanedweb {
  background:
    radial-gradient(circle at 100% 0, rgba(111, 145, 255, 0.3), transparent 42%),
    var(--ink);
}

.path-comparison-table thead .is-cleanedweb small {
  color: rgba(255, 255, 255, 0.5);
}

.path-comparison-table thead .is-cleanedweb strong {
  color: #fff;
}

.path-comparison-table tbody .is-cleanedweb {
  color: #172557;
}

.path-comparison-table tbody .is-cleanedweb strong {
  color: #172557;
  font-weight: 680;
}

.path-comparison-note {
  max-width: 1240px;
  margin: 18px auto 0;
  color: rgba(11, 12, 15, 0.48);
  font-size: 10px;
  line-height: 1.55;
  text-align: right;
}

.preview-section {
  padding: clamp(110px, 13vw, 190px) clamp(24px, 7vw, 118px);
  background: #fff;
}

.preview-heading {
  max-width: 1080px;
  margin: 0 auto 72px;
  text-align: center;
}

.preview-heading h2 {
  font-size: clamp(40px, 5.3vw, 76px);
}

.preview-heading h2 span {
  color: var(--blue);
}

.preview-bridge {
  max-width: 650px;
  margin: 26px 0 0;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.preview-window {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  background: var(--night);
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.preview-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.window-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 14px rgba(111, 145, 255, 0.8);
}

.preview-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(470px, 1.16fr);
  gap: clamp(32px, 4.5vw, 64px);
  min-height: 570px;
  padding: clamp(48px, 7vw, 92px);
  background:
    radial-gradient(circle at 76% 38%, rgba(36, 92, 255, 0.17), transparent 30%),
    linear-gradient(135deg, var(--night), #10131b);
}

.preview-query {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.preview-query.is-refreshing {
  opacity: 0.62;
  transform: translateY(2px);
}

.query-label {
  display: block;
  margin-bottom: 24px;
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.workload-builder {
  display: grid;
  gap: 28px;
  margin: 0;
  max-width: 560px;
}

.workload-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.workload-prefix {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workload-choice {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45em;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0 0 0.08em;
  border: 0;
  border-bottom: 1px solid rgba(111, 145, 255, 0.58);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #9db4ff;
  font-weight: 560;
  text-align: left;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.workload-choice:hover,
.workload-choice:focus-visible {
  border-color: #fff;
  color: #fff;
}

.workload-choice:focus-visible {
  outline: 2px solid rgba(111, 145, 255, 0.45);
  outline-offset: 5px;
}

.workload-choice svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 160ms ease;
}

.workload-choice:hover svg,
.workload-choice:focus-visible svg {
  transform: translateX(2px);
}

.workload-choice > span {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

#workload-type,
#workload-market {
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.sample-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 620;
}

.sample-button:hover {
  color: #fff;
}

.preview-result {
  --result-viewport-height: 360px;

  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-rows: 72px var(--result-viewport-height) 58px;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  transition:
    opacity 160ms ease,
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.preview-result.is-refreshing {
  opacity: 0.68;
  transform: translateY(2px);
}

.preview-result.is-highlighted {
  border-color: rgba(111, 145, 255, 0.58);
  box-shadow: 0 34px 100px rgba(36, 92, 255, 0.18);
  transform: translateY(-5px);
}

.result-topline,
.result-footer {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.result-topline {
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-schema-label {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
}

.result-schema-label > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-batch {
  display: grid;
  flex: 0 0 auto;
  gap: 4px;
  text-align: right;
}

.result-batch strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.result-batch small {
  color: #8ba6ff;
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ba0ff;
  box-shadow: 0 0 10px #7ba0ff;
}

.result-list {
  display: grid;
  height: var(--result-viewport-height);
  min-height: 0;
  overflow: hidden;
  padding: 12px 22px;
}

.result-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(118px, auto);
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-item:last-child {
  border-bottom: 0;
}

.result-index {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(111, 145, 255, 0.2);
  border-radius: 9px;
  background: rgba(111, 145, 255, 0.08);
  color: #9db4ff;
  font-size: 9px;
  font-weight: 720;
}

.result-item-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.result-item-copy strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-item-copy > span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-tag {
  max-width: 122px;
  overflow: hidden;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.result-item-copy > .result-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 650;
}

.result-source small {
  color: #8ba6ff;
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.json-result {
  height: var(--result-viewport-height);
  min-height: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-wrap: anywhere;
  overscroll-behavior: contain;
  padding: 30px 24px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(10px, 1.05vw, 13px);
  line-height: 1.8;
  tab-size: 2;
  white-space: pre-wrap;
  scrollbar-color: rgba(157, 180, 255, 0.42) transparent;
  scrollbar-width: thin;
}

.json-result::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.json-result::-webkit-scrollbar-track {
  background: transparent;
}

.json-result::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(157, 180, 255, 0.34);
}

.json-result[hidden],
.result-list[hidden] {
  display: none;
}

.json-result code {
  color: #cbd4ed;
}

.json-key {
  color: #9db4ff;
}

.json-string {
  color: #d8deef;
}

.json-number,
.json-boolean {
  color: #8dd8c8;
}

.result-footer {
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.result-check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(111, 145, 255, 0.14);
  color: var(--blue-light);
}

.coverage-section {
  padding: clamp(110px, 13vw, 190px) clamp(24px, 7vw, 118px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 10%, rgba(36, 92, 255, 0.07), transparent 27%),
    var(--paper);
}

.coverage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.75fr);
  align-items: end;
  gap: clamp(54px, 9vw, 138px);
  max-width: 1240px;
  margin: 0 auto 72px;
}

.coverage-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 570;
  line-height: 0.96;
  letter-spacing: -0.063em;
}

.coverage-summary > p {
  max-width: 610px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage-stats div {
  min-width: 0;
  padding: 24px 16px 22px;
}

.coverage-stats div + div {
  border-left: 1px solid var(--line);
}

.coverage-stats dt {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.055em;
}

.coverage-stats dd {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.coverage-explorer {
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--night);
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.coverage-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
}

.coverage-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(310px, 100%);
  min-height: 48px;
  flex: 0 0 auto;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.coverage-search:focus-within {
  border-color: rgba(111, 145, 255, 0.7);
  background: rgba(111, 145, 255, 0.08);
}

.coverage-search svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke: rgba(255, 255, 255, 0.56);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.coverage-search input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
}

.coverage-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.coverage-search input::-webkit-search-cancel-button {
  filter: invert(1);
  opacity: 0.5;
}

.coverage-regions {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.coverage-regions::-webkit-scrollbar {
  display: none;
}

.coverage-region-button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.coverage-region-button:hover,
.coverage-region-button:focus-visible {
  color: #fff;
}

.coverage-region-button:focus-visible {
  outline: 2px solid rgba(111, 145, 255, 0.52);
  outline-offset: 2px;
}

.coverage-region-button.is-active {
  border-color: rgba(111, 145, 255, 0.28);
  background: rgba(111, 145, 255, 0.12);
  color: #a8bbff;
}

.coverage-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(390px, 0.87fr);
  min-height: 560px;
}

.coverage-map-panel {
  position: relative;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 76% 34%, rgba(36, 92, 255, 0.15), transparent 36%),
    linear-gradient(145deg, #0b0d12, #10141e);
}

.coverage-map-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage-map-topline span:first-child {
  color: #8ba6ff;
}

.coverage-map {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 42px;
  overflow: visible;
}

.coverage-land path {
  fill: rgba(255, 255, 255, 0.055);
  stroke: rgba(255, 255, 255, 0.09);
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.coverage-map-marker {
  cursor: pointer;
  outline: none;
  opacity: 1;
  transition: opacity 160ms ease;
}

.coverage-map-marker.is-dimmed {
  opacity: 0.16;
}

.coverage-marker-hit {
  fill: transparent;
}

.coverage-marker-ring {
  fill: rgba(111, 145, 255, 0.12);
  stroke: rgba(111, 145, 255, 0.28);
  stroke-width: 1;
  transition:
    fill 160ms ease,
    stroke 160ms ease,
    transform 160ms ease;
}

.coverage-marker-core {
  fill: #7f9eff;
  filter: drop-shadow(0 0 6px rgba(111, 145, 255, 0.72));
  transition: fill 160ms ease;
}

.coverage-map-marker:hover .coverage-marker-ring,
.coverage-map-marker:focus-visible .coverage-marker-ring,
.coverage-map-marker.is-active .coverage-marker-ring {
  fill: rgba(141, 216, 200, 0.18);
  stroke: rgba(141, 216, 200, 0.68);
}

.coverage-map-marker:hover .coverage-marker-core,
.coverage-map-marker:focus-visible .coverage-marker-core,
.coverage-map-marker.is-active .coverage-marker-core {
  fill: #8dd8c8;
}

.coverage-map-marker:focus-visible .coverage-marker-hit {
  stroke: rgba(157, 180, 255, 0.8);
  stroke-width: 2;
}

.coverage-map-help {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  line-height: 1.5;
}

.coverage-directory {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  background: #0d0f14;
}

.coverage-directory-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  min-height: 104px;
  padding: 25px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.coverage-directory-heading div > span {
  color: #8ba6ff;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.coverage-directory-heading h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 26px;
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.045em;
}

.coverage-directory-heading > span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  white-space: nowrap;
}

.coverage-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0;
  min-height: 0;
  max-height: 456px;
  overflow-y: auto;
  background: #0d0f14;
  scrollbar-color: rgba(157, 180, 255, 0.34) transparent;
  scrollbar-width: thin;
}

.coverage-source-grid::-webkit-scrollbar {
  width: 6px;
}

.coverage-source-grid::-webkit-scrollbar-track {
  background: transparent;
}

.coverage-source-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(157, 180, 255, 0.3);
}

.coverage-source-card {
  min-width: 0;
  min-height: 88px;
  padding: 19px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #101218;
}

.coverage-source-card:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.coverage-source-card strong {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coverage-source-card span {
  display: block;
  margin-top: 9px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coverage-empty {
  align-self: center;
  justify-self: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.coverage-empty[hidden] {
  display: none;
}

.coverage-market-directory {
  padding: 24px 26px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
}

.coverage-market-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.coverage-market-heading > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-market-heading button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #8ba6ff;
  font-size: 10px;
  font-weight: 620;
}

.coverage-market-heading button:hover,
.coverage-market-heading button:focus-visible {
  color: #fff;
}

.coverage-market-heading button:focus-visible {
  outline: 2px solid rgba(111, 145, 255, 0.52);
  outline-offset: 4px;
}

.coverage-market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.coverage-market-button {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 52px;
  padding: 8px 12px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.coverage-market-button:hover,
.coverage-market-button:focus-visible,
.coverage-market-button.is-active {
  border-color: rgba(111, 145, 255, 0.32);
  background: rgba(111, 145, 255, 0.09);
  color: #fff;
}

.coverage-market-button:focus-visible {
  outline: 2px solid rgba(111, 145, 255, 0.52);
  outline-offset: 2px;
}

.coverage-market-code {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(111, 145, 255, 0.11);
  color: #9db4ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
}

.coverage-market-name {
  min-width: 0;
  overflow: hidden;
  font-size: 10px;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coverage-market-count {
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
}

.coverage-note {
  max-width: 920px;
  margin: 24px auto 0;
  color: rgba(11, 12, 15, 0.42);
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.difference-section {
  padding: clamp(110px, 13vw, 190px) clamp(24px, 7vw, 118px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 12%, rgba(36, 92, 255, 0.08), transparent 30%),
    var(--paper);
}

.difference-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.difference-inner h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 102px);
  font-weight: 570;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.continuity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(62px, 8vw, 100px);
}

.continuity-card {
  min-width: 0;
  min-height: 290px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
}

.continuity-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.continuity-card h3 {
  max-width: 270px;
  margin: 64px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.continuity-card p {
  max-width: 310px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.compliance-section {
  padding: clamp(110px, 13vw, 190px) clamp(24px, 7vw, 118px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 8% 18%, rgba(36, 92, 255, 0.2), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(141, 216, 200, 0.08), transparent 25%),
    var(--night);
  color: #fff;
}

.compliance-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(56px, 9vw, 142px);
  max-width: 1240px;
  margin: 0 auto;
}

.compliance-copy .eyebrow {
  color: #8dd8c8;
}

.compliance-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 570;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.compliance-copy > p:last-child {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.72;
}

.compliance-boundary {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.2);
}

.compliance-boundary-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  padding: 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compliance-boundary-topline span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.compliance-boundary-topline span:first-child::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8dd8c8;
  box-shadow: 0 0 0 5px rgba(141, 216, 200, 0.1);
  content: "";
}

.compliance-layers {
  padding: 12px;
}

.compliance-layer {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.compliance-layer + .compliance-layer {
  margin-top: 8px;
}

.compliance-layer.is-controls {
  border-color: rgba(111, 145, 255, 0.26);
  background: rgba(36, 92, 255, 0.1);
}

.compliance-layer-index {
  align-self: start;
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.28);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.compliance-layer div > span {
  color: #8dd8c8;
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.compliance-layer.is-controls div > span {
  color: #9db4ff;
}

.compliance-layer h3 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.compliance-layer p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.compliance-layer-state {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pricing-section {
  padding: clamp(100px, 10vw, 150px) clamp(24px, 7vw, 118px)
    clamp(110px, 13vw, 190px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.pricing-heading {
  max-width: 1240px;
  margin: 0 auto 60px;
}

.pricing-heading h2 {
  max-width: 1080px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.96;
}

.pricing-heading h2 span {
  display: block;
}

.pricing-heading > p {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.usage-composer {
  max-width: 1240px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(11, 12, 15, 0.08);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 92% 5%, rgba(36, 92, 255, 0.22), transparent 28%),
    var(--night);
  box-shadow: 0 24px 70px rgba(13, 17, 29, 0.12);
  color: #fff;
}

.usage-composer-heading {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 24px clamp(28px, 3.4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.usage-object-grid article > span {
  color: #8ba6ff;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.usage-composer-heading h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.usage-object-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.usage-object-grid article {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 3vw, 38px);
  background: #0d0f14;
}

.usage-object-grid article > strong {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.usage-object-grid article > p {
  min-height: 42px;
  margin: 10px 0 30px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  line-height: 1.55;
}

.usage-object-grid article > b {
  color: #a8bbff;
  font-size: 24px;
  font-weight: 560;
  letter-spacing: -0.045em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.pricing-card {
  display: flex;
  min-width: 0;
  min-height: 570px;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 18px 50px rgba(13, 17, 29, 0.055);
}

.pricing-card.is-production {
  border-color: rgba(111, 145, 255, 0.22);
  background:
    radial-gradient(circle at 88% 8%, rgba(36, 92, 255, 0.28), transparent 31%),
    var(--night);
  box-shadow: 0 28px 80px rgba(13, 17, 29, 0.18);
  color: #fff;
}

.pricing-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 28px;
  color: rgba(11, 12, 15, 0.6);
  font-size: 10px;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card-topline span:first-child {
  color: var(--ink);
  font-size: 12px;
}

.is-production .pricing-card-topline {
  color: rgba(255, 255, 255, 0.48);
}

.is-production .pricing-card-topline span:first-child {
  color: #fff;
}

.pricing-badge {
  padding: 7px 10px;
  border: 1px solid rgba(111, 145, 255, 0.28);
  border-radius: 999px;
  background: rgba(111, 145, 255, 0.12);
  color: #a8bbff;
}

.pricing-price {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 30px;
}

.pricing-price strong {
  color: var(--ink);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 570;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.pricing-price strong span {
  margin-left: 6px;
  color: rgba(11, 12, 15, 0.46);
  font-size: 13px;
  font-weight: 610;
  letter-spacing: -0.01em;
}

.pricing-price > span:last-child {
  margin-top: 12px;
  color: rgba(11, 12, 15, 0.6);
  font-size: 11px;
}

.pricing-price > span:last-child b {
  color: var(--ink);
  font-weight: 690;
}

.is-production .pricing-price strong {
  color: #fff;
}

.is-production .pricing-price strong span,
.is-production .pricing-price > span:last-child {
  color: rgba(255, 255, 255, 0.5);
}

.is-production .pricing-price > span:last-child b {
  color: rgba(255, 255, 255, 0.86);
}

.pricing-price .pricing-custom {
  font-size: clamp(44px, 4.4vw, 64px);
}

.pricing-description {
  min-height: 88px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.is-production .pricing-description {
  color: rgba(255, 255, 255, 0.58);
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 24px 0 34px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 21px;
  color: rgba(11, 12, 15, 0.76);
  font-size: 12px;
  line-height: 1.5;
}

.pricing-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 720;
}

.is-production .pricing-features {
  border-color: rgba(255, 255, 255, 0.1);
}

.is-production .pricing-features li {
  color: rgba(255, 255, 255, 0.72);
}

.is-production .pricing-features li::before {
  color: #8ba6ff;
}

.pricing-addons {
  display: grid;
  gap: 8px;
  margin: -8px 0 28px;
  padding: 18px;
  border: 1px solid rgba(111, 145, 255, 0.2);
  border-radius: 15px;
  background: rgba(111, 145, 255, 0.07);
}

.pricing-addons > span {
  margin-bottom: 3px;
  color: #8ba6ff;
  font-size: 9px;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-addons p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.5;
}

.pricing-addons strong {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 660;
}

.pricing-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 680;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.pricing-action:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.is-production .pricing-action {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.is-production .pricing-action:hover {
  border-color: #4775ff;
  background: #4775ff;
  color: #fff;
}

.pricing-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(11, 12, 15, 0.58);
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.pricing-compare-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: fit-content;
  min-width: 280px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 680;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.pricing-compare-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pricing-page {
  background: #fff;
}

.pricing-page-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(150px, 17vw, 230px) clamp(24px, 7vw, 72px) 80px;
}

.pricing-page-hero h1 {
  max-width: 1120px;
  margin: 22px 0 0;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 560;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.pricing-page-hero h1 span {
  display: block;
}

.pricing-page-hero h1 span:first-child {
  color: var(--ink);
}

.pricing-page-hero h1 span:last-child {
  color: var(--blue);
}

.pricing-page-hero h1 span + span {
  margin-top: 0.05em;
}

.pricing-page-hero > p:last-child {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.pricing-page-plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 7vw, 72px) 96px;
}

.pricing-summary-card {
  display: flex;
  min-width: 0;
  min-height: 380px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.pricing-summary-card.is-featured {
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 0%, rgba(36, 92, 255, 0.28), transparent 34%),
    var(--night);
  color: #fff;
}

.pricing-summary-card > div > span {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-summary-card > div > span b {
  padding: 6px 8px;
  border: 1px solid rgba(111, 145, 255, 0.28);
  border-radius: 999px;
  color: #a8bbff;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.pricing-summary-card.is-featured > div > span {
  color: #fff;
}

.pricing-summary-card > div > strong {
  display: block;
  margin-top: 56px;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 570;
  line-height: 0.95;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.pricing-summary-card.is-featured > div > strong {
  color: #fff;
}

.pricing-summary-card > div > strong small {
  margin-left: 5px;
  color: rgba(11, 12, 15, 0.48);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0;
}

.pricing-summary-card.is-featured > div > strong small {
  color: rgba(255, 255, 255, 0.48);
}

.pricing-summary-card > div > p,
.pricing-summary-card > p {
  color: rgba(11, 12, 15, 0.58);
  font-size: 11px;
  line-height: 1.6;
}

.pricing-summary-card.is-featured > div > p,
.pricing-summary-card.is-featured > p {
  color: rgba(255, 255, 255, 0.56);
}

.pricing-summary-card > p {
  margin: 34px 0 28px;
  font-size: 12px;
}

.pricing-summary-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 690;
}

.pricing-summary-card.is-featured > a {
  border-color: rgba(255, 255, 255, 0.12);
  color: #a8bbff;
}

.unit-rules {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(52px, 8vw, 120px);
  padding: clamp(90px, 10vw, 140px) clamp(24px, 8vw, 140px);
  background: var(--night);
  color: #fff;
}

.unit-rules-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.unit-rules-heading h2 {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.unit-rules-heading > p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.7;
}

.unit-rule-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.unit-rule-grid article {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(120px, 0.45fr) minmax(200px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  background: #0d0f14;
}

.unit-rule-grid article span {
  color: #8ba6ff;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.unit-rule-grid article strong {
  color: #fff;
  font-size: 24px;
  font-weight: 580;
  letter-spacing: -0.04em;
}

.unit-rule-grid article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  line-height: 1.55;
}

.plan-comparison {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(100px, 12vw, 170px) clamp(20px, 6vw, 80px);
}

.comparison-heading {
  margin-bottom: 54px;
}

.comparison-heading h2 {
  margin: 20px 0 0;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 560;
  letter-spacing: -0.06em;
}

.comparison-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.comparison-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(13, 17, 29, 0.07);
  scrollbar-color: rgba(11, 12, 15, 0.3) transparent;
}

.comparison-scroll:focus-visible {
  outline: 3px solid rgba(36, 92, 255, 0.35);
  outline-offset: 4px;
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  width: 18%;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(11, 12, 15, 0.08);
  color: rgba(11, 12, 15, 0.68);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 28%;
}

.comparison-table thead {
  position: sticky;
  top: 78px;
  z-index: 4;
}

.comparison-table thead th {
  height: 92px;
  border-bottom-color: rgba(11, 12, 15, 0.14);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  color: var(--ink);
  font-size: 11px;
  font-weight: 690;
}

.comparison-table thead th:first-child {
  padding-left: 28px;
  text-align: left;
}

.comparison-table thead th.is-featured {
  background: rgba(11, 13, 18, 0.97);
  color: #fff;
}

.comparison-table thead span,
.comparison-table thead b {
  display: block;
}

.comparison-table thead span {
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-table thead b {
  margin-top: 7px;
  color: var(--blue);
  font-size: 14px;
}

.comparison-table tbody th[scope="row"] {
  padding-left: 28px;
  color: var(--ink);
  font-weight: 570;
  text-align: left;
}

.comparison-table .comparison-group th {
  padding: 42px 28px 16px;
  border-bottom-color: rgba(11, 12, 15, 0.15);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 690;
  letter-spacing: -0.02em;
  text-align: left;
}

.plan-yes {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 760;
}

.plan-no {
  color: rgba(11, 12, 15, 0.28);
  font-size: 16px;
}

.comparison-table tfoot th,
.comparison-table tfoot td {
  padding-top: 26px;
  padding-bottom: 26px;
  border-bottom: 0;
  background: var(--paper);
}

.comparison-table tfoot th {
  padding-left: 28px;
  color: var(--ink);
  text-align: left;
}

.comparison-table tfoot a {
  display: inline-flex;
  min-width: 112px;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 690;
}

.comparison-table tfoot td:nth-child(3) a {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.pricing-faq {
  padding: clamp(100px, 12vw, 170px) clamp(24px, 8vw, 140px);
  background:
    radial-gradient(circle at 88% 4%, rgba(36, 92, 255, 0.19), transparent 23%),
    var(--night);
  color: #fff;
}

.faq-heading {
  max-width: 1060px;
  margin-bottom: clamp(78px, 9vw, 130px);
}

.faq-heading h2 {
  max-width: 980px;
  margin: 22px 0 0;
  font-size: clamp(50px, 6.5vw, 92px);
  font-weight: 560;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.faq-heading > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 16px;
  line-height: 1.7;
}

.faq-groups {
  display: grid;
  gap: clamp(80px, 10vw, 140px);
  max-width: 1240px;
  margin: 0 auto;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.faq-group-heading {
  display: grid;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-group-heading span {
  color: #8ba6ff;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.faq-group-heading h3 {
  max-width: 270px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 570;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 28px;
  align-items: center;
  min-height: 96px;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 570;
  line-height: 1.35;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:focus-visible {
  outline: 2px solid #8ba6ff;
  outline-offset: 8px;
}

.faq-list summary b {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-list summary b::before,
.faq-list summary b::after {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  height: 1px;
  background: #8ba6ff;
  content: "";
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.faq-list summary b::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary b::after {
  opacity: 0;
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 850px;
  padding: 0 54px 34px 0;
}

.faq-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.82;
}

.faq-list details[open] summary {
  color: #fff;
}

.pricing-boundary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: clamp(60px, 10vw, 160px);
  padding: clamp(90px, 10vw, 140px) clamp(24px, 8vw, 140px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.pricing-boundary h2 {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pricing-boundary > p {
  align-self: end;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.pricing-page-cta {
  padding: clamp(100px, 13vw, 180px) 24px;
  background: #fff;
  text-align: center;
}

.pricing-page-cta h2 {
  margin: 22px 0 0;
  font-size: clamp(52px, 7vw, 94px);
  font-weight: 560;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.pricing-page-cta > p:last-of-type {
  margin: 24px auto 34px;
  color: var(--ink-soft);
  font-size: 15px;
}

.pricing-page-cta .button {
  display: inline-flex;
}

@media (max-width: 1100px) {
  .pricing-page-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-summary-card {
    min-height: 340px;
  }

  .unit-rules {
    grid-template-columns: 1fr;
  }

  .unit-rules-heading {
    position: static;
  }

  .faq-group {
    grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .pricing-page-hero {
    padding-top: 132px;
    padding-bottom: 58px;
  }

  .pricing-page-hero h1 {
    font-size: 48px;
  }

  .pricing-page-hero > p:last-child {
    font-size: 15px;
  }

  .pricing-page-plans {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  .pricing-summary-card {
    min-height: 320px;
  }

  .unit-rules {
    gap: 46px;
  }

  .unit-rule-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .comparison-table thead {
    top: 68px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fff;
    box-shadow: 1px 0 rgba(11, 12, 15, 0.09);
  }

  .comparison-table thead th:first-child {
    z-index: 6;
  }

  .comparison-table .comparison-group th {
    position: static;
    background: var(--paper);
    box-shadow: none;
  }

  .pricing-boundary {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-heading {
    margin-bottom: 72px;
  }

  .faq-group {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-group-heading {
    gap: 12px;
  }

  .faq-group-heading h3 {
    max-width: none;
  }

  .faq-list summary {
    min-height: 84px;
    padding: 22px 0;
    font-size: 17px;
  }

  .faq-answer {
    padding-right: 0;
  }
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(60px, 10vw, 160px);
  padding: clamp(110px, 14vw, 200px) clamp(24px, 8vw, 140px);
  background: #fff;
}

.contact-copy h2 {
  font-size: clamp(44px, 5.8vw, 84px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.contact-copy > a {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 620;
}

.access-offer {
  display: flex;
  width: fit-content;
  max-width: 580px;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 11px 13px;
  border: 1px solid rgba(36, 92, 255, 0.16);
  border-radius: 999px;
  background: rgba(36, 92, 255, 0.055);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.access-offer > strong {
  color: var(--blue);
  font-size: 16px;
  font-weight: 760;
  white-space: nowrap;
}

.offer-tooltip {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.offer-tooltip-trigger {
  display: grid;
  width: 19px;
  height: 19px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(11, 12, 15, 0.22);
  border-radius: 50%;
  background: transparent;
  color: rgba(11, 12, 15, 0.66);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.offer-tooltip-trigger:focus-visible {
  border-color: var(--blue);
  outline: 2px solid rgba(36, 92, 255, 0.18);
  outline-offset: 2px;
}

.offer-tooltip-copy {
  position: absolute;
  z-index: 12;
  right: -8px;
  bottom: calc(100% + 10px);
  width: min(280px, calc(100vw - 48px));
  padding: 11px 13px;
  border-radius: 9px;
  background: var(--night);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 520;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.offer-tooltip:hover .offer-tooltip-copy,
.offer-tooltip:focus-within .offer-tooltip-copy {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  display: grid;
  gap: 24px;
  align-self: start;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 670;
  letter-spacing: 0.02em;
}

.use-case-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.use-case-field legend {
  margin: 0 0 10px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 670;
  letter-spacing: 0.02em;
}

.use-case-field legend > span {
  margin-left: 5px;
  color: rgba(11, 12, 15, 0.48);
  font-weight: 500;
}

.use-case-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-form .use-case-option {
  position: relative;
  display: flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(11, 12, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 520;
  letter-spacing: 0;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease;
}

.contact-form .use-case-option:hover {
  border-color: rgba(36, 92, 255, 0.28);
  background: rgba(36, 92, 255, 0.06);
}

.contact-form .use-case-option input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-form .use-case-option > span {
  color: var(--ink);
  font-weight: 520;
}

.contact-form .use-case-option:focus-within {
  outline: 2px solid rgba(36, 92, 255, 0.24);
  outline-offset: 2px;
}

.contact-form .use-case-option.is-selected {
  border-color: var(--blue);
  background: var(--blue);
}

.contact-form .use-case-option.is-selected > span {
  color: #fff;
}

.use-case-field[aria-invalid="true"] .use-case-option {
  border-color: rgba(157, 45, 45, 0.36);
}

.use-case-error {
  margin: 7px 0 0;
  color: #9d2d2d;
  font-size: 11px;
  font-weight: 520;
}

.other-use-case[hidden] {
  display: none;
}

.contact-form label > span {
  color: rgba(11, 12, 15, 0.62);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(11, 12, 15, 0.18);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 160ms ease;
}

.contact-form input {
  min-height: 48px;
}

.contact-form select {
  min-height: 48px;
  padding: 0 26px 0 0;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(11, 12, 15, 0.45) 50%),
    linear-gradient(135deg, rgba(11, 12, 15, 0.45) 50%, transparent 50%);
  background-position:
    calc(100% - 8px) 21px,
    calc(100% - 3px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 12px 0;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(11, 12, 15, 0.32);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.button-blue {
  justify-content: space-between;
  width: 100%;
  margin-top: 4px;
  background: var(--blue);
  color: #fff;
}

.button-blue:hover {
  background: #174be5;
  box-shadow: 0 14px 34px rgba(36, 92, 255, 0.22);
}

.button-blue:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.form-status {
  min-height: 18px;
  margin: -8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-status.is-success {
  color: #176a42;
}

.form-status.is-error {
  color: #9d2d2d;
}

.form-legal {
  margin: -4px 0 0;
  color: rgba(11, 12, 15, 0.52);
  font-size: 10px;
  line-height: 1.55;
}

.form-legal a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(11, 12, 15, 0.22);
  color: var(--ink-soft);
}

.form-legal a:hover {
  color: var(--blue);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(60px, 10vw, 160px);
  padding: 58px clamp(24px, 7vw, 118px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-brand img {
  width: 26px;
  height: 26px;
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(11, 12, 15, 0.66);
  font-size: 11px;
}

.footer-directory {
  display: grid;
  grid-template-columns:
    minmax(100px, 0.6fr) minmax(220px, 1.3fr) minmax(110px, 0.7fr)
    minmax(160px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
}

.footer-link-group {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
  color: rgba(11, 12, 15, 0.66);
  font-size: 11px;
}

.footer-link-group > span {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-link-group a,
.footer-link-group small {
  line-height: 1.45;
}

.footer-link-group a {
  transition: color 160ms ease;
}

.footer-link-group a:hover {
  color: var(--blue);
}

.footer-link-group small {
  margin-top: 4px;
  color: rgba(11, 12, 15, 0.48);
  font-size: 10px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 146px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-subtitle {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-proof {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-object {
    width: min(80vw, 540px);
  }

  .hero-code-card,
  .hero-source-card,
  .hero-layer-visual {
    width: min(82vw, 590px);
  }

  .hero-footnote {
    position: static;
    grid-column: 1;
    margin-top: 10px;
    text-align: center;
  }

  .layers-heading,
  .path-comparison-heading,
  .layer-panel,
  .preview-body,
  .compliance-inner,
  .pricing-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .compliance-inner {
    max-width: 760px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1240px;
  }

  .usage-object-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layer-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-description {
    min-height: 0;
  }

  .layer-map {
    grid-template-columns: 1fr;
  }

  .layer-map-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .statement-inner {
    display: block;
  }

  .statement-copy {
    display: block;
  }

  .statement-note {
    margin-top: 32px;
    margin-bottom: 0;
  }

  .normalization-map {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "sources"
      "connector"
      "output";
    gap: 24px;
    max-width: 720px;
    margin-top: clamp(58px, 8vw, 88px);
    margin-right: auto;
    margin-left: auto;
  }

  .normalization-connector {
    width: 1px;
    height: 64px;
    justify-self: center;
  }

  .normalization-connector::after {
    top: auto;
    right: -4px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .normalization-connector span {
    top: 22px;
    right: auto;
    bottom: auto;
    left: 14px;
    width: max-content;
  }

  .normalization-connector i {
    top: 0;
    left: -3px;
    animation: normalization-flow-vertical 2.8s ease-in-out infinite;
  }

  .function-visual {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }

  .layers-heading > p:last-child {
    margin-top: 28px;
  }

  .path-comparison-heading > p {
    max-width: 680px;
  }

  .layer-tabs {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    overflow-x: auto;
  }

  .layer-tabs.is-single {
    grid-template-columns: minmax(0, 1fr);
    overflow-x: visible;
  }

  .preview-body {
    min-height: auto;
  }

  .preview-result {
    grid-column: 1;
    grid-row: 2;
  }

  .preview-query {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-section {
    gap: 64px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .header-action {
    padding: 9px 13px;
  }

  .site-login-modal {
    align-items: end;
    padding: 8px;
  }

  .site-login-dialog {
    width: 100%;
    min-height: 390px;
    border-radius: 26px;
  }

  .site-login-frame {
    height: calc(100svh - 16px);
  }

  .hero {
    min-height: auto;
    padding: 126px 20px 70px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 72px);
    line-height: 0.94;
  }

  .hero-subtitle {
    margin-top: 26px;
    font-size: 16px;
  }

  .hero-proof {
    flex-direction: column;
    gap: 6px;
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-proof span + span::before {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
    margin-top: 34px;
  }

  .hero-object {
    width: min(100%, 430px);
  }

  .hero-code-card,
  .hero-source-card,
  .hero-layer-visual {
    width: 100%;
  }

  .layer-core-stable {
    width: 136px;
  }

  .layer-core-stable span {
    font-size: 48px;
  }

  .layer-input {
    gap: 7px;
    padding: 8px 11px;
    font-size: 8px;
  }

  .layer-input.is-markets {
    top: 10%;
    left: 2%;
  }

  .layer-input.is-sources {
    top: 20%;
    right: 0;
  }

  .layer-input.is-updates {
    bottom: 9%;
    left: 3%;
  }

  .layer-input.is-history {
    top: 50%;
    left: 0;
  }

  .layer-input.is-prices {
    right: 1%;
    bottom: 16%;
  }

  .layer-input.is-history::after,
  .layer-input.is-prices::before {
    width: 14px;
  }

  .hero-source-flow {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 22px;
  }

  .hero-source-connector {
    width: 1px;
    height: 42px;
    justify-self: center;
  }

  .hero-source-connector::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .hero-source-connector i {
    top: 0;
    left: -2px;
    animation: normalization-flow-vertical 2.4s ease-in-out infinite;
  }

  .hero-listing-output {
    min-height: 140px;
  }

  .hero-code-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-code-stats div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }

  .signal {
    padding: 7px 10px;
    font-size: 8px;
  }

  .core-surface {
    padding: 17px;
  }

  .statement,
  .layers-section,
  .path-comparison,
  .preview-section,
  .difference-section,
  .compliance-section,
  .pricing-section,
  .contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .statement h2,
  .layers-heading h2,
  .path-comparison-heading h2,
  .preview-heading h2,
  .pricing-heading h2,
  .contact-copy h2 {
    font-size: 42px;
  }

  .statement h2 .statement-line {
    white-space: normal;
  }

  .path-comparison {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .path-comparison-heading {
    margin-bottom: 42px;
  }

  .path-comparison-heading h2 {
    font-size: 42px;
  }

  .path-comparison-frame {
    margin-right: -20px;
    border-right: 0;
    border-radius: 22px 0 0 22px;
  }

  .path-comparison-table {
    min-width: 900px;
  }

  .path-comparison-table thead th {
    height: 158px;
    padding: 25px 22px 22px;
  }

  .path-comparison-table tbody th,
  .path-comparison-table tbody td {
    padding-right: 22px;
    padding-left: 22px;
  }

  .path-comparison-note {
    margin-top: 16px;
    text-align: left;
  }

  .difference-inner h2 {
    font-size: 52px;
  }

  .compliance-copy h2 {
    font-size: 52px;
  }

  .compliance-copy > p:last-child {
    font-size: 15px;
  }

  .compliance-boundary {
    border-radius: 24px;
  }

  .compliance-boundary-topline {
    padding: 0 18px;
  }

  .compliance-layer {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 16px;
  }

  .compliance-layer-state {
    grid-column: 2;
    justify-self: start;
  }

  .continuity-grid {
    grid-template-columns: 1fr;
  }

  .continuity-card {
    min-height: 0;
  }

  .continuity-card h3 {
    margin-top: 42px;
  }

  .preview-heading {
    margin-bottom: 46px;
    text-align: left;
  }

  .preview-bridge {
    margin-right: 0;
    margin-left: 0;
    font-size: 15px;
  }

  .pricing-heading {
    margin-bottom: 46px;
  }

  .pricing-heading > p {
    margin-top: 24px;
    font-size: 15px;
  }

  .usage-composer-heading {
    min-height: 72px;
  }

  .usage-object-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 30px 22px;
  }

  .pricing-price {
    min-height: 112px;
  }

  .preview-window {
    border-radius: 24px;
  }

  .preview-toolbar {
    min-height: 56px;
    padding: 0 18px;
  }

  .preview-body {
    gap: 42px;
    padding: 34px 20px 24px;
  }

  .workload-builder {
    gap: 24px;
  }

  .workload-choice {
    max-width: 100%;
  }

  .layers-heading {
    margin-bottom: 44px;
  }

  .layer-console {
    border-radius: 24px;
  }

  .source-disclaimer {
    text-align: left;
  }

  .layer-tabs {
    padding: 9px;
  }

  .layer-panel {
    gap: 34px;
    min-height: auto;
    padding: 44px 24px;
  }

  .layer-panel h3 {
    font-size: 40px;
  }

  .statement-note {
    margin-left: 0;
  }

  .source-stack article,
  .source-stack article:nth-of-type(1),
  .source-stack article:nth-of-type(3) {
    width: 100%;
    margin-left: 0;
  }

  .source-stack article {
    padding: 18px;
  }

  .normalized-listing-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .normalized-listing h3 {
    font-size: 46px;
  }

  .layer-map-column {
    padding: 28px 24px;
  }

  .layer-proof-grid {
    grid-template-columns: 1fr;
  }

  .function-visual {
    gap: 22px;
    padding: 18px 14px;
  }

  .function-flow {
    grid-template-columns: minmax(58px, 1fr) 18px minmax(64px, 1fr) 18px minmax(58px, 1fr);
  }

  .function-node,
  .function-core {
    min-height: 74px;
    border-radius: 15px;
  }

  .function-node strong,
  .function-core strong {
    font-size: 9px;
  }

  .json-result {
    padding: 24px 18px;
    font-size: 10px;
  }

  .result-list {
    padding: 8px 18px;
  }

  .preview-result {
    --result-viewport-height: 370px;
  }

  .result-item {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
    padding: 13px 0;
  }

  .result-tag {
    grid-column: 2;
    justify-self: start;
  }

  .result-item-copy > .result-source {
    font-size: 9px;
  }

  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    padding: 26px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }

  .footer-directory {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .coverage-heading {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .coverage-stats {
    max-width: 680px;
  }

  .coverage-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .coverage-search {
    width: 100%;
  }

  .coverage-workspace {
    grid-template-columns: 1fr;
  }

  .coverage-map-panel {
    min-height: 500px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .coverage-map {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .coverage-directory {
    min-height: 520px;
  }

  .coverage-source-grid {
    max-height: 430px;
  }

  .coverage-market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .coverage-section {
    padding: 100px 20px;
  }

  .coverage-heading {
    gap: 38px;
    margin-bottom: 48px;
  }

  .coverage-copy h2 {
    font-size: 46px;
  }

  .coverage-summary > p {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .coverage-stats div {
    padding: 19px 8px 17px;
  }

  .coverage-stats dt {
    font-size: 32px;
  }

  .coverage-stats dd {
    font-size: 8px;
  }

  .coverage-explorer {
    border-radius: 26px;
  }

  .coverage-tools {
    gap: 14px;
    padding: 15px;
  }

  .coverage-search {
    min-height: 46px;
  }

  .coverage-regions {
    margin-right: -15px;
    margin-left: -15px;
    padding: 0 15px;
  }

  .coverage-map-panel {
    display: none;
  }

  .coverage-workspace {
    min-height: 0;
  }

  .coverage-directory {
    min-height: 0;
  }

  .coverage-directory-heading {
    min-height: 96px;
    padding: 22px 18px;
  }

  .coverage-directory-heading h3 {
    font-size: 23px;
  }

  .coverage-source-grid {
    max-height: 414px;
  }

  .coverage-source-card {
    min-height: 92px;
    padding: 18px 14px;
  }

  .coverage-source-card strong {
    font-size: 11px;
  }

  .coverage-source-card span {
    font-size: 8px;
  }

  .coverage-market-directory {
    padding: 22px 15px 24px;
  }

  .coverage-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-market-button {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 8px;
    padding-right: 9px;
  }

  .coverage-market-code {
    width: 30px;
    height: 30px;
  }

  .coverage-market-name {
    font-size: 9px;
  }

  .coverage-note {
    text-align: left;
  }
}

/* How It Works */

.how-it-works-page {
  background: var(--paper);
}

.lab-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  min-height: min(920px, 100svh);
  padding: 132px clamp(24px, 5vw, 80px) 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 92, 255, 0.11), transparent 27%),
    #fff;
}

.lab-hero-copy {
  max-width: 660px;
}

.lab-hero-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lab-hero-topline .eyebrow {
  margin: 0;
  line-height: 1;
}

.lab-illustrative-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(36, 92, 255, 0.2);
  border-radius: 999px;
  background: rgba(36, 92, 255, 0.06);
  color: var(--blue);
  font-size: 9px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lab-hero h1 {
  margin: 28px 0 0;
  font-size: clamp(52px, 4.8vw, 78px);
  font-weight: 560;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lab-hero h1 span {
  display: block;
  color: var(--ink);
}

.lab-hero h1 span:last-child {
  color: var(--blue);
}

.lab-hero-copy > p {
  max-width: 580px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.lab-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  margin-top: 38px;
}

.lab-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px minmax(180px, 0.72fr);
  gap: 22px;
  align-items: center;
  min-height: 560px;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(11, 12, 15, 0.09);
  border-radius: 38px;
  background:
    radial-gradient(circle at 95% 5%, rgba(36, 92, 255, 0.24), transparent 32%),
    var(--night);
  box-shadow: 0 40px 110px rgba(13, 17, 29, 0.18);
  color: #fff;
}

.lab-hero-sources {
  display: grid;
  gap: 16px;
}

.lab-hero-source,
.lab-source-record {
  --lab-source-color: #8ba6ff;
}

.lab-source-b {
  --lab-source-color: #bd9bff;
}

.lab-source-c {
  --lab-source-color: #e7b95d;
}

.lab-hero-source {
  display: grid;
  gap: 7px;
  padding: 20px 21px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--lab-source-color);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.lab-hero-source span,
.lab-hero-canonical span {
  color: var(--lab-source-color);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lab-hero-source strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 590;
}

.lab-hero-source small,
.lab-hero-canonical small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.lab-hero-flow {
  display: grid;
  gap: 54px;
}

.lab-hero-flow span {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, var(--lab-source-color), rgba(139, 166, 255, 0.2));
}

.lab-hero-flow span:nth-child(1) {
  --lab-source-color: #8ba6ff;
}

.lab-hero-flow span:nth-child(2) {
  --lab-source-color: #bd9bff;
}

.lab-hero-flow span:nth-child(3) {
  --lab-source-color: #e7b95d;
}

.lab-hero-flow span::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #8ba6ff;
  border-right: 1px solid #8ba6ff;
  content: "";
  transform: rotate(45deg);
}

.lab-hero-canonical {
  display: grid;
  gap: 14px;
  padding: 30px 24px;
  border: 1px solid rgba(111, 145, 255, 0.3);
  border-radius: 20px;
  background: rgba(36, 92, 255, 0.13);
  box-shadow: 0 20px 70px rgba(36, 92, 255, 0.16);
}

.lab-hero-canonical span {
  --lab-source-color: #a8bbff;
}

.lab-hero-canonical strong {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 570;
  letter-spacing: -0.04em;
}

.lab-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
  padding: clamp(64px, 7vw, 100px) clamp(24px, 6vw, 100px)
    clamp(100px, 12vw, 180px);
  background: var(--paper);
}

.lab-story-chapters {
  display: grid;
}

.lab-chapter {
  display: flex;
  min-height: 78svh;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  opacity: 0.34;
  transition: opacity 240ms ease;
}

.lab-chapter.is-active {
  opacity: 1;
}

.lab-chapter-number {
  width: fit-content;
  margin-bottom: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.lab-chapter h2 {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.lab-chapter > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.lab-chapter-outcome {
  max-width: 580px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.6;
}

.lab-stage-column {
  position: sticky;
  top: 98px;
  padding-top: 0;
}

.lab-stage {
  min-height: min(650px, calc(100svh - 125px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(36, 92, 255, 0.23), transparent 28%),
    var(--night);
  box-shadow: 0 36px 100px rgba(13, 17, 29, 0.18);
  color: #fff;
}

.lab-stage-topline {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lab-stage-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
}

.lab-stage-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  background: var(--blue);
  transition: width 260ms ease;
}

.lab-stage-controls {
  display: flex;
  gap: 8px;
  padding: 20px 28px 0;
}

.lab-stage-controls button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.lab-stage-controls button[aria-pressed="true"] {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.lab-stage-controls button:focus-visible {
  outline: 2px solid #8ba6ff;
  outline-offset: 3px;
}

.lab-stage-panels {
  padding: clamp(24px, 3vw, 38px);
}

.lab-panel[hidden] {
  display: none;
}

.lab-panel.is-active {
  animation: lab-panel-enter 260ms ease both;
}

@keyframes lab-panel-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lab-panel-label {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 690;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lab-source-records {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lab-source-record {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 3px solid var(--lab-source-color);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.lab-source-record > div:first-child,
.lab-record-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lab-source-record > div:first-child span {
  color: var(--lab-source-color);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lab-source-record > div:first-child small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.lab-source-record dl,
.lab-canonical-record dl {
  display: grid;
  gap: 10px;
  margin: 15px 0 0;
}

.lab-source-record dl div,
.lab-canonical-record dl div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 8px;
}

.lab-source-record dt,
.lab-canonical-record dt {
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.lab-source-record dd,
.lab-canonical-record dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.45;
}

.lab-stage-caption {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  line-height: 1.6;
}

.lab-identity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.45fr);
  gap: 34px;
  align-items: center;
}

.lab-match-evidence,
.lab-field-lineage {
  display: grid;
}

.lab-match-evidence > div,
.lab-field-lineage > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.42fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lab-match-evidence strong,
.lab-field-lineage strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 620;
}

.lab-match-evidence span,
.lab-field-lineage span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  line-height: 1.45;
}

.lab-match-evidence b,
.lab-field-lineage b {
  padding: 5px 7px;
  border: 1px solid rgba(111, 145, 255, 0.2);
  border-radius: 999px;
  color: #8ba6ff;
  font-size: 10px;
  font-weight: 660;
}

.lab-match-result {
  text-align: center;
}

.lab-confidence-ring {
  display: grid;
  width: 144px;
  height: 144px;
  margin: 0 auto;
  place-content: center;
  border: 1px solid rgba(111, 145, 255, 0.4);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(36, 92, 255, 0.2), transparent 65%),
    rgba(36, 92, 255, 0.06);
  box-shadow:
    0 0 0 12px rgba(36, 92, 255, 0.04),
    0 0 0 24px rgba(36, 92, 255, 0.025);
}

.lab-confidence-ring strong {
  color: #fff;
  font-size: 36px;
  font-weight: 560;
  letter-spacing: -0.06em;
}

.lab-confidence-ring span {
  margin-top: 6px;
  color: #8ba6ff;
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lab-match-result p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.lab-match-result small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  line-height: 1.5;
}

.lab-canonical-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.lab-canonical-record {
  padding: 23px;
  border: 1px solid rgba(111, 145, 255, 0.24);
  border-radius: 18px;
  background: rgba(36, 92, 255, 0.08);
}

.lab-record-heading span {
  color: #8ba6ff;
  font-size: 11px;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lab-record-heading b {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
}

.lab-conflict-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
}

.lab-conflict-table > div {
  display: grid;
  grid-template-columns: 1.05fr repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lab-conflict-table > div:last-child {
  border-bottom: 0;
}

.lab-conflict-header {
  background: rgba(255, 255, 255, 0.035);
}

.lab-conflict-table span,
.lab-conflict-table strong,
.lab-conflict-table b {
  font-size: 11px;
  text-align: center;
}

.lab-conflict-table span:first-child,
.lab-conflict-table strong {
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.lab-conflict-table span {
  color: rgba(255, 255, 255, 0.38);
}

.lab-conflict-table b {
  width: fit-content;
  justify-self: center;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(36, 92, 255, 0.13);
  color: #a8bbff;
  font-weight: 650;
}

.lab-history-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 28px;
}

.lab-history-timeline article {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 25px 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.lab-history-timeline article::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--night);
  border-radius: 50%;
  background: #8ba6ff;
  box-shadow: 0 0 0 1px rgba(139, 166, 255, 0.4);
  content: "";
}

.lab-history-timeline time {
  color: #8ba6ff;
  font-size: 10px;
}

.lab-history-timeline strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 610;
}

.lab-history-timeline span {
  color: rgba(255, 255, 255, 0.37);
  font-size: 10px;
  line-height: 1.45;
}

.lab-history-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.lab-history-signals span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.lab-delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
  gap: 18px;
}

.lab-json {
  margin: 0;
  padding: 20px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.lab-unit-receipt {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(111, 145, 255, 0.2);
  border-radius: 16px;
  background: rgba(36, 92, 255, 0.07);
}

.lab-unit-receipt > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lab-unit-receipt span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.lab-unit-receipt strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 620;
}

.lab-unit-receipt .lab-unit-total {
  margin-top: auto;
  border-bottom: 0;
}

.lab-unit-receipt .lab-unit-total span,
.lab-unit-receipt .lab-unit-total strong {
  color: #a8bbff;
  font-size: 11px;
}

.lab-downstream {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(540px, 1.15fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
  padding: clamp(110px, 14vw, 200px) clamp(24px, 8vw, 140px);
  background: #fff;
}

.lab-downstream-copy h2 {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 560;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.lab-downstream-copy > p:last-child {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.lab-downstream-map {
  position: relative;
  min-height: 620px;
}

.lab-downstream-map::before,
.lab-downstream-map::after {
  position: absolute;
  border: 1px solid rgba(36, 92, 255, 0.1);
  border-radius: 50%;
  content: "";
  inset: 12%;
}

.lab-downstream-map::after {
  inset: 24%;
}

.lab-downstream-record,
.lab-downstream-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

.lab-downstream-record {
  top: 50%;
  left: 50%;
  width: 240px;
  min-height: 160px;
  padding: 24px;
  border-color: rgba(36, 92, 255, 0.25);
  border-radius: 28px;
  background: var(--night);
  box-shadow: 0 30px 90px rgba(13, 17, 29, 0.2);
  color: #fff;
  transform: translate(-50%, -50%);
}

.lab-downstream-record span {
  color: #8ba6ff;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lab-downstream-record strong {
  font-size: 22px;
  font-weight: 570;
  letter-spacing: -0.04em;
}

.lab-downstream-record small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.lab-downstream-node {
  width: 126px;
  min-height: 62px;
  padding: 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 620;
}

.lab-node-search {
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.lab-node-risk {
  top: 25%;
  left: 0;
}

.lab-node-product {
  top: 25%;
  right: 0;
}

.lab-node-warehouse {
  bottom: 9%;
  left: 10%;
}

.lab-node-agents {
  right: 10%;
  bottom: 9%;
}

.lab-proof-boundary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(70px, 10vw, 160px);
  padding: clamp(100px, 12vw, 170px) clamp(24px, 8vw, 140px);
  background: var(--night);
  color: #fff;
}

.lab-proof-boundary h2 {
  max-width: 780px;
  margin: 20px 0 0;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 560;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.lab-boundary-list {
  align-self: end;
}

.lab-boundary-list > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.75;
}

.lab-boundary-list ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  list-style: none;
}

.lab-boundary-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.55;
}

.lab-boundary-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #8ba6ff;
  content: "→";
}

.lab-cta {
  padding: clamp(110px, 15vw, 220px) 24px;
  background: #fff;
  text-align: center;
}

.lab-cta h2 {
  margin: 22px 0 0;
  font-size: clamp(62px, 9vw, 130px);
  font-weight: 560;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.lab-cta > p:last-of-type {
  max-width: 650px;
  margin: 30px auto 38px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.lab-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1180px) {
  .lab-story {
    grid-template-columns: minmax(280px, 0.65fr) minmax(560px, 1.35fr);
    gap: 60px;
    padding-right: 38px;
    padding-left: 38px;
  }

  .lab-stage-panels {
    padding: 24px;
  }

  .lab-source-record {
    padding: 13px;
  }

  .lab-downstream {
    grid-template-columns: 1fr;
  }

  .lab-downstream-map {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .lab-hero {
    grid-template-columns: 1fr;
    gap: 64px;
    min-height: auto;
    padding-top: 150px;
  }

  .lab-hero-copy {
    max-width: 820px;
  }

  .lab-hero-visual {
    width: 100%;
    min-height: 520px;
  }

  .lab-story {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .lab-stage-column {
    position: static;
    order: 1;
    width: 100%;
    padding-top: 0;
  }

  .lab-story-chapters {
    order: 2;
  }

  .lab-chapter {
    min-height: auto;
    padding: 80px 0;
    opacity: 1;
  }

  .lab-stage {
    min-height: 680px;
  }

  .lab-proof-boundary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lab-hero {
    gap: 52px;
    padding: 126px 20px 80px;
  }

  .lab-hero h1 {
    font-size: 50px;
  }

  .lab-hero-copy > p {
    font-size: 15px;
  }

  .lab-hero-visual {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .lab-hero-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 40px;
  }

  .lab-hero-flow span {
    height: 34px;
    background: linear-gradient(180deg, rgba(139, 166, 255, 0.2), #8ba6ff);
  }

  .lab-hero-flow span::after {
    top: auto;
    right: 50%;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }

  .lab-hero-boundary {
    grid-column: 1;
  }

  .lab-story {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .lab-stage {
    min-height: 720px;
    border-radius: 24px;
  }

  .lab-stage-topline {
    padding: 0 20px;
  }

  .lab-stage-controls {
    padding-right: 20px;
    padding-left: 20px;
  }

  .lab-stage-panels {
    padding: 22px 18px;
  }

  .lab-source-records,
  .lab-identity-layout,
  .lab-canonical-layout,
  .lab-delivery-layout {
    grid-template-columns: 1fr;
  }

  .lab-source-record {
    padding: 14px;
  }

  .lab-confidence-ring {
    width: 112px;
    height: 112px;
  }

  .lab-confidence-ring strong {
    font-size: 30px;
  }

  .lab-conflict-table {
    overflow-x: auto;
  }

  .lab-conflict-table > div {
    min-width: 540px;
  }

  .lab-history-timeline {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .lab-history-timeline article {
    padding: 0 0 24px 22px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .lab-history-timeline article::before {
    top: 0;
    left: -5px;
  }

  .lab-downstream,
  .lab-proof-boundary {
    padding-right: 20px;
    padding-left: 20px;
  }

  .lab-downstream-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
  }

  .lab-downstream-map::before,
  .lab-downstream-map::after {
    display: none;
  }

  .lab-downstream-record,
  .lab-downstream-node {
    position: static;
    width: auto;
    min-height: 72px;
    transform: none;
  }

  .lab-downstream-record {
    grid-column: 1 / -1;
    min-height: 150px;
  }

  .lab-proof-boundary h2 {
    font-size: 48px;
  }

  .lab-cta h2 {
    font-size: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Use cases */

.use-case-page {
  background: var(--paper);
}

.use-case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  align-items: center;
  gap: clamp(60px, 8vw, 132px);
  min-height: min(920px, 100svh);
  padding: 136px clamp(24px, 7vw, 118px) 76px;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 92, 255, 0.11), transparent 27%),
    #fff;
}

.use-case-hero-copy {
  max-width: 760px;
}

.use-case-hero h1 {
  margin: 0;
  font-size: clamp(54px, 5.8vw, 94px);
  font-weight: 560;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.use-case-hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 31px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.use-case-hero-visual {
  position: relative;
  min-height: 585px;
  padding: clamp(26px, 3.3vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(11, 12, 15, 0.09);
  border-radius: 38px;
  background:
    radial-gradient(circle at 94% 4%, rgba(36, 92, 255, 0.27), transparent 34%),
    var(--night);
  box-shadow: 0 40px 110px rgba(13, 17, 29, 0.18);
  color: #fff;
}

.use-case-visual-topline,
.use-case-record-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case-request,
.use-case-result {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.use-case-request {
  margin-top: 58px;
  padding: 24px;
}

.use-case-request span,
.use-case-result span,
.use-case-filter-panel > span,
.use-case-coverage-detail > span {
  color: #8ba6ff;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use-case-request strong {
  max-width: 560px;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 560;
  line-height: 1.45;
}

.use-case-source-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.use-case-source-row span {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.4;
}

.use-case-flow {
  display: flex;
  justify-content: center;
  height: 58px;
}

.use-case-flow span {
  position: relative;
  width: 1px;
  background: linear-gradient(rgba(139, 166, 255, 0.2), #8ba6ff);
}

.use-case-flow span::after {
  position: absolute;
  bottom: -1px;
  left: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #8ba6ff;
  border-bottom: 1px solid #8ba6ff;
  content: "";
  transform: rotate(45deg);
}

.use-case-result {
  padding: 25px;
  border-color: rgba(111, 145, 255, 0.35);
  background: rgba(36, 92, 255, 0.1);
}

.use-case-result strong {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 560;
  letter-spacing: -0.025em;
}

.use-case-result small {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.55;
}

.use-case-problem,
.use-case-contract,
.use-case-outcomes,
.use-case-boundary,
.use-case-coverage,
.use-case-faq {
  padding: clamp(100px, 12vw, 170px) clamp(24px, 7vw, 118px);
}

.use-case-problem,
.use-case-contract,
.use-case-boundary,
.use-case-faq {
  background: #fff;
}

.use-case-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.use-case-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.use-case-section-heading h2,
.use-case-workflow-heading h2,
.use-case-coverage h2 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.use-case-section-heading > p:last-child,
.use-case-workflow-heading > p:last-child,
.use-case-coverage-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.use-case-problem-grid,
.use-case-boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(65px, 8vw, 110px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.use-case-problem-grid article,
.use-case-boundary-grid article {
  padding: clamp(30px, 4vw, 58px);
  background: var(--paper-pure);
}

.use-case-problem-grid article > span,
.use-case-boundary-grid article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use-case-problem-grid ul,
.use-case-boundary-grid ul,
.use-case-coverage-detail ul {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.use-case-problem-grid li,
.use-case-boundary-grid li,
.use-case-coverage-detail li {
  position: relative;
  padding: 15px 0 15px 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.use-case-problem-grid li::before,
.use-case-boundary-grid li::before,
.use-case-coverage-detail li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.use-case-workflow {
  padding: clamp(100px, 12vw, 170px) clamp(24px, 7vw, 118px);
  background:
    radial-gradient(circle at 12% 8%, rgba(36, 92, 255, 0.2), transparent 28%),
    var(--night);
  color: #fff;
}

.use-case-workflow-heading {
  max-width: 970px;
}

.use-case-workflow-heading .eyebrow {
  color: #8ba6ff;
}

.use-case-workflow-heading > p:last-child {
  max-width: 760px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
}

.use-case-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(65px, 8vw, 110px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.11);
}

.use-case-step {
  min-height: 320px;
  padding: clamp(25px, 3vw, 42px);
  background: rgba(11, 13, 18, 0.9);
}

.use-case-step > span,
.use-case-outcome-grid article > span {
  color: #8ba6ff;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.use-case-step h3 {
  margin: 90px 0 0;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.use-case-step p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.7;
}

.use-case-contract-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(45px, 7vw, 100px);
  margin-top: clamp(65px, 8vw, 110px);
  padding: clamp(28px, 4vw, 58px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 5%, rgba(36, 92, 255, 0.26), transparent 32%),
    var(--night);
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.use-case-record {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(111, 145, 255, 0.34);
  border-radius: 22px;
  background: rgba(36, 92, 255, 0.08);
}

.use-case-record-topline strong {
  color: rgba(255, 255, 255, 0.78);
}

.use-case-record dl {
  margin: 25px 0 0;
}

.use-case-record dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.74fr) minmax(0, 1.26fr);
  gap: 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.use-case-record dt,
.use-case-record dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.use-case-record dt {
  color: rgba(255, 255, 255, 0.4);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.use-case-record dd {
  color: rgba(255, 255, 255, 0.75);
}

.use-case-filter-panel {
  align-self: center;
}

.use-case-filter-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.use-case-filter-panel > div span,
.use-case-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.use-case-outcomes {
  background: var(--paper);
}

.use-case-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(65px, 8vw, 110px);
}

.use-case-outcome-grid article {
  min-height: 340px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
}

.use-case-outcome-grid h3 {
  max-width: 310px;
  margin: 105px 0 0;
  font-size: clamp(23px, 2.25vw, 32px);
  font-weight: 560;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.use-case-outcome-grid p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.use-case-boundary-grid article:first-child {
  background: rgba(36, 92, 255, 0.045);
}

.use-case-coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
  background: var(--paper);
}

.use-case-coverage-copy > p:not(.eyebrow) {
  margin-top: 30px;
}

.use-case-coverage-copy .text-link {
  margin-top: 32px;
}

.use-case-coverage-detail {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #fff;
}

.use-case-coverage-detail > span {
  color: var(--blue);
}

.use-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.use-case-tags span {
  border-color: rgba(36, 92, 255, 0.16);
  background: rgba(36, 92, 255, 0.045);
  color: var(--ink-soft);
}

.use-case-faq .use-case-section-heading {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.use-case-faq-list {
  max-width: 1060px;
  margin: clamp(60px, 8vw, 100px) 0 0 auto;
  border-top-color: var(--line);
}

.use-case-faq-list details {
  border-bottom-color: var(--line);
}

.use-case-faq-list summary {
  color: var(--ink);
  font-size: clamp(17px, 1.6vw, 21px);
}

.use-case-faq-list details[open] summary {
  color: var(--ink);
}

.use-case-faq-list .faq-answer p {
  color: var(--ink-soft);
}

.use-case-cta {
  padding: clamp(110px, 14vw, 190px) 24px;
  background: var(--paper);
  text-align: center;
}

.use-case-cta h2 {
  max-width: 1100px;
  margin: 22px auto 0;
  font-size: clamp(54px, 7vw, 102px);
  font-weight: 560;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.use-case-cta > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.use-case-cta > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 38px;
}

@media (max-width: 1100px) {
  .use-case-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .use-case-hero-copy {
    max-width: 880px;
  }

  .use-case-hero-visual {
    width: min(100%, 820px);
    min-height: 560px;
  }

  .use-case-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-step {
    min-height: 285px;
  }

  .use-case-contract-panel {
    grid-template-columns: 1fr;
  }

  .use-case-filter-panel {
    padding: 8px 4px;
  }

  .use-case-coverage {
    grid-template-columns: 1fr;
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .footer-link-group:last-child {
    grid-column: auto;
  }

  .use-case-hero {
    gap: 56px;
    padding: 126px 20px 78px;
  }

  .use-case-hero h1 {
    font-size: 50px;
  }

  .use-case-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .use-case-hero-visual {
    min-height: auto;
    padding: 22px;
    border-radius: 27px;
  }

  .use-case-request {
    margin-top: 38px;
    padding: 20px;
  }

  .use-case-source-row {
    grid-template-columns: 1fr;
  }

  .use-case-source-row span {
    min-height: 48px;
  }

  .use-case-problem,
  .use-case-contract,
  .use-case-outcomes,
  .use-case-boundary,
  .use-case-coverage,
  .use-case-faq,
  .use-case-workflow {
    padding: 92px 20px;
  }

  .use-case-section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .use-case-section-heading h2,
  .use-case-workflow-heading h2,
  .use-case-coverage h2 {
    font-size: 45px;
  }

  .use-case-problem-grid,
  .use-case-boundary-grid,
  .use-case-outcome-grid {
    grid-template-columns: 1fr;
  }

  .use-case-problem-grid,
  .use-case-boundary-grid {
    border-radius: 22px;
  }

  .use-case-steps {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .use-case-step {
    min-height: 240px;
  }

  .use-case-step h3 {
    margin-top: 60px;
  }

  .use-case-contract-panel {
    padding: 20px;
    border-radius: 25px;
  }

  .use-case-record {
    padding: 20px;
  }

  .use-case-record dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .use-case-outcome-grid article {
    min-height: 300px;
  }

  .use-case-outcome-grid h3 {
    margin-top: 78px;
  }

  .use-case-coverage-detail {
    padding: 25px 20px;
  }

  .use-case-cta h2 {
    font-size: 56px;
  }

  .use-case-cta > div {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-directory {
    grid-template-columns: 1fr;
  }

  .footer-link-group:last-child {
    grid-column: auto;
  }
}

/* Legal */

.legal-page {
  background: #fff;
}

.legal-hero {
  padding: 148px clamp(24px, 7vw, 118px) clamp(80px, 9vw, 130px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 83% 14%, rgba(36, 92, 255, 0.1), transparent 24%),
    var(--paper);
}

.legal-hero h1 {
  max-width: 1080px;
  font-size: clamp(60px, 8vw, 122px);
  font-weight: 560;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.legal-hero > span {
  display: inline-flex;
  margin-top: 34px;
  padding: 9px 12px;
  border: 1px solid rgba(36, 92, 255, 0.16);
  border-radius: 999px;
  background: rgba(36, 92, 255, 0.045);
  color: var(--blue);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(65px, 10vw, 170px);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 7vw, 118px)
    clamp(110px, 13vw, 180px);
}

.legal-sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
}

.legal-sidebar nav,
.legal-related {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.legal-sidebar nav > span,
.legal-related > span {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-sidebar nav a {
  width: 100%;
  padding: 9px 0;
  border-bottom: 1px solid rgba(11, 12, 15, 0.07);
  color: rgba(11, 12, 15, 0.56);
  font-size: 10px;
  line-height: 1.4;
  transition:
    color 160ms ease,
    padding-left 160ms ease;
}

.legal-sidebar nav a:hover,
.legal-sidebar nav a:focus-visible {
  padding-left: 5px;
  color: var(--ink);
}

.legal-related {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-related a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.legal-related a:hover {
  color: var(--blue);
}

.legal-related b {
  font-size: 13px;
  font-weight: 500;
}

.legal-document {
  width: min(100%, 880px);
}

.legal-section {
  scroll-margin-top: 112px;
  padding: 0 0 clamp(60px, 7vw, 92px);
}

.legal-section + .legal-section {
  padding-top: clamp(60px, 7vw, 92px);
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 560;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.82;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p {
  margin-top: 18px;
}

.legal-section ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding-left: 22px;
}

.legal-section li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.legal-note {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(36, 92, 255, 0.14);
  border-radius: 16px;
  background: rgba(36, 92, 255, 0.045);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .legal-sidebar nav > span {
    grid-column: 1 / -1;
  }

  .legal-related {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 20px;
  }

  .legal-related > span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 128px 20px 78px;
  }

  .legal-hero h1 {
    font-size: 58px;
  }

  .legal-hero > p:not(.eyebrow) {
    font-size: 15px;
  }

  .legal-layout {
    padding: 70px 20px 110px;
  }

  .legal-sidebar nav,
  .legal-related {
    grid-template-columns: 1fr;
  }

  .legal-sidebar nav > span,
  .legal-related > span {
    grid-column: auto;
  }

  .legal-section h2 {
    font-size: 34px;
  }
}
