@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --gh-font-heading: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --gh-font-body: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: hsl(var(--fg-1));
  background: hsl(var(--background));
  font-family: var(--gh-font-body, var(--font-sans));
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid hsl(var(--brand-prussian));
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: hsl(var(--fg-inverse));
  background: hsl(var(--brand-bone));
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  transform: translateY(0);
}

.content-width {
  width: min(1100px, calc(100% - 3rem));
  margin-inline: auto;
}

.content-narrow {
  width: min(720px, calc(100% - 3rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  color: hsl(var(--fg-2));
}

.eyebrow--brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: hsl(var(--brand-prussian));
  background: hsl(var(--brand-prussian-soft));
  letter-spacing: 0;
  text-transform: none;
}

.status-dot {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  flex: none;
  border-radius: 999px;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid hsl(var(--border) / 0.72);
  background: hsl(var(--background) / 0.88);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 3rem));
  min-height: 4.25rem;
  margin-inline: auto;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  color: hsl(var(--fg-1));
}

.brand:hover {
  text-decoration: none;
  opacity: 0.88;
}

.brand img {
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  color: hsl(var(--fg-2));
  font-size: 0.82rem;
  font-weight: 500;
}

.site-nav > a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: inherit;
}

.site-nav > a:not(.button):hover {
  color: hsl(var(--fg-1));
  text-decoration: none;
}

.nav-external-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm);
  color: hsl(var(--fg-1));
  background: hsl(var(--card));
}

.menu-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
}

.menu-toggle__close {
  display: none;
}

.menu-open .menu-toggle__open {
  display: none;
}

.menu-open .menu-toggle__close {
  display: inline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1px solid hsl(var(--brand-prussian));
  border-radius: var(--radius-sm);
  color: hsl(var(--primary-foreground));
  background: hsl(var(--brand-prussian));
  box-shadow: var(--shadow-xs);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--brand-prussian-hover));
  border-color: hsl(var(--brand-prussian-hover));
  text-decoration: none;
  transform: translateY(-1px);
}

.button--quiet {
  color: hsl(var(--fg-1));
  border-color: hsl(var(--input));
  background: transparent;
}

.button--quiet:hover {
  color: hsl(var(--fg-1));
  border-color: hsl(var(--tertiary));
  background: hsl(var(--muted));
}

.button--small {
  min-height: 2.1rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
}

.button--block {
  display: flex;
  width: 100%;
  margin-top: auto;
}

.button__icon,
.text-link__icon {
  width: 0.9rem;
  height: 0.9rem;
  flex: none;
}

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  z-index: 0;
  top: -18rem;
  left: 50%;
  width: min(900px, 100vw);
  height: 38rem;
  pointer-events: none;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, hsl(var(--brand-prussian) / 0.13), transparent 68%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

.hero h1 {
  margin: 1.25rem 0 0;
  color: hsl(var(--fg-1));
  font-size: clamp(2.9rem, 7vw, 4.45rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-family: var(--gh-font-heading, var(--font-display));
}

.hero__lede {
  max-width: 640px;
  margin: 1.25rem auto 0;
  color: hsl(var(--fg-2));
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.hero__note {
  margin: 0.85rem 0 0;
  color: hsl(var(--fg-2));
  font-size: 0.75rem;
}

.product-preview {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 3.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.9rem;
  background: hsl(var(--card));
  box-shadow: var(--shadow-lg);
}

.product-preview.content-width {
  width: min(1280px, calc(100% - 3rem));
}

.browser-chrome {
  display: flex;
  align-items: center;
  min-height: 2.25rem;
  gap: 0.4rem;
  padding: 0 0.85rem;
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--fg-2));
  background: hsl(var(--header));
}

.browser-dot {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
}

.browser-dot--red {
  background: #ed6a5e;
}

.browser-dot--yellow {
  background: #f5bd4f;
}

.browser-dot--green {
  background: #62c554;
}

.browser-address {
  flex: 1;
  padding-right: 2rem;
  color: hsl(var(--fg-2));
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-align: center;
}

.trace-preview {
  overflow: hidden;
  background: hsl(var(--background));
}

.trace-preview__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem 0.75rem;
  border-bottom: 1px solid hsl(var(--border));
}

.trace-preview__heading h2 {
  margin: 0;
  color: hsl(var(--fg-1));
  font-size: 1.375rem;
  font-weight: 600;
}

.trace-preview__heading p {
  margin: 0.25rem 0 0;
  color: hsl(var(--fg-2));
  font-size: 0.8125rem;
}

.trace-how-link {
  color: hsl(var(--brand-teal));
  text-decoration: none;
  white-space: nowrap;
}

.trace-how-link:hover {
  color: hsl(var(--brand-glacier));
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  flex: none;
  padding: 0.3rem 0.62rem;
  border-radius: var(--radius-sm);
  color: hsl(var(--success-fg));
  background: hsl(var(--success-bg));
  font-size: 0.7rem;
  font-weight: 600;
}

.trace-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.875rem 1.5rem 0.75rem;
}

.trace-stat {
  position: relative;
  min-width: 0;
  min-height: 6.5rem;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm);
  background: hsl(var(--card));
  box-shadow: var(--shadow-xs);
}

.trace-stat__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.trace-stat__head > span {
  display: block;
  overflow: hidden;
  color: hsl(var(--fg-2));
  font-size: 0.75rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trace-stat strong {
  display: block;
  margin-top: 0.375rem;
  color: hsl(var(--fg-1));
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.trace-stat em {
  position: relative;
  display: inline-flex;
  flex: none;
  align-items: center;
  min-height: 1.375rem;
  padding: 0 0.5625rem 0 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm);
  background: hsl(var(--accent));
  color: hsl(var(--fg-1));
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.trace-stat em::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 0.18rem;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: hsl(var(--fg-3));
  content: "";
}

.trace-stat small {
  display: block;
  margin-top: 0.25rem;
  color: hsl(var(--fg-2));
  font-size: 0.75rem;
}

.metric-positive {
  color: hsl(var(--success-fg));
  background: hsl(var(--success-bg));
}

.metric-negative {
  color: hsl(var(--error-fg));
  background: hsl(var(--error-bg));
}

.trace-controls {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--fg-2));
  font-size: 0.8125rem;
}

.filter-pills {
  display: inline-flex;
  flex: none;
  overflow: hidden;
  border: 1px solid hsl(var(--input));
  border-radius: var(--radius-xs);
  background: transparent;
}

.filter-pills span {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  padding: 0 0.6875rem;
  white-space: nowrap;
}

.filter-pills .is-active {
  color: hsl(var(--fg-1));
  background: hsl(var(--accent));
}

