:root {
  color-scheme: light;
  --ink: #101313;
  --muted: #626a68;
  --line: #d9dedd;
  --paper: #f7f9f8;
  --white: #ffffff;
  --black: #0c0f0f;
  --cyan: #53d4cf;
  --cyan-dark: #087d79;
  --green: #72ca85;
  --coral: #f57e6d;
  --content: 1216px;
  --gutter: 32px;
  --announcement-height: 32px;
  --header-height: 66px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

:focus-visible {
  outline: 3px solid rgba(8, 125, 121, 0.42);
  outline-offset: 3px;
}

::selection {
  background: var(--cyan);
  color: var(--black);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 12px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.announcement-bar {
  min-height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px var(--gutter);
  background: #121515;
  color: #d5dbd9;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.4;
  text-align: center;
}

.announcement-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-bar a::after {
  content: "→";
  color: var(--cyan);
  font-size: 13px;
  transition: transform 150ms ease;
}

.announcement-bar a:hover {
  color: var(--white);
}

.announcement-bar a:hover::after {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(16, 19, 19, 0.1);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(15, 20, 20, 0.07);
}

.site-header__inner,
.section > *,
.site-footer__inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 720;
  line-height: 1;
}

.brand__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 5px 0;
  color: #242928;
  font-size: 13px;
  font-weight: 620;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:not(.site-nav__download)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:not(.site-nav__download):hover::after,
.site-nav a:not(.site-nav__download):focus-visible::after,
.site-nav a:not(.site-nav__download).is-current::after,
.site-nav a:not(.site-nav__download)[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:not(.site-nav__download).is-current,
.site-nav a:not(.site-nav__download)[aria-current="location"] {
  color: var(--cyan-dark);
}

.site-nav a:not(.site-nav__download).is-current::after,
.site-nav a:not(.site-nav__download)[aria-current="location"]::after {
  height: 2px;
  background: var(--cyan-dark);
}

.site-nav .site-nav__download {
  min-width: 88px;
  min-height: 36px;
  justify-content: center;
  margin-left: 7px;
  padding: 7px 15px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.site-nav .site-nav__download:hover {
  border-color: #2d3634;
  background: #2d3634;
  color: var(--white);
}

.site-nav .site-nav__download.is-current,
.site-nav .site-nav__download[aria-current="location"] {
  border-color: var(--cyan-dark);
  background: var(--cyan-dark);
  box-shadow: inset 0 -3px 0 var(--cyan);
}

.nav-menu-button {
  width: 40px;
  height: 40px;
  display: none;
  place-content: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
}

.nav-menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-menu-button:hover,
.nav-menu-button[aria-expanded="true"] {
  background: #eef1f0;
}

.nav-menu-button:focus-visible {
  outline: 2px solid var(--cyan-dark);
  outline-offset: 2px;
}

.nav-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav .site-nav__account {
  color: var(--cyan-dark);
  font-weight: 700;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 120px);
  display: flex;
  overflow: hidden;
  background: #fbfcfc;
  color: var(--ink);
}

.hero::before {
  display: none;
}

.hero__backdrop {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  border-top: 1px solid #d8dddc;
  background-color: #e8e6f4;
  background-image: url("assets/warpwork-desktop.png");
  background-position: center 16%;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  animation: hero-visual-in 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__content {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin: 0 auto;
  padding: 34px 0 154px;
}

.hero__content > :not(.capability-rail) {
  max-width: 760px;
}

.hero__eyebrow,
.section__eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: var(--cyan-dark);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 72px;
  font-weight: 690;
  line-height: 0.98;
}

.hero__lead {
  margin: 19px 0 0;
  color: #222726;
  font-size: 20px;
  line-height: 1.48;
}

.hero__detail {
  margin: 10px 0 0;
  color: #65706d;
  font-size: 13px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 21px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 730;
  line-height: 1.3;
  text-align: center;
  text-shadow: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button--primary {
  background: var(--cyan);
  color: #071211;
}

.button--primary:hover {
  background: #77e2de;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(7, 11, 11, 0.68);
  color: var(--white);
}

.button--secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero .button--primary {
  background: var(--ink);
  color: var(--white);
}

.hero .button--primary:hover {
  background: #2d3634;
}

.hero .button--secondary {
  min-height: 42px;
  padding-inline: 3px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.hero .button--secondary:hover {
  border-bottom-color: var(--cyan-dark);
  background: transparent;
  color: var(--cyan-dark);
}

.capability-rail {
  position: absolute;
  z-index: 2;
  right: max(var(--gutter), calc((100% - var(--content)) / 2));
  bottom: 18px;
  left: max(var(--gutter), calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid #343938;
  background: rgba(12, 15, 15, 0.94);
  list-style: none;
}

.capability-rail li {
  min-width: 0;
  padding: 13px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  color: #e3e8e6;
  font: 650 11px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-align: center;
  text-shadow: none;
}

.capability-rail li:last-child {
  border-right: 0;
}

.hero__next {
  position: absolute;
  right: var(--gutter);
  bottom: 76px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
  text-shadow: 0 1px 8px #000;
}

.hero__next:hover {
  color: var(--cyan);
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: var(--header-height);
}

.product,
.source-control {
  background: var(--white);
}

.agents,
.security {
  background: var(--black);
  color: var(--white);
}

.download {
  background: #dff5f2;
}

.section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  gap: 9px 56px;
  align-items: end;
  margin-bottom: 46px;
}

.section__intro .section__eyebrow {
  grid-column: 1 / -1;
}

.section__intro h2 {
  margin: 0;
  color: inherit;
  font-size: 44px;
  font-weight: 740;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.section__intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.agents .section__intro > p:last-child,
.security .section__intro > p:last-child {
  color: #adb6b3;
}

.product-switcher {
  display: flex;
  gap: 0;
  margin-bottom: 22px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.product-switcher__button {
  min-height: 50px;
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.product-switcher__button:hover {
  background: #eef2f1;
  color: var(--ink);
}

.product-switcher__button.active,
.product-switcher__button.is-active,
.product-switcher__button[aria-selected="true"] {
  border-bottom-color: var(--cyan-dark);
  color: var(--cyan-dark);
}

.product-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid #242a29;
  border-radius: 6px;
  background: var(--black);
}

.product-preview img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.product-preview figcaption {
  padding: 14px 18px;
  border-top: 1px solid #343a39;
  color: #c3ccca;
  font-size: 13px;
  line-height: 1.55;
}

.product-points,
.source-control__grid,
.security-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.product-points,
.source-control__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.product-points article,
.source-control__grid article {
  min-width: 0;
  padding: 27px;
  background: var(--white);
}

.product-points__index {
  margin: 0 0 20px;
  color: var(--coral);
  font: 700 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.product-points h3,
.source-control__grid h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
}

.product-points article > p:last-child,
.source-control__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  border-top: 1px solid #353b3a;
  border-bottom: 1px solid #353b3a;
}

.feature-layout__primary,
.feature-layout__secondary {
  min-width: 0;
  padding: 34px 0;
}

.feature-layout__primary {
  padding-right: 52px;
}

.feature-layout__secondary {
  padding-left: 52px;
  border-left: 1px solid #353b3a;
}

.feature-layout__label {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.agent-flow {
  margin: 0;
  padding: 0;
  list-style: none;
}

.agent-flow li {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid #303635;
}

.agent-flow strong {
  color: var(--white);
  font-size: 14px;
}

.agent-flow span,
.feature-layout__secondary p {
  color: #adb6b3;
  font-size: 14px;
}

.feature-layout__secondary h3 {
  margin: 0 0 15px;
  font-size: 25px;
  line-height: 1.3;
}

.feature-layout__secondary p {
  margin: 0;
  line-height: 1.7;
}

.feature-layout__secondary p + p {
  margin-top: 17px;
}

.security-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-color: #353b3a;
  background: #353b3a;
}

.security-list > div {
  min-width: 0;
  padding: 28px;
  background: #111515;
}

.security-list dt {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  color: var(--white);
  font-size: 16px;
  font-weight: 720;
}

.security-list dt::before {
  position: absolute;
  top: 0.44em;
  left: 1px;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

.security-list dd {
  margin: 0;
  color: #adb6b3;
  font-size: 14px;
  line-height: 1.65;
}

.download__inner {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.download__icon {
  width: 82px;
  height: 82px;
}

.download__copy h2 {
  margin: 2px 0 10px;
  color: var(--ink);
  font-size: 37px;
  line-height: 1.18;
}

.download__copy p {
  margin: 0;
  color: #46504e;
}

.download__meta {
  margin-top: 5px !important;
  font-size: 13px;
}

.download-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.download-platforms li {
  padding: 0 12px;
  border-left: 1px solid #8ca4a0;
  color: #26302e;
  font: 650 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.download-platforms li:first-child {
  padding-left: 0;
  border-left: 0;
}

.download__button {
  min-width: 192px;
  background: var(--ink);
  color: var(--white);
}

.download__button:hover {
  background: var(--cyan-dark);
  color: var(--white);
}

.noscript-message {
  margin-top: 20px !important;
  color: #46504e;
  font-size: 13px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  padding: 62px 0;
}

.brand--footer {
  color: var(--white);
}

.site-footer__inner > div > p {
  margin: 20px 0 0;
  color: #9fa8a5;
  font-size: 14px;
}

.site-footer__copyright {
  font-size: 12px !important;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-links section {
  min-width: 0;
}

.footer-links h3 {
  margin: 0 0 17px;
  color: #dce2e0;
  font-size: 12px;
  font-weight: 740;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #929c99;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.site-nav a:not(.site-nav__download)[aria-current="page"] {
  color: var(--cyan-dark);
}

.site-nav a:not(.site-nav__download)[aria-current="page"]::after {
  height: 2px;
  background: var(--cyan-dark);
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .site-nav__download[aria-current="page"] {
  border-color: var(--cyan-dark);
  background: var(--cyan-dark);
  box-shadow: inset 0 -3px 0 var(--cyan);
}

.detail-page,
.download-page {
  background: var(--white);
}

.page-hero {
  position: relative;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  background: #fbfcfc;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
  padding: 72px 0 340px;
}

.page-hero__content > * {
  max-width: 760px;
}

.page-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-size: 62px;
  font-weight: 690;
  line-height: 1.04;
}

.page-hero__content > p:not(.section__eyebrow) {
  margin: 22px 0 0;
  color: #3e4745;
  font-size: 20px;
  line-height: 1.55;
}

.page-hero .hero__actions {
  margin-top: 27px;
}

.page-hero .button--primary {
  background: var(--ink);
  color: var(--white);
}

.page-hero .button--primary:hover {
  background: #2d3634;
}

.page-hero .button--secondary {
  min-height: 42px;
  padding-inline: 3px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.page-hero .button--secondary:hover {
  border-bottom-color: var(--cyan-dark);
  background: transparent;
  color: var(--cyan-dark);
}

.page-hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 43%;
  overflow: hidden;
  border-top: 1px solid #d8dddc;
  background: #e8e6f4;
}

.page-hero__visual figure,
.page-hero__visual img {
  width: 100%;
  height: 100%;
  margin: 0;
}

.page-hero__visual img {
  object-fit: cover;
  object-position: center 16%;
}

.page-hero__visual figcaption {
  position: absolute;
  right: max(var(--gutter), calc((100% - var(--content)) / 2));
  bottom: 17px;
  left: max(var(--gutter), calc((100% - var(--content)) / 2));
  padding: 10px 14px;
  border: 1px solid #343938;
  background: rgba(12, 15, 15, 0.94);
  color: #e3e8e6;
  font: 650 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.detail-band {
  padding: 112px max(var(--gutter), calc((100% - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.detail-band--contrast {
  border-color: #303635;
  background: #101313;
  color: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  gap: 88px;
  align-items: start;
}

.detail-grid h2,
.cta-band h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 690;
  line-height: 1.12;
}

.detail-grid > div > p:not(.section__eyebrow),
.cta-band p:not(.section__eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.detail-band--contrast .detail-grid > div > p:not(.section__eyebrow) {
  color: #adb6b3;
}

.feature-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: minmax(140px, 0.72fr) minmax(0, 1.28fr);
  gap: 25px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.feature-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.detail-band--contrast .feature-list {
  border-color: #353b3a;
}

.detail-band--contrast .feature-list li {
  border-color: #353b3a;
}

.detail-band--contrast .feature-list strong {
  color: var(--white);
}

.detail-band--contrast .feature-list span {
  color: #adb6b3;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  padding: 92px max(var(--gutter), calc((100% - var(--content)) / 2));
  background: #dff5f2;
  color: var(--ink);
}

.cta-band .button--primary {
  min-width: 172px;
  background: var(--ink);
  color: var(--white);
}

.cta-band .button--primary:hover {
  background: #2d3634;
}

.download-page .page-hero {
  min-height: auto;
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background: #fbfcfc;
}

.download-page .page-hero > * {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
}

.download-page .page-hero .section__intro {
  display: block;
  margin-bottom: 42px;
}

.download-page .page-hero h1 {
  font-size: 57px;
}

.download-page .page-hero .section__intro > p:last-of-type {
  max-width: 700px;
  margin-top: 19px;
}

.download-page .page-hero .hero__actions {
  margin-top: 26px;
}

.download-page .page-hero .button--primary {
  background: var(--ink);
  color: var(--white);
}

.download-page .page-hero .button--secondary {
  min-height: 42px;
  padding-inline: 3px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.download-page .page-hero .product-preview {
  max-width: var(--content);
}

.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--content);
}

.platform-card .button {
  margin-top: 24px;
  background: var(--ink);
  color: var(--white);
}

.legal-main {
  background: var(--white);
}

.legal-hero,
.legal-layout {
  width: min(calc(100% - (var(--gutter) * 2)), 960px);
  margin-inline: auto;
}

.legal-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
}

.legal-hero > p:not(.section__eyebrow):not(.legal-meta) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-hero .legal-meta {
  margin: 18px 0 0;
  color: #7d8583;
  font-size: 13px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 68px;
  padding: 64px 0 96px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  display: grid;
  gap: 9px;
  padding-left: 17px;
  border-left: 1px solid var(--line);
}

.legal-toc strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
}

.legal-toc a {
  color: var(--muted);
  font-size: 13px;
}

.legal-toc a:hover {
  color: var(--cyan-dark);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.legal-content section + section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-size: 25px;
  line-height: 1.3;
}

.legal-content p {
  margin: 0;
  color: #4f5856;
  font-size: 15px;
  line-height: 1.85;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-footer .site-footer__inner {
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 0.7fr);
}

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

.footer-links a[aria-current="page"] {
  color: var(--cyan);
}

@media (max-width: 960px) {
  :root {
    --gutter: 24px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav .site-nav__download {
    min-width: 82px;
    margin-left: 2px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .page-hero h1,
  .download-page .page-hero h1 {
    font-size: 52px;
  }

  .page-hero__content {
    padding-top: 58px;
  }

  .detail-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .detail-grid h2,
  .cta-band h2 {
    font-size: 39px;
  }

  .section {
    padding: 72px 0;
  }

  .section__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 36px;
  }

  .section__intro h2 {
    font-size: 37px;
  }

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

  .feature-layout__primary {
    padding-right: 0;
  }

  .feature-layout__secondary {
    padding-left: 0;
    border-top: 1px solid #353b3a;
    border-left: 0;
  }

  .download__inner {
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 22px;
  }

  .download__icon {
    width: 68px;
    height: 68px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
    gap: 44px;
  }

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

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
    --announcement-height: 32px;
    --header-height: 58px;
  }

  .site-header__inner {
    position: relative;
  }

  .nav-menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    width: auto;
    display: none;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-top: 1px solid var(--line);
    border-radius: 0 0 4px 4px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(10, 15, 14, 0.1);
  }

  .site-nav.is-open,
  .site-nav[data-open] {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    min-height: 44px;
    padding: 8px 12px;
    border-bottom: 1px solid #eef1f0;
    border-left: 3px solid transparent;
    font-size: 14px;
  }

  .site-nav a:not(.site-nav__download)::after {
    display: none;
  }

  .site-nav a:not(.site-nav__download):hover {
    background: #f3f5f4;
  }

  .site-nav a:not(.site-nav__download).is-current,
  .site-nav a:not(.site-nav__download)[aria-current="location"] {
    border-left-color: var(--cyan-dark);
    background: #eaf7f6;
  }

  .site-nav .site-nav__download {
    min-height: 44px;
    margin: 9px 0 0;
    border-bottom: 0;
    border-left-color: var(--ink);
  }

  .site-nav .site-nav__download.is-current,
  .site-nav .site-nav__download[aria-current="location"] {
    border-left-color: var(--cyan-dark);
  }

  .hero {
    min-height: calc(100svh - 110px);
  }

  .hero__backdrop {
    height: 39%;
    background-position: 56% 12%;
  }

  .hero__content {
    padding: 34px 0 294px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero__detail {
    font-size: 12px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin-top: 20px;
  }

  .hero__actions .button--primary {
    width: 100%;
  }

  .capability-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    right: var(--gutter);
    bottom: 14px;
    left: var(--gutter);
  }

  .capability-rail li:nth-child(3) {
    border-right: 0;
  }

  .capability-rail li:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero__next {
    right: auto;
    bottom: 76px;
    left: var(--gutter);
  }

  .page-hero {
    min-height: calc(100svh - 106px);
  }

  .page-hero__content {
    padding: 46px 0 268px;
  }

  .page-hero h1,
  .download-page .page-hero h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .page-hero__content > p:not(.section__eyebrow) {
    margin-top: 16px;
    font-size: 17px;
  }

  .page-hero__visual {
    height: 38%;
  }

  .page-hero__visual img {
    object-position: 56% 12%;
  }

  .page-hero__visual figcaption {
    right: var(--gutter);
    bottom: 13px;
    left: var(--gutter);
    font-size: 10px;
  }

  .detail-band {
    padding: 64px var(--gutter);
  }

  .detail-grid {
    gap: 32px;
  }

  .detail-grid h2,
  .cta-band h2 {
    font-size: 31px;
  }

  .detail-grid > div > p:not(.section__eyebrow),
  .cta-band p:not(.section__eyebrow) {
    margin-top: 15px;
    font-size: 15px;
  }

  .feature-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    padding: 17px 0;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 64px var(--gutter);
  }

  .cta-band .button--primary {
    width: 100%;
  }

  .download-page .page-hero {
    padding: 60px 0;
  }

  .section {
    padding: 58px 0;
  }

  .section__intro {
    margin-bottom: 28px;
  }

  .section__intro h2 {
    font-size: 31px;
  }

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

  .product-points,
  .source-control__grid,
  .security-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-points article,
  .source-control__grid article,
  .security-list > div {
    padding: 22px 20px;
  }

  .product-preview img {
    min-height: 230px;
    object-position: center;
  }

  .agent-flow li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .download__inner {
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 17px;
  }

  .download__icon {
    width: 56px;
    height: 56px;
  }

  .download__copy h2 {
    font-size: 28px;
  }

  .download__button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    padding: 48px 0;
  }

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

  .legal-hero {
    padding: 58px 0 42px;
  }

  .legal-hero h1 {
    font-size: 38px;
  }

  .legal-hero > p:not(.section__eyebrow):not(.legal-meta) {
    font-size: 16px;
  }

  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    padding: 42px 0 64px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .legal-content section + section {
    margin-top: 38px;
    padding-top: 38px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-footer .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 40px;
  }

  .capability-rail li {
    padding-inline: 5px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Account */
.account-page {
  background: #f2f5f4;
}

.account-main {
  min-height: calc(100svh - var(--announcement-height) - var(--header-height));
  display: grid;
  align-items: center;
  padding: 72px var(--gutter) 88px;
}

.account-layout {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 96px;
  align-items: center;
  margin-inline: auto;
}

.account-intro h1 {
  max-width: 620px;
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
}

.account-intro > p:not(.section__eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.account-trust-list {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
}

.account-trust-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.account-trust-list dt {
  font-size: 13px;
  font-weight: 760;
}

.account-trust-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.account-panel {
  min-height: 520px;
  padding: 26px;
  border: 1px solid #cfd6d4;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(18, 28, 26, 0.1);
}

.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f0f3f2;
}

.account-tab {
  min-height: 40px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.account-tab.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(16, 19, 19, 0.1);
}

.account-panel__heading {
  margin: 30px 0 24px;
}

.account-panel h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.account-panel__heading p,
.account-success > p:not(.section__eyebrow),
.account-session p:not(.section__eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.account-form {
  display: grid;
  gap: 16px;
}

.account-forgot {
  justify-self: end;
  margin-top: -7px;
}

.account-security {
  min-height: 462px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.account-security .account-panel__heading {
  margin-top: 0;
}

.account-security__status {
  margin: 18px 0 0;
  padding: 11px 12px;
  border-left: 3px solid var(--cyan-dark);
  background: #edf8f6;
  color: #145f5c;
  font-size: 12px;
  line-height: 1.55;
}

.account-security__status.is-error {
  border-left-color: #c94d3f;
  background: #fff2f0;
  color: #8c2c22;
}

.account-security__back {
  align-self: flex-start;
  margin-top: 20px;
}

.account-field {
  display: grid;
  gap: 7px;
}

.account-field span {
  font-size: 12px;
  font-weight: 720;
}

.account-field input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #cbd2d0;
  border-radius: 4px;
  background: #fbfcfc;
  color: var(--ink);
  outline: none;
}

.account-field input:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(8, 125, 121, 0.12);
}

.account-error {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid #c94d3f;
  background: #fff2f0;
  color: #8c2c22;
  font-size: 12px;
}

.purchase-intent {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #d8e4e1;
  border-radius: 5px;
  background: #f5faf8;
}

.purchase-intent__head,
.session-inspector__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.purchase-intent h3,
.session-inspector h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.purchase-intent__head strong {
  flex: 0 0 auto;
  color: var(--cyan-dark);
  font-size: 20px;
}

.purchase-intent__period,
.purchase-intent__description,
.purchase-intent__status {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.purchase-intent__features {
  display: grid;
  gap: 5px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 12px;
  list-style: none;
}

.purchase-intent__features li::before {
  margin-right: 7px;
  color: var(--cyan-dark);
  content: "✓";
  font-weight: 700;
}

.purchase-intent__methods {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.purchase-intent__method {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 7px;
  border-top: 1px solid #dce8e5;
  font-size: 11px;
}

.purchase-intent__method small {
  color: var(--muted);
  text-align: right;
}

.purchase-intent__method.is-disabled {
  color: #8c8880;
}

.session-manager {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 24px;
}

.session-manager__list {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
  max-height: 620px;
  overflow: auto;
}

.session-manager__item {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfcfc;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.session-manager__item:hover,
.session-manager__item.is-active {
  border-color: var(--cyan-dark);
  background: #eff8f6;
}

.session-manager__item strong,
.session-manager__item span,
.session-manager__item small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.session-manager__item strong {
  font-size: 13px;
}

.session-manager__item span,
.session-manager__item small,
.session-inspector__head > div > p:not(.section__eyebrow) {
  color: var(--muted);
  font-size: 11px;
}

.session-inspector {
  min-width: 0;
}

.session-inspector__actions {
  display: flex;
  gap: 13px;
  flex: 0 0 auto;
}

.session-danger {
  color: #a53f37;
}

.session-rename-form {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 20px;
}

.session-rename-form .account-field {
  min-width: 0;
  flex: 1;
}

.session-rename-form .button {
  flex: 0 0 auto;
  min-height: 46px;
}

.session-manager__status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.session-message-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  margin-top: 8px;
  overflow: auto;
  padding-right: 3px;
}

.session-load-more {
  margin-top: 12px;
}

.session-message {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfcfc;
}

.session-message--user {
  border-color: #c8e4e1;
  background: #effaf8;
}

.session-message header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
}

.session-message header strong {
  color: var(--ink);
  font-size: 11px;
}

.session-message pre {
  max-width: 100%;
  margin: 0;
  overflow: auto;
  color: var(--ink);
  font: 12px/1.65 inherit;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.account-submit {
  width: 100%;
  margin-top: 4px;
}

.account-submit:disabled,
.account-session .button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.account-success,
.account-session {
  min-height: 462px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.account-success__mark,
.account-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--cyan);
  font-size: 20px;
  font-weight: 800;
}

.account-code {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: #f5f7f6;
}

.account-code span {
  color: var(--muted);
  font-size: 11px;
}

.account-code strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  text-align: center;
}

.account-code button,
.account-text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cyan-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.account-success__actions {
  width: 100%;
  display: grid;
  gap: 9px;
}

.account-success__actions .button,
.account-session .button {
  width: 100%;
}

.account-text-button {
  margin-top: 22px;
}

.account-session > div {
  margin-bottom: 30px;
}

.account-session .button--secondary {
  border-color: var(--line);
  background: #f4f7f6;
  color: var(--ink);
}

.account-session .button--secondary:hover {
  border-color: var(--cyan-dark);
  background: #e7f5f3;
  color: var(--cyan-dark);
}

.account-center {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin: 52px auto 0;
  padding: 34px;
  border: 1px solid #cfd6d4;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(18, 28, 26, 0.08);
}

.account-center__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.account-center__head h2,
.account-center__panel h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}

.account-center__head h2 {
  font-size: 30px;
}

.account-center__head p:not(.section__eyebrow),
.account-center__panel-head p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.account-center__tabs {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.account-center__tab {
  min-height: 52px;
  position: relative;
  flex: 0 0 auto;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
}

.account-center__tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.account-center__tab:hover,
.account-center__tab.is-active {
  color: var(--cyan-dark);
}

.account-center__tab.is-active::after {
  background: var(--cyan-dark);
}

.account-center__body {
  min-height: 330px;
  padding-top: 28px;
}

.account-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.account-stat-grid article {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 22px;
  background: #fbfcfc;
}

.account-stat-grid span,
.account-stat-grid small,
.account-center__label {
  color: var(--muted);
  font-size: 12px;
}

.account-stat-grid strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.account-stat-grid small {
  line-height: 1.4;
}

.account-center__columns {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  margin-top: 34px;
}

.account-center__label {
  margin-bottom: 13px;
  font-weight: 720;
}

.account-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.account-chip-list span {
  padding: 7px 10px;
  border: 1px solid #c8e4e1;
  border-radius: 3px;
  background: #effaf8;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 650;
}

.account-record-list,
.usage-model-list {
  border-top: 1px solid var(--line);
}

.account-record {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.account-record > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.account-record strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-record small,
.account-record time {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.account-record time {
  flex: 0 0 auto;
  text-align: right;
}

.account-empty {
  margin: 0;
  padding: 22px 0;
  color: var(--muted);
  font-size: 13px;
}

.account-center__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.account-center__panel-head h3 {
  font-size: 19px;
}

.account-center__panel-head > span {
  flex: 0 0 auto;
  color: var(--muted);
  font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.usage-model-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 140px;
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.usage-model-row strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.usage-model-row span,
.usage-model-row b {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.usage-model-row b {
  color: var(--cyan-dark);
}

.account-record-list--usage {
  margin-top: 30px;
}

.account-device .account-text-button {
  margin-top: 0;
  flex: 0 0 auto;
  color: #a53f37;
}

.profile-form {
  max-width: 480px;
  display: grid;
  gap: 16px;
}

.profile-form .button {
  width: fit-content;
}

.email-verification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px;
  border: 1px solid #d8e4e1;
  border-radius: 4px;
  background: #f5faf8;
}

.email-verification > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.email-verification strong {
  font-size: 12px;
}

.email-verification span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.email-verification .account-text-button {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 820px) {
  .account-main {
    padding: 52px 20px 64px;
  }

  .account-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .account-intro h1 {
    font-size: 44px;
  }

  .account-intro > p:not(.section__eyebrow) {
    font-size: 17px;
  }

  .account-panel {
    min-height: 0;
  }

  .account-center {
    width: calc(100% - 40px);
    padding: 22px;
  }

  .account-center__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .account-main {
    padding-inline: 16px;
  }

  .account-intro h1 {
    font-size: 38px;
  }

  .account-trust-list div {
    grid-template-columns: 96px 1fr;
    gap: 14px;
  }

  .account-panel {
    padding: 20px;
  }

  .account-security {
    min-height: 420px;
  }

  .email-verification {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-code {
    grid-template-columns: 1fr auto;
  }

  .account-code span {
    grid-column: 1 / -1;
  }

  .account-center {
    width: calc(100% - 32px);
    padding: 18px;
  }

  .account-center__head {
    display: block;
  }

  .account-center__head .account-text-button {
    margin-top: 16px;
  }

  .account-stat-grid {
    grid-template-columns: 1fr;
  }

  .usage-model-row {
    grid-template-columns: 1fr auto;
  }

  .usage-model-row span {
    text-align: left;
  }

  .usage-model-row b {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

/* Homepage product narrative */
.home-page {
  background: #f3f5f2;
}

.home-page .site-header {
  background: rgba(247, 249, 246, 0.97);
}

.home-page .hero {
  min-height: 0;
  display: block;
  overflow: visible;
  border-bottom: 0;
  background: #f7f9f6;
}

.home-page .hero__backdrop {
  display: none;
}

.home-page .hero__content {
  position: relative;
  width: min(calc(100% - (var(--gutter) * 2)), 1180px);
  padding: 72px 0 0;
}

.home-page .hero__content > :not(.capability-rail) {
  max-width: none;
}

.home-page .hero h1 {
  margin: 0 0 24px;
  color: var(--cyan-dark);
  font: 760 14px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
}

.home-page .hero__lead {
  max-width: 1000px;
  margin: 0;
  color: #0c0f0e;
  font-size: 70px;
  font-weight: 510;
  line-height: 1.04;
}

.home-page .hero__detail {
  max-width: 660px;
  margin: 26px 0 0;
  color: #515a57;
  font-size: 17px;
  line-height: 1.65;
}

.home-page .hero__actions {
  gap: 16px;
  margin-top: 32px;
}

.home-page .hero .button--primary {
  min-height: 52px;
  padding-inline: 24px;
  border-color: #0d1110;
  border-radius: 2px;
  background: #0d1110;
}

.home-page .hero .button--secondary {
  min-height: 52px;
  padding-inline: 0;
  font-size: 14px;
}

.hero-workspace {
  position: relative;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid #b8bfbd;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: #0a0c0c;
  box-shadow: 0 30px 70px rgba(22, 30, 28, 0.16);
  animation: hero-workspace-in 720ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-workspace__bar,
.product-preview__bar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #303534;
  background: #171a19;
  color: #aeb6b3;
  font: 620 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.hero-workspace__bar > :nth-child(2) {
  text-align: center;
}

.hero-workspace__lights {
  display: flex;
  gap: 6px;
}

.hero-workspace__lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #707775;
}

.hero-workspace__lights i:nth-child(1) {
  background: var(--coral);
}

.hero-workspace__lights i:nth-child(2) {
  background: #e3c65e;
}

.hero-workspace__lights i:nth-child(3) {
  background: var(--green);
}

.hero-workspace__live {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e0e5e3;
}

.hero-workspace__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(83, 212, 207, 0.13);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.hero-workspace > img {
  width: 100%;
  aspect-ratio: 3 / 1.68;
  object-fit: cover;
  object-position: center top;
}

.hero-workspace__status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #414745;
  border-radius: 3px;
  background: #101313;
  color: #d9dfdd;
  font: 650 10px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.hero-workspace__status span {
  padding: 10px 12px;
  border-left: 1px solid #333837;
}

.hero-workspace__status span:first-child {
  border-left: 0;
}

.hero-workspace__status span:last-child {
  color: var(--green);
}

.tool-rail {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr);
  align-items: stretch;
  border-top: 1px solid #303534;
  border-bottom: 1px solid #303534;
  background: #111413;
  color: #d8dddb;
}

.tool-rail > p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px max(var(--gutter), calc((100vw - var(--content)) / 2));
  padding-right: 24px;
  border-right: 1px solid #303534;
  color: #858e8b;
  font: 650 11px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: nowrap;
}

.tool-rail__track {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(92px, 1fr));
  overflow: hidden;
}

.tool-rail__track span {
  min-height: 62px;
  display: grid;
  place-items: center;
  border-right: 1px solid #303534;
  color: #e4e9e7;
  font: 720 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.home-page .section {
  padding: 118px 0;
}

.home-page .product {
  background: #f7f9f6;
}

.home-page .section__intro {
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.55fr);
  gap: 14px 90px;
  align-items: end;
  margin-bottom: 60px;
}

.home-page .section__intro h2 {
  font-size: 54px;
  font-weight: 560;
  line-height: 1.08;
}

.home-page .section__intro > p:last-child {
  font-size: 16px;
}

.home-page .product-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
  border: 1px solid #242927;
  border-bottom: 0;
  background: #171a19;
}

.home-page .product-switcher__button {
  min-height: 64px;
  padding: 12px 20px;
  border-right: 1px solid #343937;
  border-bottom: 3px solid transparent;
  color: #909996;
  text-align: left;
}

.home-page .product-switcher__button:last-child {
  border-right: 0;
}

.home-page .product-switcher__button span {
  margin-right: 10px;
  color: #5f6865;
  font: 650 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.home-page .product-switcher__button:hover {
  background: #202423;
  color: #f0f3f2;
}

.home-page .product-switcher__button[aria-selected="true"] {
  border-bottom-color: var(--cyan);
  background: #202423;
  color: var(--white);
}

.home-page .product-preview {
  border-radius: 0 0 6px 6px;
}

.product-preview__bar {
  grid-template-columns: 1fr 1fr;
  height: 36px;
  color: #717a77;
}

.product-preview__bar span:last-child {
  text-align: right;
}

.home-page .product-preview img {
  transition: filter 250ms ease, object-position 320ms ease, transform 320ms ease;
}

.home-page .product-preview[data-view="agents"] img {
  object-position: 72% center;
  transform: scale(1.025);
}

.home-page .product-preview[data-view="source-control"] img {
  object-position: left center;
  transform: scale(1.025);
}

.home-page .product-preview figcaption {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
}

.home-page .product-preview figcaption > span:first-child {
  max-width: 760px;
}

.home-page .product-preview figcaption a,
.text-link {
  flex: 0 0 auto;
  color: var(--cyan);
  font-weight: 700;
}

.home-page .product-points {
  border-radius: 0;
}

.home-page .product-points article {
  min-height: 210px;
}

.home-page .agents {
  background: #0d1010;
}

.home-page .feature-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  border: 1px solid #353b39;
}

.agent-console {
  padding: 0;
  background: #111514;
}

.agent-console__head {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid #353b39;
  color: #e7ebe9;
  font-size: 13px;
}

.agent-console__head strong {
  color: var(--cyan);
  font: 650 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.agent-console .agent-flow li {
  grid-template-columns: 10px minmax(150px, 0.68fr) minmax(150px, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
}

.agent-console .agent-flow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7f8885;
}

.agent-console .agent-flow i.is-running {
  background: var(--cyan);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.agent-console .agent-flow i.is-done {
  background: var(--green);
}

.agent-console .agent-flow i.is-waiting {
  background: #e3c65e;
}

.agent-console .agent-flow time {
  color: #707977;
  font: 600 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.home-page .feature-layout__secondary {
  padding: 38px;
}

.home-page .feature-layout__secondary .text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
}

@keyframes hero-workspace-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes live-pulse {
  0%, 100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .home-page .hero__content {
    padding-top: 58px;
  }

  .home-page .hero__lead {
    font-size: 58px;
  }

  .tool-rail {
    grid-template-columns: 1fr;
  }

  .tool-rail > p {
    display: none;
  }

  .tool-rail__track {
    grid-template-columns: repeat(8, minmax(110px, 1fr));
    overflow-x: auto;
  }

  .home-page .section {
    padding: 88px 0;
  }

  .home-page .section__intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-page .feature-layout {
    grid-template-columns: 1fr;
  }

  .home-page .feature-layout__secondary {
    border-top: 1px solid #353b3a;
  }
}

@media (max-width: 720px) {
  .home-page .hero {
    min-height: 0;
  }

  .home-page .hero__content {
    padding: 44px 0 0;
  }

  .home-page .hero h1 {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .home-page .hero__lead {
    font-size: 42px;
    line-height: 1.08;
  }

  .home-page .hero__detail {
    margin-top: 20px;
    font-size: 15px;
  }

  .home-page .hero__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .hero .button--secondary {
    width: fit-content;
  }

  .hero-workspace {
    margin-top: 40px;
    margin-right: calc(var(--gutter) * -1);
    margin-left: calc(var(--gutter) * -1);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .hero-workspace__bar {
    grid-template-columns: 1fr auto;
  }

  .hero-workspace__bar > :nth-child(2),
  .hero-workspace__status {
    display: none;
  }

  .hero-workspace > img {
    min-height: 320px;
    aspect-ratio: auto;
    object-position: 56% top;
  }

  .tool-rail__track span {
    min-height: 52px;
  }

  .home-page .section {
    padding: 72px 0;
  }

  .home-page .section__intro h2 {
    font-size: 38px;
  }

  .home-page .product-switcher {
    grid-template-columns: 1fr;
  }

  .home-page .product-switcher__button {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid #343937;
    border-left: 3px solid transparent;
  }

  .home-page .product-switcher__button[aria-selected="true"] {
    border-bottom-color: #343937;
    border-left-color: var(--cyan);
  }

  .home-page .product-preview img {
    min-height: 300px;
  }

  .home-page .product-preview figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .home-page .product-points article {
    min-height: 0;
  }

  .agent-console .agent-flow li {
    grid-template-columns: 8px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .agent-console .agent-flow li span {
    grid-column: 2 / -1;
  }

  .home-page .feature-layout__secondary {
    padding: 28px 22px;
  }
}

@media (max-width: 380px) {
  .home-page .hero__lead {
    font-size: 36px;
  }
}

/* Pricing */
.pricing-page {
  background: #f7f9f6;
}

.pricing-hero {
  min-height: 760px;
  background: #f7f9f6;
}

.pricing-hero__content {
  padding-top: 88px;
}

.pricing-hero h1 {
  max-width: 930px;
  font-size: 68px;
  font-weight: 540;
}

.pricing-hero__visual {
  height: 220px;
  display: grid;
  align-items: stretch;
  background: #111413;
  color: var(--white);
}

.pricing-hero__summary {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  display: grid;
  grid-template-columns: 0.55fr 0.8fr 1.6fr;
  align-items: center;
  gap: 42px;
  margin: 0 auto;
}

.pricing-hero__summary-label {
  margin: 0;
  color: var(--cyan);
  font: 700 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pricing-hero__summary > strong {
  font-size: 22px;
  line-height: 1.35;
}

.pricing-hero__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-left: 1px solid #343a38;
  list-style: none;
}

.pricing-hero__points li {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-right: 1px solid #343a38;
  color: #b6bfbc;
  font-size: 13px;
}

.pricing-plans {
  background: #f7f9f6;
}

.pricing-plans__inner,
.pricing-faq__inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.pricing-plans__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.pricing-plans__header h2,
.pricing-faq__intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: 48px;
  font-weight: 570;
  line-height: 1.12;
}

.pricing-plans__header > div > p:last-child,
.pricing-faq__intro > p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.pricing-billing-toggle {
  display: flex;
  margin: 0;
  padding: 3px;
  border: 1px solid #bcc3c1;
  border-radius: 4px;
  background: #eef1ef;
}

.pricing-billing-toggle__option {
  min-width: 92px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  color: #68716e;
  font-size: 12px;
}

.pricing-billing-toggle__option--active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(15, 20, 19, 0.1);
}

.pricing-billing-toggle input {
  position: absolute;
  opacity: 0;
}

.pricing-billing-toggle small {
  color: var(--cyan-dark);
  font-size: 9px;
}

.pricing-billing-status {
  margin: 22px 0 0;
  color: #737c79;
  font-size: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
  border: 1px solid #cbd1cf;
  background: #cbd1cf;
}

.pricing-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-left: 1px solid #cbd1cf;
  background: var(--white);
}

.pricing-card:first-child {
  border-left: 0;
}

.pricing-card--featured {
  background: #e5f7f4;
}

.pricing-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  padding: 4px 8px;
  border: 1px solid var(--cyan-dark);
  color: var(--cyan-dark);
  font: 700 9px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pricing-card__eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-dark);
  font: 700 11px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pricing-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.pricing-card__description {
  min-height: 74px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-card__price {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 24px 0;
  border-top: 1px solid #dce1df;
  border-bottom: 1px solid #dce1df;
}

.pricing-card__amount {
  font-size: 35px;
  font-weight: 650;
  line-height: 1.2;
}

.pricing-card__amount--pending {
  font-size: 23px;
}

.pricing-card__period {
  margin-top: 6px;
  color: #747d7a;
  font-size: 11px;
}

.pricing-card__action {
  width: 100%;
}

.pricing-card .button--secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.pricing-card__features {
  margin-top: 28px;
}

.pricing-card__features > p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 720;
}

.pricing-card__features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  position: relative;
  padding: 8px 0 8px 20px;
  color: #4f5855;
  font-size: 13px;
  line-height: 1.5;
}

.pricing-card__features li::before {
  position: absolute;
  top: 13px;
  left: 2px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--cyan-dark);
  border-left: 2px solid var(--cyan-dark);
  content: "";
  transform: rotate(-45deg);
}

.pricing-usage__grid {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.pricing-faq__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 96px;
}

.pricing-faq__list {
  border-top: 1px solid var(--line);
}

.pricing-faq__item {
  border-bottom: 1px solid var(--line);
}

.pricing-faq__item summary {
  position: relative;
  padding: 22px 46px 22px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.pricing-faq__item summary::-webkit-details-marker {
  display: none;
}

.pricing-faq__item summary::after {
  position: absolute;
  top: 19px;
  right: 8px;
  color: var(--cyan-dark);
  content: "+";
  font-size: 23px;
  font-weight: 400;
}

.pricing-faq__item[open] summary::after {
  content: "−";
}

.pricing-faq__item p {
  margin: -5px 50px 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.pricing-cta__actions {
  display: flex;
  gap: 10px;
}

.pricing-cta .button--secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

@media (max-width: 960px) {
  .pricing-hero h1 {
    font-size: 56px;
  }

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

  .pricing-hero__points {
    display: none;
  }

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

  .pricing-card,
  .pricing-card:first-child {
    border-top: 1px solid #cbd1cf;
    border-left: 0;
  }

  .pricing-card:first-child {
    border-top: 0;
  }

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

  .pricing-faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .pricing-hero {
    min-height: 690px;
  }

  .pricing-hero__content {
    padding: 52px 0 230px;
  }

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

  .pricing-hero__visual {
    height: 190px;
  }

  .pricing-hero__summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-hero__summary > strong {
    font-size: 20px;
  }

  .pricing-plans__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-plans__header h2,
  .pricing-faq__intro h2 {
    font-size: 34px;
  }

  .pricing-billing-toggle {
    width: fit-content;
  }

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

  .pricing-cta__actions {
    display: grid;
  }
}

/* Light editorial theme */
:root {
  --ink: #25231f;
  --muted: #67645e;
  --line: #deddd7;
  --paper: #f7f7f4;
  --white: #ffffff;
  --black: #25231f;
  --cyan: #60b9b2;
  --cyan-dark: #2f7772;
  --green: #68a979;
  --coral: #d56f55;
}

body,
.detail-page,
.download-page,
.home-page,
.pricing-page,
.account-page {
  background: #f7f7f4;
  color: var(--ink);
}

.announcement-bar {
  min-height: 34px;
  border-bottom: 1px solid #e5d9d2;
  background: #f2e9e4;
  color: #6b4c42;
}

.announcement-bar a::after {
  color: var(--coral);
}

.site-header,
.home-page .site-header {
  border-bottom-color: #e2e1dc;
  background: rgba(250, 250, 247, 0.96);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(56, 50, 42, 0.06);
}

.site-nav .site-nav__download,
.home-page .site-nav .site-nav__download {
  border-color: #d56f55;
  border-radius: 6px;
  background: #d56f55;
  color: #fff;
}

.site-nav .site-nav__download:hover,
.home-page .site-nav .site-nav__download:hover {
  border-color: #bd5d45;
  background: #bd5d45;
}

.site-nav .site-nav__account {
  color: #2f7772;
}

.home-page .hero,
.home-page .product,
.page-hero,
.download-page .page-hero,
.pricing-hero {
  background: #f7f7f4;
}

.home-page .hero h1,
.hero__eyebrow,
.section__eyebrow,
.pricing-card__eyebrow {
  color: #b85f49;
}

.home-page .hero__lead,
.page-hero h1,
.section__intro h2,
.detail-grid h2,
.cta-band h2,
.pricing-plans__header h2,
.pricing-faq__intro h2,
.account-intro h1 {
  font-family: "Songti SC", "STSong", "Iowan Old Style", Georgia, serif;
  font-weight: 600;
}

.home-page .hero__lead {
  color: #28251f;
  font-weight: 600;
}

.home-page .hero .button--primary,
.page-hero .button--primary,
.cta-band .button--primary,
.download__button,
.pricing-card .button--primary,
.account-submit {
  border-color: #d56f55;
  border-radius: 7px;
  background: #d56f55;
  color: #fff;
}

.home-page .hero .button--primary:hover,
.page-hero .button--primary:hover,
.cta-band .button--primary:hover,
.download__button:hover,
.pricing-card .button--primary:hover,
.account-submit:hover {
  border-color: #bd5d45;
  background: #bd5d45;
  color: #fff;
}

.home-page .hero .button--secondary,
.page-hero .button--secondary {
  border-bottom-color: #8b8780;
  color: #3e3a34;
}

.hero-workspace {
  border-color: #c8c5bd;
  box-shadow: 0 28px 70px rgba(66, 57, 47, 0.13);
}

.tool-rail {
  border-color: #ddd8cf;
  background: #eeefea;
  color: #383630;
}

.tool-rail > p {
  border-right-color: #d6d2c9;
  color: #7c7770;
}

.tool-rail__track span {
  border-right-color: #d6d2c9;
  color: #393630;
}

.home-page .product-switcher {
  border-color: #d7d4cc;
  background: #efefeb;
}

.home-page .product-switcher__button {
  border-right-color: #d7d4cc;
  color: #6f6b64;
}

.home-page .product-switcher__button:hover,
.home-page .product-switcher__button[aria-selected="true"] {
  background: #fff;
  color: #2d2a25;
}

.home-page .product-switcher__button[aria-selected="true"] {
  border-bottom-color: #d56f55;
}

.home-page .product-preview {
  border-color: #c9c5bd;
  background: #fff;
}

.home-page .product-preview figcaption {
  border-top-color: #dedbd3;
  background: #fff;
  color: #625e57;
}

.home-page .product-preview figcaption a,
.text-link {
  color: #b85f49;
}

.home-page .product-points,
.source-control__grid,
.security-list {
  border-color: #dedbd4;
  background: #dedbd4;
}

.home-page .product-points article,
.source-control__grid article,
.security-list > div {
  background: #fff;
}

.home-page .agents,
.home-page .security,
.detail-band--contrast,
.pricing-usage {
  border-color: #dedbd4;
  background: #f0f1ec;
  color: var(--ink);
}

.home-page .agents .section__intro > p:last-child,
.home-page .security .section__intro > p:last-child,
.detail-band--contrast .detail-grid > div > p:not(.section__eyebrow),
.detail-band--contrast .feature-list span {
  color: #69665f;
}

.home-page .feature-layout,
.home-page .feature-layout__secondary,
.agent-console__head,
.agent-console .agent-flow li,
.detail-band--contrast .feature-list,
.detail-band--contrast .feature-list li {
  border-color: #d9d6ce;
}

.agent-console {
  background: #fff;
}

.agent-console__head,
.agent-console .agent-flow strong,
.detail-band--contrast .feature-list strong {
  color: #2c2924;
}

.agent-console__head strong {
  color: #2f7772;
}

.security-list dt {
  color: var(--ink);
}

.security-list dd {
  color: var(--muted);
}

.download,
.cta-band {
  background: #e6f0ec;
}

.site-footer {
  border-top: 1px solid #ddd9d1;
  background: #efefea;
  color: var(--ink);
}

.brand--footer {
  color: var(--ink);
}

.site-footer__inner > div > p,
.footer-links a {
  color: #6d6962;
}

.footer-links h3 {
  color: #34312c;
}

.footer-links a:hover {
  color: #b85f49;
}

.page-hero__visual {
  border-top-color: #d8d4cb;
  background: #ebeae5;
}

.page-hero__visual figcaption {
  border-color: #c7c1b8;
  background: rgba(250, 250, 247, 0.94);
  color: #514d46;
}

.pricing-hero__visual {
  border-color: #d9d5cc;
  background: #eeefea;
  color: var(--ink);
}

.pricing-hero__summary-label {
  color: #b85f49;
}

.pricing-hero__points {
  border-left-color: #d8d4ca;
}

.pricing-hero__points li {
  border-right-color: #d8d4ca;
  color: #68645d;
}

.pricing-plans {
  background: #f7f7f4;
}

.pricing-card--featured {
  background: #f2ece8;
}

.pricing-card__badge {
  border-color: #b85f49;
  color: #b85f49;
}

.pricing-card__features li::before {
  border-color: #2f7772;
}

.account-panel,
.account-center {
  border-color: #d8d5cd;
  box-shadow: 0 20px 50px rgba(65, 56, 45, 0.08);
}

.account-submit {
  background: #d56f55 !important;
}

@media (max-width: 720px) {
  .home-page .product-switcher__button[aria-selected="true"] {
    border-bottom-color: #d7d4cc;
    border-left-color: #d56f55;
  }

  .site-nav {
    background: #fafaf7;
  }
}

/* Product detail showcases */
.detail-page .page-hero h1 {
  max-width: 980px;
  font-weight: 600;
}

.detail-page .page-hero__content > p:not(.section__eyebrow) {
  max-width: 760px;
  color: #5f5b54;
}

.detail-page .detail-band {
  background: #f7f7f4;
}

.detail-page .detail-band:nth-of-type(even) {
  background: #f1f2ed;
}

.detail-page .detail-band--contrast {
  background: #f1f2ed;
  color: var(--ink);
}

.detail-page .product-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid #d8d5cd;
  border-radius: 8px;
  background: #ecece7;
}

.detail-page .product-switcher__button {
  min-height: 46px;
  flex: 1 0 auto;
  padding: 9px 15px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #6d6962;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.detail-page .product-switcher__button span {
  margin-right: 7px;
  color: #a39e95;
  font: 650 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.detail-page .product-switcher__button:hover {
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.detail-page .product-switcher__button.is-active,
.detail-page .product-switcher__button[aria-selected="true"] {
  background: #fff;
  color: #a95340;
  box-shadow: 0 1px 6px rgba(61, 52, 43, 0.09);
}

.product-story {
  min-height: 430px;
}

.product-story .detail-grid {
  align-items: center;
}

.product-story .feature-list {
  padding: 10px 24px;
  border: 1px solid #ddd9d1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.product-story .feature-list li:first-child {
  border-top: 0;
}

.compatibility-band .feature-list strong {
  color: #2f7772;
}

/* Agent page */
.agent-board-band > [data-reveal]:first-child,
.source-review > .section__intro,
.security-request-flow > .section__intro,
.security-controls > .section__intro,
.source-delivery > .section__intro {
  width: min(100%, var(--content));
  margin: 0 auto 42px;
}

.agent-board-band > [data-reveal]:first-child h2 {
  max-width: 760px;
  margin: 0;
  font: 600 48px/1.12 "Songti SC", "STSong", "Iowan Old Style", Georgia, serif;
}

.agent-board-band > [data-reveal]:first-child > p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.agent-board {
  width: min(100%, var(--content));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
}

.agent-board__column {
  min-width: 0;
  padding: 12px;
  border: 1px solid #ddd9d1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.agent-board__column > header {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 3px 10px;
}

.agent-board__column > header h3 {
  margin: 0;
  font-size: 12px;
}

.agent-board__column > header span {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6e5df;
  color: #77736b;
  font-size: 10px;
}

.agent-board__column ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agent-board__column li button {
  width: 100%;
  min-height: 98px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid #ddd9d1;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.agent-board__column li button:hover,
.agent-board__column li button[aria-selected="true"] {
  border-color: #d88a75;
  box-shadow: 0 6px 18px rgba(70, 58, 46, 0.08);
}

.agent-board__column li button[aria-selected="true"] {
  background: #f5e9e4;
}

.agent-board__column li button strong {
  font-size: 13px;
  line-height: 1.45;
}

.agent-board__column li button span {
  color: #77736c;
  font-size: 11px;
  line-height: 1.45;
}

.agent-board__column [data-agent-status="running"] button span {
  color: #2f7772;
}

.agent-board__column [data-agent-status="approval-required"] button span {
  color: #a95340;
}

.agent-task-details {
  width: min(100%, var(--content));
  margin: 12px auto 0;
}

.agent-task-detail {
  min-height: 240px;
  padding: 28px;
  border: 1px solid #d8d4cb;
  border-radius: 8px;
  background: #fff;
}

.agent-task-detail h3 {
  margin: 0 0 24px;
  font: 600 27px/1.25 "Songti SC", "STSong", "Iowan Old Style", Georgia, serif;
}

.agent-task-detail dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid #dfdcd4;
  background: #dfdcd4;
}

.agent-task-detail dl > div {
  min-width: 0;
  padding: 17px;
  background: #fafaf7;
}

.agent-task-detail dt {
  margin-bottom: 8px;
  color: #8b867e;
  font-size: 10px;
  font-weight: 700;
}

.agent-task-detail dd {
  margin: 0;
  color: #555149;
  font-size: 12px;
  line-height: 1.55;
}

/* Source control page */
.source-hero__visual,
.security-hero__visual {
  display: grid;
  align-items: center;
  padding: 24px max(var(--gutter), calc((100% - var(--content)) / 2));
}

.source-workbench {
  width: 100%;
  overflow: hidden;
  border: 1px solid #d3cfc6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(62, 54, 44, 0.1);
}

.source-workbench__bar,
.source-workbench__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 20px;
}

.source-workbench__bar {
  border-bottom: 1px solid #e1ded7;
  background: #f0f0eb;
}

.source-workbench__bar p {
  margin: 0;
  color: #625e57;
  font: 620 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.source-workbench__summary {
  justify-content: flex-start;
  color: #5d5952;
  font-size: 12px;
}

.source-workbench__summary span {
  padding-right: 18px;
  border-right: 1px solid #dedbd3;
}

.source-workbench__summary span:last-child {
  border-right: 0;
  color: #2f7772;
}

.source-showcase {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.source-mode-panels {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #d5d1c8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(66, 56, 45, 0.07);
}

.source-mode-panel {
  min-height: 430px;
  padding: 24px;
}

.source-review-workspace {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dedbd3;
  background: #dedbd3;
}

.source-changes,
.source-diff,
.source-commit {
  min-width: 0;
  background: #fafaf7;
}

.source-changes {
  grid-row: 1 / span 2;
  padding: 18px;
}

.source-changes > header,
.source-diff__header,
.source-mode-panel > header,
.source-commit > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.source-changes h3,
.source-changes h4,
.source-commit h3,
.source-mode-panel h3 {
  margin: 0;
}

.source-changes h4 {
  margin-top: 20px;
  color: #817c74;
  font-size: 10px;
  text-transform: uppercase;
}

.source-changes ul,
.source-mode-panel > ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.source-changes li button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #5f5b53;
  font: 600 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-align: left;
}

.source-changes li button[aria-pressed="true"] {
  background: #f2e8e3;
  color: #8c4939;
}

.source-diff__header {
  padding: 13px 16px;
  border-bottom: 1px solid #dedbd3;
}

.source-diff__header p {
  margin: 0;
  font-size: 11px;
}

.source-diff__header button,
.source-mode-panel button,
.source-commit button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #cfcac1;
  border-radius: 6px;
  background: #fff;
  color: #4c4841;
  font-size: 11px;
}

.source-diff pre {
  min-height: 240px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  background: #fbfbf8;
  color: #4d4942;
  font: 550 11px/1.7 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.source-diff code span {
  display: block;
  padding-inline: 8px;
}

.source-diff [data-diff-line="add"] {
  background: #e7f2e8;
  color: #376443;
}

.source-diff [data-diff-line="remove"] {
  background: #f7e7e3;
  color: #8c4939;
}

.source-diff [data-diff-line="meta"] {
  color: #2f7772;
}

.source-commit {
  padding: 16px;
  border-top: 1px solid #dedbd3;
}

.source-commit label {
  display: block;
  margin: 12px 0 6px;
  color: #716d65;
  font-size: 11px;
}

.source-commit textarea {
  width: 100%;
  resize: vertical;
  padding: 10px;
  border: 1px solid #d6d2c9;
  border-radius: 6px;
  background: #fff;
}

.source-commit > div {
  margin-top: 10px;
  color: #77736b;
  font-size: 10px;
}

.source-commit [data-source-status][data-status="error"] {
  color: #a34e3f;
}

.source-commit [data-source-status][data-status="success"],
.source-mode-panel__status {
  color: #2f7772;
}

.source-mode-panel__status {
  margin: -8px 0 18px;
  font-size: 11px;
}

.source-mode-panel > ul li,
.source-mode-panel > dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border-bottom: 1px solid #e2dfd8;
}

.source-mode-panel > dl {
  margin: 24px 0;
}

.source-mode-panel > dl dt,
.source-mode-panel > dl dd {
  margin: 0;
}

.source-delivery__steps {
  width: min(100%, var(--content));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.source-delivery__steps li {
  min-width: 0;
  padding: 24px;
  background: #fff;
}

/* Security page */
.security-hero__visual {
  height: 46%;
}

.security-boundary-map {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.46fr 1fr 0.46fr 1fr;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-boundary-node {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid #d7d3ca;
  border-radius: 8px;
  background: #fff;
}

.security-boundary-node p,
.security-boundary-node h2,
.security-boundary-node span {
  margin: 0;
}

.security-boundary-node p {
  color: #b45b45;
  font: 700 9px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.security-boundary-node h2 {
  margin-top: 8px;
  font-size: 18px;
}

.security-boundary-node span {
  margin-top: 10px;
  color: #716d65;
  font-size: 11px;
  line-height: 1.5;
}

.security-boundary-edge {
  display: grid;
  place-items: center;
  padding: 10px;
  color: #77736c;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.security-boundary-edge::after {
  width: 72%;
  height: 1px;
  background: #bdb8ae;
  content: "";
}

.security-flow-diagram {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.security-flow-diagram ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  border: 1px solid #d8d4cb;
  background: #d8d4cb;
  list-style: none;
}

.security-flow-diagram li {
  min-width: 0;
  padding: 22px;
  background: #fff;
}

.security-flow-diagram h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.security-flow-diagram li > p:last-child,
.security-flow-diagram figcaption {
  color: #6c6861;
  font-size: 12px;
  line-height: 1.65;
}

.security-flow-diagram figcaption {
  margin-top: 14px;
}

.security-boundary-list > div {
  display: grid;
  grid-template-columns: minmax(170px, 0.6fr) minmax(0, 1.4fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid #dedbd3;
}

.security-boundary-list dt,
.security-boundary-list dd {
  margin: 0;
}

.security-control-grid {
  width: min(100%, var(--content));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
}

.security-control-grid article {
  min-height: 220px;
}

@media (max-width: 960px) {
  .agent-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-task-detail dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-delivery__steps,
  .security-flow-diagram ol,
  .security-control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-boundary-map {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .security-boundary-edge {
    min-height: 48px;
  }

  .security-boundary-edge::after {
    width: 1px;
    height: 24px;
  }
}

@media (max-width: 720px) {
  .agent-board-band > [data-reveal]:first-child h2 {
    font-size: 34px;
  }

  .agent-board {
    grid-template-columns: 1fr;
  }

  .agent-task-detail {
    padding: 22px 18px;
  }

  .agent-task-detail dl,
  .source-delivery__steps,
  .security-flow-diagram ol,
  .security-control-grid {
    grid-template-columns: 1fr;
  }

  .source-hero__visual,
  .security-hero__visual {
    height: 42%;
    padding: 16px var(--gutter);
  }

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

  .source-changes {
    grid-row: auto;
  }

  .source-diff pre {
    min-height: 300px;
  }

  .security-boundary-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Pricing and billing commerce */
.pricing-grid--loading {
  min-height: 360px;
  place-items: center;
}

.pricing-loading,
.pricing-load-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 48px 24px;
  color: var(--muted);
  text-align: center;
}

.pricing-load-error {
  color: #a34e3f;
}

.pricing-payment-status {
  margin: 14px 0 0;
  color: #6f746f;
  font-size: 12px;
}

.billing-panel {
  display: grid;
  gap: 32px;
}

.billing-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.billing-summary > div {
  display: grid;
  gap: 5px;
}

.billing-summary span,
.billing-summary small {
  color: var(--muted);
  font-size: 11px;
}

.billing-summary strong {
  font-size: 28px;
  line-height: 1.2;
}

.billing-checkout,
.billing-active-order,
.billing-orders {
  min-width: 0;
}

.billing-checkout {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.billing-checkout .account-center__panel-head > strong,
.billing-active-order .account-center__panel-head > strong {
  color: #a95340;
  font-size: 22px;
}

.billing-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 20px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.billing-plan > div {
  display: grid;
  gap: 6px;
}

.billing-plan span,
.billing-plan small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.billing-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.billing-methods legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.billing-method {
  min-width: 0;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d5d1c8;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.billing-method:has(input:checked) {
  border-color: #2f7772;
  box-shadow: inset 0 0 0 1px #2f7772;
}

.billing-method.is-disabled {
  background: #f1f1ed;
  color: #8c8880;
  cursor: not-allowed;
}

.billing-method > span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.billing-method strong,
.billing-method small {
  overflow-wrap: anywhere;
}

.billing-method strong {
  font-size: 13px;
}

.billing-method small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.billing-message {
  min-height: 22px;
  margin: 14px 0 4px;
  color: #a34e3f;
  font-size: 12px;
}

.billing-submit {
  min-width: 180px;
}

.billing-submit:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.billing-active-order {
  padding: 24px;
  border: 1px solid #d8d5cd;
  border-radius: 7px;
  background: #fafaf7;
}

.billing-qr {
  width: 220px;
  height: 220px;
  display: block;
  margin: 20px 0;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.billing-active-order > .button {
  width: max-content;
  margin: 18px 0;
}

.billing-order > div:last-child {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.billing-order b {
  font-size: 13px;
}

@media (max-width: 720px) {
  .session-manager {
    grid-template-columns: 1fr;
  }

  .session-manager__list {
    max-height: 260px;
  }

  .session-rename-form {
    align-items: stretch;
    flex-direction: column;
  }

  .session-rename-form .button {
    width: 100%;
  }

  .billing-methods {
    grid-template-columns: 1fr;
  }

  .billing-summary,
  .billing-plan {
    align-items: flex-start;
    flex-direction: column;
  }

  .billing-submit,
  .billing-active-order > .button {
    width: 100%;
  }

  .billing-order > div:last-child {
    justify-items: start;
  }
}

/* ============ Website optimization: browser feature + hover polish ============ */

.home-page .browser {
  background: #e6f0e8;
}

.home-page .browser .source-control__grid article {
  background: #fbfdfb;
}

.home-page .browser .section__intro > p:last-child {
  color: #57635c;
}

.product-story--browser .feature-list strong {
  color: #2f7772;
}

.site-nav a,
.footer-links a,
.text-link,
.product-switcher__button,
.button,
.tool-rail__track span,
.agent-flow time {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.button--primary:hover,
.button--secondary:hover {
  transform: translateY(-1px);
}

.product-points article,
.source-control__grid article,
.security-list > div,
.feature-layout__primary,
.feature-layout__secondary {
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-points article:hover,
.source-control__grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 20, 18, 0.08);
}

.tool-rail__track span:hover {
  color: var(--cyan-dark);
}

@media (prefers-reduced-motion: reduce) {
  .button--primary:hover,
  .button--secondary:hover,
  .product-points article:hover,
  .source-control__grid article:hover {
    transform: none;
  }
}

/* ============ Homepage visual redesign ============ */
.home-page {
  background: #f4f6f1;
}

.home-page .site-header {
  background: rgba(248, 249, 245, 0.88);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid #e4e6df;
  box-shadow: none;
}

.home-page .hero {
  background: #fbfcf8;
  border-bottom: 1px solid #e4e6df;
}

.home-page .hero__content {
  padding-top: 84px;
}

.home-page .hero h1 {
  color: #2f7772;
  letter-spacing: 0.16em;
  font-weight: 720;
}

.home-page .hero__lead {
  max-width: 1040px;
  margin-top: 18px;
  color: #161a17;
  font-size: 76px;
  font-weight: 520;
  line-height: 1.02;
}

.home-page .hero__detail {
  max-width: 620px;
  margin-top: 28px;
  color: #565e5a;
  font-size: 18px;
  line-height: 1.72;
}

.home-page .hero .button--primary {
  min-height: 54px;
  padding-inline: 26px;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(213, 111, 85, 0.22);
}

.home-page .hero .button--secondary {
  min-height: 54px;
  padding-inline: 2px;
  font-size: 15px;
  font-weight: 650;
}

.hero-workspace {
  margin-top: 64px;
  border: 1px solid rgba(22, 26, 24, 0.14);
  border-radius: 14px;
  box-shadow: 0 42px 96px rgba(22, 30, 28, 0.2), 0 10px 28px rgba(22, 30, 28, 0.08);
  transform-origin: top center;
}

.hero-workspace__bar {
  height: 46px;
  padding: 0 18px;
  border-radius: 14px 14px 0 0;
  background: #191e1c;
}

.hero-workspace__lights i {
  width: 9px;
  height: 9px;
}

.hero-workspace > img {
  aspect-ratio: 3 / 1.9;
  object-position: center top;
}

.hero-workspace__status {
  right: 22px;
  bottom: 22px;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tool-rail {
  grid-template-columns: minmax(170px, 0.2fr) minmax(0, 1fr);
  border-top: 1px solid #e4e6df;
  border-bottom: 1px solid #e4e6df;
  background: #ffffff;
  color: #1a1e1c;
}

.tool-rail > p {
  border-right: 1px solid #eceee9;
  color: #7c8480;
  font-weight: 650;
}

.tool-rail__track span {
  border-right: 1px solid #f0f2ed;
  color: #3d4541;
  font-weight: 650;
}

.tool-rail__track span:hover {
  color: #2f7772;
  background: #f7f9f5;
}

.home-page .section {
  padding: 124px 0;
}

.home-page .product {
  background: #ffffff;
}

.home-page .section__intro {
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.5fr);
  gap: 14px 88px;
  align-items: end;
  margin-bottom: 64px;
}

.home-page .section__intro h2 {
  font-size: 56px;
  font-weight: 560;
  line-height: 1.06;
}

.home-page .section__eyebrow {
  letter-spacing: 0.14em;
}

.home-page .product-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 0;
  padding: 6px;
  border: 1px solid #d9ddd6;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: #eef1eb;
}

.home-page .product-switcher__button {
  min-height: 58px;
  padding: 10px 18px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 8px 8px 0 0;
  color: #66706b;
  font-size: 15px;
  font-weight: 720;
}

.home-page .product-switcher__button span {
  margin-right: 9px;
  color: #98a19c;
}

.home-page .product-switcher__button:hover {
  background: #e5e9e2;
  color: #1a1e1c;
}

.home-page .product-switcher__button[aria-selected="true"] {
  border-bottom-color: #2f7772;
  background: #ffffff;
  color: #161a17;
}

.home-page .product-switcher__button[aria-selected="true"] span {
  color: #2f7772;
}

.home-page .product-preview {
  border: 1px solid #d9ddd6;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 24px 56px rgba(22, 30, 28, 0.1);
}

.product-preview__bar {
  grid-template-columns: 1fr 1fr;
  height: 38px;
  color: #6d7672;
}

.home-page .product-preview figcaption {
  min-height: 66px;
  padding: 18px 22px;
  border-top-color: #eceee9;
  color: #4a524e;
}

.home-page .product-preview figcaption a,
.text-link {
  color: #2f7772;
}

.home-page .product-points {
  border: 1px solid #e4e6df;
  border-radius: 12px;
  background: #eceee9;
}

.home-page .product-points article {
  min-height: 216px;
  padding: 30px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-page .product-points article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(22, 30, 28, 0.1);
  position: relative;
  z-index: 1;
}

.home-page .product-points__index {
  margin-bottom: 24px;
  color: #d56f55;
}

.home-page .agents {
  background: #101513;
}

.home-page .agents .section__intro > p:last-child {
  color: #a9b3ae;
}

.home-page .feature-layout {
  border: 1px solid #2c3431;
  border-radius: 12px;
  overflow: hidden;
}

.agent-console {
  background: #151a18;
}

.agent-console__head {
  min-height: 60px;
  padding: 0 26px;
}

.agent-console .agent-flow li {
  padding: 24px 26px;
}

.home-page .feature-layout__secondary {
  padding: 42px;
}

.home-page .source-control {
  background: #fbfcf8;
}

.home-page .source-control__grid {
  border: 1px solid #e4e6df;
  border-radius: 12px;
  background: #eceee9;
}

.home-page .source-control__grid article {
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-page .source-control__grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(22, 30, 28, 0.1);
  position: relative;
  z-index: 1;
}

.home-page .security {
  background: #101513;
}

.home-page .security .section__intro > p:last-child {
  color: #a9b3ae;
}

.home-page .security-list {
  border: 1px solid #2c3431;
  border-radius: 12px;
  background: #2c3431;
}

.home-page .security-list > div {
  background: #151a18;
}

.home-page .download {
  background: #eaf3ee;
}

.home-page .download__inner {
  background: #ffffff;
  border: 1px solid #dce6df;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(22, 30, 28, 0.08);
}


@media (max-width: 720px) {
  .hero-workspace__bar {
    border-radius: 0;
  }

  .home-page .hero__lead {
    font-size: 44px;
  }

  .home-page .product-switcher {
    border-radius: 0;
  }

  .home-page .product-switcher__button {
    min-height: 52px;
    font-size: 14px;
  }

  .home-page .product-preview {
    border-radius: 0;
  }

  .home-page .product-points,
  .home-page .source-control__grid,
  .home-page .security-list {
    border-radius: 0;
  }

  .home-page .feature-layout {
    border-radius: 0;
  }
}

/* ============ Homepage motion & polish ============ */

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: #2f7772;
  pointer-events: none;
}

.back-to-top {
  position: fixed;
  z-index: 150;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #d8ddd6;
  border-radius: 50%;
  background: #ffffff;
  color: #2f7772;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 10px 26px rgba(22, 30, 28, 0.14);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(22, 30, 28, 0.18);
}

.home-page .hero__content > * {
  opacity: 0;
  animation: hero-rise 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.home-page .hero__content > :nth-child(1) { animation-delay: 40ms; }
.home-page .hero__content > :nth-child(2) { animation-delay: 120ms; }
.home-page .hero__content > :nth-child(3) { animation-delay: 200ms; }
.home-page .hero__content > :nth-child(4) { animation-delay: 280ms; }
.home-page .hero__content > :nth-child(5) { animation-delay: 400ms; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.tool-rail__track {
  display: flex;
  overflow: hidden;
  animation: tool-rail-scroll 30s linear infinite;
}

.tool-rail:hover .tool-rail__track,
.tool-rail:focus-within .tool-rail__track {
  animation-play-state: paused;
}

.tool-rail__group {
  min-width: 0;
  flex: 0 0 50%;
  display: grid;
  grid-template-columns: repeat(8, minmax(92px, 1fr));
}

@keyframes tool-rail-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-stats {
  padding: 72px var(--gutter);
  border-bottom: 1px solid #e4e6df;
  background: #ffffff;
}

.home-stats__inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-stats__item {
  padding: 30px 26px;
  border: 1px solid #e8eae4;
  border-radius: 12px;
  background: #fbfcf8;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-stats__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(22, 30, 28, 0.1);
}

.home-stats__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: #161a17;
  font: 560 44px/1.1 "Songti SC", "STSong", "Iowan Old Style", Georgia, serif;
}

.home-stats__number strong {
  font-weight: 560;
}

.home-stats__number i {
  color: #2f7772;
  font: 700 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  font-style: normal;
}

.home-stats__item p {
  margin: 12px 0 0;
  color: #6b736f;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .home-stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-stats {
    padding: 44px var(--gutter);
  }

  .home-stats__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-stats__item {
    padding: 22px 20px;
  }

  .home-stats__number {
    font-size: 38px;
  }

  .tool-rail__group {
    grid-template-columns: repeat(8, minmax(110px, 1fr));
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
  }
}

/* =========================================================
   Claude.ai-inspired redesign (global, all pages)
   Warm minimal editorial: cream paper, ink text, terracotta accent
   ========================================================= */
:root {
  --ink: #1f1e1d;
  --muted: #6b6965;
  --line: #e8e5df;
  --paper: #faf9f5;
  --white: #ffffff;
  --black: #1f1e1d;
  --cyan: #d97757;
  --cyan-dark: #b85c3e;
  --green: #7d9a7d;
  --coral: #d97757;
}

body {
  background: var(--paper);
  color: var(--ink);
}

::selection {
  background: rgba(217, 119, 87, 0.25);
  color: var(--ink);
}

h1,
h2,
h3 {
  font-family: "Songti SC", "STSong", "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

/* ---- Header / nav ---- */
.site-header {
  background: rgba(250, 249, 245, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-nav a {
  color: var(--ink);
  opacity: 0.8;
}

.site-nav a:hover,
.site-nav a.is-current,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--ink);
}

.site-nav__account {
  opacity: 0.8;
}

.site-nav__download {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  opacity: 1;
}

.site-nav__download:hover {
  background: #3a3836;
  border-color: #3a3836;
}

.announcement-bar {
  background: #f1ece4;
  color: #6b5346;
}

/* ---- Buttons ---- */
.button {
  border-radius: 10px;
  font-weight: 600;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button--primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button--primary:hover {
  background: #3a3836;
  border-color: #3a3836;
  box-shadow: 0 8px 20px rgba(31, 30, 29, 0.18);
}

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

.button--secondary:hover {
  border-color: #cfccc6;
}

/* ---- Homepage hero ---- */
.home-page .hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.home-page .hero h1 {
  color: var(--coral);
}

.home-page .hero__lead {
  color: var(--ink);
}

.home-page .hero__detail {
  color: var(--muted);
}

.home-page .hero .button--primary {
  box-shadow: 0 6px 18px rgba(31, 30, 29, 0.16);
}

.hero-workspace {
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 36px 84px rgba(31, 30, 29, 0.12), 0 8px 20px rgba(31, 30, 29, 0.06);
}

.hero-workspace__bar,
.product-preview__bar {
  background: #f7f6f2;
  border-bottom-color: var(--line);
  color: var(--muted);
}

.hero-workspace__live {
  color: var(--ink);
}

.hero-workspace__live i {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.14);
}

.hero-workspace__lights i:nth-child(1) {
  background: var(--coral);
}

.hero-workspace__lights i:nth-child(2) {
  background: #e0b455;
}

.hero-workspace__lights i:nth-child(3) {
  background: #7d9a7d;
}

.hero-workspace__status {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--muted);
  box-shadow: 0 10px 30px rgba(31, 30, 29, 0.12);
}

.hero-workspace__status span {
  border-left-color: var(--line);
}

.hero-workspace__status span:last-child {
  color: #5f805f;
}

/* ---- Tool rail ---- */
.tool-rail {
  border-top-color: var(--line);
  border-bottom-color: var(--line);
  background: var(--white);
  color: var(--muted);
}

.tool-rail > p {
  border-right-color: var(--line);
  color: var(--muted);
}

.tool-rail__track span {
  border-right-color: #f1efeb;
  color: var(--muted);
  font-weight: 500;
}

.tool-rail__track span:hover {
  color: var(--coral);
  background: #fbfaf7;
}

/* ---- Stats ---- */
.home-stats {
  background: var(--paper);
  border-bottom-color: var(--line);
}

.home-stats__item {
  border-color: var(--line);
  background: var(--white);
}

.home-stats__number {
  color: var(--ink);
  font-weight: 540;
}

.home-stats__number i {
  color: var(--coral);
}

.home-stats__item p {
  color: var(--muted);
}

/* ---- Homepage sections ---- */
.home-page .product,
.home-page .source-control {
  background: var(--white);
}

.home-page .browser {
  background: #f4f0e9;
}

.home-page .agents,
.home-page .security {
  background: var(--paper);
  color: var(--ink);
}

.home-page .agents .section__intro > p:last-child,
.home-page .security .section__intro > p:last-child {
  color: var(--muted);
}

.home-page .download {
  background: #f4f0e9;
}

.home-page .download__inner {
  background: var(--white);
  border-color: var(--line);
}

/* ---- Switcher + preview ---- */
.home-page .product-switcher {
  border-color: var(--line);
  background: #f1efeb;
}

.home-page .product-switcher__button {
  color: var(--muted);
  font-weight: 600;
}

.home-page .product-switcher__button span {
  color: #b0aca5;
}

.home-page .product-switcher__button:hover {
  background: #e9e6e0;
  color: var(--ink);
}

.home-page .product-switcher__button[aria-selected="true"] {
  border-bottom-color: var(--coral);
  background: var(--white);
  color: var(--ink);
}

.home-page .product-switcher__button[aria-selected="true"] span {
  color: var(--coral);
}

.home-page .product-preview {
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 24px 56px rgba(31, 30, 29, 0.08);
}

.home-page .product-preview figcaption {
  border-top-color: var(--line);
  color: var(--muted);
}

.home-page .product-preview figcaption a,
.text-link {
  color: var(--cyan-dark);
}

/* ---- Cards ---- */
.home-page .product-points,
.home-page .source-control__grid,
.home-page .security-list {
  border-color: var(--line);
  background: var(--line);
}

.home-page .product-points article,
.home-page .source-control__grid article,
.home-page .security-list > div {
  background: var(--white);
}

.home-page .product-points__index {
  color: var(--coral);
}

/* ---- Feature layout (agents) ---- */
.home-page .feature-layout {
  border-color: var(--line);
  background: var(--white);
}

.agent-console {
  background: var(--white);
}

.agent-console__head {
  border-bottom-color: var(--line);
  color: var(--ink);
}

.agent-console__head strong {
  color: var(--coral);
}

.agent-console .agent-flow li {
  border-bottom-color: #f1efeb;
}

.agent-console .agent-flow i {
  background: #d8d5cf;
}

.agent-console .agent-flow i.is-running {
  background: var(--coral);
}

.agent-console .agent-flow i.is-done {
  background: #7d9a7d;
}

.agent-console .agent-flow i.is-waiting {
  background: #e0b455;
}

.agent-console .agent-flow time {
  color: var(--muted);
}

.home-page .feature-layout__label {
  color: var(--coral);
}

.home-page .feature-layout__secondary p {
  color: var(--muted);
}

/* ---- Footer ---- */
.site-footer {
  background: #f0ede7;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer .brand--footer span {
  color: var(--muted);
}

.footer-links a {
  color: var(--ink);
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--coral);
}

/* ---- Subpages: detail bands & heroes ---- */
.detail-page .page-hero,
.download-page .page-hero,
.pricing-page .page-hero {
  background: var(--paper);
}

.detail-page .detail-band {
  background: var(--paper);
}

.detail-page .detail-band:nth-of-type(even) {
  background: #f4f1eb;
}

.detail-band--contrast {
  border-color: var(--line);
  background: #f4f1eb;
  color: var(--ink);
}

.detail-band--contrast .detail-grid > div > p:not(.section__eyebrow),
.detail-band--contrast .feature-list span {
  color: var(--muted);
}

.detail-band--contrast .feature-list strong {
  color: var(--ink);
}

.download,
.cta-band {
  background: #f4f1eb;
}

.cta-band p:not(.section__eyebrow) {
  color: var(--muted);
}

.pricing-hero__visual {
  background: #1f1e1d;
}

/* ---- Subpage switcher & feature lists ---- */
.detail-page .product-switcher {
  border-color: var(--line);
  background: #f1efeb;
}

.detail-page .product-switcher__button {
  color: var(--muted);
}

.detail-page .product-switcher__button.is-active,
.detail-page .product-switcher__button[aria-selected="true"] {
  background: var(--white);
  color: var(--ink);
}

.product-story .feature-list {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.product-story--browser .feature-list strong {
  color: var(--cyan-dark);
}

/* ---- Scroll progress / back-to-top ---- */
.scroll-progress {
  background: var(--coral);
}

.back-to-top {
  border-color: var(--line);
  background: var(--white);
  color: var(--coral);
}

/* =========================================================
   Homepage layout v3 (modern centered SaaS composition)
   ========================================================= */

.home-page .hero {
  padding: 96px 0 0;
  text-align: center;
}

.home-page .hero__content {
  width: min(calc(100% - (var(--gutter) * 2)), 840px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .hero__eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font: 720 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .hero h1 {
  margin: 0 0 22px;
  font-size: 13px;
}

.home-page .hero__lead {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  line-height: 1.04;
}

.home-page .hero__detail {
  max-width: 620px;
  margin: 26px auto 0;
}

.home-page .hero__actions {
  justify-content: center;
  margin-top: 34px;
}

.hero-workspace {
  width: min(calc(100% - (var(--gutter) * 2)), 1100px);
  margin: 66px auto 0;
  border-bottom: 1px solid var(--line);
  border-radius: 14px;
}

.home-page .section {
  padding: 124px 0;
}

.home-page .section__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
  text-align: center;
}

.home-page .section__intro h2 {
  max-width: 760px;
  font-size: 52px;
  line-height: 1.1;
}

.home-page .section__intro > p:last-child {
  max-width: 640px;
  margin: 0;
}

.home-page .product-switcher {
  width: min(calc(100% - (var(--gutter) * 2)), 900px);
  margin: 0 auto;
}

.home-page .product-preview {
  width: min(calc(100% - (var(--gutter) * 2)), 1100px);
  margin: 0 auto;
}

.home-page .product-points {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin: 34px auto 0;
}

/* Agents split */
.agents__inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.agents__copy h2 {
  margin: 0 0 20px;
  font-size: 52px;
  line-height: 1.1;
}

.agents__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.agents__points {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.agents__points li {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.agents__points strong {
  color: var(--ink);
}

.agents__points span {
  color: var(--muted);
}

.agents__copy .text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 26px;
  font-weight: 650;
}

.agents__visual {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(31, 30, 29, 0.08);
}

/* Capability grid */
.capability-grid {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.capability-grid article {
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.capability-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(31, 30, 29, 0.1);
}

.capability-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 560;
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Security grid */
.security-grid {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.security-grid > div {
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.security-grid dt {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 620;
}

.security-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Download centered card */
.home-page .download {
  background: var(--paper);
}

.home-page .download__inner {
  width: min(calc(100% - (var(--gutter) * 2)), 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 52px 56px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 56px rgba(31, 30, 29, 0.08);
  text-align: left;
}

.home-page .download__copy h2 {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.15;
}

.home-page .download__copy p:not(.section__eyebrow) {
  margin: 0;
  color: var(--muted);
}

.home-page .download__meta {
  margin-top: 8px;
  font-size: 13px;
}

.home-page .download-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.home-page .download-platforms li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f6f2;
  color: var(--muted);
  font-size: 12px;
}

.home-page .download__button {
  min-height: 52px;
  padding-inline: 26px;
}

@media (max-width: 960px) {
  .home-page .hero__lead {
    font-size: 56px;
  }

  .agents__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

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

  .home-page .section__intro h2,
  .agents__copy h2 {
    font-size: 44px;
  }
}

@media (max-width: 720px) {
  .home-page .hero {
    padding: 64px 0 0;
  }

  .home-page .hero__lead {
    font-size: 40px;
  }

  .hero-workspace {
    width: calc(100% + (var(--gutter) * 2));
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    border-radius: 0;
  }

  .home-page .product-switcher {
    grid-template-columns: 1fr;
  }

  .home-page .download__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 40px 28px;
  }

  .agents__points li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
