/* Shared navigation and the WildEdge landing page. */
:root {
  --we-ink: #142e43;
  --we-muted: #526574;
  --we-green: #087c64;
  --we-line: #dce5e9;
  --we-paper: #fff;
  --we-soft: #f3f7f8;
  --we-navy: #123b5b;
  --we-tint: #eaf7f1;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html.dark {
  --we-ink: #eaf1f6;
  --we-muted: #a6b8c6;
  --we-green: #71d6b3;
  --we-line: #304658;
  --we-paper: #102535;
  --we-soft: #0b1d2b;
  --we-navy: #a5d5f9;
  --we-tint: #153c36;
}

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

.we-home h1,.we-home h2,.we-home h3,.we-home p {
  margin: 0;
}

.we-home h1,.we-home h2,.we-home h3 {
  text-wrap: balance;
}

.we-home p {
  line-height: 1.65;
}

.we-home em {
  font-style: normal;
  color: var(--we-green);
}

.we-home [hidden],.we-nav [hidden] {
  display: none!important;
}

.we-container {
  width: min(1180px,calc(100% - 80px));
  margin-inline: auto;
}

.we-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--we-paper);
  border-bottom: 1px solid var(--we-line);
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color: var(--we-ink);
}

.we-nav-inner {
  max-width: 1440px;
  margin: auto;
  min-height: 80px;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.we-logo {
  flex-shrink: 0;
}

.we-logo img {
  width: 64px;
  height: 46px;
  object-fit: contain;
}

.dark .we-logo {
  background: white;
  border-radius: 5px;
  padding: 3px 6px;
}

.we-desktop-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.we-desktop-links a:hover,.we-nav summary:hover {
  color: var(--we-green);
}

.we-nav a {
  text-decoration: none;
}

.we-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 14px;
}

.we-signin {
  white-space: nowrap;
}

.we-theme {
  display: grid;
  place-items: center;
  min-width: 36px;
  min-height: 40px;
  color: var(--we-muted);
  border: 0;
  background: none;
  cursor: pointer;
}

.we-product-menu {
  position: relative;
}

.we-product-menu summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
}

.we-product-menu summary::-webkit-details-marker {
  display: none;
}

.we-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  display: grid;
  padding: 12px;
  background: var(--we-paper);
  border: 1px solid var(--we-line);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.we-dropdown a {
  padding: 12px;
  border-radius: 6px;
}

.we-dropdown a:hover {
  background: var(--we-soft);
}

.we-menu-toggle {
  display: none;
  cursor: pointer;
  min-height: 44px;
  background: none;
  border: 0;
  color: var(--we-ink);
  font-size: 14px;
}

.we-mobile-links {
  padding: 12px 24px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-top: 1px solid var(--we-line);
  max-height: calc(100dvh - 80px);
  overflow: auto;
}

.we-mobile-links a {
  padding: 12px 8px;
  font-size: 15px;
}

.we-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid #173e5e;
  border-radius: 7px;
  background: #173e5e;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
  transition: background .15s,transform .15s;
  white-space: nowrap;
}

.we-button:hover {
  background: #24597e;
  transform: translateY(-1px);
}

.we-button.we-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
}

.we-button.we-secondary {
  background: var(--we-paper);
  border-color: var(--we-line);
  color: var(--we-ink);
}

.we-button.we-secondary:hover {
  border-color: var(--we-green);
  background: var(--we-soft);
}

.we-home a:focus-visible,.we-nav a:focus-visible,.we-home button:focus-visible,.we-nav button:focus-visible,.we-nav summary:focus-visible {
  outline: 3px solid #11987c;
  outline-offset: 5px;
}

.we-skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--we-paper);
  padding: 16px;
}

.we-skip:focus {
  top: 10px;
}

.we-hero {
  padding: 140px 0 64px;
  background: linear-gradient(120deg,var(--we-soft),var(--we-paper) 65%);
}

.we-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.we-eyebrow {
  font-size: 12px!important;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--we-green);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px!important;
}

.we-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: #159675;
  border-radius: 50%;
  flex-shrink: 0;
}

.we-hero h1 {
  font-size: clamp(42px,4.5vw,62px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.018em;
  max-width: 620px;
}

.we-hero h1 em {
  display: block;
}

.we-lead {
  font-size: 18px;
  line-height: 1.65!important;
  color: var(--we-muted);
  margin-top: 24px!important;
  max-width: 520px;
}

.we-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.we-hero-note {
  font-size: 12px;
  color: var(--we-muted);
  margin-top: 18px!important;
}

.we-agent-action{display:flex;align-items:center;gap:10px;margin-top:14px;min-height:38px}.we-agent-link{display:inline-flex;align-items:center;gap:8px;padding:9px 13px;border:1px solid var(--we-line);border-radius:7px;background:var(--we-soft);color:var(--we-muted);font:600 13px/1.4 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;cursor:pointer;transition:background .18s,border-color .18s,transform .18s}.we-agent-link svg{width:16px;height:16px;flex:none}.we-agent-link:hover{border-color:color-mix(in srgb,var(--we-muted) 45%,var(--we-line));background:color-mix(in srgb,var(--we-muted) 8%,var(--we-paper));color:var(--we-ink);transform:translateY(-1px)}.we-agent-link.is-copied{border-color:var(--we-green);background:color-mix(in srgb,var(--we-green) 16%,var(--we-paper))}.we-copy-feedback{color:var(--we-green);font-size:12px;font-weight:600}.we-agent-dialog{width:min(620px,calc(100% - 32px));padding:0;border:1px solid var(--we-line);border-radius:12px;color:var(--we-ink);background:var(--we-paper);box-shadow:0 4px 12px rgba(0,0,0,.08)}.we-agent-dialog::backdrop{background:rgba(10,25,36,.58)}.we-agent-dialog-inner{position:relative;padding:30px}.we-agent-dialog h2{margin:8px 0 10px;font-size:28px}.we-agent-dialog-inner>p:not(.we-eyebrow){color:var(--we-muted);font-size:14px}.we-agent-close{position:absolute;top:14px;right:16px;border:0;background:none;color:var(--we-muted);font-size:24px;cursor:pointer}.we-agent-prompt{margin-top:20px;padding:16px;border:1px solid var(--we-line);border-radius:7px;background:var(--we-soft);font:12px/1.65 'JetBrains Mono',monospace;user-select:all}.we-agent-dialog-actions{display:flex;align-items:center;gap:18px;margin-top:18px}.we-agent-dialog-actions a{color:var(--we-green);font-size:13px;font-weight:600;text-decoration:none}

.we-hero-note span {
  padding: 0 6px;
}

.we-example {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  border: 1px solid var(--we-line);
  border-radius: 14px;
  background: var(--we-paper);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  overflow: hidden;
  transform: rotate(-1deg);
}

.we-example-top {
  grid-column: 1;
  grid-row: 1;
}

.we-example>[role=tabpanel] {
  display: flex;
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  flex-direction: column;
}

.we-example>[role=tabpanel][hidden] {
  display: flex!important;
  visibility: hidden;
  pointer-events: none;
}

.we-example>[role=tabpanel] .we-example-bottom { margin-top: auto; }

.we-example-top {
  background: var(--we-soft);
  padding: 17px 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  border-bottom: 1px solid var(--we-line);
}

.we-health-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--we-line);
  border-radius: 5px;
  background: var(--we-paper);
  letter-spacing: 0;
}

.we-health-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0;
}

.we-health-heading strong {
  color: var(--we-ink);
  font: 600 11px/1.2 'JetBrains Mono',monospace;
}

.we-health-heading .we-health-env {
  padding: 3px 6px;
  border: 1px solid color-mix(in srgb,var(--we-green) 35%,var(--we-line));
  border-radius: 999px;
  background: color-mix(in srgb,var(--we-green) 9%,var(--we-paper));
  color: var(--we-green);
  font: 600 10px/1 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing: 0;
}

.we-health-tabs button {
  min-height: 26px;
  padding: 6px 11px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--we-muted);
  font: 600 11px/1.2 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  cursor: pointer;
}

.we-health-tabs button:hover {
  color: var(--we-ink);
}

.we-health-tabs button[aria-selected=true] {
  background: var(--we-green);
  color: #fff;
}

.we-health-tabs button:focus-visible {
  outline: 2px solid var(--we-green);
  outline-offset: 2px;
}

.we-example [role=tabpanel].is-entering {
  animation: we-health-panel-in 180ms ease-out;
}

.we-correlated-signal {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 9px 0 0;
  border-top: 1px solid var(--we-line);
  color: var(--we-muted);
  font-size: 10px;
}

.we-correlated-signal strong {
  color: var(--we-ink);
  font-weight: 600;
}

@media (max-width: 480px) {
  .we-correlated-signal { flex-direction: column; gap: 3px; }
  .we-interaction { grid-template-columns: 1fr; }
  .we-interaction>div+div { border-top: 1px solid var(--we-line); border-left: 0; }
  .we-stage-failure { grid-template-columns: auto 1fr; }
  .we-stage-failure>span:last-child { grid-column: 1/-1; text-align: left; }
  .we-validation-error { flex-direction: column; }
  .we-validation-error strong { text-align: left; }
}

@keyframes we-health-panel-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes we-impact-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .we-example [role=tabpanel].is-entering { animation: none; }
  .we-impact-stage figure.is-entering,
  .we-impact-stage figure.is-leaving { animation: none; }
}


.we-example-label {
  letter-spacing: 0;
  font-weight: 400;
  color: var(--we-muted);
  font-size: 11px;
  white-space: nowrap;
}