.trace-control,
.filter-control,
.trace-search {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  gap: 0.375rem;
  padding: 0 0.6875rem;
  border: 1px solid hsl(var(--input));
  border-radius: var(--radius-xs);
  background: transparent;
  color: hsl(var(--fg-1));
  box-shadow: inset 0.18rem 0 0 hsl(var(--brand-prussian) / 0.85);
  font-weight: 500;
  white-space: nowrap;
}

.control-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--fg-2));
}

.control-caret {
  display: inline-flex;
  width: 0.86rem;
  height: 0.86rem;
  align-items: center;
  justify-content: center;
  margin-left: 0.12rem;
  color: hsl(var(--fg-2));
}

.control-caret svg {
  width: 0.8rem;
  height: 0.8rem;
}

.trace-controls__divider {
  width: 1px;
  height: 1.25rem;
  flex: none;
  margin: 0 0.1rem;
  background: hsl(var(--border));
}

.trace-search {
  flex: 1;
  min-width: 22.5rem;
  overflow: hidden;
  color: hsl(var(--fg-3));
  box-shadow: inset 0 1px 0 hsl(var(--fg-1) / 0.03);
  font-weight: 400;
  text-overflow: ellipsis;
}

.trace-count {
  flex: none;
  color: hsl(var(--fg-2));
  font-family: var(--font-mono);
  white-space: nowrap;
}

.trace-count strong {
  color: hsl(var(--fg-1));
  font-weight: 500;
}

.trace-count-label {
  flex: none;
  color: hsl(var(--fg-2));
  white-space: nowrap;
}

.trace-table-wrap {
  overflow-x: auto;
  border-top: 1px solid hsl(var(--border));
}

.trace-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: hsl(var(--fg-1));
  /* Preserve every app value in the fixed-width marketing preview. */
  font-size: 0.75rem;
}

.trace-col--status {
  width: 3%;
}

.trace-col--id {
  width: 12%;
}

.trace-col--name {
  width: 15%;
}

.trace-col--user {
  width: 8%;
}

.trace-col--model {
  width: 12%;
}

.trace-col--spans {
  width: 5%;
}

.trace-col--tags {
  width: 11%;
}

.trace-col--tokens {
  width: 8%;
}

.trace-col--cost {
  width: 7%;
}

.trace-col--total-time {
  width: 8%;
}

.trace-col--when {
  width: 11%;
}

.trace-table th {
  overflow: hidden;
  padding: 0.625rem 0.5rem;
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--fg-2));
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.trace-table th.align-right,
.trace-table td.align-right {
  text-align: right;
}

.trace-table .trace-status-column,
.trace-table tbody td:first-child {
  overflow: visible;
  padding-right: 0.25rem;
  text-align: right;
  text-overflow: clip;
}

.trace-table th:first-child,
.trace-table td:first-child {
  padding-left: 1.4rem;
}

.trace-table th:last-child,
.trace-table td:last-child {
  padding-right: 1.4rem;
}

