:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --surface: #131313;
  --raised: #191919;
  --ink: #f1f1f1;
  --muted: #9e9e9e;
  --line: #2b2b2b;
  --accent: #bfbfbf;
  --max: 1140px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img,
svg {
  display: block;
  max-width: 100%;
}
svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
::selection {
  background: #c6c6c6;
  color: #111111;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}
.mono {
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.03em;
  color: var(--muted);
}
.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: -80px;
  left: 20px;
  padding: 12px;
  background: var(--ink);
  color: var(--bg);
  z-index: 200;
}
.skip-link:focus {
  top: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 46px;
  padding: 0 23px;
  border: 1px solid #eeeeee;
  border-radius: 3px;
  background: #eeeeee;
  color: #131313;
  font-size: 13px;
  font-weight: 500;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #dfdfdf;
  transform: translateY(-2px);
}
.button > span {
  font-size: 17px;
}
.button.secondary,
.button.light {
  color: var(--ink);
  border-color: #3f3f3f;
  background: transparent;
}
.button.secondary:hover,
.button.light:hover {
  background: #1f1f1f;
}
.button.small {
  min-height: 36px;
  font-size: 11px;
  padding: 0 14px;
  gap: 10px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: none;
  border: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid #494949;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.6;
}
.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.text-link > span {
  font-size: 19px;
}
.language-menu {
  position: relative;
}
.language-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0;
  color: #afafaf;
  border: 0;
  background: none;
  font-size: 11px;
  cursor: pointer;
}
.flag-slot {
  display: flex;
  width: 18px;
  height: 16px;
  align-items: center;
  flex-shrink: 0;
}
.flag-slot img {
  width: 18px;
  height: auto;
  max-height: 14px;
  object-fit: contain;
}
.language-name {
  max-width: 84px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.language-chevron {
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
  margin-left: 2px;
}
.language-trigger[aria-expanded="true"] .language-chevron {
  transform: rotate(225deg);
}
.language-popover {
  position: fixed;
  z-index: 120;
  width: min(370px, calc(100vw - 24px));
  max-height: calc(100dvh - 100px);
  padding: 12px;
  background: #191919;
  border: 1px solid #444444;
  border-radius: 3px;
  box-shadow: 0 22px 70px #00000099;
}
.language-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  padding: 4px 7px 12px;
  border-bottom: 1px solid var(--line);
}
.language-popover-head small {
  color: var(--muted);
  font: 10px var(--mono);
}
.language-options {
  margin-top: 8px;
  max-height: min(390px, calc(100dvh - 175px));
  overflow-y: auto;
  overscroll-behavior: contain;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.language-options a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 8px;
  font-size: 12px;
  color: #bebebe;
  border: 1px solid transparent;
  border-radius: 2px;
}
.language-options a > span:not(.flag-slot) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.language-options a > small {
  margin-left: auto;
  font: 9px var(--mono);
  color: var(--muted);
}
.language-options a:hover,
.language-options a.is-current {
  color: var(--ink);
  background: #303030;
  border-color: #4e4e4e;
}
.product-tour {
  border: 1px solid #393939;
  border-radius: 4px;
  background: #131313;
  box-shadow: 0 20px 80px #00000055;
  text-align: left;
  scroll-margin-top: 95px;
}
.tour-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 21px;
  border-bottom: 1px solid #303030;
}
.tour-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 10px/1.5 var(--mono);
  color: #b1b1b1;
}
.tour-tabs {
  display: flex;
  gap: 26px;
  padding: 0 22px;
  border-bottom: 1px solid #373737;
  overflow-x: auto;
}
.tour-tabs button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 15px 0;
  background: none;
  color: #aaaaaa;
  white-space: nowrap;
  font-size: 12px;
}
.tour-tabs svg {
  width: 16px;
  height: 16px;
}
.tour-tabs button[aria-selected="true"] {
  border-color: #c6c6c6;
  color: #f3f3f3;
}
.tour-panel {
  display: grid;
  grid-template-columns: 174px 1fr;
  min-height: 356px;
}
.workspace-sidebar {
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border-right: 1px solid #363636;
  padding: 22px 12px 15px;
  min-width: 0;
}
.workspace-brand {
  display: flex;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
  padding: 0 8px;
}
.workspace-brand span {
  color: #c7c7c7;
}
.workspace-brand i {
  margin-left: auto;
  color: #ababab;
  font-size: 10px;
  font-style: normal;
}
.workspace-nav {
  display: grid;
  gap: 6px;
  margin-top: 32px;
}
.workspace-nav > span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  padding: 11px 9px;
  color: #acacac;
  border: 1px solid transparent;
  border-radius: 3px;
}
.workspace-nav > span.selected {
  background: #2f2f2f;
  border-color: #444444;
  color: #f2f2f2;
}
.workspace-nav svg {
  width: 14px;
  height: 14px;
}
.workspace-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #b1b1b1;
  font-size: 9px;
}
.avatar {
  padding: 6px;
  background: #323232;
  color: #e2e2e2;
}
.demo-workspace {
  min-width: 0;
  padding: 19px 22px 0;
  background: #ececec;
  color: #212121;
}
.workspace-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.workspace-toolbar b {
  font-size: 12px;
  font-weight: 500;
}
.workspace-toolbar small {
  display: block;
  margin-top: 5px;
  color: #6d6d6d;
  font: 9px var(--mono);
}
.status-tag {
  font: 9px var(--mono);
  border: 1px solid #c5c5c5;
  background: #dedede;
  color: #616161;
  border-radius: 2px;
  padding: 6px 8px;
}
.store-preview {
  border: 1px solid #d4d4d4;
  background: #f7f7f7;
}
.store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #dedede;
  padding: 13px 19px;
  color: #6c6c6c;
  font-size: 8px;
}
.store-header strong {
  font-size: 10px;
  color: #2a2a2a;
  letter-spacing: 0.07em;
}
.store-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 27px 32px;
}
.order-preview {
  display: flex;
  align-items: center;
  gap: 17px;
}
.product-object {
  background: #e8e8e8;
  flex-shrink: 0;
  width: 98px;
  height: 118px;
  display: grid;
  place-items: center;
}
.product-object svg {
  width: 98px;
  height: 104px;
}
.order-preview small {
  font: 7px var(--mono);
  color: #737373;
}
.order-preview strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: -0.3px;
}
.order-preview > div > span {
  display: block;
  color: #6b6b6b;
  font-size: 10px;
  margin-top: 9px;
}
.checkout-preview {
  position: relative;
  min-width: 0;
}
.masked-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: #6a6a6a;
  font-size: 9px;
}
.masked-label svg {
  width: 12px;
  height: 12px;
}
.masked-input {
  min-height: 30px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  padding: 9px;
  font: 9px var(--mono);
  color: #a1a1a1;
}
.masked-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  margin: 14px 0 12px;
  gap: 8px;
}
.checkout-total b {
  font-size: 13px;
  font-weight: 500;
}
.checkout-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #484848;
  color: #f5f5f5;
  padding: 11px 12px;
  font-size: 10px;
  border-radius: 2px;
}
.preview-cursor {
  position: absolute;
  width: 19px;
  height: 25px;
  bottom: 4px;
  right: 38px;
  fill: #272727;
  stroke: #ffffff;
  stroke-width: 1.5;
  filter: drop-shadow(1px 2px 1px #00000033);
  transform: translate(-15px, 10px);
  z-index: 2;
}
.click-ring {
  position: absolute;
  right: 33px;
  bottom: 9px;
  width: 30px;
  height: 30px;
  border: 1px solid #a0a0a0;
  border-radius: 50%;
  opacity: 0;
}
.is-playing .preview-cursor {
  animation: cursor-move 4s ease-in-out infinite;
}
.is-playing .click-ring {
  animation: click-pulse 4s ease-out infinite;
}
@keyframes cursor-move {
  0%,
  100% {
    transform: translate(-55px, -42px);
  }
  45%,
  75% {
    transform: translate(0, 0);
  }
}
@keyframes click-pulse {
  0%,
  45%,
  90%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
  55%,
  65% {
    opacity: 0.8;
    transform: scale(1.3);
  }
}
.demo-playback {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: #6d6d6d;
}
.demo-playback button {
  height: 25px;
  width: 28px;
  border: 1px solid #cacaca;
  background: #e2e2e2;
  color: #4b4b4b;
  font-size: 9px;
  border-radius: 2px;
}
.demo-playback time,
.playback-speed {
  font: 9px var(--mono);
}
.play-track {
  position: relative;
  flex: 1;
  height: 3px;
  background: #d1d1d1;
}
.play-track i {
  display: block;
  height: 100%;
  width: 0;
  background: #6e6e6e;
}
.play-track > b {
  position: absolute;
  width: 3px;
  height: 9px;
  top: -3px;
  background: #868686;
  left: 64%;
}
.play-track > b:last-child {
  left: 80%;
  background: #737373;
}
.tour-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 21px;
  border-top: 1px solid #363636;
  color: #b5b5b5;
  font-size: 11px;
  line-height: 1.5;
}
.tour-description .mono {
  white-space: nowrap;
}
.tour-description p {
  max-width: 820px;
}
.heat-panel {
  grid-template-columns: 1.5fr 1fr;
  background: #efefef;
  color: #2f2f2f;
}
.heat-page {
  position: relative;
  padding-bottom: 22px;
  border-right: 1px solid #d4d4d4;
  overflow: hidden;
}
.heat-page h3 {
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -1.8px;
  line-height: 1.05;
  padding: 25px 33px 20px;
}
.heat-products {
  display: flex;
  gap: 16px;
  padding: 0 33px;
}
.heat-products i {
  height: 105px;
  flex: 1;
  background: #dcdcdc;
  border: 1px solid #c2c2c2;
}
.heat-products i:nth-child(2) {
  background: #cccccc;
}
.heat-products i:nth-child(3) {
  background: #d9d9d9;
}
.heat-spot {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #9696969c;
  box-shadow:
    0 0 20px 12px #8181818a,
    0 0 44px 28px #b1b1b170,
    0 0 65px 40px #9c9c9c45;
}
.spot-one {
  left: 22%;
  top: 64%;
}
.spot-two {
  left: 50%;
  top: 30%;
  transform: scale(0.7);
}
.spot-three {
  left: 70%;
  top: 69%;
  transform: scale(0.8);
}
.heat-legend {
  padding: 30px 35px;
}
.heat-legend .eyebrow {
  color: #6d6d6d;
}
.heat-legend h3 {
  font-size: 27px;
  font-weight: 450;
  letter-spacing: -1px;
  margin-top: 16px;
}
.heat-legend p {
  font-size: 13px;
  line-height: 1.6;
  color: #6d6d6d;
  margin-top: 12px;
}
.heat-scale {
  display: flex;
  gap: 3px;
  margin-top: 22px;
  max-width: 210px;
}
.heat-scale i {
  height: 5px;
  flex: 1;
  background: #7b7b7b;
}
.heat-scale i:nth-child(2) {
  background: #969696;
}
.heat-scale i:nth-child(3) {
  background: #b3b3b3;
}
.heat-scale i:nth-child(4) {
  background: #a3a3a3;
}
.heat-scale i:nth-child(5) {
  background: #8b8b8b;
}
.heat-detail {
  border-top: 1px solid #cacaca;
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #696969;
}
.heat-detail strong {
  font-size: 32px;
  color: #3e3e3e;
  font-weight: 400;
}
.heat-detail small {
  font-size: 14px;
}
.heat-legend > .mono {
  display: block;
  margin-top: 12px;
  color: #717171;
}
.insights-panel {
  display: block;
  padding: 30px 38px;
  background: #ececec;
  color: #2e2e2e;
}
.insight-heading {
  display: flex;
  align-items: center;
  gap: 17px;
}
.insight-heading > svg {
  width: 32px;
  height: 32px;
}
.insight-heading .eyebrow {
  color: #6e6e6e;
}
.insight-heading h3 {
  font-size: 23px;
  letter-spacing: -0.7px;
  font-weight: 500;
  margin-top: 5px;
}
.insight-score {
  margin-left: auto;
  font-size: 35px;
  letter-spacing: -1px;
  color: #6e6e6e;
}
.insight-score span {
  font-size: 12px;
  letter-spacing: 0;
  color: #7c7c7c;
}
.insight-items {
  margin-top: 20px;
}
.insight-row {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 15px 0;
  border-top: 1px solid #d1d1d1;
}
.insight-number {
  font: 10px var(--mono);
  color: #797979;
  padding-top: 4px;
}
.insight-row strong {
  font-size: 13px;
  font-weight: 500;
}
.insight-row p {
  font-size: 11px;
  line-height: 1.5;
  color: #6a6a6a;
  margin-top: 5px;
}
.insight-row > svg {
  margin-left: auto;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #858585;
}
.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  padding: 30px 0 37px;
}
.capability-strip > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #a0a0a0;
  font-size: 11px;
  border-right: 1px solid var(--line);
}
.capability-strip > span:last-child {
  border: 0;
}
.capability-strip svg {
  width: 16px;
  height: 16px;
  color: #888888;
}
.section {
  padding-block: 96px;
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 43px;
}
.section-heading h2,
h2 {
  font-size: clamp(30px, 3.4vw, 45px);
  font-weight: 450;
  line-height: 1.13;
  letter-spacing: -1.7px;
  text-wrap: balance;
}
.section-heading .eyebrow,
h2 + .eyebrow {
  margin-bottom: 18px;
}
.section-heading > p,
.section-lede {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 500px;
}
.section-heading > .text-link {
  justify-self: end;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.feature {
  padding: 30px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: #0f0f0f;
  transition: background 0.2s;
}
.feature:last-child {
  border: 0;
}
.feature:hover {
  background: #181818;
}
.feature-symbol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c9c9c9;
  margin-bottom: 40px;
}
.feature-symbol > span {
  font: 10px var(--mono);
  color: #8e8e8e;
}
.feature h3 {
  font-size: 21px;
  font-weight: 450;
  letter-spacing: -0.6px;
}
.feature p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin: 12px 0 30px;
}
.feature .text-link {
  margin-top: auto;
  align-self: flex-start;
}
.journey-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 95px;
}
.journey-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journey-copy article {
  display: flex;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.step-number {
  font: 10px/1.7 var(--mono);
  color: #979797;
}
.journey-copy h3 {
  font-size: 17px;
  font-weight: 450;
  letter-spacing: -0.3px;
}
.journey-copy p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
}
.journey-copy .text-link {
  align-self: flex-start;
  margin-top: 12px;
}
.funnel-demo {
  border: 1px solid #3b3b3b;
  border-radius: 3px;
  padding: 24px;
  background: #151515;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
}
.panel-heading svg {
  color: #b3b3b3;
  width: 17px;
  height: 17px;
}
.sample-label {
  font: 9px/1.6 var(--mono);
  color: #9c9c9c;
  margin-top: 8px;
}
.funnel-rows {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.funnel-row > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  color: #bbbbbb;
  margin-bottom: 9px;
}
.funnel-row b {
  font: 11px var(--mono);
  color: #e7e7e7;
}
.funnel-track {
  height: 15px;
  background: #252525;
}
.funnel-track i {
  display: block;
  height: 100%;
  background: #a8a8a8;
}
.funnel-row:nth-child(2) i {
  background: #929292;
}
.funnel-row:nth-child(3) i {
  background: #7f7f7f;
}
.funnel-row:nth-child(4) i {
  background: #6a6a6a;
}
.funnel-row:nth-child(5) i {
  background: #c1c1c1;
}
.funnel-insight {
  display: flex;
  gap: 10px;
  border-top: 1px solid #3c3c3c;
  margin-top: 24px;
  padding-top: 17px;
}
.funnel-insight svg {
  color: #a6a6a6;
  width: 15px;
  height: 15px;
}
.funnel-insight p {
  font-size: 11px;
  line-height: 1.7;
  color: #afafaf;
}
.attribution-demo {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #111111;
}
.attribution-main {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0;
}
.model-tabs button {
  background: none;
  border: 1px solid transparent;
  color: #9a9a9a;
  border-radius: 2px;
  font: 10px/1.4 var(--mono);
  padding: 8px;
}
.model-tabs button[aria-selected="true"] {
  border-color: #545454;
  background: #2c2c2c;
  color: #d2d2d2;
}
.channel-chart {
  display: grid;
  gap: 23px;
  margin: 35px 0 25px;
}
.channel-row {
  display: grid;
  grid-template-columns: 115px 1fr 40px;
  gap: 15px;
  align-items: center;
}
.channel-row > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #c4c4c4;
}
.channel-mark {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  background: #2a2a2a;
  font: 12px var(--mono);
  color: #d0d0d0;
}
.channel-row > div {
  height: 7px;
  background: #292929;
}
.channel-row > div > i {
  display: block;
  height: 100%;
  background: #b2b2b2;
  transition: width 0.35s ease;
}
.channel-row:nth-child(2) > div > i {
  background: #989898;
}
.channel-row:nth-child(3) > div > i {
  background: #717171;
}
.channel-row > strong {
  font: 11px var(--mono);
  text-align: right;
}
.destinations {
  padding: 27px 30px;
}
.destinations h3 {
  font-size: 22px;
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-top: 12px;
  max-width: 300px;
}
.destination-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 10px;
  margin-top: 28px;
}
.destination-list > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #c2c2c2;
}
.destination-list svg {
  width: 14px;
  height: 14px;
  color: #9e9e9e;
}
.destination-list i {
  font-style: normal;
  color: #7f7f7f;
}
.offline-note {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 28px;
  font-size: 12px;
  color: #c0c0c0;
}
.offline-note small {
  display: block;
  font: 9px var(--mono);
  color: #929292;
  margin-top: 7px;
}
.offline-note svg {
  width: 20px;
  height: 20px;
  color: #9e9e9e;
}
.ads-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.ads-layout h2 {
  margin-top: 18px;
}
.ads-layout .section-lede {
  margin-top: 21px;
}
.ads-layout .text-link {
  margin-top: 30px;
}
.risk-list article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.risk-list article:last-child {
  border-bottom: 1px solid var(--line);
}
.risk-icon {
  padding: 11px;
  border: 1px solid #3c3c3c;
  border-radius: 3px;
  color: #cbcbcb;
}
.risk-icon svg {
  width: 20px;
  height: 20px;
}
.risk-list h3 {
  font-size: 15px;
  font-weight: 450;
  margin-top: 3px;
}
.risk-list p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 9px;
}
.risk-list .mono {
  margin-left: auto;
}
.tools-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 65px;
  align-items: center;
}
.terminal {
  border: 1px solid #3a3a3a;
  background: #101010;
  border-radius: 3px;
  overflow: hidden;
}
.terminal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 13px 18px;
  border-bottom: 1px solid #2d2d2d;
  font: 10px var(--mono);
  color: #939393;
}
.terminal-dots {
  font-size: 8px;
  letter-spacing: 2px;
  color: #565656;
}
.terminal-bar button {
  border: 0;
  background: transparent;
  font: 10px var(--mono);
  color: #c2c2c2;
  padding: 4px;
}
.terminal-body {
  padding: 25px;
  font: 12px/2 var(--mono);
  color: #dadada;
  overflow-x: auto;
}
.terminal-body p {
  white-space: pre;
}
.terminal-prompt {
  color: #858585;
}
.terminal-body pre {
  padding: 20px 0;
  color: #a8a8a8;
  font: inherit;
}
.terminal-body pre span {
  color: #dbdbdb;
}
.terminal-body pre em {
  color: #b8b8b8;
  font-style: normal;
}
.terminal-comment {
  font-size: 9px;
  color: #989898;
  margin-bottom: 18px;
}
.terminal-caret {
  display: inline-block;
  width: 6px;
  height: 12px;
  background: #b8b8b8;
  margin-left: 5px;
  vertical-align: middle;
}
.tools-copy > svg {
  margin-bottom: 25px;
  color: #bdbdbd;
}
.tools-copy h3 {
  font-size: 23px;
  letter-spacing: -0.6px;
  font-weight: 450;
  line-height: 1.35;
}
.tools-copy > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin-top: 15px;
}
.tools-copy .text-link {
  margin-top: 23px;
}
.agent-names {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #8d8d8d;
  font: 9px var(--mono);
}
.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.privacy-layout h2 {
  margin-top: 18px;
}
.privacy-layout .section-lede {
  margin-top: 20px;
}
.privacy-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 315px;
  border: 1px solid #323232;
  position: relative;
  overflow: hidden;
  background: #131313;
}
.privacy-art::before,
.privacy-art::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid #2c2c2c;
  pointer-events: none;
}
.privacy-art::after {
  inset: 60px;
}
.privacy-shield {
  padding: 17px;
  background: #212121;
  border: 1px solid #474747;
  z-index: 1;
}
.privacy-shield svg {
  width: 42px;
  height: 42px;
  color: #bbbbbb;
}
.privacy-art > span {
  font: 14px var(--mono);
  letter-spacing: 5px;
  color: #707070;
  z-index: 1;
}
.privacy-art > span:nth-last-child(2) {
  color: #b8b8b8;
}
.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 22px;
  margin-top: 25px;
  list-style: none;
}
.privacy-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #bcbcbc;
}
.privacy-points svg {
  width: 14px;
  height: 14px;
  color: #b8b8b8;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 23px;
  background: #111111;
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: border-color 0.2s;
}
.post-card:hover {
  border-color: #656565;
}
.post-card time,
.post-meta {
  color: #9f9f9f;
  font: 10px/1.8 var(--mono);
}
.post-card h3 {
  font-size: 21px;
  font-weight: 450;
  line-height: 1.35;
  letter-spacing: -0.6px;
  margin-top: 35px;
}
.post-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin-top: 14px;
  margin-bottom: 30px;
}
.post-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}
.faq-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 95px;
}
.faq-layout .kicker {
  font: 10px/1.6 var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 19px;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  padding: 21px 0;
  font-size: 13px;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span::before {
  content: "+";
  font: 18px var(--mono);
  color: #949494;
}
.faq-list details[open] summary > span::before {
  content: "−";
}
.faq-list details p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 35px 24px 0;
}
.final-cta {
  position: relative;
  padding: 95px 70px;
  text-align: center;
  background: #131313;
  border-inline: 1px solid #313131;
}
.final-cta h2 {
  max-width: 750px;
  margin: 20px auto 32px;
  font-size: clamp(34px, 4vw, 53px);
}
.cta-cross {
  position: absolute;
  top: -12px;
  color: #7d7d7d;
  font: 23px var(--mono);
}
.cross-left {
  left: -7px;
}
.cross-right {
  right: -7px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 55px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.75fr 1.1fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 12px;
  color: var(--muted);
  max-width: 245px;
  line-height: 1.7;
  margin-top: 18px;
}
.footer-col strong {
  display: block;
  margin-bottom: 18px;
  color: #a6a6a6;
  font: 9px/1.5 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col a,
.footer-col address,
.footer-col > span {
  display: block;
  color: #aaaaaa;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 9px;
  font-style: normal;
}
.footer-col a:hover {
  color: #ffffff;
}
.footer-col address b {
  color: #cacaca;
  font-weight: 500;
}
.footer-legal-label {
  margin-top: 26px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: #919191;
  font: 9px/1.7 var(--mono);
}
.page-hero {
  padding: 85px 0 50px;
  border-bottom: 1px solid var(--line);
}
.kicker {
  color: #afafaf;
  font: 10px/1.6 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.page-hero h1 {
  max-width: 900px;
  margin-top: 20px;
  font-size: clamp(38px, 5vw, 64px);
}
.page-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 23px;
}
.article-list {
  padding: 60px 0 95px;
}
.article-list .blog-grid {
  row-gap: 24px;
}
.article,
.legal {
  width: min(calc(100% - 48px), 780px);
  margin: 0 auto;
  padding: 75px 0 100px;
}
.article-header h1,
.legal h1 {
  font-size: clamp(37px, 5vw, 60px);
  margin-top: 20px;
}
.article-dek {
  color: #aaaaaa;
  font-size: 18px;
  line-height: 1.7;
  margin-top: 24px;
}
.article-body {
  margin-top: 50px;
}
.article-body h2,
.legal h2 {
  font-size: 29px;
  letter-spacing: -0.8px;
  margin: 45px 0 18px;
}
.article-body h3 {
  font-size: 22px;
  font-weight: 450;
  margin-top: 26px;
}
.article-body p,
.article-body li,
.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.85;
  color: #bababa;
}
.article-body p + p,
.legal p {
  margin-top: 16px;
}
.article-body ul,
.article-body ol,
.legal ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 20px 22px;
}
.article-callout {
  background: #1d1d1d;
  border-left: 2px solid #949494;
  padding: 24px;
  margin: 35px 0;
}
.article-callout strong {
  font-size: 15px;
  font-weight: 500;
}
.article-callout p {
  font-size: 14px;
  margin-top: 10px;
}
.legal a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 98px;
  }
  .hero-copy {
    margin-bottom: 60px;
  }
}
@media (max-width: 1050px) {
  .header-inner {
    gap: 22px;
  }
  .nav {
    gap: 17px;
  }
  .header-actions {
    gap: 14px;
  }
  .language-name {
    display: none;
  }
  .section-heading {
    gap: 55px;
  }
  .store-layout {
    gap: 20px;
    padding: 24px;
  }
  .product-object {
    width: 75px;
  }
  .order-preview {
    gap: 12px;
  }
  .journey-layout,
  .ads-layout,
  .privacy-layout {
    gap: 50px;
  }
  .tools-layout {
    gap: 35px;
  }
  .feature {
    padding: 24px;
  }
  .destination-list {
    grid-template-columns: 1fr;
  }
  .attribution-demo {
    grid-template-columns: 1.3fr 1fr;
  }
  .footer-grid {
    gap: 26px;
  }
  .channel-row {
    grid-template-columns: 95px 1fr 35px;
    gap: 10px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 66px;
    gap: 16px;
  }
  .brand {
    font-size: 23px;
  }
  .brand img {
    width: 27px;
    height: 27px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #151515;
    padding: 22px;
    border-bottom: 1px solid #444444;
    gap: 0;
    max-height: calc(100dvh - 75px);
    overflow: auto;
  }
  .nav[data-open] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .nav a {
    padding: 12px;
    font-size: 13px;
  }
  .menu-button {
    display: grid;
    margin-left: auto;
    order: 3;
  }
  .header-actions {
    margin-left: auto;
  }
  .language-name {
    display: block;
    max-width: 75px;
  }
  .header-actions .button {
    display: none;
  }
  .hero {
    padding-top: 55px;
  }
  .hero-copy {
    margin-bottom: 38px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-note {
    font-size: 10px;
    line-height: 1.6;
  }
  .tour-panel {
    grid-template-columns: 130px 1fr;
  }
  .workspace-sidebar {
    padding: 18px 8px 12px;
  }
  .workspace-nav > span {
    font-size: 9px;
    padding: 10px 5px;
    gap: 5px;
  }
  .workspace-brand {
    font-size: 17px;
  }
  .workspace-bottom {
    font-size: 8px;
    gap: 5px;
  }
  .demo-workspace {
    padding: 16px 14px 0;
  }
  .store-layout {
    padding: 22px 18px;
    gap: 20px;
    grid-template-columns: 0.7fr 1fr;
  }
  .order-preview {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .product-object {
    width: 80px;
    height: 78px;
  }
  .product-object svg {
    width: 70px;
    height: 75px;
  }
  .order-preview strong {
    font-size: 12px;
  }
  .order-preview small {
    font-size: 6px;
  }
  .heat-panel {
    grid-template-columns: 1.1fr 1fr;
  }
  .heat-legend {
    padding: 25px;
  }
  .heat-products {
    gap: 10px;
    padding: 0 20px;
  }
  .heat-page h3 {
    padding-inline: 20px;
    font-size: 31px;
  }
  .heat-products i {
    height: 98px;
  }
  .heat-legend h3 {
    font-size: 22px;
  }
  .heat-legend p {
    font-size: 12px;
  }
  .insights-panel {
    padding: 25px;
    display: block;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    gap: 30px;
    margin-bottom: 30px;
  }
  .section-heading h2,
  h2 {
    font-size: 33px;
    letter-spacing: -1.3px;
  }
  .section-heading > p,
  .section-lede {
    font-size: 12px;
  }
  .feature-grid {
    gap: 0;
  }
  .feature {
    padding: 22px 18px;
  }
  .feature h3 {
    font-size: 19px;
  }
  .feature-symbol {
    margin-bottom: 28px;
  }
  .feature p {
    font-size: 11px;
  }
  .journey-layout {
    gap: 35px;
    grid-template-columns: 1fr 1.1fr;
  }
  .journey-copy article {
    gap: 12px;
  }
  .funnel-demo {
    padding: 19px;
  }
  .attribution-demo {
    grid-template-columns: 1fr;
  }
  .attribution-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .destinations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
  .destinations > .eyebrow {
    grid-column: 1;
  }
  .destinations h3 {
    grid-column: 1;
  }
  .destination-list {
    grid-column: 2;
    grid-row: 1/4;
    margin-top: 0;
    gap: 13px;
  }
  .offline-note {
    grid-column: 1/3;
  }
  .ads-layout {
    gap: 40px;
  }
  .risk-list article {
    gap: 12px;
  }
  .risk-icon {
    padding: 8px;
  }
  .risk-list .mono {
    display: none;
  }
  .tools-layout {
    grid-template-columns: 1fr;
  }
  .tools-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
    align-items: start;
  }
  .tools-copy > svg {
    display: none;
  }
  .tools-copy > p {
    margin-top: 0;
  }
  .tools-copy .text-link {
    grid-column: 1;
    justify-self: start;
  }
  .agent-names {
    grid-column: 2;
  }
  .privacy-layout {
    gap: 35px;
    grid-template-columns: 0.8fr 1fr;
  }
  .privacy-art {
    min-height: 290px;
  }
  .privacy-art > span {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #blog .post-card:last-child {
    display: none;
  }
  .faq-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
  }
  .final-cta {
    padding: 70px 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}
@media (max-width: 540px) {
  html {
    scroll-padding-top: 82px;
  }
  .wrap {
    width: calc(100% - 32px);
  }
  .hero {
    padding-top: 44px;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 0.075em;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 43px;
    letter-spacing: -1.9px;
    line-height: 1.08;
  }
  .hero-subtitle {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.7;
  }
  .hero-actions {
    gap: 9px;
    margin-top: 25px;
  }
  .button {
    padding: 0 16px;
    gap: 14px;
    font-size: 11px;
    min-height: 43px;
  }
  .hero-note {
    max-width: 280px;
    margin: 17px auto 0;
  }
  .hero-note svg {
    display: none;
  }
  .tour-top {
    padding: 12px;
  }
  .tour-caption {
    font-size: 8px;
  }
  .tour-top > .mono {
    display: none;
  }
  .tour-tabs {
    padding: 0 12px;
    gap: 20px;
  }
  .tour-tabs button {
    font-size: 10px;
    padding: 13px 0;
    gap: 6px;
  }
  .tour-tabs svg {
    width: 13px;
    height: 13px;
  }
  .workspace-sidebar {
    display: none;
  }
  .tour-panel {
    grid-template-columns: 1fr;
    min-height: 337px;
  }
  .demo-workspace {
    padding: 14px 10px 0;
  }
  .workspace-toolbar {
    margin-bottom: 12px;
    gap: 6px;
  }
  .workspace-toolbar b {
    font-size: 10px;
  }
  .workspace-toolbar small {
    font-size: 7px;
  }
  .status-tag {
    font-size: 7px;
    padding: 5px;
  }
  .store-header {
    padding: 12px;
    font-size: 7px;
  }
  .store-header strong {
    font-size: 8px;
  }
  .store-layout {
    padding: 21px 13px;
    gap: 14px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .product-object {
    width: 67px;
    height: 78px;
  }
  .order-preview small {
    font-size: 5px;
  }
  .order-preview strong {
    font-size: 10px;
  }
  .order-preview > div > span {
    font-size: 9px;
  }
  .masked-label {
    font-size: 7px;
  }
  .masked-input {
    font-size: 7px;
    padding: 8px 6px;
    min-height: 27px;
  }
  .checkout-total {
    font-size: 7px;
  }
  .checkout-total b {
    font-size: 10px;
  }
  .checkout-submit {
    font-size: 8px;
    padding: 11px 8px;
  }
  .preview-cursor {
    width: 15px;
    height: 22px;
    right: 17px;
  }
  .click-ring {
    right: 12px;
  }
  .demo-playback {
    gap: 8px;
    padding-block: 12px;
  }
  .tour-description {
    padding: 12px;
    font-size: 9px;
    align-items: flex-start;
    gap: 12px;
    min-height: 63px;
  }
  .tour-description .mono {
    font-size: 8px;
  }
  .heat-panel {
    grid-template-columns: 1.1fr 1fr;
  }
  .heat-page .store-header {
    font-size: 6px;
    padding: 14px 9px;
    flex-wrap: wrap;
    gap: 5px;
  }
  .heat-page .store-header strong {
    font-size: 7px;
  }
  .heat-page h3 {
    font-size: 25px;
    padding: 27px 13px;
    letter-spacing: -1px;
  }
  .heat-products {
    padding: 0 13px;
    gap: 6px;
  }
  .heat-products i {
    height: 87px;
  }
  .heat-legend {
    padding: 20px 13px;
  }
  .heat-legend .eyebrow {
    font-size: 7px;
  }
  .heat-legend h3 {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  .heat-legend p {
    font-size: 10px;
  }
  .heat-detail {
    font-size: 8px;
    gap: 7px;
  }
  .heat-detail strong {
    font-size: 26px;
  }
  .heat-legend > .mono {
    font-size: 7px;
  }
  .heat-spot {
    width: 15px;
    height: 15px;
  }
  .insights-panel {
    display: block;
    padding: 20px 15px;
  }
  .insight-heading {
    gap: 9px;
  }
  .insight-heading > svg {
    width: 23px;
    height: 23px;
  }
  .insight-heading .eyebrow {
    font-size: 7px;
  }
  .insight-heading h3 {
    font-size: 17px;
    letter-spacing: -0.5px;
  }
  .insight-score {
    font-size: 25px;
  }
  .insight-score span {
    font-size: 9px;
  }
  .insight-row {
    gap: 10px;
    padding: 14px 0;
  }
  .insight-row strong {
    font-size: 11px;
  }
  .insight-row p {
    font-size: 9px;
  }
  .insight-row > svg {
    display: none;
  }
  .capability-strip {
    grid-template-columns: 1fr 1fr;
    padding: 24px 0;
    row-gap: 24px;
  }
  .capability-strip > span {
    font-size: 10px;
  }
  .capability-strip > span:nth-child(2) {
    border: 0;
  }
  .section {
    padding-block: 55px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .section-heading h2,
  h2 {
    font-size: 33px;
  }
  .section-heading > .text-link {
    justify-self: start;
    margin-top: 3px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 15px;
  }
  .section-heading > p {
    font-size: 13px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature {
    padding: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-symbol {
    margin-bottom: 25px;
  }
  .feature h3 {
    font-size: 22px;
  }
  .feature p {
    font-size: 12px;
    max-width: 320px;
    margin-bottom: 22px;
  }
  .feature .text-link {
    font-size: 11px;
  }
  .journey-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .journey-copy article {
    padding: 20px 0;
    gap: 18px;
  }
  .journey-copy h3 {
    font-size: 18px;
  }
  .journey-copy p {
    font-size: 12px;
  }
  .funnel-demo {
    padding: 23px 20px;
  }
  .funnel-row > div:first-child {
    font-size: 10px;
  }
  .attribution-main {
    padding: 24px 17px;
  }
  .model-tabs {
    gap: 3px;
    margin: 22px 0;
  }
  .model-tabs button {
    font-size: 9px;
    padding: 7px;
  }
  .channel-row {
    grid-template-columns: 97px 1fr 31px;
    gap: 12px;
  }
  .channel-row > span {
    font-size: 10px;
  }
  .channel-mark {
    width: 19px;
    height: 19px;
    font-size: 10px;
  }
  .channel-chart {
    gap: 23px;
  }
  .destinations {
    padding: 25px 20px;
    grid-template-columns: 1fr;
  }
  .destinations h3 {
    font-size: 24px;
    max-width: 320px;
  }
  .destination-list {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 25px;
    gap: 18px 10px;
  }
  .offline-note {
    grid-column: 1;
  }
  .ads-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .ads-layout .section-lede {
    font-size: 13px;
  }
  .risk-list p {
    font-size: 12px;
  }
  .risk-list h3 {
    font-size: 16px;
  }
  .tools-copy {
    display: block;
  }
  .tools-copy h3 {
    font-size: 24px;
  }
  .tools-copy > p {
    margin-top: 15px;
  }
  .terminal-body {
    padding: 22px 16px;
    font-size: 10px;
    line-height: 2;
  }
  .terminal-comment {
    font-size: 8px;
  }
  .terminal-bar {
    padding: 12px 14px;
    font-size: 9px;
  }
  .privacy-layout {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 30px;
  }
  .privacy-art {
    min-height: 260px;
  }
  .privacy-art > span {
    font-size: 13px;
    letter-spacing: 4px;
  }
  .privacy-points {
    gap: 15px;
    font-size: 10px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-card {
    padding: 25px;
  }
  .post-card h3 {
    font-size: 23px;
    margin-top: 26px;
  }
  .post-card p {
    font-size: 13px;
  }
  .faq-section {
    padding: 55px 0;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .final-cta {
    padding: 65px 23px;
  }
  .final-cta h2 {
    font-size: 35px;
    letter-spacing: -1.3px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
  }
  .footer-brand {
    grid-column: 1/3;
  }
  .footer-col:last-child {
    grid-column: 1/3;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .footer-brand p {
    max-width: 270px;
  }
  .language-popover {
    width: calc(100vw - 24px);
  }
  .language-options {
    grid-template-columns: 1fr 1fr;
  }
  .language-options a {
    font-size: 11px;
    gap: 7px;
    padding: 10px 6px;
  }
  .language-options a > small {
    font-size: 8px;
  }
  .page-hero {
    padding: 55px 0 38px;
  }
  .page-hero h1 {
    font-size: 39px;
  }
  .page-hero p {
    font-size: 14px;
  }
  .article,
  .legal {
    padding-top: 50px;
  }
  .article-header h1,
  .legal h1 {
    font-size: 37px;
    letter-spacing: -1.5px;
  }
  .article-dek {
    font-size: 16px;
  }
  .article-body p,
  .article-body li,
  .legal p,
  .legal li {
    font-size: 15px;
  }
  .article-body h2,
  .legal h2 {
    font-size: 26px;
    letter-spacing: -0.6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Long localized headings must not set the minimum width of a grid track. */
.section-heading > * {
  min-width: 0;
}
h2,
h3 {
  overflow-wrap: anywhere;
}

/* Header and hero ported from dockup-landing, retaining its geometry and surfaces. */
.site-header {
  position: relative;
  z-index: 100;
  display: flex;
  min-height: 82px;
  padding: 0 clamp(24px, 4.7vw, 78px);
  align-items: center;
  background: #0a0a0a;
  color: #f3f4f6;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-header__brand {
  display: flex;
  width: 154px;
  flex: 0 0 auto;
  align-items: center;
}

.site-header__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__menu,
.site-header__nav,
.site-header__actions {
  display: flex;
  align-items: center;
}

.site-header__menu {
  min-width: 0;
  margin-left: auto;
}

.site-header__nav {
  gap: clamp(19px, 2.15vw, 38px);
}

.site-header__nav a,
.site-header__signin {
  color: rgba(220, 223, 228, 0.62);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-header__nav a:hover,
.site-header__signin:hover {
  color: #f3f4f6;
}

.site-header__actions {
  gap: clamp(20px, 2.5vw, 40px);
  margin-left: clamp(27px, 4vw, 68px);
}

.site-header__deploy {
  display: inline-flex;
  min-height: 42px;
  padding: 0 19px;
  align-items: center;
  border-radius: 999px;
  background: #f4f5f7;
  color: #090a0c;
  font-size: 0.82rem;
  white-space: nowrap;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.site-header__deploy:hover {
  background: #fff;
  transform: translateY(-1px);
}

.site-header__toggle {
  display: none;
}

@media (max-width: 1120px) {
  .site-header__nav {
    gap: 18px;
  }

  .site-header__nav a,
  .site-header__signin {
    font-size: 0.76rem;
  }

  .site-header__actions {
    gap: 17px;
    margin-left: 24px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 72px;
    padding: 0 18px;
  }

  .site-header__brand {
    width: 136px;
  }

  .site-header__toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .site-header__toggle span {
    display: block;
    width: 16px;
    height: 1px;
    background: #f3f4f6;
    transition: transform 180ms ease;
  }

  .site-header__toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header__toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-header__menu {
    position: absolute;
    top: 64px;
    right: 12px;
    left: 12px;
    display: none;
    padding: 12px;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(18, 18, 20, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(22px) saturate(125%);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
  }

  .site-header__menu.is-open,
  .site-header__nav,
  .site-header__actions {
    display: flex;
  }

  .site-header__menu.is-open {
    flex-direction: column;
  }

  .site-header__nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-header__nav a,
  .site-header__actions {
    margin: 12px 0 0;
    gap: 9px;
  }

  .site-header__signin,
  .site-header__deploy {
    display: inline-flex;
    min-height: 42px;
    padding: 0 16px;
    align-items: center;
    flex: 1;
    justify-content: center;
    border-radius: 999px;
    line-height: 1;
  }

  .site-header__signin {
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__nav a,
  .site-header__signin,
  .site-header__deploy,
  .site-header__toggle span {
    transition: none;
  }
}

html,
body {
  min-height: 100%;
  background: #0a0a0a;
  overscroll-behavior-y: none;
}

/* VM section: editorial copy paired with a purpose-built compute fabric. */

#root {
  min-height: 100svh;
  background: #0a0a0a;
}

.site-header {
  animation: new2-intro-reveal 640ms 0ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.new2-eyebrow {
  animation: new2-intro-reveal 700ms 60ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.new2-title-line:first-child {
  animation: new2-intro-reveal 760ms 110ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.new2-title-line--second {
  animation: new2-intro-reveal 760ms 170ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.new2-subtitle {
  animation: new2-intro-reveal 700ms 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.new2-command {
  animation: new2-intro-reveal 700ms 330ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.new2-hero-actions {
  animation: new2-intro-reveal 700ms 400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.new2-tools {
  animation: new2-intro-reveal 760ms 470ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes new2-intro-reveal {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.new2-landing {
  --new2-ink: #f3f4f6;
  --new2-muted: rgba(220, 223, 228, 0.62);
  /* 0.34 alpha put every small label on the page at 2.38:1 against #0a0a0a
     — barely half of what WCAG AA asks, and it is used on 10-12px text like
     the section kickers. 0.55 clears AA at 4.52:1 and still reads as the
     quietest step in the ramp. */
  --new2-faint: rgba(207, 211, 218, 0.55);
  /* State, not decoration: this marks the one thing on the page that means
     "serving real traffic". Nothing else gets colour. */
  --new2-live: #aeb5bf;
  --new2-line: rgba(220, 224, 230, 0.12);
  --new2-accent: #aeb5bf;
  --new2-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --new2-text: "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-height: 100svh;
  color: var(--new2-ink);
  background: #0a0a0a;
  font-family: var(--new2-text);
  overflow-x: hidden;
}

.new2-main {
  background: #0a0a0a;
}

.new2-hero {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: clamp(72px, 9vh, 118px) 24px 48px;
  text-align: center;
}

.new2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 28px;
  padding: 6px 10px 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.065),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.new2-try-badge {
  padding: 4px 8px;
  border: 1px solid rgba(255, 91, 31, 0.8);
  border-radius: 999px;
  color: #ff6a2a;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.new2-eyebrow-label {
  color: var(--new2-faint);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.new2-hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  color: var(--new2-ink);
  font-family: var(--new2-display);
  font-size: clamp(3.5rem, 4.9vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.new2-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.new2-title-line--second {
  font-size: 0.9em;
}

.new2-rotating-slot {
  display: inline-flex;
  justify-content: flex-start;
  vertical-align: baseline;
}

.new2-rotating-word {
  display: inline-flex;
  align-items: baseline;
  color: #cdd1d7;
}

.new2-rotating-letters {
  position: relative;
  display: inline-flex;
}

.new2-rotating-letter {
  display: inline-block;
  animation: new2-word-enter 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--letter-index) * 34ms);
}

.new2-rotating-period {
  color: var(--new2-ink);
  animation: new2-word-enter 560ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.new2-rotating-letters::before,
.new2-rotating-letters::after {
  position: absolute;
  right: 0;
  bottom: -0.09em;
  left: 0;
  height: 3px;
  border-radius: 999px;
  content: "";
}

.new2-rotating-letters::before {
  background: rgba(154, 154, 154, 0.5);
}

.new2-rotating-letters::after {
  background: linear-gradient(
    90deg,
    #7667ff 0%,
    #d64ec7 32%,
    #ff6840 61%,
    #f0bd24 82%,
    #7a7460 100%
  );
  box-shadow: 0 0 12px rgba(213, 86, 194, 0.22);
  transform: scaleX(0);
  transform-origin: left;
  animation: new2-word-line 1450ms 120ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes new2-word-enter {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(0.16em);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes new2-word-line {
  0% {
    opacity: 1;
    transform: scaleX(0);
  }
  55% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

.new2-subtitle {
  max-width: 900px;
  margin: 30px auto 38px;
  color: var(--new2-muted);
  font-family: var(--new2-text);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.45;
  letter-spacing: 0;
  text-wrap: balance;
}

.new2-command {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 13px 21px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.095),
    rgba(255, 255, 255, 0.025) 48%,
    rgba(255, 255, 255, 0.06)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035),
    0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.new2-command:hover {
  border-color: rgba(255, 255, 255, 0.19);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.035) 48%,
    rgba(255, 255, 255, 0.075)
  );
}

.new2-command:active {
  transform: scale(0.985);
}

.new2-command:focus-visible {
  outline: 1px solid rgba(244, 246, 249, 0.72);
  outline-offset: 4px;
}

.new2-command code {
  overflow: hidden;
  color: #f3f4f6;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(0.96rem, 1.35vw, 1.16rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}

.new2-command code span {
  margin-right: 10px;
  color: var(--new2-accent);
}

.new2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
}

/* The hero actions. Plain buttons: the chromed rim lives on the section
   toggles now, where a control that already moves can carry a moving highlight
   without competing with the sentence above it.

   Each is still two elements — the anchor sets the shape and the surface, the
   inner face carries the padding and the label — because that is what lets the
   Apple mark and the text sit on one flex line without the anchor itself
   having to become a flex container. */
.new2-hero-action {
  /* Fully round, like the eyebrow, the command bar and the header action.
     One corner across the hero rather than four. */
  --radius: 999px;
  display: grid;
  min-width: 142px;
  min-height: 42px;
  place-items: center;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.new2-hero-action__face {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  place-items: center;
  border-radius: inherit;
  font-size: 0.7rem;
  text-decoration: none;
}

.new2-hero-action:hover {
  transform: translateY(-1px);
}

.new2-hero-action:active {
  transform: translateY(1px) scale(0.992);
}

.new2-hero-action:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 4px;
}

/* The primary action is signing up, not downloading a Mac app. The hero gave
   no way to actually start using the platform — the macOS build is a companion
   to it, not the way in — so the download keeps its Apple mark and moves to the
   secondary treatment beside the docs. */
.new2-hero-action--primary {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #f4f5f7;
  color: #101114;
  font-weight: 600;
}

.new2-hero-action--primary:hover {
  background: #fff;
}

.new2-hero-action--secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(235, 238, 242, 0.68);
}

.new2-hero-action--secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 249, 250, 0.92);
}

.new2-hero-action--mark .new2-hero-action__face {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.new2-hero-action__mark {
  display: inline-block;
  line-height: 1;
}

.new2-copy-feedback {
  position: absolute;
  z-index: 3;
  top: var(--copy-y);
  left: var(--copy-x);
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(50, 52, 57, 0.88),
    rgba(22, 23, 26, 0.78)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.32);
  color: rgba(248, 249, 251, 0.9);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 10px));
  animation: new2-copy-feedback 1.9s ease both;
}

@keyframes new2-copy-feedback {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-100% - 4px)) scale(0.88);
  }
  14%,
  72% {
    opacity: 1;
    transform: translate(-50%, calc(-100% - 10px)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-100% - 16px)) scale(0.96);
  }
}

.new2-tools {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin: 34px auto 0;
}

.new2-tools p {
  color: var(--new2-faint);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.new2-tools-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--new2-line));
}

.new2-tools-rule:nth-of-type(2) {
  background: linear-gradient(90deg, var(--new2-line), transparent);
}

.new2-tool-list {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  gap: 22px;
}

.new2-tool {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--new2-ink);
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.new2-tool svg,
.new2-tool img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.new2-tool small {
  display: none;
}

.new2-tool:hover {
  filter: drop-shadow(0 0 12px rgba(228, 232, 238, 0.28));
  transform: translateY(-3px);
}

/* Rplay brand asset; the header's layout and all hero controls use the reference. */
.site-header__brand {
  gap: 9px;
  color: #f3f4f6;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
}
.site-header__brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.site-header__menu[data-open] {
  display: flex;
}
.site-header__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.site-header .language-trigger {
  min-height: 34px;
  padding: 0 9px;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 238, 242, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.site-header .language-name {
  display: block;
  max-width: 85px;
}
.site-header .flag-slot,
.site-header .flag-slot img {
  width: 20px;
  max-height: 15px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 25px;
  letter-spacing: -1px;
  font-weight: 500;
}
.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.new2-landing {
  --new2-live: #b7bcc4;
  --accent: #aeb5bf;
}
.new2-title-line {
  min-width: 0;
  overflow-wrap: anywhere;
}
.new2-tools p {
  white-space: normal;
}
.new2-tool:focus-visible {
  outline: 1px solid #afb5bf;
  outline-offset: 5px;
}
.tour-section {
  padding-top: 24px;
}
.product-tour {
  scroll-margin-top: 24px;
}
.copy-status {
  position: absolute;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
  border: 1px solid #444;
  padding: 6px 10px;
  border-radius: 20px;
  background: #1a1a1a;
  color: #eee;
  font: 10px var(--mono);
  white-space: nowrap;
}
h1 {
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.heat-spot {
  background: #aeaeaeaa;
  box-shadow:
    0 0 20px 12px #9999998a,
    0 0 44px 28px #b1b1b170,
    0 0 65px 40px #aaaaaa45;
}
@media (max-width: 1120px) {
  .site-header__brand {
    width: 125px;
  }
  .site-header__nav {
    gap: 14px;
  }
  .site-header__actions {
    gap: 13px;
    margin-left: 22px;
  }
}
@media (max-width: 900px) {
  .new2-hero {
    padding-top: 74px;
  }
  .new2-tools {
    gap: 15px;
  }
  .new2-tools p {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }
  .new2-tool-list {
    gap: 12px;
  }
  .new2-tool {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 860px) {
  .site-header__menu[data-open] {
    flex-direction: column;
  }
  .site-header__menu {
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-header__actions {
    flex-wrap: wrap;
  }
  .site-header .language-menu {
    flex-basis: 100%;
  }
  .site-header .language-trigger {
    width: 100%;
    justify-content: center;
  }
  .site-header__nav a {
    padding: 11px 14px;
  }
  .site-header__brand {
    width: 136px;
  }
  .site-header__nav {
    gap: 0;
  }
  .site-header__actions {
    margin-left: 0;
    gap: 9px;
  }
  .site-header__toggle {
    flex-shrink: 0;
  }
  .language-popover {
    z-index: 130;
  }
}
@media (max-width: 600px) {
  .new2-hero {
    width: 100%;
    min-width: 0;
    padding: clamp(42px, 7svh, 62px) 18px 36px;
  }
  .new2-eyebrow {
    gap: 7px;
    margin-bottom: 20px;
    padding: 5px 8px 5px 6px;
    max-width: 100%;
  }
  .new2-try-badge {
    padding: 4px 7px;
    font-size: 0.48rem;
    flex-shrink: 0;
  }
  .new2-eyebrow-label {
    font-size: 0.49rem;
    letter-spacing: 0.18em;
    line-height: 1.6;
  }
  .new2-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7.9vw, 2.55rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
  }
  .new2-title-line--second {
    font-size: 0.92em;
  }
  .new2-subtitle {
    margin: 22px auto 26px;
    font-size: clamp(0.75rem, 3.45vw, 0.86rem);
    line-height: 1.7;
  }
  .new2-command {
    width: max-content;
    max-width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
  }
  .new2-command code {
    max-width: 100%;
    font-size: clamp(0.7rem, 3.35vw, 0.84rem);
    letter-spacing: 0;
  }
  .new2-command code span {
    margin-right: 5px;
  }
  .new2-hero-actions {
    width: min(100%, 310px);
    gap: 8px;
    margin-top: 15px;
  }
  .new2-hero-action {
    min-width: 0;
    min-height: 40px;
    flex: 1;
  }
  .new2-hero-action--primary {
    order: -1;
    flex-basis: 100%;
  }
  .new2-hero-action__face {
    padding-inline: 11px;
    font-size: 0.62rem;
  }
  .new2-tools {
    display: block;
    margin-top: 28px;
  }
  .new2-tools-rule {
    display: none;
  }
  .new2-tools p {
    margin-bottom: 16px;
    font-size: 0.55rem;
    letter-spacing: 0.16em;
    text-align: center;
    white-space: normal;
  }
  .new2-tool-list {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .new2-tool {
    width: 30px;
    height: 30px;
  }
  .new2-tool svg,
  .new2-tool img {
    width: 18px;
    height: 18px;
  }
  .tour-section {
    padding-top: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Product capabilities: detailed stories and illustrative workspace views. */
.cap-section {
  scroll-margin-top: 24px;
}
.cap-section .section-heading {
  align-items: start;
}
.cap-section p {
  overflow-wrap: anywhere;
}
.cap-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cap-index a {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 86px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
  transition: background 0.2s;
}
.cap-index a:hover {
  background: #1b1b1b;
}
.cap-index .mono {
  font-size: 10px;
  color: #707070;
}
.cap-index svg {
  width: 20px;
  height: 20px;
  color: #b8b8b8;
}
.cap-index a > span:last-child {
  flex: 1;
  min-width: 0;
}
.cap-panel,
.cap-dashboard,
.cap-funnel-builder {
  min-width: 0;
  border: 1px solid #303030;
  border-radius: 3px;
  background: #111;
  overflow: hidden;
}
.cap-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  color: #d2d2d2;
  font-size: 13px;
  line-height: 1.5;
}
.cap-panel-head .mono {
  color: #8c8c8c;
  font-size: 10px;
  text-align: right;
}
.cap-sample {
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  color: #8b8b8b;
  font: 10px/1.6 var(--mono);
}
.cap-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}
.cap-kpis > div {
  padding: 30px;
  border-right: 1px solid var(--line);
}
.cap-kpis > div:last-child {
  border-right: 0;
}
.cap-kpis span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.cap-kpis strong {
  display: block;
  margin: 12px 0 20px;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -1px;
  font-weight: 450;
}
.cap-kpis i {
  display: block;
  width: 45%;
  height: 2px;
  background: linear-gradient(90deg, #ddd, #555);
}
.cap-analytics-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
}
.cap-traffic {
  padding: 28px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.cap-chart-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: #bcbcbc;
}
.cap-chart-label .mono {
  color: #777;
}
.cap-traffic-chart {
  width: 100%;
  height: auto;
  margin-top: 32px;
}
.cap-top-pages {
  padding: 28px;
  min-width: 0;
}
.cap-top-pages h3 {
  font-size: 12px;
  font-weight: 400;
  color: #bcbcbc;
  margin-bottom: 28px;
}
.cap-top-pages > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.cap-top-pages code {
  overflow-wrap: anywhere;
  color: #b6b6b6;
}
.cap-footer-note {
  display: grid;
  grid-template-columns: 24px 1fr 1fr;
  align-items: start;
  gap: 20px;
  margin-top: 28px;
}
.cap-footer-note p,
.cap-notes p,
.cap-three-notes p,
.cap-ai-side > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.cap-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.cap-chips > span {
  padding: 7px 10px;
  border: 1px solid #333;
  background: #161616;
  color: #b4b4b4;
  font-size: 10px;
  line-height: 1.5;
  border-radius: 2px;
}
.cap-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 70px;
}
.cap-split > * {
  min-width: 0;
}
.cap-notes {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cap-note {
  display: flex;
  align-items: start;
  gap: 18px;
}
.cap-note > svg {
  width: 22px;
  height: 22px;
  color: #c7c7c7;
  margin-top: 3px;
}
.cap-note h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 10px;
  letter-spacing: -0.35px;
}
.cap-note p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.cap-notes .text-link {
  align-self: start;
}
.cap-session-list > .cap-chips {
  margin: 20px 24px;
}
.cap-session-row {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.4fr;
  align-items: center;
  gap: 12px;
  margin: 0 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.cap-session-row--head {
  color: #7c7c7c;
  padding: 6px 0 12px;
  font-size: 10px;
}
.cap-session-row.is-highlighted {
  background: #1e1e1e;
  margin-inline: 12px;
  padding-inline: 12px;
}
.cap-session-row > span:first-child {
  position: relative;
  padding-left: 16px;
}
.cap-session-row--head > span:first-child {
  padding-left: 0;
}
.cap-session-row small {
  display: block;
  font-size: 9px;
  color: #7c7c7c;
  margin-top: 5px;
}
.cap-session-row > b {
  font-size: 17px;
  font-weight: 500;
}
.cap-session-row > b small {
  display: inline;
  font-size: 9px;
}
.cap-session-dot {
  position: absolute;
  top: 4px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c6c6c6;
}
.cap-mini-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 22px 28px;
}
.cap-mini-timeline > span {
  position: relative;
  display: flex;
  gap: 20px;
  border-left: 1px solid #3f3f3f;
  padding: 9px 0 9px 18px;
  font: 10px/1.5 var(--mono);
  color: #727272;
}
.cap-mini-timeline > span::before {
  content: "";
  position: absolute;
  top: 13px;
  left: -3px;
  width: 5px;
  height: 5px;
  background: #aaa;
}
.cap-mini-timeline code,
.cap-mini-timeline b {
  color: #bcbcbc;
  font-weight: 400;
}
.cap-heat-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 44px;
  align-items: start;
}
.cap-heat-layout > * {
  min-width: 0;
}
.cap-heat-controls {
  display: flex;
  flex-direction: column;
}
.cap-heat-controls button {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 18px;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  color: #858585;
}
.cap-heat-controls button[aria-pressed="true"] {
  background: #1a1a1a;
  border-color: #494949;
  color: var(--ink);
}
.cap-heat-controls button:hover {
  background: #171717;
}
.cap-heat-controls .mono {
  padding-top: 3px;
  font-size: 10px;
  color: #777;
}
.cap-heat-controls strong {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}
.cap-heat-controls small {
  display: block;
  margin-top: 6px;
  color: #929292;
  font-size: 12px;
  line-height: 1.65;
}
.cap-heat-figure {
  align-self: stretch;
}
.cap-heat-canvas {
  position: relative;
  min-height: 355px;
  background: #e8e8e8;
  padding: 24px;
  color: #222;
  overflow: hidden;
}
.cap-heat-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #cecece;
  padding-bottom: 20px;
}
.cap-heat-nav strong {
  margin-right: auto;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.cap-heat-nav i {
  width: 28px;
  height: 4px;
  background: #c8c8c8;
}
.cap-heat-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 30px 0;
}
.cap-heat-object {
  height: 136px;
  position: relative;
  background: #d5d5d5;
}
.cap-heat-object::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 70px;
  top: 40px;
  left: calc(50% - 29px);
  background: #aaa;
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}
.cap-heat-object::after {
  content: "";
  position: absolute;
  width: 29px;
  height: 28px;
  top: 21px;
  left: calc(50% - 14.5px);
  border: 5px solid #8d8d8d;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}
.cap-heat-lines i {
  display: block;
  height: 7px;
  background: #bfbfbf;
  width: 90%;
  margin: 14px 0;
}
.cap-heat-lines i:nth-child(2) {
  width: 50%;
}
.cap-heat-lines i:nth-child(3) {
  width: 30%;
}
.cap-heat-lines b {
  display: block;
  height: 30px;
  background: #333;
  margin-top: 25px;
}
.cap-heat-shelves {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cap-heat-shelves i {
  display: block;
  height: 72px;
  background: #d6d6d6;
}
.cap-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cap-spot {
  display: block;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 20, 20, 0.7) 0%,
    rgba(60, 60, 60, 0.45) 20%,
    rgba(80, 80, 80, 0.18) 42%,
    transparent 70%
  );
  width: 130px;
  height: 130px;
}
.cap-spot-a {
  top: 40%;
  left: 60%;
}
.cap-spot-b {
  top: 9%;
  left: 6%;
  width: 85px;
  height: 85px;
}
.cap-spot-c {
  top: 57%;
  left: 30%;
  width: 90px;
  height: 90px;
}
.cap-pointer-path,
.cap-scroll-bands {
  display: none;
}
[data-map-mode="move"] .cap-spot {
  opacity: 0.2;
}
[data-map-mode="move"] .cap-pointer-path {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #444;
  stroke-width: 2;
  stroke-dasharray: 5 5;
}
[data-map-mode="rage"] .cap-spot-b,
[data-map-mode="rage"] .cap-spot-c {
  display: none;
}
[data-map-mode="rage"] .cap-spot-a {
  width: 160px;
  height: 160px;
  top: 37%;
  left: 55%;
  border: 1px dashed #666;
}
[data-map-mode="dead"] .cap-spot-a {
  top: 63%;
  left: 14%;
}
[data-map-mode="dead"] .cap-spot-b {
  top: 61%;
  left: 35%;
}
[data-map-mode="dead"] .cap-spot-c {
  display: none;
}
[data-map-mode="double"] .cap-spot-a {
  left: 10%;
  top: 27%;
  width: 110px;
  height: 110px;
}
[data-map-mode="double"] .cap-spot-b {
  left: 16%;
  top: 30%;
  width: 110px;
  height: 110px;
}
[data-map-mode="double"] .cap-spot-c {
  display: none;
}
[data-map-mode="scroll"] .cap-spot {
  display: none;
}
[data-map-mode="scroll"] .cap-scroll-bands {
  display: grid;
  height: 100%;
  grid-template-rows: repeat(3, 1fr);
}
.cap-scroll-bands span {
  padding: 12px;
  text-align: right;
  font: 10px var(--mono);
  color: #fff;
  border-bottom: 1px dashed #777;
  background: rgba(0, 0, 0, 0.48);
}
.cap-scroll-bands span:nth-child(2) {
  background: rgba(0, 0, 0, 0.3);
}
.cap-scroll-bands span:nth-child(3) {
  background: rgba(0, 0, 0, 0.15);
  color: #444;
}
.cap-heat-caption {
  padding: 24px;
  min-height: 105px;
}
.cap-heat-caption p {
  color: #a6a6a6;
  font-size: 12px;
  line-height: 1.7;
}
.cap-heat-caption strong {
  display: block;
  color: #e1e1e1;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
}
.cap-diagnostics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.cap-error-console {
  background: #101010;
}
.cap-log {
  display: grid;
  grid-template-columns: 74px 1fr 26px;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  font: 11px/1.7 var(--mono);
}
.cap-log time {
  color: #777;
}
.cap-log span {
  overflow-wrap: anywhere;
}
.cap-log b {
  font-weight: 400;
  color: #aaa;
}
.cap-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  color: #737373;
  font-size: 11px;
}
.cap-error-context {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 20px 24px;
  padding: 18px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.cap-error-context small {
  display: block;
  color: #777;
  margin-top: 8px;
  font: 10px var(--mono);
}
.cap-diagnostic-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}
.cap-diagnostic-cards > article {
  padding: 24px;
  border: 1px solid var(--line);
}
.cap-diagnostic-cards .eyebrow {
  font-size: 10px;
  margin-bottom: 16px;
}
.cap-diagnostic-cards h3 {
  font-size: 21px;
  font-weight: 450;
  letter-spacing: -0.5px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.cap-diagnostic-cards p {
  font-size: 13px;
  line-height: 1.8;
  color: #9e9e9e;
}
.cap-field-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.cap-field-bars span {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  color: #aaa;
}
.cap-field-bars i {
  display: block;
  height: 8px;
  background: linear-gradient(90deg, #9c9c9c var(--fill), #242424 var(--fill));
}
.cap-command {
  display: block;
  padding: 14px 18px;
  background: #161616;
  border: 1px solid #2d2d2d;
  color: #ccc;
  font: 11px/1.7 var(--mono);
  overflow-wrap: anywhere;
}
.cap-diagnostic-cards .cap-command {
  margin-top: 20px;
}
.cap-ai-layout {
  grid-template-columns: 1.35fr 0.85fr;
}
.cap-ai-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.cap-ai-question p {
  font-size: 16px;
  line-height: 1.5;
}
.cap-ai-finding {
  display: flex;
  align-items: start;
  gap: 22px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.cap-priority {
  font: 12px var(--mono);
  color: #777;
  padding-top: 4px;
}
.cap-ai-finding h3 {
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 500;
}
.cap-ai-finding p {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
}
.cap-evidence-refs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.cap-evidence-refs span {
  padding: 5px 8px;
  background: #202020;
  color: #aaa;
  font: 9px var(--mono);
}
.cap-ai-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cap-health > span {
  font-size: 12px;
  color: #bbb;
}
.cap-health > strong {
  display: block;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -5px;
  margin: 12px 0 22px;
}
.cap-health strong small {
  font-size: 22px;
  color: #737373;
  letter-spacing: -1px;
}
.cap-health > div {
  display: flex;
  gap: 5px;
  height: 30px;
}
.cap-health i {
  flex: 1;
  background: #2a2a2a;
}
.cap-health i.filled {
  background: #bababa;
}
.cap-health > small {
  display: block;
  margin-top: 12px;
  color: #777;
  font: 9px/1.6 var(--mono);
}
.cap-checkout-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-block: 32px;
}
.cap-builder-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cap-builder-path > div {
  position: relative;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.cap-builder-path > div:last-child {
  border-right: 0;
}
.cap-builder-path .mono {
  color: #717171;
  font-size: 12px;
}
.cap-builder-path small {
  display: block;
  margin: 28px 0 12px;
  font-size: 11px;
  color: #999;
}
.cap-builder-path code {
  display: block;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.cap-builder-path i {
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 28px;
  background: #999;
}
.cap-builder-footer {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-top: 1px solid var(--line);
}
.cap-builder-footer > span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.cap-table-scroll {
  width: 100%;
  overflow-x: auto;
}
.cap-table-scroll table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
  line-height: 1.6;
}
.cap-table-scroll th,
.cap-table-scroll td {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
  white-space: nowrap;
}
.cap-table-scroll th[scope="row"] {
  white-space: normal;
  min-width: 140px;
}
.cap-table-scroll thead th {
  font-size: 11px;
  color: #838383;
}
.cap-table-scroll td {
  font-family: var(--mono);
  font-size: 12px;
  color: #c3c3c3;
}
.cap-table-scroll td strong {
  font-weight: 400;
  color: #fff;
}
.cap-campaigns + .cap-chips {
  margin-top: 24px;
}
.cap-protection {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding: 32px 0 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px 70px;
}
.cap-protection > div:first-child {
  position: relative;
  padding-left: 44px;
}
.cap-protection svg {
  position: absolute;
  left: 0;
  top: 4px;
}
.cap-protection h3 {
  font-size: 20px;
  font-weight: 450;
  letter-spacing: -0.4px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.cap-protection p {
  font-size: 13px;
  line-height: 1.8;
  color: #999;
}
.cap-protection .cap-chips {
  align-content: start;
}
.cap-protection > small {
  grid-column: 1/-1;
  color: #777;
  font-size: 11px;
  line-height: 1.7;
}
.cap-signal-diagram {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #111;
  padding: 36px 36px 0;
}
.cap-signal-sources,
.cap-signal-destinations {
  display: grid;
  gap: 12px;
}
.cap-signal-sources span,
.cap-signal-destinations span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid #353535;
  background: #191919;
  font: 12px/1.5 var(--mono);
}
.cap-signal-destinations svg {
  width: 15px;
  height: 15px;
}
.cap-signal-core {
  display: flex;
  align-items: center;
}
.cap-signal-core strong {
  padding: 28px 20px;
  border: 1px solid #757575;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -1px;
  background: #ededed;
  color: #151515;
}
.cap-core-line {
  height: 1px;
  background: #555;
  flex: 1;
}
.cap-signal-diagram .cap-sample {
  grid-column: 1/-1;
  margin: 32px -36px 0;
}
.cap-three-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.cap-three-notes .cap-note {
  flex-direction: column;
}
.cap-delivery-strip {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px 0 0;
  color: #aaa;
  font-size: 12px;
}
.cap-delivery-strip code {
  color: #777;
  font-size: 11px;
}
.cap-team-member {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.cap-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #2d2d2d;
  font: 11px var(--mono);
}
.cap-team-member strong {
  font-size: 13px;
  font-weight: 400;
}
.cap-team-member > span:last-child {
  font-size: 10px;
  color: #999;
  padding: 5px 9px;
  border: 1px solid #333;
}
.cap-share-policy {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  font-size: 12px;
}
.cap-share-policy small {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  color: #888;
}
.cap-sdk {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}
.cap-sdk > div {
  min-width: 0;
}
.cap-sdk h3,
.cap-setup h3 {
  font-size: 23px;
  font-weight: 450;
  letter-spacing: -0.6px;
  line-height: 1.3;
  margin: 16px 0 14px;
}
.cap-sdk p,
.cap-setup p {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
}
.cap-sdk pre {
  background: #141414;
  border: 1px solid var(--line);
  padding: 28px;
  font: 11px/2 var(--mono);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  min-width: 0;
  color: #c1c1c1;
}
.cap-privacy-detail {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.cap-privacy-detail p {
  font-size: 13px;
  line-height: 1.8;
  color: #999;
}
.cap-setup {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  border: 1px solid #3b3b3b;
  background: #141414;
  padding: 30px;
}
.cap-setup-mark {
  font: 12px var(--mono);
  color: #888;
}
.cap-setup h3 {
  margin-top: 0;
}
.cap-setup .button {
  white-space: normal;
  text-align: center;
}
@media (max-width: 1000px) {
  .cap-split {
    gap: 30px;
  }
  .cap-section .section-heading {
    gap: 44px;
  }
  .cap-heat-layout {
    gap: 24px;
  }
  .cap-heat-canvas {
    padding: 18px;
  }
  .cap-three-notes {
    gap: 24px;
  }
  .cap-signal-diagram {
    grid-template-columns: 1fr 0.7fr 1fr;
    padding-inline: 24px;
  }
  .cap-signal-diagram .cap-sample {
    margin-inline: -24px;
  }
  .cap-signal-core strong {
    padding: 24px 12px;
    font-size: 22px;
  }
  .cap-kpis > div {
    padding: 24px;
  }
  .cap-sdk {
    gap: 30px;
  }
  .cap-setup {
    grid-template-columns: 1fr auto;
  }
  .cap-setup-mark {
    grid-column: 1/-1;
  }
}
@media (max-width: 760px) {
  .cap-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cap-index a {
    gap: 10px;
    padding: 16px;
    min-height: 80px;
    font-size: 12px;
  }
  .cap-index .mono {
    display: none;
  }
  .cap-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cap-kpis > div:nth-child(2) {
    border-right: 0;
  }
  .cap-kpis > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .cap-split,
  .cap-heat-layout,
  .cap-diagnostics,
  .cap-ai-layout,
  .cap-sdk,
  .cap-privacy-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cap-section .section-heading {
    gap: 24px;
  }
  .cap-analytics-grid {
    grid-template-columns: 1fr;
  }
  .cap-traffic {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cap-footer-note {
    grid-template-columns: 24px 1fr;
  }
  .cap-footer-note .cap-chips {
    grid-column: 2;
  }
  .cap-heat-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cap-heat-controls button {
    padding: 14px;
    gap: 10px;
  }
  .cap-heat-controls strong {
    font-size: 13px;
  }
  .cap-heat-controls small {
    font-size: 11px;
  }
  .cap-heat-canvas {
    min-height: 340px;
  }
  .cap-checkout-notes {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cap-builder-path {
    grid-template-columns: 1fr;
  }
  .cap-builder-path > div {
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cap-builder-path small {
    margin-top: 15px;
  }
  .cap-builder-path i {
    margin-top: 18px;
  }
  .cap-builder-footer {
    flex-direction: column;
    align-items: start;
    padding: 22px;
    gap: 20px;
  }
  .cap-protection {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cap-three-notes {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cap-three-notes .cap-note {
    flex-direction: row;
  }
  .cap-signal-diagram {
    grid-template-columns: 1fr;
    padding: 24px 20px 0;
  }
  .cap-signal-sources {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .cap-signal-sources span {
    padding: 12px 8px;
    font-size: 9px;
    justify-content: center;
    text-align: center;
  }
  .cap-signal-core {
    flex-direction: column;
    height: 140px;
  }
  .cap-core-line {
    flex: 1;
    width: 1px;
  }
  .cap-signal-core strong {
    padding: 16px 30px;
  }
  .cap-signal-destinations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .cap-signal-destinations span {
    padding: 12px;
    gap: 8px;
    font-size: 10px;
  }
  .cap-signal-diagram .cap-sample {
    margin-inline: -20px;
    margin-top: 24px;
  }
  .cap-setup {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
  .cap-setup .button {
    justify-self: start;
  }
  .cap-health > strong {
    font-size: 64px;
  }
}
@media (max-width: 380px) {
  .cap-index a {
    padding: 14px 12px;
  }
  .cap-kpis > div {
    padding: 20px;
  }
  .cap-panel-head {
    padding: 16px;
    gap: 12px;
    font-size: 12px;
  }
  .cap-session-row {
    margin-inline: 16px;
    grid-template-columns: 1.5fr 0.7fr 0.4fr;
    gap: 8px;
  }
  .cap-session-row.is-highlighted {
    margin-inline: 8px;
    padding-inline: 8px;
  }
  .cap-heat-controls button {
    padding: 12px 8px;
  }
  .cap-heat-controls .mono {
    display: none;
  }
  .cap-heat-nav i {
    width: 15px;
  }
  .cap-heat-product {
    gap: 18px;
  }
  .cap-log {
    padding: 16px;
    grid-template-columns: 64px 1fr 22px;
    font-size: 10px;
    gap: 8px;
  }
  .cap-ai-question,
  .cap-ai-finding {
    padding: 20px;
    gap: 14px;
  }
  .cap-team-member {
    padding: 20px 16px;
    gap: 10px;
  }
  .cap-team-member > span:last-child {
    padding: 4px 6px;
  }
}