.we-example-body {
  padding: 24px;
}


.we-example-context {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--we-muted);
  padding-bottom: 24px;
}

.we-example-context>span:last-child {
  margin-left: auto;
  font-size: 10px;
  border: 1px solid var(--we-line);
  border-radius: 4px;
  padding: 4px 6px;
}

.we-kicker {
  font-size: 12px!important;
  color: var(--we-muted);
  font-weight: 500;
}

.we-metrics {
  margin-bottom: 22px;
}

.we-metric {
  display: grid;
  grid-template-columns: 1fr 70px 84px 68px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 11px 12px;
  border: 1px solid var(--we-line);
  border-radius: 5px;
  background: var(--we-soft);
}

.we-metric+.we-metric {
  margin-top: 7px;
}

.we-metric-name {
  color: var(--we-muted);
}

.we-metric-value {
  font-family: 'JetBrains Mono',monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: right;
}

.we-metric-delta {
  font-size: 12px;
  color: var(--we-muted);
  text-align: right;
}

.we-metric-delta.we-worse {
  color: #b4531b;
  font-weight: 500;
}

html.dark .we-metric-delta.we-worse {
  color: #f0a173;
}

.we-status {
  font-size: 10px;
  font-weight: 500;
  color: var(--we-green);
  border-radius: 4px;
  padding: 4px 6px;
  background: var(--we-tint);
  text-align: center;
}

.we-status.we-amber {
  background: #fff2d9;
  color: #895a12;
}

.we-dataset-result {
  display: flex;
  gap: 15px;
  padding: 18px 0 0;
  border-top: 1px solid var(--we-line);
}

.we-dataset-symbol {
  font-size: 28px;
  color: var(--we-green);
  line-height: 1;
}

.we-dataset-result>div {
  flex: 1;
  min-width: 0;
}

.we-split {
  font-size: 13px;
}

.we-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.we-block-head span {
  font-size: 10px;
  letter-spacing: 0;
  color: var(--we-muted);
  white-space: nowrap;
}

.we-evidence-title {
  margin: 0!important;
  color: var(--we-ink);
  font-size: 13px!important;
  font-weight: 650;
  line-height: 1.35;
}

.we-interaction {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  overflow: hidden;
  border-block: 1px solid var(--we-line);
}

.we-interaction>div {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.we-interaction>div+div { border-left: 1px solid var(--we-line); }
.we-interaction span,.we-output-sample>span,.we-stage-failure>span:first-child { color: var(--we-muted); font-size: 10px; }
.we-interaction strong { font-size: 13px; font-weight: 600; }
.we-interaction-correction { box-shadow: inset 3px 0 var(--we-green); }

.we-stage-failure {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
  padding: 9px 0 0;
  border-top: 1px solid var(--we-line);
  font-size: 11px;
}
.we-stage-failure strong { color: var(--we-alert,#b4531b); font-weight: 600; }
.we-stage-failure>span:last-child { color: var(--we-muted); text-align: right; }

.we-output-sample {
  display: grid;
  gap: 7px;
  padding: 12px 0;
  border-block: 1px solid var(--we-line);
}
.we-output-sample code { overflow-wrap: anywhere; color: var(--we-ink); font: 600 11px/1.5 'JetBrains Mono',monospace; }
.we-validation-error {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0 0;
  color: var(--we-muted);
  font-size: 11px;
}
.we-validation-error code { color: var(--we-ink); font-family: 'JetBrains Mono',monospace; }
.we-validation-error strong { color: var(--we-alert,#b4531b); font-weight: 600; text-align: right; }

.we-chart {
  display: block;
  width: 100%;
  height: 52px;
}

.we-chart-line {
  fill: none;
  stroke: var(--we-green);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 5 3;
  opacity: .8;
  vector-effect: non-scaling-stroke;
}

.we-chart-bad {
  stroke: #b4531b;
  stroke-dasharray: none;
  opacity: 1;
}

html.dark .we-chart-bad {
  stroke: #f0a173;
}

.we-chart-marker {
  stroke: var(--we-muted);
  stroke-width: 1;
  stroke-dasharray: 2 3;
  opacity: .55;
  vector-effect: non-scaling-stroke;
}

.we-chart-axis {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 10px!important;
  color: var(--we-muted);
  margin: 5px 0 12px!important;
}

/* Pinned to the release marker, which sits at the chart's midpoint. */
.we-chart-axis span:nth-child(2) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}



.we-legend {
  height: 2px;
  border-radius: 1px;
  opacity: .8;
  background: repeating-linear-gradient(90deg,var(--we-green) 0 4px,transparent 4px 6px);
}

.we-legend-bad {
  background: #b4531b;
  opacity: 1;
}

html.dark .we-legend-bad {
  background: #f0a173;
}

.we-split>div {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid #13997933;
}

.we-split>div:first-child {
  border-top: 0;
}

.we-split strong {
  text-align: right;
}

.we-split em {
  font-style: normal;
  color: var(--we-muted);
  white-space: nowrap;
}

.we-split em::before {
  content: "·";
  padding: 0 5px;
}

.we-split strong {
  font-family: 'JetBrains Mono',monospace;
  font-weight: 700;
}

.we-split>div:first-child strong {
  color: #b4531b;
}

html.dark .we-split>div:first-child strong {
  color: #f0a173;
}

.we-labels {
  font-size: 12px;
  color: var(--we-muted);
  margin-top: 11px!important;
}

.we-labels strong {
  color: var(--we-ink);
  font-weight: 500;
}

.we-labels span {
  padding: 0 3px;
}

.we-example-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  border-top: 1px solid var(--we-line);
  font-size: 11px;
  color: var(--we-muted);
}

.we-example-bottom a {
  color: var(--we-green);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.we-example-bottom a:hover {
  text-decoration: underline;
}

.we-trust {
  border-block: 1px solid var(--we-line);
  background: var(--we-paper);
}

.we-trust .we-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 36px;
  padding-block: 22px;
  font-size: 12px;
  color: var(--we-muted);
}

.we-trust-label {
  font-weight: 600;
  color: var(--we-ink);
}

.we-trust-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.we-trust-icon {
  width: 15px;
  height: 15px;
  color: var(--we-green);
  flex: none;
}

.we-trust-item {
  white-space: nowrap;
}

.we-section {
  padding: 84px 0;
}

.we-home h2 {
  font-size: clamp(32px,3.5vw,44px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.we-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 36px;
}

.we-section-heading>p {
  max-width: 330px;
  font-size: 16px;
  color: var(--we-muted);
}

.we-product-showcase {
  border: 1px solid var(--we-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--we-soft);
}

.we-tabs {
  display: flex;
  padding: 0 24px;
  background: var(--we-paper);
  border-bottom: 1px solid var(--we-line);
  gap: 0;
}

.we-tabs button {
  position: relative;
  flex: 1;
  justify-content: center;
  padding: 20px 0;
  font-family: inherit;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: var(--we-muted);
  font-size: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.we-tabs button:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -7px;
  color: var(--we-muted);
  font-size: 15px;
  opacity: .65;
}

.we-tabs button span {
  font-size: 14px;
  font-weight: 500;
}

.we-tabs button[aria-selected=true] {
  color: var(--we-green);
  border-bottom-color: var(--we-green);
}

.we-panel-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  gap: 24px;
}

.we-panel-copy p {
  font-size: 14px;
  color: var(--we-muted);
  max-width: 650px;
}

.we-panel-copy a {
  font-size: 12px;
  color: var(--we-green);
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.we-handoff {
  margin: 0 28px 28px;
}

.we-install {
  margin: 0 28px 28px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
}

.we-signal-record {
  position: relative;
  display: grid;
  grid-template-columns: 176px 1fr;
  gap: 124px;
  align-items: center;
  margin: 0 28px 20px;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.we-signal-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--we-green);
  pointer-events: none;
}

.we-signal-lines path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
  opacity: .55;
}

.we-signal-lines circle {
  fill: currentColor;
  opacity: .8;
}

.we-signal-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 18px;
  border-radius: 7px;
  color: #f6fbf8;
  background: #123b5b;
}

.we-signal-core span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  color: #a9e8c9;
}

.we-signal-core strong {
  font-size: 18px;
}

.we-signal-core small {
  font-size: 11px;
  color: #d1dde5;
}

.we-signal-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}

.we-signal-items>div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px 14px;
  border-left: 1px solid var(--we-line);
  border-radius: 0;
  background: transparent;
}

.we-signal-items strong {
  font-size: 12px;
  color: var(--we-ink);
}

.we-signal-items span {
  font-size: 11px;
  line-height: 1.45;
  color: var(--we-muted);
}

.we-install>div {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border-left: 1px solid var(--we-line);
  border-radius: 0;
  background: transparent;
}

.we-install>div+div {
  border-top: 1px solid var(--we-line);
}

.we-install span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--we-ink);
}

.we-install span svg {
  width: 20px;
  height: 20px;
  color: var(--we-green);
  flex: none;
}