.trace-table td {
  height: 3.625rem;
  overflow: hidden;
  padding: 0.5rem;
  border-bottom: 1px solid hsl(var(--border) / 0.58);
  color: hsl(var(--fg-1));
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.trace-preview-row {
  cursor: pointer;
  transition: background 140ms ease;
}

.trace-preview-row:hover,
.trace-preview-row:focus {
  background: hsl(var(--muted) / 0.68);
  outline: none;
}

.trace-state {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.trace-state--ok {
  background: hsl(var(--success-fg));
}

.trace-state--warning {
  background: hsl(var(--warning-fg));
}

.trace-state--error {
  background: hsl(var(--error-fg));
}

.trace-id,
.trace-user,
.numeric {
  font-family: var(--font-mono);
}

.trace-user,
.trace-table td:nth-child(11) {
  color: hsl(var(--fg-2));
}

.trace-table td.trace-id {
  color: hsl(var(--brand-teal)) !important;
  font-weight: 500;
}

.trace-name {
  color: hsl(var(--fg-1));
  font-weight: 600;
}

.numeric {
  color: hsl(var(--fg-1));
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.empty-cell {
  color: hsl(var(--fg-3));
}

.model-chip,
.tag-chip {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  align-items: center;
  gap: 0.3125rem;
  margin-right: 0;
  overflow: hidden;
  padding: 0.25rem 0.4375rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xs);
  background: hsl(var(--muted) / 0.45);
  color: hsl(var(--fg-1));
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.model-provider-mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xs);
  background: transparent;
  color: hsl(var(--fg-1));
  font-family: var(--font-mono);
  font-weight: 700;
}

.model-provider-mark img {
  display: block;
  width: 78%;
  height: 78%;
  border-radius: inherit;
  object-fit: contain;
}

.model-chip__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trace-tags {
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag-chip {
  border: 0;
  color: hsl(var(--fg-2));
  background: hsl(var(--muted));
  font-family: var(--font-sans);
}

.trace-total-time {
  font-weight: 600;
}

.trace-table td.numeric.trace-total-time--warm {
  color: hsl(24 96% 65%) !important;
}

.trace-table td.numeric.trace-total-time--warning {
  color: hsl(var(--warning-fg)) !important;
}

.trace-table td.numeric.trace-total-time--critical {
  color: hsl(var(--error-fg)) !important;
}

.trace-preview__hint {
  margin: 0;
  padding: 0.55rem 1.4rem 0.75rem;
  color: hsl(var(--fg-3));
  font-size: 0.66rem;
}

.section {
  padding: 6.5rem 0;
}

.section-heading {
  max-width: 650px;
}

.section-heading h2,
.integration-copy h2,
.final-cta h2 {
  margin: 0.65rem 0 0;
  color: hsl(var(--fg-1));
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-family: var(--gh-font-heading, var(--font-display));
}

.section-heading > p:last-child {
  margin: 0.9rem 0 0;
  color: hsl(var(--fg-2));
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section--features {
  border-top: 1px solid hsl(var(--border));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.feature-card {
  min-height: 17.5rem;
  padding: 1.4rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  box-shadow: var(--shadow-xs);
  transition: transform 160ms ease, border-color 160ms ease;
}

.feature-card:hover {
  border-color: hsl(var(--brand-prussian) / 0.62);
  transform: translateY(-3px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid hsl(var(--brand-prussian) / 0.42);
  border-radius: var(--radius-sm);
  color: hsl(var(--brand-prussian));
  background: hsl(var(--brand-prussian-soft));
}

.feature-icon svg {
  width: 1.08rem;
  height: 1.08rem;
}

.feature-card__label {
  margin: 1.25rem 0 0;
  color: hsl(var(--brand-glacier));
  font-family: var(--font-mono);
  font-size: 0.71rem;
  font-weight: 500;
}

.feature-card__label span {
  display: inline-block;
  margin-left: 0.2rem;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  color: hsl(var(--warning-fg));
  background: hsl(var(--warning-bg));
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 0.6rem 0 0;
  color: hsl(var(--fg-1));
  font-size: 1.16rem;
  line-height: 1.28;
}

.feature-card > p:last-child {
  margin: 0.75rem 0 0;
  color: hsl(var(--fg-2));
  font-size: 0.88rem;
  line-height: 1.6;
}

.section--integrate {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--header) / 0.34);
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.integration-copy > p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: hsl(var(--fg-2));
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  color: hsl(var(--brand-glacier));
  font-size: 0.86rem;
  font-weight: 600;
}

.text-link:hover {
  color: hsl(var(--brand-glacier));
  text-decoration: none;
}

.text-link:hover .text-link__icon {
  transform: translateX(0.15rem);
}

.text-link__icon {
  transition: transform 150ms ease;
}

.code-card {
  overflow: hidden;
  border: 0;
  border-radius: 0.75rem;
  background: hsl(var(--brand-ink));
  box-shadow: var(--shadow-lg);
}

.code-tabs {
  display: flex;
  gap: 0;
  overflow: hidden;
  background: transparent;
}

.code-tabs button {
  flex: 0 0 auto;
  min-width: 0;
  padding: 0.625rem 1rem;
  border: 0;
  border-bottom: 2px solid transparent;
  color: hsl(var(--fg-2));
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

.code-tabs button[aria-selected="true"] {
  border-bottom-color: hsl(var(--brand-prussian));
  color: hsl(var(--brand-prussian));
  background: transparent;
}

.code-panel {
  display: grid;
  height: clamp(20rem, 33vw, 26rem);
  min-height: 0;
  grid-template-rows: minmax(0, 1fr);
}

.code-panel[hidden] {
  display: none !important;
}

.code-panel pre {
  min-height: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  color: hsl(var(--fg-1));
  background: transparent;
  font-size: clamp(0.69rem, 1.7vw, 0.78rem);
  line-height: 1.75;
  scrollbar-color: hsl(var(--border)) transparent;
  scrollbar-width: thin;
}

.code-panel pre::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

.code-panel pre::-webkit-scrollbar-thumb {
  border: 0.15rem solid transparent;
  border-radius: var(--radius-xs);
  background: hsl(var(--border));
  background-clip: padding-box;
}

.code-panel code {
  color: inherit;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.syntax-key {
  color: hsl(var(--brand-prussian-hover));
}

.syntax-fn {
  color: hsl(var(--brand-glacier));
}

.syntax-module {
  color: hsl(var(--brand-glacier));
}

.syntax-property {
  color: hsl(var(--info-fg));
}

.syntax-number {
  color: hsl(var(--warning-fg));
}

.syntax-operator {
  color: hsl(var(--fg-2));
}

.syntax-symbol {
  color: hsl(var(--warning-fg));
}

.syntax-string {
  color: hsl(var(--success-fg));
}

.syntax-atom {
  color: hsl(var(--error-fg));
}

.section--pricing {
  border-top: 1px solid hsl(var(--border));
}

.section--pricing .eyebrow {
  color: hsl(var(--brand-prussian));
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section--pricing .section-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
  margin-top: 3rem;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 31.5rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  box-shadow: var(--shadow-xs);
}

.price-card--featured {
  border: 2px solid hsl(var(--brand-prussian));
  box-shadow: var(--shadow-md);
}

.price-card__tier {
  margin: 0;
  color: hsl(var(--fg-1));
  font-size: 1.06rem;
  font-weight: 600;
}

.price-card__support {
  margin: 0.14rem 0 0;
  color: hsl(var(--fg-2));
  font-size: 0.82rem;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  margin: 1.15rem 0;
  color: hsl(var(--fg-1));
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-card__price small {
  margin-left: 0.35rem;
  color: hsl(var(--fg-2));
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
}

.price-card__price--custom {
  font-size: 2.25rem;
}

.price-card__limits {
  display: block;
  margin: 0 0 1.25rem;
  padding: 0;
}

.price-card__limits > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.35rem;
  gap: 0.6rem;
  border-top: 1px solid hsl(var(--border));
}

.price-card__limits dt,
.price-card__limits dd {
  margin: 0;
}

.price-card__limits dt {
  flex: 1 1 auto;
  color: hsl(var(--fg-2));
  font-size: 0.75rem;
  white-space: nowrap;
}

.price-card__limits dd {
  max-width: 62%;
  color: hsl(var(--fg-1));
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  text-align: right;
}

.price-card .button {
  min-height: 2.4rem;
}

.price-card .button--quiet {
  background: hsl(var(--background));
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: -12rem;
  left: 50%;
  width: 55rem;
  height: 28rem;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, hsl(var(--brand-prussian) / 0.13), transparent 70%);
}

.final-cta__inner {
  position: relative;
  max-width: 750px;
}

.final-cta p:not(.eyebrow) {
  max-width: 540px;
  margin: 1rem auto 0;
  color: hsl(var(--fg-2));
}

.final-cta .button {
  margin-top: 1.65rem;
}

.site-footer {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--sidebar));
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.7fr 0.85fr 1fr 1.35fr;
  width: min(1100px, calc(100% - 3rem));
  gap: 2.25rem;
  padding: 3.25rem 0;
  margin-inline: auto;
}

.site-footer__brand p {
  max-width: 250px;
  margin: 0.9rem 0 0;
  color: hsl(var(--fg-2));
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links h2 {
  margin: 0 0 0.35rem;
  color: hsl(var(--fg-1));
  font-size: 0.74rem;
}

.footer-links a {
  width: fit-content;
  color: hsl(var(--fg-2));
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: hsl(var(--fg-1));
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  width: min(1100px, calc(100% - 3rem));
  padding: 1.1rem 0 1.35rem;
  margin-inline: auto;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--fg-3));
  font-size: 0.69rem;
}

/* Embedded trace inspector — contained inside the product preview, never global. */
.trace-inspector[hidden] {
  display: none;
}

.trace-preview__heading[hidden],
.trace-controls[hidden],
.trace-stats[hidden],
#trace-preview-table-stage[hidden] {
  display: none !important;
}

.trace-inspector {
  display: flex;
  height: 42rem;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  color: hsl(var(--fg-1));
  background: hsl(var(--background));
}

.trace-inspector__header,
.trace-inspector__title-line,
.trace-inspector__detail-title-line,
.trace-inspector__meta,
.trace-inspector__detail-meta,
.inspector-toolbar,
.inspector-toolbar__actions,
.inspector-tree__name,
.inspector-tree__metrics,
.inspector-io-card__title,
.inspector-detail-section h5 {
  display: flex;
  min-width: 0;
  align-items: center;
}

.trace-inspector__header {
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--header));
  padding: 0.75rem 1rem 0.65rem;
}

.trace-inspector__header-copy,
.trace-inspector__detail-header {
  min-width: 0;
}

.trace-inspector__title-line,
.trace-inspector__detail-title-line {
  gap: 0.45rem;
}

.trace-inspector h3,
.trace-inspector h4,
.trace-inspector h5,
.trace-inspector p {
  margin: 0;
}

.trace-inspector h3,
.trace-inspector h4 {
  overflow: hidden;
  color: hsl(var(--fg-1));
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trace-inspector h4 {
  font-size: 0.94rem;
}

.inspector-status,
.inspector-kind,
.inspector-meta-chip,
.inspector-model-badge,
.inspector-soft-chip,
.inspector-tree__model-tag {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.24rem;
  border-radius: var(--radius-xs);
  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.inspector-status {
  min-height: 1.45rem;
  padding: 0 0.55rem 0 0.7rem;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--fg-1));
  background: hsl(var(--muted));
  box-shadow: inset 0.18rem 0 0 hsl(var(--success-fg));
}

.inspector-kind {
  min-height: 1.45rem;
  padding: 0 0.55rem;
  border: 1px solid hsl(var(--brand-prussian) / 0.55);
  color: hsl(var(--brand-prussian-hover));
  background: hsl(var(--brand-prussian-soft));
  font-family: var(--font-mono);
}

.inspector-kind__dot {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: currentColor;
}

.trace-inspector__id {
  overflow: hidden;
  color: hsl(var(--brand-glacier));
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inspector-icon-button {
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid hsl(var(--input));
  border-radius: var(--radius-xs);
  color: hsl(var(--fg-2));
  background: hsl(var(--card));
}

.inspector-icon-button:hover {
  border-color: hsl(var(--brand-prussian) / 0.75);
  color: hsl(var(--fg-1));
  background: hsl(var(--accent));
}

.inspector-icon-button svg {
  width: 0.95rem;
  height: 0.95rem;
}

.inspector-icon-button--ghost {
  width: 1.35rem;
  height: 1.35rem;
  border-color: transparent;
  background: transparent;
}

.trace-inspector__close {
  width: 2rem;
  height: 2rem;
}

.trace-inspector__meta,
.trace-inspector__detail-meta {
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
  color: hsl(var(--fg-2));
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.trace-inspector__timestamp,
.inspector-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
}

.trace-inspector__timestamp svg,
.inspector-meta-chip svg {
  width: 0.9rem;
  height: 0.9rem;
}

.inspector-meta-chip {
  min-height: 1.32rem;
  padding: 0 0.42rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted));
}

.inspector-meta-chip--latency,
.inspector-tree time,
.inspector-tree__metrics time {
  color: hsl(24 96% 65%);
}

.inspector-meta-chip--outline {
  border-color: hsl(var(--input));
  color: hsl(var(--fg-2));
  background: transparent;
}

.inspector-meta-chip small {
  color: hsl(var(--fg-3));
  font-size: 0.72rem;
}

.inspector-meta-divider {
  width: 1px;
  height: 1.1rem;
  background: hsl(var(--border));
}

.trace-inspector__body {
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
}

.trace-inspector__nav,
.trace-inspector__detail {
  min-width: 0;
  min-height: 0;
}

.trace-inspector__nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}

.inspector-toolbar {
  min-height: 3.55rem;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px solid hsl(var(--border));
  padding: 0 0.85rem;
}

.inspector-toolbar > strong {
  color: hsl(var(--fg-1));
  font-size: 0.88rem;
}

.inspector-toolbar__actions {
  gap: 0.35rem;
}

.inspector-segments,
.inspector-format-tabs {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xs);
  background: hsl(var(--muted));
}

.inspector-segments {
  padding: 0.13rem;
  font-size: 0.68rem;
  font-weight: 600;
}

.inspector-segments span {
  padding: 0.32rem 0.52rem;
  color: hsl(var(--fg-2));
}

.inspector-segments .is-active {
  border-radius: calc(var(--radius-xs) - 1px);
  color: hsl(var(--fg-1));
  background: hsl(var(--background));
  box-shadow: var(--shadow-xs);
}

.inspector-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.65rem 0.85rem 0.5rem;
  padding: 0 0.62rem;
  border: 1px solid hsl(var(--input));
  border-radius: var(--radius-xs);
  color: hsl(var(--fg-3));
  background: hsl(var(--card));
}

.inspector-search svg {
  width: 0.9rem;
  height: 0.9rem;
  flex: none;
}

.inspector-search input {
  width: 100%;
  min-width: 0;
  height: 2rem;
  border: 0;
  outline: 0;
  color: hsl(var(--fg-1));
  background: transparent;
  font-size: 0.74rem;
}

.inspector-search input::placeholder {
  color: hsl(var(--fg-3));
}

.inspector-tree {
  min-height: 0;
  flex: 1;
  overflow: auto;
  padding: 0.35rem 0.3rem 0.8rem;
}

.inspector-tree__row {
  position: relative;
  display: grid;
  min-height: 2.17rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.65rem 0 1rem;
  color: hsl(var(--fg-2));
  font-family: var(--font-mono);
  font-size: 0.67rem;
}

.inspector-tree__row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.02rem;
  width: 1px;
  background: hsl(var(--border) / 0.7);
  content: "";
}

.inspector-tree__row--root::before {
  display: none;
}

.inspector-tree__row[data-depth="1"] { padding-left: 2rem; }
.inspector-tree__row[data-depth="2"] { padding-left: 3rem; }
.inspector-tree__row[data-depth="3"] { padding-left: 4rem; }
.inspector-tree__row[data-depth="4"] { padding-left: 5rem; }
.inspector-tree__row[data-depth="5"] { padding-left: 6rem; }
.inspector-tree__row[data-depth="6"] { padding-left: 7rem; }
.inspector-tree__row[data-depth="7"] { padding-left: 8rem; }
.inspector-tree__row[data-depth="8"] { padding-left: 9rem; }

.inspector-tree__row[data-depth="2"]::before { left: 2.03rem; }
.inspector-tree__row[data-depth="3"]::before { left: 3.03rem; }
.inspector-tree__row[data-depth="4"]::before { left: 4.03rem; }
.inspector-tree__row[data-depth="5"]::before { left: 5.03rem; }
.inspector-tree__row[data-depth="6"]::before { left: 6.03rem; }
.inspector-tree__row[data-depth="7"]::before { left: 7.03rem; }
.inspector-tree__row[data-depth="8"]::before { left: 8.03rem; }

.inspector-tree__row--root {
  color: hsl(var(--fg-1));
  font-weight: 600;
}

.inspector-tree__row--active {
  color: hsl(var(--fg-1));
  background: hsl(var(--brand-prussian) / 0.22);
  box-shadow: inset 0.2rem 0 0 hsl(var(--brand-prussian));
}