.we-install code {
  display: block;
  width: 100%;
  font-family: 'JetBrains Mono',monospace;
  font-size: 11px;
  color: var(--we-ink);
  background: var(--we-soft);
  border-radius: 5px;
  padding: 8px 10px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.we-install-detail {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.we-install-detail p {
  margin: 0;
  color: var(--we-muted);
  font-size: 12px;
  line-height: 1.5;
}

@media(max-width:760px) {
  .we-signal-record {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-inline: 18px;
  }
  .we-signal-lines {
    display: none;
  }
  .we-signal-items {
    grid-template-columns: 1fr 1fr;
  }
  .we-install {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 12px 16px;
  }
  .we-install>div {
    gap: 10px;
    padding: 14px;
  }
}

@media(max-width:480px) {
  .we-detect-toolbar,.we-train-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-inline: 18px;
  }
  .we-signal-items {
    grid-template-columns: 1fr;
  }
}

/* Keep supporting UI flat inside the product and investigation sections. */
.we-agent-investigate {
  padding-inline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.we-agent-dialog,
.we-agent-terminal,
.we-view-switcher button[aria-pressed=true] {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.we-loop-return:last-child {
  border-bottom: 0;
}

.we-screenshot {
  margin: 0 28px 28px;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 2.08;
  background: white;
}

.we-detect-toolbar,.we-train-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 28px 14px;
}

.we-detect-toolbar>a,.we-train-toolbar>a {
  color: var(--we-green);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.we-view-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--we-line);
  border-radius: 7px;
  background: var(--we-paper);
}

.we-view-switcher button {
  padding: 7px 13px;
  border: 0;
  border-radius: 5px;
  color: var(--we-muted);
  background: transparent;
  font: 600 12px/1 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  cursor: pointer;
}

.we-view-switcher button[aria-pressed=true] {
  color: var(--we-ink);
  background: var(--we-soft);
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.we-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.we-caption {
  font-size: 12px;
  color: var(--we-muted);
  margin-top: 12px!important;
}

.we-data-trust {
  padding: 42px 0;
  background: #123b5b;
  color: #f1f6f9;
}

.we-data-trust-inner {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(280px,.8fr);
  gap: 64px;
  align-items: center;
}

.we-data-trust .we-eyebrow {
  color: #8ce1c0;
  margin-bottom: 10px!important;
}

.we-data-trust h2 {
  max-width: 720px;
  font-size: clamp(25px,2.4vw,34px);
  color: #fff;
}

.we-data-trust p:not(.we-eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: #bfd0dc;
  font-size: 15px;
}

.we-data-trust-points {
  display: grid;
  gap: 11px;
  padding-left: 30px;
  border-left: 1px solid #486277;
}

.we-data-trust-points span {
  position: relative;
  padding-left: 19px;
  font-size: 14px;
  color: #e5eef3;
}

.we-data-trust-points span:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8ce1c0;
}

.we-matrix-card {
  border: 1px solid var(--we-line);
  border-radius: 14px;
  background: var(--we-paper);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.we-matrix-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 17px 22px;
  background: var(--we-soft);
  border-bottom: 1px solid var(--we-line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
}

.we-matrix-scroll {
  overflow-x: auto;
}

.we-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.we-matrix th,.we-matrix td {
  padding: 13px 22px;
  text-align: right;
  white-space: nowrap;
}

.we-matrix th:nth-child(2),.we-matrix td:nth-child(2) {
  width: 100%;
  padding-inline: 12px;
  text-align: left;
}

.we-bar-cell {
  min-width: 240px;
}

.we-bar {
  display: flex;
  height: 22px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--we-soft);
}

.we-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3px;
}

.we-seg i {
  font-family: 'JetBrains Mono',monospace;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}

.we-seg-npu {
  background: var(--we-green);
}

.we-seg-gpu {
  background: #6f9fc4;
}

.we-seg-cpu {
  background: #b4531b;
}

html.dark .we-seg-npu {
  background: #2f9d7d;
}

html.dark .we-seg-cpu {
  background: #c25f22;
}

.we-matrix-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px 0;
  font-size: 11px;
  color: var(--we-muted);
}

.we-key {
  width: 9px;
  height: 9px;
  border-radius: 2px;
}

.we-key+.we-key,.we-matrix-legend .we-key:not(:first-child) {
  margin-left: 10px;
}

.we-matrix thead th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: none;
  color: var(--we-muted);
  padding-block: 12px;
}

.we-matrix th:first-child {
  text-align: left;
  font-weight: 500;
  line-height: 1.35;
}

.we-chip-devices {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--we-muted);
}

.we-matrix tbody tr+tr th,.we-matrix tbody tr+tr td {
  border-top: 1px solid var(--we-line);
}

.we-matrix tbody td {
  font-family: 'JetBrains Mono',monospace;
  font-weight: 700;
  letter-spacing: -.02em;
}

.we-matrix .we-nil {
  color: var(--we-muted);
  font-weight: 400;
  opacity: .5;
}

.we-matrix .we-hot {
  color: #b4531b;
}

html.dark .we-matrix .we-hot {
  color: #f0a173;
}

.we-matrix-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--we-line);
  background: transparent;
  font-size: 13px;
  color: var(--we-muted);
}

#fragmentation .we-text-link {
  margin-top: 24px;
}

.we-outcomes {
  background: var(--we-soft);
  border-block: 1px solid var(--we-line);
}

.we-use-heading {
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--we-line);
  scroll-margin-top: 96px;
}

.we-use-heading .we-eyebrow {
  margin-bottom: 14px!important;
}

.we-three-columns {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 42px;
  margin-top: 40px;
}

.we-agent-investigate{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:44px;align-items:center;margin-top:42px;padding:30px;border:1px solid var(--we-line);border-radius:10px;background:var(--we-soft)}.we-agent-investigate h3{margin:8px 0 10px;font-size:25px;line-height:1.2}.we-agent-investigate-copy>p:not(.we-eyebrow){max-width:530px;color:var(--we-muted);font-size:14px;line-height:1.65}.we-agent-investigate .we-text-link{display:inline-flex;margin-top:16px}.we-mcp-label{display:block;margin-top:12px;color:var(--we-muted);font:600 10px/1.4 'JetBrains Mono',monospace;text-transform:none;letter-spacing:0}.we-agent-terminal{overflow:hidden;border:1px solid #28495f;border-radius:8px;background:#102f45;color:#dce8ee;box-shadow:0 4px 12px rgba(0,0,0,.08);font-family:'JetBrains Mono',monospace}.we-terminal-bar{display:flex;align-items:center;gap:6px;padding:10px 13px;border-bottom:1px solid #28495f;background:#173b53}.we-terminal-bar>span{width:7px;height:7px;border-radius:50%;background:#638095}.we-terminal-bar>span:nth-child(2){opacity:.72}.we-terminal-bar>span:nth-child(3){opacity:.48}.we-terminal-bar strong{margin-left:6px;color:#a9bdc9;font-size:9px;font-weight:500;text-transform:none;letter-spacing:0}.we-terminal-body{padding:18px}.we-terminal-body p{margin:0;font-size:11px;line-height:1.65}.we-terminal-body p+p{margin-top:10px}.we-terminal-prompt{color:white}.we-terminal-prompt span,.we-terminal-status span{color:#72ddb0}.we-terminal-status{color:#88a5b6}.we-terminal-body strong{color:#72ddb0;font-weight:700}
@media(max-width:800px){.we-agent-investigate{grid-template-columns:1fr;gap:24px;padding:24px}}
.we-evidence{padding:72px 0;background:#123b5b;color:#f4f8fa}.we-evidence-inner{display:grid;grid-template-columns:minmax(0,.9fr) minmax(440px,1.1fr);gap:64px;align-items:center}.we-evidence .we-eyebrow{color:#72ddb0}.we-evidence h2{max-width:580px;margin:10px 0 16px;color:white;font-size:38px;line-height:1.15}.we-evidence-inner>div>p:not(.we-eyebrow){max-width:570px;color:#d1dde5;font-size:15px;line-height:1.7}.we-evidence .we-text-link{display:inline-flex;margin-top:18px;color:#72ddb0}.we-evidence-map{width:100%;height:auto}.we-evidence-map rect{fill:#174968;stroke:#477088;stroke-width:1}.we-evidence-map text{fill:#edf5f8;font:700 12px -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;text-anchor:middle}.we-evidence-map text.sub{fill:#aebfca;font-size:10px;font-weight:500}.we-evidence-record rect{fill:#f4f8fa;stroke:#72ddb0;stroke-width:2}.we-evidence-record text{fill:#29485c;font-size:10px;text-anchor:start}.we-evidence-record text.title{fill:#123b5b;font-size:10.5px;letter-spacing:.7px;text-anchor:middle}.we-evidence-line{fill:none;stroke:#72ddb0;stroke-width:2;stroke-dasharray:5 5}.we-evidence-line.arrow{marker-end:url(#we-arrow)}.we-evidence-map marker path{fill:#72ddb0}.we-evidence-use rect{fill:#10354f}.we-evidence-use text{fill:#d9f3e7;font-size:10px;text-anchor:start}.we-evidence-use text.use-title{fill:#8cabc0;font-size:9px;letter-spacing:1px}.we-evidence-use line{stroke:#477088;stroke-width:1}.we-evidence-use circle{fill:#72ddb0}
@media(max-width:900px){.we-evidence-inner{grid-template-columns:1fr;gap:30px}.we-evidence-map{max-width:620px}.we-evidence h2{font-size:32px}}

.we-three-columns article+article {
  border-left: 1px solid var(--we-line);
  padding-left: 36px;
}

.we-outcome-number {
  font-size: 11px;
  color: var(--we-green);
  letter-spacing: .06em;
  font-weight: 600;
}

.we-three-columns h3 {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 14px 0;
}

.we-three-columns p {
  font-size: 15px;
  color: var(--we-muted);
}

.we-loop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--we-line);
  border-radius: 10px;
  overflow: hidden;
}

.we-loop-owned {
  padding: 26px;
  background: var(--we-tint);
}

.we-loop-owner {
  font-size: 11px!important;
  letter-spacing: .12em;
  color: var(--we-green);
  font-weight: 600;
}