.inspector-tree__name {
  gap: 0.35rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inspector-tree__chevron {
  display: inline-flex;
  width: 0.7rem;
  height: 0.7rem;
  flex: none;
  align-items: center;
  justify-content: center;
  color: hsl(var(--fg-3));
}

.inspector-tree__chevron svg {
  width: 0.68rem;
  height: 0.68rem;
}

.inspector-tree__node-icon,
.inspector-tree__model {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.28rem;
}

.inspector-tree__node-icon {
  width: 1.15rem;
  height: 1.15rem;
  justify-content: center;
  border: 1px solid hsl(var(--border));
  border-radius: 0.22rem;
  color: hsl(var(--fg-3));
  background: hsl(var(--muted));
  font-family: var(--font-sans);
}

.inspector-tree__leaf {
  width: 1.1rem;
  flex: none;
  color: hsl(var(--fg-3));
  text-align: center;
}

.inspector-tree__model {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
}

.inspector-tree__model img,
.inspector-model-badge img {
  width: 1rem;
  height: 1rem;
  border-radius: 0.21rem;
  object-fit: contain;
}

.inspector-tree__model-tag {
  padding: 0.16rem 0.28rem;
  border: 1px solid hsl(var(--brand-prussian) / 0.5);
  color: hsl(var(--brand-prussian-hover));
  background: hsl(var(--brand-prussian-soft));
  font-size: 0.55rem;
}

.inspector-tree time,
.inspector-tree__metrics {
  flex: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.inspector-tree__metrics {
  gap: 0.42rem;
  color: hsl(var(--fg-3));
  font-size: 0.61rem;
}

.trace-inspector__detail {
  display: flex;
  flex-direction: column;
  background: hsl(var(--background));
}

.trace-inspector__detail-header {
  padding: 0.8rem 0.95rem 0.62rem;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--header));
}

.trace-inspector__detail-meta {
  gap: 0.48rem;
  font-size: 0.66rem;
}

.trace-inspector__detail-meta > span:not(.inspector-model-badge) {
  white-space: nowrap;
}

.inspector-model-badge {
  min-height: 1.38rem;
  padding: 0 0.4rem;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--fg-2));
  background: hsl(var(--muted) / 0.58);
}

.trace-inspector__tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid hsl(var(--border));
  padding: 0 0.75rem;
}

.trace-inspector__tabs button {
  min-height: 2.6rem;
  padding: 0 0.55rem;
  border: 0;
  border-bottom: 2px solid transparent;
  color: hsl(var(--fg-2));
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.trace-inspector__tabs button[aria-selected="true"] {
  border-bottom-color: hsl(var(--brand-prussian));
  color: hsl(var(--fg-1));
}

.trace-inspector__scroll {
  min-height: 0;
  flex: 1;
  overflow: auto;
  padding: 0.95rem;
}

.inspector-detail-section + .inspector-detail-section {
  margin-top: 1.35rem;
}

.inspector-detail-section h5 {
  gap: 0.42rem;
  color: hsl(var(--fg-1));
  font-size: 0.75rem;
  font-weight: 600;
}

.inspector-detail-section h5 svg {
  width: 0.95rem;
  height: 0.95rem;
  color: hsl(var(--brand-glacier));
}

.inspector-detail-section--reasoning h5 svg {
  color: hsl(var(--warning-fg));
}

.inspector-detail-section h5 span,
.inspector-detail-section h5 i {
  color: hsl(var(--fg-2));
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-style: normal;
  font-weight: 400;
}

.inspector-tools-empty p {
  margin: 1.7rem 0 0;
  color: hsl(var(--fg-2));
  font-size: 0.78rem;
  text-align: center;
}

.inspector-io-card {
  overflow: hidden;
  margin-top: 0.68rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-md);
  background: hsl(var(--card));
}

.inspector-io-card--selected {
  border-color: hsl(var(--brand-prussian));
}

.inspector-io-card__title {
  min-height: 3.05rem;
  flex-wrap: wrap;
  gap: 0.42rem;
  padding: 0.4rem 0.55rem;
}

.inspector-io-card__title > strong {
  color: hsl(var(--fg-1));
  font-size: 0.73rem;
}

.inspector-io-card__icon {
  display: inline-flex;
  width: 1.42rem;
  height: 1.42rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--border));
  border-radius: 0.3rem;
  color: hsl(var(--warning-fg));
  background: hsl(var(--muted));
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.inspector-io-card__icon svg {
  width: 0.84rem;
  height: 0.84rem;
  stroke-width: 1.8;
}

.inspector-io-card__icon--user {
  color: hsl(var(--info-fg));
}

.inspector-io-card__icon--system,
.inspector-io-card__icon--reasoning {
  color: hsl(var(--warning-fg));
}

.inspector-io-card__icon--ai {
  color: hsl(var(--status-llm));
}

.inspector-soft-chip,
.inspector-io-card__id {
  padding: 0.19rem 0.36rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xs);
  color: hsl(var(--fg-2));
  background: hsl(var(--muted));
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.inspector-io-card__id {
  overflow: hidden;
  border: 0;
  padding: 0;
  color: hsl(var(--fg-3));
  background: transparent;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inspector-format-tabs {
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-left: auto;
  background: hsl(var(--background));
}

.inspector-format-tabs span {
  padding: 0.3rem 0.42rem;
  border-left: 1px solid hsl(var(--border));
  color: hsl(var(--fg-2));
  font-size: 0.6rem;
  font-weight: 600;
}

.inspector-format-tabs span:first-child {
  border-left: 0;
}

.inspector-format-tabs .is-active {
  box-shadow: inset 0.16rem 0 0 hsl(var(--brand-prussian));
  color: hsl(var(--fg-1));
  background: hsl(var(--muted));
}

.inspector-chev {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex: none;
  align-items: center;
  justify-content: center;
  color: hsl(var(--fg-2));
}

.inspector-chev svg {
  width: 0.86rem;
  height: 0.86rem;
}

.inspector-json {
  max-height: 15rem;
  margin: 0;
  overflow: auto;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--fg-2));
  background: hsl(var(--header));
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.62;
}

.inspector-json code {
  display: block;
  min-width: 36rem;
  padding: 0.8rem 0.9rem;
}

.json-key { color: hsl(var(--fg-2)); }
.json-number { color: hsl(var(--warning-fg)); }
.json-string { color: hsl(var(--brand-glacier)); }

.inspector-details-list dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0.8rem 0 0;
}

.inspector-details-list dl > div {
  padding: 0.68rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm);
  background: hsl(var(--card));
}

.inspector-details-list dt {
  color: hsl(var(--fg-3));
  font-size: 0.64rem;
}

.inspector-details-list dd {
  margin: 0.28rem 0 0;
  color: hsl(var(--fg-1));
  font-family: var(--font-mono);
  font-size: 0.69rem;
}

.publication-hero,
.article-header {
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--header) / 0.38);
}

.publication-hero {
  padding: 5.25rem 0 3.8rem;
}