.we-loop h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
  margin: 15px 0 10px;
  letter-spacing: -.025em;
}

.we-loop-owned>p:not(:first-child),.we-loop-external>p:not(:first-child) {
  font-size: 14px;
  color: var(--we-muted);
}

.we-loop-external {
  padding: 26px;
  border-left: 1px dashed var(--we-line);
}

.we-loop-owned h3,.we-loop-external h3 {
  margin-top: 26px;
}

.we-loop-external a {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  color: var(--we-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.we-loop-return {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 18px 12px;
  color: var(--we-green);
  font-size: 13px;
  border-bottom: 1px solid var(--we-line);
  margin-inline: 26px;
}

.we-loop-return span {
  font-size: 20px;
  line-height: 1;
}

.we-hybrid {
  background: #12334c;
  color: #f1f6f9;
}

.we-hybrid .we-eyebrow {
  color: #8ce1c0;
}

.we-hybrid em {
  color: #8ce1c0;
}

.we-hybrid .we-model-rows {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  font-size: 13px;
  color: #bfd0dc;
}

.we-hybrid .we-model-rows .we-trust-icon {
  color: #8ce1c0;
}

.we-hybrid .we-model-rows .we-trust-label {
  color: #f1f6f9;
  min-width: 64px;
}

.we-hybrid .we-model-note {
  font-size: 13px;
  color: #93a9b8;
}

.we-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.we-hybrid .we-two-columns>div>p:not(.we-eyebrow) {
  font-size: 16px;
  color: #bfd0dc;
  margin-top: 24px;
  max-width: 450px;
}

.we-text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  color: var(--we-green);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.we-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.we-hybrid .we-text-link {
  color: #8ce1c0;
  margin-top: 25px;
}

.we-hybrid-example {
  border: 1px solid #486277;
  border-radius: 10px;
  padding: 28px;
  background: #183d57;
}

.we-hybrid-example .we-kicker {
  color: #bcd0dc;
}

.we-hybrid-patterns {
  margin-top: 24px;
}

.we-hybrid-patterns>div {
  border-left: 2px solid #8ce1c0;
  padding-left: 18px;
}

.we-hybrid-patterns>div+div {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #486277;
}

.we-hybrid-patterns span {
  font-size: 10px;
  letter-spacing: .13em;
  color: #8ce1c0;
}

.we-hybrid-patterns h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.025em;
  margin: 6px 0;
}

.we-hybrid-patterns p {
  font-size: 14px;
  color: #bfd0dc;
}

.we-hybrid-trace {
  display: block;
  margin-top: 10px;
  color: #8ce1c0;
  font: 500 11px/1.5 'JetBrains Mono',monospace;
}

.we-hybrid-takeaway {
  border-top: 1px solid #486277;
  margin-top: 24px;
  padding-top: 20px;
}

.we-hybrid-takeaway strong {
  font-weight: 500;
  font-size: 16px;
}

.we-hybrid-takeaway p {
  font-size: 14px;
  color: #bfd0dc;
  margin-top: 6px;
}

.we-home #integrations {
  padding: 72px 0;
  background: var(--we-paper);
  color: var(--we-ink);
}

.we-home #integrations h2 {
  font-size: 36px;
}

.we-home #integrations .text-slate-500 {
  color: var(--we-muted);
}

.we-integration-note {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 14px;
  color: var(--we-muted);
}

.we-control {
  background: var(--we-soft);
  border-block: 1px solid var(--we-line);
}

.we-control .we-three-columns h3 {
  font-size: 21px;
  margin-top: 0;
}

.we-control-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--we-line);
  font-size: 15px;
}

.we-compliance-link {
  display: inline-block;
  font-size: 12px;
  color: var(--we-muted);
  margin-top: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.we-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.we-price {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--we-line);
  border-radius: 10px;
  padding: 28px;
}

.we-price h3 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 14px 0 8px;
}

.we-price h3 span {
  font-size: 14px;
  letter-spacing: 0;
  color: var(--we-muted);
}

.we-price>p:not(.we-kicker) {
  font-size: 13px;
  color: var(--we-muted);
}

.we-price ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  flex: 1;
  font-size: 14px;
  color: var(--we-muted);
}

.we-price li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.we-price li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--we-green);
}

.we-price-pro {
  background: var(--we-soft);
  border-color: var(--we-green);
}

.we-price .we-button {
  width: 100%;
  font-size: 14px;
}

.we-final {
  padding: 72px 0;
  background: #e5f4ed;
  color: #142e43;
}

.we-final .we-eyebrow {
  color: #087c64;
}

.we-final h2 {
  font-size: clamp(34px,4vw,48px);
}

.we-final p:not(.we-eyebrow) {
  margin-top: 20px;
  color: #526574;
  font-size: 17px;
}

.we-final-secondary {
  color: #173e5e;
  font-size: 14px;
  padding: 12px;
}

.we-footer {
  padding: 55px 0 22px;
  background: var(--we-paper);
  border-top: 1px solid var(--we-line);
}

.we-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.we-footer-logo {
  display: inline-block;
  background: white;
  border-radius: 5px;
  padding: 4px 8px;
  margin-bottom: 16px;
}

.we-footer-logo img {
  width: 72px;
  height: 50px;
  object-fit: contain;
}

.we-footer p {
  font-size: 16px;
  color: var(--we-ink);
}

.we-footer span {
  display: block;
  font-size: 12px;
  color: var(--we-muted);
  margin-top: 16px;
}

.we-footer h3 {
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0 18px;
}

.we-footer-grid>div>a:not(.we-footer-logo) {
  display: block;
  font-size: 13px;
  color: var(--we-muted);
  margin-bottom: 13px;
  text-decoration: none;
}

.we-footer a:hover {
  color: var(--we-green);
}

.we-footer-bottom {
  border-top: 1px solid var(--we-line);
  padding-top: 20px;
  margin-top: 40px;
  color: var(--we-muted);
  font-size: 12px;
}

@media(min-width:1500px) {
  .we-hero {
    padding-top: 155px;
    padding-bottom: 80px;
  }
}

@media(max-width:1100px) {
  .we-nav-inner {
    gap: 20px;
    padding-inline: 24px;
  }
  .we-desktop-links {
    gap: 20px;
  }
  .we-nav-actions {
    gap: 12px;
  }
  .we-container {
    width: calc(100% - 48px);
  }
  .we-hero-grid {
    gap: 32px;
  }
  .we-hero h1 {
    font-size: 48px;
  }
  .we-example-top {
    flex-wrap: wrap;
    gap: 5px;
  }
  .we-example-body {
    padding: 18px;
  }
  .we-example-context {
    flex-wrap: wrap;
  }
  .we-example-context>span:last-child {
    margin-left: 0;
  }
  .we-two-columns {
    gap: 40px;
  }
  .we-three-columns {
    gap: 26px;
  }
  .we-three-columns article+article {
    padding-left: 26px;
  }
}

@media(max-width:800px) {
  .we-desktop-links,.we-signin {
    display: none;
  }
  .we-menu-toggle {
    display: block;
  }
  .we-nav-inner {
    min-height: 72px;
  }
  .we-nav-actions {
    gap: 14px;
  }
  .we-hero {
    padding-top: 112px;
    padding-bottom: 44px;
  }
  .we-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .we-hero-copy {
    max-width: 620px;
  }
  .we-hero .we-hero-copy { padding-top: 0; }
  .we-hero h1 {
    font-size: clamp(42px,7vw,58px);
  }
  .we-lead {
    max-width: 600px;
  }
  .we-example {
    transform: none;
    max-width: 620px;
    width: 100%;
    margin: auto;
  }
  .we-example-top {
    flex-wrap: nowrap;
  }
  .we-example-context>span:last-child {
    margin-left: auto;
  }
  .we-example-body {
    padding: 24px;
  }
  .we-trust .we-container {
    justify-content: center;
    gap: 12px 24px;
  }
  .we-trust-label {
    width: 100%;
    text-align: center;
  }
  .we-trust-group {
    justify-content: center;
  }
  .we-section {
    padding: 60px 0;
  }
  .we-section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .we-section-heading>p {
    max-width: 550px;
    margin-top: 18px;
  }
  .we-data-trust-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .we-data-trust-points {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid #486277;
  }
  .we-three-columns {
    gap: 22px;
  }
  .we-three-columns article+article {
    padding-left: 22px;
  }
  .we-three-columns h3 {
    font-size: 20px;
  }
  .we-three-columns p {
    font-size: 14px;
  }
  .we-loop {
    grid-template-columns: 1fr;
  }
  .we-loop-external {
    border-left: 0;
    border-top: 1px dashed var(--we-line);
  }
  .we-loop-external h3 {
    margin-top: 16px;
  }
  .we-loop-external>p:not(:first-child) {
    max-width: 580px;
  }
  .we-two-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .we-hybrid .we-two-columns>div>p:not(.we-eyebrow) {
    max-width: 600px;
  }
  .we-pricing-grid {
    gap: 12px;
  }
  .we-price {
    padding: 20px;
  }
  .we-price h3 {
    font-size: 32px;
  }
  .we-price h3 span {
    display: block;
    margin-top: 8px;
  }
  .we-panel-copy {
    display: block;
  }
  .we-panel-copy a {
    display: inline-block;
    margin-top: 10px;
  }
  .we-tabs {
    gap: 20px;
    padding-inline: 20px;
  }
  .we-tabs button {
    gap: 8px;
  }
  .we-tabs button span {
    font-size: 13px;
  }
}