.publication-hero h1 {
  max-width: 760px;
  margin: 0.7rem 0 0;
  color: hsl(var(--fg-1));
  font-size: clamp(2.45rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.publication-hero p:last-child {
  max-width: 620px;
  margin: 1rem 0 0;
  color: hsl(var(--fg-2));
}

.author-heading {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.author-heading h1 {
  margin-top: 0.4rem;
}

.author-avatar {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.publication-listing {
  min-height: 50vh;
  padding: 3.5rem 0 6rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.post-card {
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  box-shadow: var(--shadow-xs);
  transition: transform 160ms ease, border-color 160ms ease;
}

.post-card:hover {
  border-color: hsl(var(--brand-prussian) / 0.62);
  transform: translateY(-3px);
}

.post-card__link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
}

.post-card__link:hover {
  color: inherit;
  text-decoration: none;
}

.post-card__image,
.post-card__placeholder {
  aspect-ratio: 1.75 / 1;
  margin: 0;
  overflow: hidden;
  background: hsl(var(--header));
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.025);
}

.post-card__placeholder {
  display: grid;
  place-items: center;
}

.post-card__placeholder img {
  opacity: 0.52;
}

.post-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.15rem;
}

.post-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  color: hsl(var(--brand-glacier));
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.post-card__meta span,
.article-meta span {
  color: hsl(var(--fg-3));
}

.post-card h2 {
  margin: 0.68rem 0 0;
  color: hsl(var(--fg-1));
  font-size: 1.18rem;
  line-height: 1.26;
}

.post-card__body > p:not(.post-card__meta) {
  margin: 0.65rem 0 0;
  color: hsl(var(--fg-2));
  font-size: 0.84rem;
  line-height: 1.55;
}

.post-card .text-link {
  margin-top: 1rem;
  font-size: 0.76rem;
}

.empty-state {
  padding: 3rem 0;
  text-align: center;
}

.empty-state h2 {
  margin: 0.7rem 0 0;
  color: hsl(var(--fg-1));
}

.empty-state p:last-child {
  color: hsl(var(--fg-2));
}

.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  color: hsl(var(--fg-2));
  font-size: 0.76rem;
  text-align: center;
}

.pagination > :last-child {
  justify-self: end;
}

.article {
  padding-bottom: 5.5rem;
}

.article-header {
  width: 100%;
  padding: 5rem max(1.5rem, calc((100% - 720px) / 2)) 3rem;
}

.article-header h1 {
  margin: 0.75rem 0 0;
  color: hsl(var(--fg-1));
  font-size: clamp(2.45rem, 5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.article-meta a {
  color: hsl(var(--brand-glacier));
}

.article-header__lede {
  max-width: 660px;
  margin: 1.1rem 0 0;
  color: hsl(var(--fg-2));
  font-size: 1.08rem;
  line-height: 1.55;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.35rem 0 0;
  color: hsl(var(--fg-2));
  font-size: 0.82rem;
}

.article-byline img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}

.article-feature-image {
  margin-top: 2rem;
}

.article-feature-image img {
  width: 100%;
  height: auto;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  object-fit: contain;
}

.article-feature-image figcaption {
  margin-top: 0.65rem;
  color: hsl(var(--fg-3));
  font-size: 0.72rem;
  text-align: center;
}

.article-content {
  padding-top: 2.5rem;
  color: hsl(var(--fg-1));
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 2rem;
  color: hsl(var(--fg-1));
}

.article-content h2 {
  font-size: 1.7rem;
}

.article-content h3 {
  font-size: 1.25rem;
}

.article-content p,
.article-content li {
  color: hsl(var(--fg-1));
  font-size: 1rem;
  line-height: 1.72;
}

.article-content a {
  color: hsl(var(--brand-glacier));
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.article-content ul,
.article-content ol {
  padding-left: 1.3rem;
}

.article-content table {
  display: table;
  width: 100%;
  max-width: 100%;
  margin: 1.75rem 0 2rem;
  overflow: visible;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-md);
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
  color: hsl(var(--fg-2));
  background: hsl(var(--card));
  font-size: 0.875rem;
  line-height: 1.45;
}

.article-content th,
.article-content td {
  padding: 0.8rem 0.95rem;
  border-right: 1px solid hsl(var(--border) / 0.72);
  border-bottom: 1px solid hsl(var(--border) / 0.72);
  overflow-wrap: anywhere;
  vertical-align: top;
  text-align: left;
  white-space: normal;
}

.article-content th {
  color: hsl(var(--fg-1));
  background: hsl(var(--muted) / 0.72);
  font-weight: 600;
}

.article-content th:last-child,
.article-content td:last-child {
  border-right: 0;
}

.article-content tbody tr:last-child td {
  border-bottom: 0;
}

.article-content table code {
  padding: 0;
  color: hsl(var(--fg-1));
  background: transparent;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
  white-space: normal;
}

.article-content blockquote {
  margin: 1.75rem 0;
  padding: 0.4rem 0 0.4rem 1.1rem;
  border-left: 3px solid hsl(var(--brand-prussian));
  color: hsl(var(--fg-2));
}

.article-content blockquote p {
  color: inherit;
}

.article-content pre {
  margin: 1.5rem 0;
  overflow: auto;
  padding: 1rem 1.1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-md);
  color: hsl(var(--fg-1));
  background: hsl(var(--brand-ink));
  scrollbar-color: hsl(var(--border)) transparent;
  scrollbar-width: thin;
}

.article-content pre code {
  display: block;
  min-width: max-content;
  padding: 0;
  color: inherit;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.7;
  tab-size: 2;
  white-space: pre;
}

.article-content pre::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

.article-content pre::-webkit-scrollbar-thumb {
  border: 0.15rem solid transparent;
  border-radius: var(--radius-xs);
  background: hsl(var(--border));
  background-clip: padding-box;
}

.article-content .hljs-comment,
.article-content .hljs-quote {
  color: hsl(var(--fg-3));
}

.article-content .hljs-keyword,
.article-content .hljs-selector-tag,
.article-content .hljs-built_in,
.article-content .hljs-name,
.article-content .hljs-tag {
  color: hsl(var(--brand-prussian-hover));
}

.article-content .hljs-string,
.article-content .hljs-title,
.article-content .hljs-section,
.article-content .hljs-attribute,
.article-content .hljs-literal,
.article-content .hljs-template-tag,
.article-content .hljs-template-variable,
.article-content .hljs-type {
  color: hsl(var(--brand-glacier));
}

.article-content .hljs-number,
.article-content .hljs-symbol,
.article-content .hljs-bullet,
.article-content .hljs-variable,
.article-content .hljs-variable.constant_ {
  color: hsl(var(--warning-fg));
}

.article-content .hljs-meta,
.article-content .hljs-operator,
.article-content .hljs-punctuation {
  color: hsl(var(--fg-2));
}

.article-content .hljs-emphasis {
  font-style: italic;
}

.article-content .hljs-strong {
  font-weight: 700;
}

.article-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: var(--radius-sm);
}