@media(max-width:560px) {
  .we-container {
    width: calc(100% - 40px);
  }
  .we-nav-inner {
    padding: 10px 18px;
    gap: 10px;
  }
  .we-logo img {
    width: 50px;
    height: 40px;
  }
  .we-nav-actions {
    gap: 10px;
  }
  .we-theme {
    display: none;
  }
  .we-button.we-small {
    font-size: 12px;
    padding: 10px 12px;
    min-height: 40px;
  }
  .we-menu-toggle {
    font-size: 12px;
  }
  .we-menu-toggle span {
    margin-left: 4px;
  }
  .we-hero {
    padding-top: 106px;
  }
  .we-hero h1 {
    font-size: 44px;
  }
  .we-lead {
    font-size: 17px;
    margin-top: 20px!important;
  }
  .we-eyebrow {
    font-size: 11px!important;
    margin-bottom: 16px!important;
  }
  .we-hero .we-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .we-button {
    padding: 13px 14px;
    font-size: 14px;
    gap: 10px;
  }
  .we-hero-note {
    font-size: 11px;
  }
  .we-example-top {
    padding: 14px 16px;
    font-size: 9px;
    flex-wrap: wrap;
  }
  .we-example-label {
    font-size: 10px;
  }
  .we-example-body {
    padding: 18px 16px;
  }
  .we-example-context {
    font-size: 11px;
  }
  .we-example-context>span:last-child {
    font-size: 9px;
  }
  .we-metric {
    grid-template-columns: 1fr 44px 58px 48px;
    font-size: 12px;
    padding: 10px;
    gap: 8px;
  }
  .we-metric-value {
    font-size: 14px;
  }
  .we-metric-delta {
    font-size: 11px;
  }
  .we-status {
    font-size: 9px;
  }
  .we-dataset-result {
    padding: 14px;
    gap: 10px;
  }
  .we-split {
    font-size: 12px;
  }
  .we-split>div {
    gap: 8px;
  }
  .we-chart {
    height: 44px;
  }
  .we-block-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 8px;
  }
  .we-labels {
    font-size: 11px;
  }
  .we-example-bottom {
    flex-wrap: wrap;
    gap: 6px;
    padding: 11px 16px;
  }
  .we-matrix-top,.we-matrix-foot {
    padding: 12px 14px;
  }
  .we-matrix-legend {
    padding: 12px 14px 0;
  }
  .we-matrix th,.we-matrix td {
    padding: 11px 14px;
    font-size: 13px;
  }
  .we-chip-devices {
    font-size: 10px;
  }
  .we-matrix th:first-child {
    white-space: normal;
    min-width: 96px;
  }
  .we-matrix th:nth-child(2),.we-matrix td:nth-child(2) {
    padding-inline: 8px;
  }
  .we-bar-cell {
    min-width: 120px;
  }
  .we-matrix-foot {
    font-size: 12px;
  }
  .we-trust .we-container {
    font-size: 11px;
    gap: 10px 18px;
  }
  .we-section {
    padding: 52px 0;
  }
  .we-home h2 {
    font-size: 33px;
  }
  .we-home h2 br {
    display: none;
  }
  .we-section-heading>p {
    font-size: 15px;
  }
  .we-tabs {
    gap: 0;
    padding: 0 10px;
    justify-content: space-between;
  }
  .we-tabs button {
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 0;
    padding: 14px 3px 11px;
    font-size: 11px;
    text-align: center;
  }
  .we-tabs button::after {
    display: none;
  }
  .we-tabs button span {
    display: block;
    min-height: 0;
    font-size: 12px;
    line-height: 1.2;
  }
  .we-panel-copy {
    padding: 18px;
  }
  .we-panel-copy p {
    font-size: 13px;
  }
  .we-screenshot {
    margin: 0 12px 12px;
    aspect-ratio: 1.4;
  }
  .we-screenshot img {
    object-fit: cover;
    object-position: center;
    width: 155%;
    max-width: none;
    height: auto;
    transform: translateX(-18%);
  }
  .we-caption {
    font-size: 11px;
  }
  .we-three-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
  }
  .we-use-heading {
    margin-top: 52px;
    padding-top: 44px;
  }
  .we-three-columns article+article {
    border-left: 0;
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid var(--we-line);
  }
  .we-three-columns h3 {
    font-size: 24px;
    margin: 10px 0;
  }
  .we-three-columns p {
    font-size: 15px;
  }
  .we-loop h3 {
    margin: 0 0 8px;
  }
  .we-loop-owner {
    margin-bottom: 22px!important;
  }
  .we-loop-owned,.we-loop-external {
    padding: 24px;
  }
  .we-loop-external h3 {
    margin: 0 0 10px;
  }
  .we-loop-return {
    margin-inline: 0;
    font-size: 12px;
    justify-content: flex-start;
    align-items: center;
  }
  .we-hybrid-example {
    padding: 24px;
  }
  .we-hybrid h2 br {
    display: block;
  }
  .we-home #integrations {
    padding: 52px 0;
  }
  .we-home #integrations h2 {
    font-size: 33px;
  }
  .we-integration-note {
    justify-content: flex-start;
    gap: 10px;
  }
  .we-control-foot {
    display: block;
    font-size: 14px;
  }
  .we-control-foot a {
    margin-top: 12px;
  }
  .we-pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .we-price {
    padding: 26px;
  }
  .we-price h3 {
    font-size: 38px;
  }
  .we-price h3 span {
    display: inline;
    font-size: 14px;
  }
  .we-price ul {
    margin: 24px 0;
  }
  .we-final {
    padding: 52px 0;
  }
  .we-final p:not(.we-eyebrow) {
    font-size: 16px;
  }
  .we-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .we-footer-grid>div:first-child {
    grid-column: 1/-1;
  }
  .we-footer-grid>div:first-child p br {
    display: none;
  }
  .we-footer-grid>div>a:not(.we-footer-logo) {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .we-footer h3 {
    font-size: 14px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  .we-button {
    transition: none;
  }
  .we-button:hover {
    transform: none;
  }
}

.we-sdk-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.we-sdk-grid article {
  border: 1px solid var(--we-line);
  border-radius: 10px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.we-sdk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.we-sdk-grid .we-sdk-tag {
  font-family: 'JetBrains Mono',monospace;
  font-size: 11px;
  color: var(--we-green);
}

.we-sdk-icon {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--we-ink);
  opacity: .45;
}

.we-sdk-grid h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 16px 0 12px;
  letter-spacing: -.03em;
}

.we-sdk-grid p:not(.we-sdk-tag) {
  font-size: 14px;
  color: var(--we-muted);
  flex: 1;
  margin-bottom: 24px;
  line-height: 1.9;
}

.we-sdk-grid code {
  display: block;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 5px;
  background: var(--we-soft);
  color: var(--we-ink);
}

.we-sdk-grid a {
  font-size: 13px;
  color: var(--we-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media(max-width:700px) {
  .we-sdk-grid {
    grid-template-columns: 1fr;
  }
  .we-sdk-grid article {
    padding: 24px;
  }
}

.we-hero-grid > * {
  min-width: 0;
}

@media(max-width:359px) {
  .we-hero .we-actions {
    grid-template-columns: 1fr;
  }
  .we-hero h1 {
    font-size: 40px;
  }
  .we-example-context>span:last-child {
    margin-left: 0;
  }
  .we-metric {
    grid-template-columns: 1fr auto;
    row-gap: 4px;
  }
  .we-metric-delta {
    grid-column: 1 / -1;
    text-align: left;
  }
  .we-metric .we-status {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* Hero investigation: quiet summary metrics, prominent regression evidence. */
.we-hero .we-example {
  --we-alert: #a65b12;
  --we-alert-tint: #fff5e6;
  transform: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
html.dark .we-hero .we-example {
  --we-alert: #f0b566;
  --we-alert-tint: #332a20;
}
.we-hero .we-example-top { padding: 13px 20px; }
.we-hero .we-example-body { padding: 18px 20px; }
.we-hero .we-example-context { padding-bottom: 16px; }
.we-hero .we-metrics {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0;
  margin-bottom: 20px;
  border-block: 1px solid var(--we-line);
}
.we-hero .we-metric {
  grid-template-columns: 1fr auto;
  gap: 5px 8px;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.we-hero .we-metric:nth-child(odd) { border-right: 1px solid var(--we-line); padding-left: 0; }
.we-hero .we-metric:nth-child(even) { padding-right: 0; }
.we-hero .we-metric:nth-child(n+3) { border-top: 1px solid var(--we-line); }
.we-hero .we-metric-name { font-size: 12px; }
.we-hero .we-metric-value { font-size: 14px; font-weight: 500; }
.we-hero .we-metric-delta { grid-column: 1; text-align: left; font-size: 11px; }
.we-hero .we-status { grid-column: 2; padding: 2px 5px; justify-self: end; }
.we-hero .we-dataset-result {
  position: relative;
  padding: 16px;
  gap: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.we-hero-demo {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.we-hero .we-hero-grid { align-items: start; }
.we-hero .we-hero-copy { padding-top: 0; }
.we-hero-demo .we-example { order: 3; }
.we-hero-demo .we-hero-stage {
  order: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.we-health-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.we-health-switcher-label {
  color: var(--we-muted);
  font: 600 11px/1.2 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing: .04em;
}
.we-impact-stage {
  position: relative;
  display: grid;
  align-items: start;
  justify-content: center;
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: 0;
}
.we-impact-stage figure {
  grid-area: 1 / 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb,var(--we-ink) 18%,var(--we-line));
  border-radius: 10px;
  background: var(--we-paper);
  box-shadow: 0 14px 34px rgba(15,35,49,.16),0 2px 7px rgba(15,35,49,.1);
}
.we-impact-stage figure[hidden] { display: none; }
.we-impact-stage figure.is-entering {
  z-index: 2;
  animation: we-impact-in 380ms cubic-bezier(.22,.7,.2,1) both;
}
.we-impact-stage figure.is-leaving {
  z-index: 1;
}
.we-impact-stage img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.we-impact-stage figure[data-health-impact="health-panel-voice"] { width: 100%; }
.we-impact-stage figure[data-health-impact="health-panel-voice"] img {
  width: 100%;
}
.we-impact-stage figure[data-health-impact="health-panel-voice"] {
  background: #fbfaf8;
}
.we-ios-scanner { position:relative; overflow:hidden; aspect-ratio:16/10; background:#151c20; color:#fff; font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; }
.we-ios-scanner>img { width:100%; height:100%; object-fit:cover; object-position:right center; transform:scale(1.75); transform-origin:right center; filter:brightness(.72) saturate(.78); }
.we-ios-scanner-top { position:absolute; inset:0 0 auto; display:grid; grid-template-columns:28px 1fr auto; align-items:center; gap:9px; padding:14px 16px; background:linear-gradient(rgba(9,16,20,.9),rgba(9,16,20,.62),transparent); }
.we-ios-scanner-top>span { font-size:30px; font-weight:300; line-height:.8; }
.we-ios-scanner-top strong { font-size:14px; font-weight:650; }
.we-ios-scanner-top em { padding:6px 9px; border:1px solid rgba(106,220,194,.4); border-radius:999px; background:rgba(27,83,73,.72); color:#b9f0e3; font-size:10px; font-style:normal; font-weight:650; }
.we-ios-scan-frame { position:absolute; inset:23% 31% 25%; border:2px solid #e9a433; border-radius:8px; box-shadow:0 0 0 999px rgba(5,12,16,.12); }
.we-ios-scan-result { position:absolute; right:14px; bottom:14px; left:14px; display:grid; grid-template-columns:1fr auto auto; align-items:center; gap:8px; padding:12px 14px; border:1px solid rgba(255,255,255,.16); border-radius:10px; background:rgba(16,22,26,.92); box-shadow:0 8px 28px rgba(0,0,0,.25); backdrop-filter:blur(10px); }
.we-ios-scan-result span { display:grid; gap:2px; }
.we-ios-scan-result strong { font-size:13px; font-weight:650; }
.we-ios-scan-result small { color:#f2b755; font-size:10px; }
.we-ios-scan-result button { padding:7px 10px; border:1px solid rgba(255,255,255,.22); border-radius:6px; background:rgba(255,255,255,.1); color:#fff; font:600 10px/1 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; }
.we-ios-scan-result button:disabled { opacity:.42; }
.we-impact-connector {
  order: 2;
  align-self: center;
  width: 105px;
  height: 58px;
  margin: 20px auto 12px;
  overflow: visible;
  fill: none;
  stroke: var(--we-green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .72;
}
@media(min-width:801px) {
  .we-hero-demo {
    display: contents;
  }
  .we-hero-grid {
    grid-template-columns: minmax(0,1fr) minmax(0,1.08fr);
    column-gap: 48px;
  }
  .we-hero .we-container { width: min(1240px,calc(100% - 64px)); }
  .we-hero-demo .we-example {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    width: min(100%,680px);
    margin-top: 30px;
  }
  .we-hero-stage {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    justify-content: center;
  }
  .we-impact-stage {
    align-self: stretch;
    min-height: 0;
    padding: 0;
  }
  .we-impact-stage figure { width: 100%; }
  .we-impact-stage figure[data-health-impact="health-panel-voice"] { width: 100%; }
  .we-impact-stage figure[data-health-impact="health-panel-voice"] img {
    width: 100%;
  }
  .we-impact-connector {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    align-self: center;
    width: 100px;
    height: 120px;
    margin: 0 0 -30px;
    transform: translateY(-30px);
  }
}
.we-hero .we-dataset-symbol { font-size: 22px; }
.we-hero .we-block-head { margin-bottom: 16px; }
.we-hero .we-kicker { color: var(--we-ink); font-weight: 600; }
.we-hero .we-chart {
  height: 110px;
  background: linear-gradient(to right,transparent 50%,var(--we-alert-tint) 50%);
}
.we-hero .we-chart-line { stroke-width: 1.5; opacity: .7; }
.we-hero .we-chart-bad { stroke: var(--we-alert); stroke-width: 3; opacity: 1; }
.we-hero .we-chart-axis { margin-bottom: 16px!important; }
.we-hero .we-split>div { padding: 10px 8px; border-color: var(--we-line); }
.we-hero .we-split>div:first-child {
  background: var(--we-alert-tint);
  border-left: 3px solid var(--we-alert);
  border-radius: 3px;
  padding-left: 5px;
}
.we-hero .we-split>div:first-child strong { font-size: 19px; color: var(--we-alert); }
.we-hero .we-legend-bad { height: 3px; background: var(--we-alert); }
.we-hero .we-example-bottom { flex-wrap: wrap; gap: 5px; padding: 12px 20px; }
@media(min-width:801px) {
  .we-hero { padding-top: 112px; padding-bottom: 40px; }
  .we-hero-grid { column-gap: 40px; row-gap: 4px; }
}
@media(max-width:480px) {
  .we-hero .we-example-body { padding: 16px 12px; }
  .we-hero .we-dataset-result { padding: 12px 8px; gap: 6px; }
  .we-hero .we-dataset-symbol { font-size: 18px; }
  .we-hero .we-chart { height: 96px; }
  .we-hero .we-split em { display: block; }
  .we-hero .we-split em::before { content: none; }
  .we-hero .we-metric { gap: 5px; }
  .we-hero .we-metric .we-status { grid-column: 2; }
  .we-impact-stage { min-height: 0; padding: 0; }
  .we-impact-stage figure { width: 100%; }
  .we-impact-stage figure[data-health-impact="health-panel-voice"] { width: 100%; }
  .we-impact-connector { width: 76px; }
  .we-hero .we-hero-copy { padding-top: 0; }
}

/* Final flat hierarchy overrides. */
.we-agent-investigate {
  padding-inline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.we-agent-terminal {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media(max-width:800px) {
  .we-agent-investigate { padding-inline: 0; }
}

/* Document pages (compliance): section primitives shared with the landing page. */
.we-band {
  background: var(--we-soft);
  border-block: 1px solid var(--we-line);
}

.we-section-heading.is-stacked {
  display: block;
}

.we-section-heading.is-stacked>p:not(.we-eyebrow) {
  max-width: 660px;
  margin-top: 18px;
}

.we-doc .we-hero h1 {
  max-width: 760px;
}

.we-doc .we-hero h1 em {
  display: inline;
}

.we-doc .we-hero .we-lead {
  max-width: 640px;
}

.we-fineprint {
  max-width: 760px;
  margin-top: 28px!important;
  color: var(--we-muted);
  font-size: 13px;
}

.we-note {
  max-width: 760px;
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid var(--we-line);
  border-radius: 10px;
  background: var(--we-paper);
}

.we-note>p:not(.we-kicker) {
  font-size: 15px;
  color: var(--we-muted);
}

.we-note .we-kicker {
  margin-bottom: 10px!important;
  color: var(--we-green);
  font-weight: 700;
  letter-spacing: .08em;
}

.we-note strong {
  color: var(--we-ink);
  font-weight: 600;
}

.we-note a:not(.we-button) {
  color: var(--we-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.we-note-foot {
  margin-top: 14px!important;
  font-size: 13px!important;
}

.we-note-accent {
  border-color: color-mix(in srgb,var(--we-green) 32%,var(--we-line));
  background: var(--we-tint);
}

.we-note-accent>p:not(.we-kicker) {
  color: var(--we-ink);
}

.we-note-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb,var(--we-green) 22%,var(--we-line));
}

.we-note-actions p {
  font-size: 14px!important;
  color: var(--we-ink)!important;
}

.we-doc-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}

.we-doc-table.is-wide {
  min-width: 720px;
}

.we-doc-table th,.we-doc-table td {
  padding: 16px 22px;
  vertical-align: top;
}

.we-doc-table thead th {
  padding-block: 12px;
  color: var(--we-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
}

.we-doc-table tbody tr+tr th,.we-doc-table tbody tr+tr td {
  border-top: 1px solid var(--we-line);
}

.we-doc-table tbody th {
  color: var(--we-ink);
  font-weight: 500;
  line-height: 1.4;
}

.we-doc-table tbody td {
  color: var(--we-muted);
  line-height: 1.6;
}

.we-doc-date {
  color: var(--we-ink);
  font: 700 14px 'JetBrains Mono',monospace;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.we-doc-table tr.is-key {
  background: var(--we-tint);
}

.we-doc-table tr.is-key td {
  color: var(--we-ink);
}

.we-doc-table tr.is-key .we-doc-date {
  color: var(--we-green);
}

.we-proof-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
  margin-top: 24px;
}

.we-proof {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--we-line);
  border-radius: 10px;
  background: var(--we-paper);
}

.we-proof-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--we-line);
}

.we-proof-head h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.we-proof-head>p:not(.we-kicker) {
  color: var(--we-muted);
  font-size: 13px;
}

.we-proof-head .we-kicker {
  color: var(--we-green);
  font-weight: 600;
}

.we-proof-body {
  flex: 1;
  padding: 22px 24px;
}

.we-proof-code {
  overflow-x: auto;
  flex: 1;
  padding: 20px 24px;
  background: #102f45;
  color: #dce8ee;
  font-family: 'JetBrains Mono',monospace;
}

.we-proof-code p {
  font-size: 12px;
  line-height: 1.9!important;
  white-space: nowrap;
}

.we-proof-code .cm { color: #88a5b6; }
.we-proof-code .kw { color: #b7a7ef; }
.we-proof-code .fn { color: #8ec8f0; }
.we-proof-code .ar { color: #72ddb0; }
.we-proof-code .st { color: #f0c58a; }

.we-bias-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 96px;
}

.we-bias-chart span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: color-mix(in srgb,var(--we-green) 24%,var(--we-soft));
}

.we-bias-chart span.is-peak {
  background: var(--we-green);
}

.we-bias-axis {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px!important;
  color: var(--we-muted);
  font-size: 10px;
  letter-spacing: .06em;
}

.we-bias-axis strong {
  color: var(--we-ink);
  font-weight: 600;
}

.we-bias-record {
  margin-top: 16px!important;
  padding: 10px 12px;
  border: 1px solid var(--we-line);
  border-radius: 6px;
  background: var(--we-soft);
  color: var(--we-ink);
  font: 600 11px/1.5 'JetBrains Mono',monospace;
}

.we-bias-record span {
  color: var(--we-green);
}

.we-feature-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border-top: 1px solid var(--we-line);
}

.we-feature-grid>article {
  padding: 28px 40px 30px 0;
  border-bottom: 1px solid var(--we-line);
}

.we-feature-grid>article:nth-child(even) {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid var(--we-line);
}

.we-feature-grid h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.we-feature-grid p {
  margin-top: 12px!important;
  color: var(--we-muted);
  font-size: 15px;
}

.we-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.we-tag {
  padding: 5px 11px;
  border: 1px solid var(--we-line);
  border-radius: 999px;
  background: var(--we-soft);
  color: var(--we-muted);
  font-size: 11px;
  font-weight: 600;
}

.we-qa-list {
  border-top: 1px solid var(--we-line);
}

.we-qa-item {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--we-line);
}

.we-qa-num {
  color: var(--we-green);
  font: 700 12px/1.7 'JetBrains Mono',monospace;
  letter-spacing: .04em;
}

.we-qa-item h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.we-qa-item p {
  max-width: 780px;
  margin-top: 9px!important;
  color: var(--we-muted);
  font-size: 14px;
}

.we-final .we-fineprint {
  margin-top: 34px!important;
  color: #526574;
}

@media(max-width:800px) {
  .we-proof-grid { grid-template-columns: 1fr; }
  .we-feature-grid { grid-template-columns: 1fr; }
  .we-feature-grid>article { padding: 24px 0 26px; }
  .we-feature-grid>article:nth-child(even) { padding-left: 0; border-left: 0; }
}

@media(max-width:560px) {
  .we-note { padding: 20px; }
  .we-note-actions { flex-direction: column; align-items: flex-start; }
  .we-doc-table th,.we-doc-table td { padding: 14px 16px; }
  .we-qa-item { gap: 8px; grid-template-columns: 1fr; padding: 22px 0; }
}

html.dark .we-final .we-button.we-secondary {
  border-color: #a9cfbd;
  background: transparent;
  color: #173e5e;
}

html.dark .we-final .we-button.we-secondary:hover {
  border-color: #087c64;
  background: #d6ebe0;
}

/* Compliance check: a stepped questionnaire built from the document primitives. */
.we-check {
  padding: 132px 0 92px;
  background: linear-gradient(120deg,var(--we-soft),var(--we-paper) 65%);
}

.we-check-inner {
  width: min(760px,calc(100% - 48px));
  margin-inline: auto;
}

.we-check-head {
  margin-bottom: 40px;
  text-align: center;
}

.we-check-head .we-eyebrow {
  justify-content: center;
}

.we-check-head h1 {
  margin-inline: auto;
  font-size: clamp(32px,3.8vw,46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.we-check-head .we-lead {
  max-width: 560px;
  margin-inline: auto;
}

.we-check-head .we-hero-note {
  color: var(--we-muted);
  font-size: 13px;
}

.we-progress {
  margin-bottom: 26px;
}

.we-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.we-progress-top>span {
  color: var(--we-muted);
  font: 600 10px/1.4 'JetBrains Mono',monospace;
  letter-spacing: .07em;
}

.we-progress-back {
  border: 0;
  background: none;
  color: var(--we-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.we-progress-back:hover {
  color: var(--we-green);
}

.we-progress-track {
  overflow: hidden;
  height: 4px;
  border-radius: 999px;
  background: var(--we-line);
}

.we-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: var(--we-green);
  transition: width .3s ease;
}

.we-check-card {
  padding: 30px;
  border: 1px solid var(--we-line);
  border-radius: 12px;
  background: var(--we-paper);
}

.we-check-card h2 {
  font-size: 25px!important;
  font-weight: 500;
  line-height: 1.2;
}

.we-check-card>p {
  margin-top: 10px!important;
  color: var(--we-muted);
  font-size: 14px;
}

.we-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.we-option {
  display: block;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--we-line);
  border-radius: 8px;
  background: var(--we-paper);
  color: var(--we-ink);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s,background .15s;
}

.we-option strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.we-option span {
  display: block;
  margin-top: 5px;
  color: var(--we-muted);
  font-size: 13px;
  line-height: 1.6;
}

.we-option:hover {
  border-color: color-mix(in srgb,var(--we-green) 45%,var(--we-line));
  background: var(--we-soft);
}

.we-option.is-selected {
  border-color: var(--we-green);
  background: var(--we-tint);
}

@keyframes we-step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.we-check-card.is-entering {
  animation: we-step-in .26s ease-out;
}

.we-check-result .we-three-columns {
  margin-top: 0;
}

.we-three-columns article.is-key h3 {
  color: var(--we-green);
}

.we-check-list {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.we-check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--we-muted);
  font-size: 14px;
  line-height: 1.65;
}

.we-check-list li:before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--we-green);
}

.we-check-list strong {
  color: var(--we-ink);
  font-weight: 600;
}

.we-status.we-alert {
  background: #fbeae7;
  color: #a8332a;
}

html.dark .we-status.we-alert {
  background: #3a2523;
  color: #f0a9a1;
}

.we-capture {
  margin-top: 40px;
  padding: 34px;
  border-radius: 12px;
  background: #123b5b;
  color: #f4f8fa;
}

.we-capture h2 {
  color: #fff;
  font-size: 27px!important;
  font-weight: 500;
}

.we-capture-fields {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin-top: 22px;
}

.we-capture input {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid #486277;
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-size: 14px;
}

.we-capture input::placeholder {
  color: #9fbccd;
}

.we-capture input:focus {
  border-color: #8ce1c0;
  outline: none;
}

.we-capture button[type=submit] {
  flex: none;
  padding: 13px 22px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #123b5b;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.we-capture button[type=submit]:hover {
  background: #d9ece3;
}

.we-capture button[type=submit]:disabled {
  cursor: default;
  opacity: .65;
}

.we-capture-error {
  margin-top: 12px!important;
  color: #f4b9a0;
  font-size: 13px;
}

.we-capture-note {
  max-width: 560px;
  margin-top: 18px!important;
  color: #a9c2d2;
  font-size: 12px;
}

.we-capture-done {
  margin-top: 22px;
}

.we-capture-done strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.we-capture-done p {
  max-width: 460px;
  margin-top: 8px!important;
  color: #cfe0ea;
  font-size: 15px;
}

.we-capture-done .we-button {
  margin-top: 22px;
  border-color: #fff;
  background: #fff;
  color: #123b5b;
}

.we-capture-done .we-button:hover {
  background: #d9ece3;
}

.we-hp {
  position: absolute;
  left: -9999px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

@media(max-width:560px) {
  .we-check { padding: 104px 0 64px; }
  .we-check-inner { width: calc(100% - 32px); }
  .we-check-card { padding: 22px 20px; }
  .we-capture { padding: 24px 20px; }
  .we-capture-fields { flex-direction: column; }
}

.we-check-section {
  margin-top: 42px;
}

.we-check-section h2 {
  font-size: 26px!important;
  font-weight: 500;
  line-height: 1.2;
}

.we-check-section>p {
  max-width: 660px;
  margin-top: 12px!important;
  color: var(--we-muted);
  font-size: 14px;
}

.we-check-section .we-check-foot {
  margin-top: 16px!important;
}

.we-check-section+.we-matrix-card,.we-check-section+.we-qa-list {
  margin-top: 20px;
}

.we-check-result .we-three-columns h3 {
  font-family: 'JetBrains Mono',monospace;
  font-size: 19px;
  font-weight: 700;
}

.we-check-result .we-doc-table td:last-child {
  white-space: nowrap;
}

.we-check-result .we-status {
  display: inline-block;
  white-space: nowrap;
}

/* Comparison pages: WildEdge next to one alternative. */
.we-vs-summary {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 28px;
  border: 1px solid var(--we-line);
  border-radius: 12px;
  background: var(--we-paper);
  text-align: left;
}

.we-vs-summary>div:first-child {
  padding-right: 28px;
}

.we-vs-summary>div+div {
  padding-left: 28px;
  border-left: 1px solid var(--we-line);
}

.we-vs-summary dt {
  color: var(--we-green);
  font: 600 10px/1.4 'JetBrains Mono',monospace;
  letter-spacing: .07em;
}

.we-vs-summary dd {
  margin: 9px 0 0;
  color: var(--we-muted);
  font-size: 15px;
  line-height: 1.6;
}

.we-vs-scroll {
  overflow-x: auto;
}

.we-vs {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}

.we-vs th,.we-vs td {
  padding: 15px 22px;
  vertical-align: top;
}

.we-vs thead th {
  padding: 0;
  vertical-align: bottom;
}

.we-vs-brand,.we-vs-other {
  padding: 18px 22px;
}

.we-vs-brand {
  border-radius: 10px 10px 0 0;
  background: #123b5b;
  color: #fff;
}

.we-vs-brand strong,.we-vs-other strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
}

.we-vs-other strong {
  color: var(--we-muted);
}

.we-vs-brand span,.we-vs-other span {
  display: block;
  margin-top: 5px;
  font: 600 10px/1.4 'JetBrains Mono',monospace;
  letter-spacing: .07em;
}

.we-vs-brand span {
  color: #8ce1c0;
}

.we-vs-other span {
  color: var(--we-muted);
}

.we-vs tbody th {
  width: 20%;
  padding-left: 0;
  color: var(--we-muted);
  font-weight: 500;
}

.we-vs tbody tr+tr th,.we-vs tbody tr+tr td:last-child {
  border-top: 1px solid var(--we-line);
}

.we-vs tbody td:last-child {
  color: var(--we-muted);
  line-height: 1.6;
}

.we-vs td.we-vs-mine {
  position: relative;
  padding-left: 46px;
  background: var(--we-tint);
  color: var(--we-ink);
  font-weight: 500;
  line-height: 1.6;
}

.we-vs td.we-vs-mine:before {
  content: '✓';
  position: absolute;
  left: 22px;
  color: var(--we-green);
  font-weight: 700;
}

.we-vs tbody tr:last-child .we-vs-mine {
  border-radius: 0 0 10px 10px;
}

.we-choice-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}

.we-choice {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--we-line);
  border-radius: 10px;
  background: var(--we-paper);
  color: inherit;
  text-decoration: none;
  transition: border-color .15s;
}

.we-choice:hover {
  border-color: color-mix(in srgb,var(--we-green) 45%,var(--we-line));
}

.we-choice h3 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.we-choice dl {
  flex: 1;
  margin: 18px 0 20px;
}

.we-choice dt {
  color: var(--we-green);
  font: 600 10px/1.4 'JetBrains Mono',monospace;
  letter-spacing: .07em;
}

.we-choice dd {
  margin: 6px 0 16px;
  color: var(--we-muted);
  font-size: 14px;
  line-height: 1.6;
}

.we-choice dd:last-child {
  margin-bottom: 0;
}

.we-feature-grid article.is-key h3 {
  color: var(--we-green);
}

@media(max-width:700px) {
  .we-choice-grid { grid-template-columns: 1fr; }
  .we-vs-summary { grid-template-columns: 1fr; padding: 22px; }
  .we-vs-summary>div:first-child { padding: 0 0 20px; }
  .we-vs-summary>div+div { padding: 20px 0 0; border-left: 0; border-top: 1px solid var(--we-line); }
}

/* Vendor marks on the comparison pages. A missing file removes its own slot. */
.we-logo-slot {
  display: flex;
  align-items: center;
  height: 32px;
  margin-bottom: 16px;
}

.we-logo-slot img {
  width: auto;
  max-width: 180px;
  max-height: 32px;
}

.we-vs-logo {
  display: flex;
  align-items: center;
  height: 30px;
  margin-bottom: 12px;
}

.we-vs-logo img {
  width: auto;
  max-width: 150px;
  max-height: 30px;
}

/* Team. */
.we-member-photo,.we-member-initials {
  display: block;
  width: 84px;
  height: 84px;
  border: 1px solid var(--we-line);
  border-radius: 12px;
}

.we-three-columns.we-team-grid>article {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
}

.we-team-grid>article>p:not(.we-member-note) {
  flex: 1;
}

.we-team-grid .we-member-note {
  margin-top: 16px;
}

.we-member-photo {
  object-fit: cover;
}

.we-member-initials {
  display: grid;
  place-items: center;
  background: var(--we-soft);
  color: var(--we-green);
  font: 700 19px/1 'JetBrains Mono',monospace;
}

.we-member-nick {
  white-space: nowrap;
}

.we-member-role {
  display: block;
  min-height: 3em;
  margin-bottom: 12px;
  color: var(--we-green);
  font: 600 11px/1.5 'JetBrains Mono',monospace;
  letter-spacing: .05em;
}

.we-three-columns .we-member-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--we-line);
  font-size: 14px;
}

.we-member-note strong {
  color: var(--we-ink);
  font-weight: 600;
}

.we-three-columns .we-text-link {
  margin-top: 14px;
}

.we-team-section {
  padding-top: 48px;
}

.we-three-columns.we-team-grid {
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 34px;
  margin-top: 0;
}

.we-three-columns.we-team-grid>article+article {
  padding-left: 30px;
  border-left: 1px solid var(--we-line);
}

@media(max-width:1100px) {
  .we-three-columns.we-team-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 34px 0; }
  .we-three-columns.we-team-grid>article,
  .we-three-columns.we-team-grid>article+article {
    padding: 0 0 0 30px;
    border: 0;
    border-left: 1px solid var(--we-line);
  }
  .we-three-columns.we-team-grid>article:nth-child(odd) { padding-left: 0; border-left: 0; }
}

@media(max-width:700px) {
  .we-three-columns.we-team-grid { grid-template-columns: 1fr; gap: 0; }
  .we-three-columns.we-team-grid>article,
  .we-three-columns.we-team-grid>article+article,
  .we-three-columns.we-team-grid>article:nth-child(odd) {
    padding: 30px 0 0;
    border: 0;
    border-top: 1px solid var(--we-line);
  }
  .we-three-columns.we-team-grid>article:first-child { padding-top: 0; border-top: 0; }
}

/* Easter egg: reads as body text until you hover it. */
.we-egg {
  color: inherit;
  text-decoration: none;
}

.we-egg:hover {
  color: var(--we-green);
  text-decoration: underline wavy;
  text-underline-offset: 4px;
}

/* Production evidence visuals: records and traces, not abstract diagrams. */
.we-event-record {
  margin: 0 28px 20px;
  border-top: 1px solid var(--we-line);
  font-size: 13px;
}
.we-event-record-head {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid var(--we-line);
  background: var(--we-soft);
  font: 600 11px/1.4 'JetBrains Mono',monospace;
}
.we-event-record-head>span { color: var(--we-green); }
.we-event-record-head time { color: var(--we-muted); text-align: right; }
.we-event-record-head strong { padding: 3px 7px; border: 1px solid #d9a16f; color: #a95721; font-size: 10px; font-weight: 600; }
.we-event-record dl { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0; }
.we-event-record dl>div { display: grid; grid-template-columns: 88px 1fr; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--we-line); }
.we-event-record dl>div:nth-child(odd) { border-right: 1px solid var(--we-line); }
.we-event-record dl>div:nth-last-child(-n+2) { border-bottom: 0; }
.we-event-record dt { color: var(--we-muted); }
.we-event-record dd { margin: 0; color: var(--we-ink); font: 500 12px/1.45 'JetBrains Mono',monospace; overflow-wrap: anywhere; }

.we-hybrid-patterns>div { border-left: 0; padding-left: 0; }
.we-hybrid-patterns span { font: 600 10px/1.4 'JetBrains Mono',monospace; letter-spacing: .04em; text-transform: none; }
.we-hybrid-patterns code { display: block; margin-top: 10px; color: #d8e5eb; font: 500 11px/1.55 'JetBrains Mono',monospace; white-space: normal; }

.we-production-trace { border: 1px solid #527489; background: #10354f; }
.we-production-trace-head { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; border-bottom: 1px solid #527489; font: 600 11px/1.4 'JetBrains Mono',monospace; }
.we-production-trace-head span { color: #72ddb0; }
.we-production-trace-head code { color: #eaf2f5; }
.we-production-trace-head strong { color: #a9bdc9; font-weight: 500; }
.we-production-trace ol { margin: 0; padding: 0; list-style: none; }
.we-production-trace li { display: grid; grid-template-columns: 58px minmax(0,1fr) auto; gap: 14px; align-items: center; padding: 14px; border-bottom: 1px solid #355a70; }
.we-production-trace li time { color: #8cabc0; font: 500 10px/1.4 'JetBrains Mono',monospace; }
.we-production-trace li span { display: grid; gap: 3px; }
.we-production-trace li strong { color: #f4f8fa; font-size: 13px; font-weight: 600; }
.we-production-trace li small { color: #aebfca; font: 500 10px/1.45 'JetBrains Mono',monospace; }
.we-production-trace li em { color: #9ee6c5; font: 500 10px/1.4 'JetBrains Mono',monospace; font-style: normal; text-align: right; }
.we-production-trace li.is-warning em { color: #f1b77f; }
.we-production-trace-foot { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 11px 14px; color: #9eb5c2; font: 500 10px/1.4 'JetBrains Mono',monospace; }
.we-production-trace-foot span+span::before { content: '·'; margin-right: 18px; color: #527489; }

@media(max-width:700px) {
  .we-event-record { margin-inline: 18px; overflow-x: auto; }
  .we-event-record-head, .we-event-record dl { min-width: 560px; }
  .we-production-trace li { grid-template-columns: 52px minmax(0,1fr); }
  .we-production-trace li em { grid-column: 2; text-align: left; }
  .we-production-trace-foot span+span::before { content: none; margin: 0; }
}