.article-content .kg-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.article-content .kg-width-wide {
  width: min(1100px, calc(100vw - 3rem));
  max-width: none;
  margin-right: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

.article-content .kg-width-full {
  width: 100vw;
  max-width: none;
  margin-right: auto;
  margin-left: 50%;
  border-radius: 0;
  transform: translateX(-50%);
}

.legal-page .article-content .legal-table-wrap {
  width: 100%;
  margin: 1.75rem 0 2rem;
  overflow-x: auto;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-md);
  scrollbar-color: hsl(var(--border)) transparent;
  scrollbar-width: thin;
}

.legal-page .article-content {
  overflow-wrap: anywhere;
}

.legal-page .article-content .legal-table {
  display: table;
  width: 100%;
  min-width: 42rem;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.legal-page .article-content .legal-table th,
.legal-page .article-content .legal-table td {
  min-width: 11rem;
  white-space: normal;
  overflow-wrap: anywhere;
}

.legal-page .article-content .legal-table th,
.legal-page .article-content .legal-table td:first-child {
  color: hsl(var(--fg-1));
  background: hsl(var(--muted) / 0.38);
  font-weight: 600;
}

.legal-page .article-content .legal-notice {
  margin: 2rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid hsl(var(--border));
  border-left: 3px solid hsl(var(--brand-prussian));
  border-radius: var(--radius-sm);
  color: hsl(var(--fg-1));
  background: hsl(var(--card) / 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.legal-page .article-content li > p {
  margin: 0.45rem 0;
}

.legal-page .article-content > ol,
.legal-page .article-content > ul {
  margin: 1.15rem 0;
}

.legal-page .article-content .legal-table-wrap::-webkit-scrollbar {
  height: 0.5rem;
}

.legal-page .article-content .legal-table-wrap::-webkit-scrollbar-thumb {
  border: 0.15rem solid transparent;
  border-radius: var(--radius-xs);
  background: hsl(var(--border));
  background-clip: padding-box;
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.article-tags a {
  padding: 0.25rem 0.48rem;
  border-radius: 999px;
  color: hsl(var(--fg-2));
  background: hsl(var(--muted));
  font-size: 0.7rem;
}

.error-page {
  min-height: 58vh;
  padding: 9rem 0 6rem;
  text-align: center;
}

.error-page h1 {
  margin: 0.7rem 0 0;
  color: hsl(var(--fg-1));
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: -0.05em;
}

.error-page p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: hsl(var(--fg-2));
}

.error-page .button {
  margin-top: 1.5rem;
}

@media (max-width: 980px) {
  .integration-layout {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .integration-copy {
    max-width: 620px;
  }

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

  .price-card {
    min-height: 26rem;
  }
}

@media (max-width: 980px) {
  .content-width,
  .content-narrow {
    width: min(100% - 2rem, 1100px);
  }

  .site-header__inner {
    width: min(100% - 2rem, 1160px);
    min-height: 3.9rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.65rem 1rem 1rem;
    border-bottom: 1px solid hsl(var(--border));
    background: hsl(var(--background));
    box-shadow: var(--shadow-md);
  }

  .menu-open .site-nav {
    display: flex;
  }

  .site-nav > a:not(.button) {
    min-height: 2.7rem;
    padding: 0.55rem 0;
    color: hsl(var(--fg-1));
  }

  .site-nav > a:not(.button):nth-child(1),
  .site-nav > a:not(.button):nth-child(2) {
    display: inline-flex;
  }

  .site-nav .button {
    margin-top: 0.55rem;
  }

  .hero {
    padding: 3.6rem 0 3rem;
  }

  .hero h1 br {
    display: none;
  }

  .hero__lede {
    max-width: 34rem;
  }

  .product-preview {
    margin-top: 2.7rem;
    border-radius: 0.65rem;
  }

  .product-preview.content-width {
    width: min(100% - 2rem, 1280px);
  }

  .trace-preview__heading {
    align-items: flex-start;
    padding: 1rem 1rem 0.55rem;
  }

  .trace-preview__heading p {
    max-width: 16rem;
    line-height: 1.35;
  }

  .trace-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.6rem 1rem;
  }

  .trace-controls {
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.65rem 1rem;
  }

  .trace-search {
    order: 4;
    flex-basis: 100%;
  }

  .trace-count,
  .trace-count-label,
  .trace-control--reset {
    display: none;
  }

  .trace-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.64rem;
  }

  .trace-table col {
    width: auto;
  }

  .trace-table .trace-col--status {
    width: 6%;
  }

  .trace-table .trace-col--id {
    width: 28%;
  }

  .trace-table .trace-col--name {
    width: 36%;
  }

  .trace-table .trace-col--tokens,
  .trace-table .trace-col--total-time {
    width: 15%;
  }

  .trace-table col:nth-child(4),
  .trace-table col:nth-child(5),
  .trace-table col:nth-child(6),
  .trace-table col:nth-child(7),
  .trace-table col:nth-child(9),
  .trace-table col:nth-child(11),
  .trace-table th:nth-child(4),
  .trace-table td:nth-child(4),
  .trace-table th:nth-child(5),
  .trace-table td:nth-child(5),
  .trace-table th:nth-child(6),
  .trace-table td:nth-child(6),
  .trace-table th:nth-child(7),
  .trace-table td:nth-child(7),
  .trace-table th:nth-child(9),
  .trace-table td:nth-child(9),
  .trace-table th:nth-child(11),
  .trace-table td:nth-child(11) {
    display: none;
  }

  .trace-table th:first-child,
  .trace-table td:first-child {
    padding-left: 1rem;
  }

  .trace-table th:last-child,
  .trace-table td:last-child {
    padding-right: 1rem;
  }

  .trace-table th:nth-child(10),
  .trace-table td:nth-child(10) {
    padding-right: 1rem;
  }

  .trace-table th,
  .trace-table td {
    height: auto;
    padding-block: 0.55rem;
  }

  .trace-preview__hint {
    padding: 0.5rem 1rem 0.65rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .feature-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    width: min(100% - 2rem, 1100px);
    gap: 2rem 1.25rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    width: min(100% - 2rem, 1100px);
  }

  .publication-hero {
    padding: 3.8rem 0 2.8rem;
  }

  .article-header {
    padding: 3.8rem 1rem 2.3rem;
  }
}

@media (max-width: 820px) {
  .trace-inspector {
    height: auto;
    min-height: 0;
  }

  .trace-inspector__body {
    display: block;
  }

  .trace-inspector__nav {
    height: 22rem;
    border-right: 0;
    border-bottom: 1px solid hsl(var(--border));
  }

  .trace-inspector__detail {
    min-height: 37rem;
  }

  .inspector-tree__row[data-depth="1"] { padding-left: 1.7rem; }
  .inspector-tree__row[data-depth="2"] { padding-left: 2.4rem; }
  .inspector-tree__row[data-depth="3"] { padding-left: 3.1rem; }
  .inspector-tree__row[data-depth="4"] { padding-left: 3.8rem; }
  .inspector-tree__row[data-depth="5"] { padding-left: 4.5rem; }
  .inspector-tree__row[data-depth="6"] { padding-left: 5.2rem; }
  .inspector-tree__row[data-depth="7"] { padding-left: 5.9rem; }
  .inspector-tree__row[data-depth="8"] { padding-left: 6.6rem; }

  .inspector-tree__row[data-depth="2"]::before { left: 1.72rem; }
  .inspector-tree__row[data-depth="3"]::before { left: 2.42rem; }
  .inspector-tree__row[data-depth="4"]::before { left: 3.12rem; }
  .inspector-tree__row[data-depth="5"]::before { left: 3.82rem; }
  .inspector-tree__row[data-depth="6"]::before { left: 4.52rem; }
  .inspector-tree__row[data-depth="7"]::before { left: 5.22rem; }
  .inspector-tree__row[data-depth="8"]::before { left: 5.92rem; }
}

@media (max-width: 540px) {
  .legal-page .article-content .legal-table {
    min-width: 34rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 19rem);
    margin-inline: auto;
  }

  .hero__actions .button {
    width: 100%;
  }

  .eyebrow--brand {
    max-width: 100%;
    font-size: 0.67rem;
    line-height: 1.4;
    text-align: left;
  }

  .trace-preview__heading {
    gap: 0.65rem;
  }

  .trace-preview__heading p {
    max-width: 12.5rem;
  }

  .trace-inspector__header {
    padding: 0.65rem 0.7rem 0.55rem;
  }

  .trace-inspector__title-line {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .trace-inspector h3 {
    flex-basis: calc(100% - 2.5rem);
    font-size: 0.83rem;
  }

  .trace-inspector__id {
    max-width: 11rem;
  }

  .trace-inspector__meta {
    gap: 0.28rem;
    font-size: 0.62rem;
  }

  .trace-inspector__timestamp {
    flex-basis: 100%;
  }

  .trace-inspector__nav {
    height: 20rem;
  }

  .trace-inspector__detail {
    min-height: 34rem;
  }

  .inspector-toolbar {
    padding-inline: 0.65rem;
  }

  .inspector-toolbar__actions > .inspector-icon-button:last-child {
    display: none;
  }

  .inspector-search {
    margin-inline: 0.65rem;
  }

  .inspector-tree__row {
    min-height: 2rem;
    padding-right: 0.45rem;
    font-size: 0.59rem;
  }

  .inspector-tree__row[data-depth="1"] { padding-left: 1.45rem; }
  .inspector-tree__row[data-depth="2"] { padding-left: 1.9rem; }
  .inspector-tree__row[data-depth="3"] { padding-left: 2.35rem; }
  .inspector-tree__row[data-depth="4"] { padding-left: 2.8rem; }
  .inspector-tree__row[data-depth="5"] { padding-left: 3.25rem; }
  .inspector-tree__row[data-depth="6"] { padding-left: 3.7rem; }
  .inspector-tree__row[data-depth="7"] { padding-left: 4.15rem; }
  .inspector-tree__row[data-depth="8"] { padding-left: 4.6rem; }

  .inspector-tree__row[data-depth="2"]::before { left: 1.47rem; }
  .inspector-tree__row[data-depth="3"]::before { left: 1.92rem; }
  .inspector-tree__row[data-depth="4"]::before { left: 2.37rem; }
  .inspector-tree__row[data-depth="5"]::before { left: 2.82rem; }
  .inspector-tree__row[data-depth="6"]::before { left: 3.27rem; }
  .inspector-tree__row[data-depth="7"]::before { left: 3.72rem; }
  .inspector-tree__row[data-depth="8"]::before { left: 4.17rem; }

  .inspector-tree__node-icon,
  .inspector-tree__model-tag,
  .inspector-tree__metrics > span {
    display: none;
  }

  .inspector-tree__metrics {
    font-size: 0.58rem;
  }

  .trace-inspector__detail-header,
  .trace-inspector__scroll {
    padding-inline: 0.7rem;
  }

  .trace-inspector__detail-title-line {
    flex-wrap: wrap;
  }

  .trace-inspector h4 {
    max-width: 9rem;
    font-size: 0.78rem;
  }

  .trace-inspector__detail-meta {
    font-size: 0.6rem;
  }

  .trace-inspector__tabs {
    padding-inline: 0.45rem;
  }

  .trace-inspector__tabs button {
    padding-inline: 0.45rem;
  }

  .inspector-io-card__title {
    gap: 0.3rem;
    padding: 0.4rem;
  }

  .inspector-format-tabs {
    flex: none;
    order: 5;
    margin-left: 0;
  }

  .inspector-format-tabs span {
    padding-inline: 0.32rem;
    font-size: 0.56rem;
  }

  .inspector-json code {
    min-width: 30rem;
  }

  .inspector-details-list dl {
    grid-template-columns: 1fr;
  }

  .live-badge {
    padding: 0.26rem 0.44rem;
  }

  .trace-stat {
    padding: 0.52rem 0.56rem;
  }

  .trace-stat em {
    min-height: 1.35rem;
    padding-inline: 0.42rem 0.5rem;
    font-size: 0.58rem;
  }

  .filter-pills span {
    padding: 0.25rem 0.35rem;
    font-size: 0.61rem;
  }

  .trace-control,
  .filter-control {
    padding: 0 0.42rem;
    font-size: 0.62rem;
  }

  .trace-controls__divider {
    display: none;
  }

  .trace-table col:nth-child(8),
  .trace-table th:nth-child(8),
  .trace-table td:nth-child(8) {
    display: none;
  }

  .trace-table .trace-col--status {
    width: 8%;
  }

  .trace-table th:first-child,
  .trace-table td:first-child {
    padding-left: 0.75rem;
  }

  .trace-table .trace-col--id {
    width: 28%;
  }

  .trace-table .trace-col--name {
    width: 45%;
  }

  .trace-table .trace-col--total-time {
    width: 19%;
  }

  .integration-copy h2 br,
  .final-cta h2 br {
    display: none;
  }

  .code-tabs button {
    min-width: 0;
    padding-inline: 0.75rem;
  }

  .code-panel {
    height: min(23rem, 64vh);
  }

  .code-panel pre {
    padding: 0.85rem;
  }

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

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

  .price-card__description {
    min-height: 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
  }

  .pagination {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.45rem;
  }
}

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