:root { --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif; --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { margin: 0; font-family: var(--font-sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: transparent; border: 0; cursor: pointer; }
svg, img { vertical-align: middle; }
/* Shared by the React pages and generated compute pages. */
:root {
  --site-gutter: clamp(20px, 4vw, 96px);
  --site-content-max: 2240px;
}

.site-container,
.product-container {
  box-sizing: border-box;
  width: min(calc(100% - var(--site-gutter) * 2), var(--site-content-max));
  margin-inline: auto;
}

.site-container > *,
.product-container > * {
  min-width: 0;
}

.product-page {
  --product-ink: #182330;
  --product-muted: #606b78;
  --product-line: #e1e6ec;
  --product-paper: #f7f9fb;
  --product-blue: #377bda;
  color: var(--product-ink);
  background: #fff;
  letter-spacing: 0;
}

.product-page *,
.product-page *::before,
.product-page *::after {
  box-sizing: border-box;
}
.product-page :is(h1, h2, h3, p) {
  margin: 0;
}
.product-page :is(ul, ol) {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-page :is(a, button) {
  -webkit-tap-highlight-color: transparent;
}
.product-page :is(a, button):focus-visible {
  outline: 2px solid var(--product-blue);
  outline-offset: 5px;
}
.product-page :is(h1, h2, h3) {
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.product-page p {
  text-wrap: pretty;
}
.product-page svg {
  flex-shrink: 0;
}
.product-page [hidden] {
  display: none !important;
}
.product-page section[id] {
  scroll-margin-top: 24px;
}
.product-skip-link {
  position: fixed;
  z-index: 60;
  top: 8px;
  left: 16px;
  padding: 12px 20px;
  color: #fff;
  background: var(--product-blue);
  transform: translateY(-160%);
}
.product-skip-link:focus {
  transform: translateY(0);
}

.product-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--product-line);
  background: #ffffffef;
  backdrop-filter: blur(16px);
}
.product-header-inner {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.product-brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 650;
}
.product-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.product-desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.product-desktop-nav a {
  position: relative;
  padding-block: 23px;
  color: var(--product-muted);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.product-desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--product-blue);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.product-desktop-nav a:hover::after,
.product-desktop-nav a[aria-current]::after {
  transform: scaleX(1);
}
.product-desktop-nav a:hover,
.product-desktop-nav a[aria-current] {
  color: var(--product-blue);
}
.product-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-language {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 4px;
  color: var(--product-muted);
  font-size: 13px;
}
.product-language:hover,
.product-menu-toggle:hover {
  background: var(--product-paper);
  color: var(--product-blue);
}
.product-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 22px;
  border: 1px solid var(--product-blue);
  border-radius: 5px;
  background: var(--product-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  transition:
    background 180ms,
    border-color 180ms,
    transform 180ms;
}
.product-button:hover {
  border-color: #2c66b8;
  background: #2c66b8;
  transform: translateY(-1px);
}
.product-button:active {
  transform: translateY(1px);
}
.product-header-contact {
  min-height: 36px;
  padding: 7px 14px;
  font-size: 12px;
  gap: 10px;
}
.product-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.product-mobile-nav {
  display: none;
}
.product-text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--product-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  transition: color 180ms;
}
.product-text-link:hover {
  color: var(--product-blue);
}
.product-text-link svg {
  transition: transform 180ms;
}
.product-text-link:hover svg {
  transform: translateX(3px);
}

.product-hero {
  padding: 88px 0 36px;
  background: #fff;
}
.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #76818e;
  font-size: 12px;
  line-height: 1.8;
}
.product-breadcrumb a:hover {
  color: var(--product-blue);
}
.product-breadcrumb span {
  color: var(--product-muted);
}
.product-hero-copy {
  max-width: 960px;
  margin: 24px auto 0;
  text-align: center;
}
.product-eyebrow {
  color: var(--product-blue);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}
.product-hero h1 {
  margin-top: 14px;
  font-size: 50px;
  font-weight: 650;
  line-height: 1.2;
}
.product-hero h1 span {
  display: inline-block;
}
.product-hero h1 span + span {
  margin-left: 12px;
}
.product-hero .product-hero-claim {
  margin-top: 16px;
  color: #30485f;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
  text-wrap: balance;
}
.product-hero .product-hero-description {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--product-muted);
  font-size: 15px;
  line-height: 1.9;
}
.product-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 24px;
}
.product-hero .product-hero-note {
  margin-top: 16px;
  color: #75808d;
  font-size: 12px;
  line-height: 1.75;
}

.product-flow-band {
  border-block: 1px solid var(--product-line);
  background: #f7f9fb;
}
.product-flow {
  padding-block: 20px 30px;
}
.product-flow figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--product-line);
  color: var(--product-muted);
  font-size: 11px;
  line-height: 1.7;
}
.product-flow figcaption span:first-child {
  color: var(--product-ink);
  font-size: 13px;
  font-weight: 550;
}
.product-flow-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1.3fr) 36px minmax(
      0,
      1fr
    );
  align-items: center;
  gap: 22px;
  padding-top: 24px;
}
.product-flow-label {
  color: #75808d;
  font-size: 11px;
}
.product-flow-sources ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
  margin-top: 12px;
}
.product-flow-sources li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #455363;
  font-size: 12px;
  line-height: 1.6;
}
.product-flow-sources svg {
  color: #798b9d;
}
.product-flow-arrow {
  color: #9db7d8;
  justify-self: center;
}
.product-flow-asset {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}
.product-flow-asset img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-flow-asset h2 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}
.product-flow-asset p {
  margin-top: 8px;
  color: var(--product-muted);
  font-size: 12px;
  line-height: 1.8;
}
.product-flow-action h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--product-blue);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}
.product-flow-action ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin-top: 12px;
}
.product-flow-action li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--product-muted);
  font-size: 11px;
  line-height: 1.6;
}
.product-flow-action li svg {
  color: #448575;
}

.product-section {
  padding-block: 80px;
}
.product-section-muted {
  border-block: 1px solid var(--product-line);
  background: var(--product-paper);
}
.product-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 36px;
}
.product-section-heading h2,
.product-final h2 {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.48;
}
.product-description {
  color: var(--product-muted);
  font-size: 15px;
  line-height: 1.9;
}
.product-number {
  flex-shrink: 0;
  color: #8b98a6;
  font-family: var(--font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.product-comparison {
  border-top: 1px solid var(--product-line);
}
.product-comparison-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 600;
}
.product-comparison-head p:first-child {
  color: #7b8490;
}
.product-comparison-head p:last-child {
  color: var(--product-blue);
}
.product-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 23px 0;
  border-top: 1px solid var(--product-line);
}
.product-comparison-row:last-child {
  border-bottom: 1px solid var(--product-line);
}
.product-comparison-issue {
  display: flex;
  align-items: baseline;
  gap: 24px;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.8;
}
.product-comparison-value {
  display: flex;
  align-items: center;
  gap: 24px;
}
.product-comparison-value svg {
  color: #8cadda;
}
.product-comparison-value > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: baseline;
  gap: 20px;
}
.product-comparison-value h3 {
  font-size: 16px;
  font-weight: 600;
}
.product-comparison-value p {
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.8;
}

.product-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-journey li {
  display: grid;
  position: relative;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 26px 30px 26px 0;
  border-top: 1px solid #dce3eb;
}
.product-journey li:not(:nth-child(3n + 1)) {
  padding-left: 26px;
  border-left: 1px solid #dce3eb;
}
.product-journey li:nth-child(n + 4) {
  border-bottom: 1px solid #dce3eb;
}
.product-journey-number {
  padding-top: 4px;
  color: var(--product-blue);
  font-family: var(--font-mono);
  font-size: 13px;
}
.product-journey h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
.product-journey p {
  margin-top: 9px;
  color: var(--product-muted);
  font-size: 13px;
  line-height: 1.9;
}
.product-journey-arrow {
  position: absolute;
  right: 16px;
  top: 33px;
  color: #a5b1be;
}

.product-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
}
.product-capability {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 0 32px;
  border-top: 1px solid var(--product-line);
}
.product-capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.product-capability-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #edf4fe;
  color: var(--product-blue);
}
.product-capability:nth-child(2) .product-capability-icon,
.product-capability:nth-child(3) .product-capability-icon {
  background: #edf5f2;
  color: #428570;
}
.product-capability h3 {
  margin-top: 8px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.5;
}
.product-capability-description {
  flex: 1;
  margin-top: 12px !important;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.9;
}
.product-capability ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-top: 24px;
}
.product-capability li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #536173;
  font-size: 12px;
  line-height: 1.7;
}
.product-capability li svg {
  color: var(--product-blue);
}

.product-cycle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 100px;
}
.product-cycle {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 1;
  container-type: inline-size;
  justify-self: center;
}
.product-cycle-ring {
  position: absolute;
  inset: 14%;
  border: 1px solid #b8cde7;
  border-radius: 50%;
}
.product-cycle-ring::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed #dee6ef;
  border-radius: 50%;
}
.product-cycle-center {
  display: flex;
  position: absolute;
  inset: 32% 29%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.product-cycle-center img {
  width: clamp(44px, 14cqi, 100px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-cycle-center span:first-of-type {
  font-size: clamp(12px, 2.8cqi, 18px);
  font-weight: 600;
}
.product-cycle-center span:last-child {
  color: #768597;
  font-size: clamp(10px, 2.4cqi, 15px);
}
.product-cycle-arrow {
  position: absolute;
  padding: 2px;
  background: var(--product-paper);
  color: #7ca2d2;
}
.product-cycle-phase {
  display: flex;
  position: absolute;
  width: clamp(70px, 19cqi, 136px);
  min-height: 56px;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 6px;
  transform: translate(-50%, -50%);
  background: var(--product-paper);
  color: #4d5e70;
  transition:
    border-color 180ms,
    background 180ms,
    color 180ms;
}
.product-cycle-phase span:first-child {
  color: #8f9fb0;
  font-family: var(--font-mono);
  font-size: 10px;
}
.product-cycle-phase span:last-child {
  font-size: clamp(12px, 3cqi, 18px);
  font-weight: 600;
  line-height: 1.4;
}
.product-cycle-phase:hover {
  border-color: #c4d9f4;
  background: #fff;
}
.product-cycle-phase[aria-selected="true"] {
  border-color: var(--product-blue);
  background: #fff;
  color: var(--product-blue);
  box-shadow: 0 5px 16px #377bda0c;
}
.product-cycle-phase[aria-selected="true"] span:first-child {
  color: var(--product-blue);
}
.product-cycle-copy {
  min-width: 0;
}
.product-cycle-panel {
  min-height: 218px;
  padding-top: 10px;
}
.product-cycle-count {
  color: #9aa5b2;
  font-family: var(--font-mono);
  font-size: 13px;
}
.product-cycle-count span {
  color: var(--product-blue);
}
.product-cycle-panel h3 {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
}
.product-cycle-panel > p:last-of-type {
  max-width: 400px;
  min-height: 54px;
  margin-top: 12px;
  color: var(--product-muted);
  font-size: 16px;
  line-height: 1.8;
}
.product-cycle-panel .product-text-link {
  margin-top: 14px;
  color: var(--product-blue);
}
.product-cycle-note {
  margin-top: 22px;
  padding-top: 23px;
  border-top: 1px solid #dce3eb;
}
.product-cycle-note p:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #466885;
  font-size: 13px;
  font-weight: 600;
}
.product-cycle-note p:last-child {
  margin-top: 12px;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.9;
}

.product-deployment {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 80px;
}
.product-layers article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid var(--product-line);
}
.product-layers article .product-number {
  padding-top: 4px;
  color: var(--product-blue);
}
.product-layers h3 {
  font-size: 18px;
  font-weight: 600;
}
.product-layers p {
  margin-top: 9px;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.8;
}
.product-private {
  padding: 24px 0 12px 32px;
  border-top: 1px solid var(--product-line);
  border-left: 1px solid var(--product-line);
}
.product-private > svg {
  color: #4d8879;
}
.product-private h3 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}
.product-private > p {
  margin-top: 12px;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.9;
}
.product-private ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin-top: 24px;
}
.product-private li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #536173;
  font-size: 12px;
  line-height: 1.6;
}
.product-private li svg {
  color: #4d8879;
}
.product-deployment-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px !important;
  padding: 19px 0;
  border-block: 1px solid #dce6f3;
  color: #466885;
  font-size: 14px;
  line-height: 1.8;
}
.product-deployment-note svg {
  color: var(--product-blue);
}
.product-industries {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-industries li {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-top: 1px solid #dce3eb;
  font-size: 15px;
}
.product-industries li:not(:nth-child(4n + 1)) {
  border-left: 1px solid #dce3eb;
}
.product-industries li:nth-child(n + 5) {
  border-bottom: 1px solid #dce3eb;
}
.product-industries svg {
  color: #64839d;
}

.product-final {
  padding-block: 72px;
  background: #fff;
}
.product-final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 100px;
}
.product-final h2 {
  font-size: 32px;
}
.product-final .product-description {
  max-width: 660px;
  margin-top: 16px;
}
.product-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.product-final-actions .product-button {
  max-width: 280px;
}
.product-footer {
  padding-block: 28px 24px;
  border-top: 1px solid var(--product-line);
  background: #fafbfc;
}
.product-footer-top {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--product-line);
}
.product-footer-top p {
  flex: 1;
  color: var(--product-muted);
  font-size: 13px;
}
.product-footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  color: #7a8591;
  font-size: 11px;
  line-height: 1.7;
}
.product-footer-legal a:hover {
  color: var(--product-blue);
}

@media (min-width: 1600px) {
  .product-hero h1 {
    font-size: 56px;
  }
  .product-section {
    padding-block: 88px;
  }
}

@media (max-width: 1199px) {
  .product-desktop-nav {
    display: none;
  }
  .product-menu-toggle {
    display: flex;
  }
  .product-mobile-nav:not([hidden]) {
    display: block;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    border-top: 1px solid var(--product-line);
    background: #fff;
  }
  .product-mobile-nav .product-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 12px 20px;
  }
  .product-mobile-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--product-muted);
    font-size: 14px;
  }
  .product-mobile-nav a[aria-current],
  .product-mobile-nav a:hover {
    color: var(--product-blue);
  }
  .product-section-heading {
    gap: 44px;
  }
  .product-flow-track {
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1.35fr) 20px minmax(
        0,
        1fr
      );
  }
  .product-flow-sources ul {
    gap: 10px;
  }
  .product-flow-asset {
    gap: 12px;
  }
  .product-flow-asset img {
    width: 48px;
    height: 48px;
  }
  .product-flow-asset h2 {
    font-size: 17px;
  }
  .product-cycle-layout {
    gap: 48px;
  }
  .product-deployment {
    gap: 48px;
  }
  .product-final-inner {
    gap: 48px;
  }
}

@media (max-width: 899px) {
  .product-hero h1 {
    font-size: 42px;
  }
  .product-hero .product-hero-claim {
    font-size: 20px;
  }
  .product-flow-track {
    grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1.2fr) 20px minmax(
        0,
        1fr
      );
    gap: 10px;
  }
  .product-flow-sources ul {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .product-flow-asset {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .product-flow-asset img {
    width: 40px;
    height: 40px;
  }
  .product-section {
    padding-block: 60px;
  }
  .product-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 680px;
  }
  .product-section-heading h2 {
    font-size: 28px;
  }
  .product-comparison-head,
  .product-comparison-row {
    gap: 32px;
  }
  .product-comparison-value > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .product-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-journey li:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }
  .product-journey li:nth-child(n + 4) {
    border-bottom: 0;
  }
  .product-journey li:nth-child(even) {
    padding-left: 24px;
    border-left: 1px solid #dce3eb;
  }
  .product-journey li:nth-child(n + 5) {
    border-bottom: 1px solid #dce3eb;
  }
  .product-capabilities {
    column-gap: 40px;
  }
  .product-capability h3 {
    font-size: 21px;
  }
  .product-cycle-layout {
    gap: 24px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
  .product-cycle-phase {
    width: 70px;
    min-height: 50px;
  }
  .product-cycle-phase span:last-child {
    font-size: 12px;
  }
  .product-cycle-center img {
    width: 48px;
    height: 48px;
  }
  .product-cycle-center span:first-of-type {
    font-size: 11px;
  }
  .product-cycle-center span:last-child {
    font-size: 10px;
  }
  .product-cycle-panel > p:last-of-type {
    font-size: 14px;
  }
  .product-cycle-note p:last-child {
    font-size: 12px;
  }
  .product-deployment {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-private {
    padding-left: 0;
    border-left: 0;
  }
  .product-private ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-industries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-industries li:not(:nth-child(4n + 1)) {
    border-left: 0;
  }
  .product-industries li:nth-child(n + 5) {
    border-bottom: 0;
  }
  .product-industries li:nth-child(even) {
    border-left: 1px solid #dce3eb;
  }
  .product-industries li:nth-child(n + 7) {
    border-bottom: 1px solid #dce3eb;
  }
  .product-final-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-final-actions {
    flex-direction: row;
    justify-content: flex-start;
    gap: 26px;
  }
}

@media (max-width: 599px) {
  .product-header-inner {
    gap: 12px;
  }
  .product-brand {
    gap: 8px;
    font-size: 18px;
  }
  .product-brand img {
    width: 32px;
    height: 32px;
  }
  .product-header-actions {
    gap: 4px;
  }
  .product-header-contact {
    display: none;
  }
  .product-mobile-nav .product-container {
    grid-template-columns: 1fr;
  }
  .product-hero {
    padding-block: 84px 28px;
  }
  .product-breadcrumb {
    gap: 5px;
    font-size: 10px;
  }
  .product-hero-copy {
    margin-top: 24px;
    text-align: left;
  }
  .product-hero .product-eyebrow {
    font-size: 9px;
  }
  .product-hero h1 {
    margin-top: 14px;
    font-size: 34px;
    line-height: 1.24;
  }
  .product-hero h1 span {
    display: block;
  }
  .product-hero h1 span + span {
    margin: 3px 0 0;
  }
  .product-hero .product-hero-claim {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.65;
    text-wrap: pretty;
  }
  .product-hero .product-hero-description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.85;
  }
  .product-hero-actions {
    justify-content: flex-start;
    gap: 22px;
    margin-top: 22px;
  }
  .product-button {
    min-height: 44px;
    gap: 12px;
    padding: 11px 16px;
    font-size: 13px;
  }
  .product-hero .product-hero-note {
    margin-top: 16px;
    font-size: 11px;
  }
  .product-flow {
    padding-block: 18px 24px;
  }
  .product-flow figcaption {
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 14px;
    font-size: 10px;
  }
  .product-flow figcaption span:first-child {
    flex-shrink: 0;
    font-size: 11px;
  }
  .product-flow figcaption span:last-child {
    text-align: right;
  }
  .product-flow-track {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 18px;
  }
  .product-flow-label {
    display: none;
  }
  .product-flow-sources ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin: 0;
  }
  .product-flow-sources li {
    font-size: 12px;
  }
  .product-flow-arrow {
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
  }
  .product-flow-asset {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .product-flow-asset img {
    width: 52px;
    height: 52px;
  }
  .product-flow-asset h2 {
    font-size: 18px;
  }
  .product-flow-asset p {
    margin-top: 4px;
    font-size: 12px;
  }
  .product-flow-action h3 {
    justify-content: center;
    font-size: 13px;
  }
  .product-flow-action ul {
    justify-content: center;
    margin-top: 10px;
  }
  .product-section {
    padding-block: 48px;
  }
  .product-section-heading {
    gap: 16px;
    margin-bottom: 26px;
  }
  .product-section-heading h2 {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.5;
  }
  .product-description {
    font-size: 14px;
    line-height: 1.85;
  }
  .product-eyebrow {
    font-size: 10px;
  }
  .product-comparison-head {
    gap: 16px;
    padding-block: 13px;
    font-size: 11px;
  }
  .product-comparison-head p:last-child {
    text-align: right;
  }
  .product-comparison-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 20px;
  }
  .product-comparison-issue {
    gap: 14px;
    font-size: 13px;
  }
  .product-comparison-value {
    gap: 14px;
    margin-left: 27px;
    align-items: flex-start;
  }
  .product-comparison-value svg {
    margin-top: 3px;
  }
  .product-comparison-value > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .product-comparison-value h3 {
    font-size: 15px;
  }
  .product-comparison-value p {
    font-size: 13px;
  }
  .product-journey {
    grid-template-columns: 1fr;
  }
  .product-journey li {
    grid-template-columns: 30px 1fr;
    padding: 20px 8px 22px 0 !important;
    gap: 12px;
    border-left: 0 !important;
    border-bottom: 0 !important;
  }
  .product-journey li:last-child {
    border-bottom: 1px solid #dce3eb !important;
  }
  .product-journey h3 {
    font-size: 17px;
  }
  .product-journey p {
    margin-top: 7px;
    padding-right: 18px;
  }
  .product-journey-arrow {
    top: 24px;
    right: 0;
    width: 14px;
    transform: rotate(90deg);
  }
  .product-capabilities {
    grid-template-columns: 1fr;
  }
  .product-capability {
    padding-block: 24px 28px;
  }
  .product-capability-top {
    margin-bottom: 18px;
  }
  .product-capability h3 {
    font-size: 21px;
  }
  .product-capability-description {
    font-size: 14px;
  }
  .product-capability ul {
    gap: 10px 16px;
    padding-top: 18px;
  }
  .product-capability li {
    font-size: 11px;
  }
  .product-cycle-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-cycle {
    width: min(100%, 370px);
  }
  .product-cycle-center {
    gap: 6px;
  }
  .product-cycle-center span:first-of-type {
    font-size: 12px;
  }
  .product-cycle-center span:last-child {
    font-size: 10px;
  }
  .product-cycle-panel {
    min-height: 192px;
    padding-top: 16px;
    border-top: 1px solid #dce3eb;
  }
  .product-cycle-panel h3 {
    margin-top: 10px;
    font-size: 23px;
  }
  .product-cycle-panel > p:last-of-type {
    min-height: 52px;
    margin-top: 9px;
    font-size: 14px;
  }
  .product-cycle-panel .product-text-link {
    margin-top: 8px;
  }
  .product-cycle-note {
    margin-top: 12px;
    padding-top: 18px;
  }
  .product-cycle-note p:last-child {
    font-size: 13px;
  }
  .product-layers article {
    grid-template-columns: 24px 1fr;
    gap: 16px;
    padding-block: 20px;
  }
  .product-layers h3 {
    font-size: 17px;
  }
  .product-layers p {
    font-size: 13px;
  }
  .product-private h3 {
    font-size: 21px;
  }
  .product-private ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }
  .product-private li {
    font-size: 12px;
  }
  .product-deployment-note {
    align-items: flex-start;
    padding-block: 18px;
    font-size: 12px;
  }
  .product-deployment-note svg {
    margin-top: 2px;
  }
  .product-industries li {
    gap: 12px;
    min-height: 74px;
    padding: 16px 12px;
    font-size: 13px;
    line-height: 1.6;
  }
  .product-industries li:nth-child(odd) {
    padding-left: 0;
  }
  .product-industries svg {
    width: 21px;
    height: 21px;
  }
  .product-final {
    padding-block: 48px;
  }
  .product-final h2 {
    font-size: 26px;
  }
  .product-final-actions {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .product-final-actions .product-button {
    max-width: 100%;
  }
  .product-footer-top {
    flex-wrap: wrap;
    gap: 14px;
  }
  .product-footer-top p {
    flex-basis: calc(100% - 120px);
    font-size: 11px;
  }
  .product-footer-top .product-text-link {
    font-size: 12px;
    min-height: 32px;
  }
  .product-footer-legal {
    font-size: 10px;
    gap: 12px;
  }
}

@media (max-width: 359px) {
  .product-cycle-phase {
    width: 62px;
    min-height: 46px;
    padding-inline: 2px;
  }
  .product-cycle-phase span:last-child {
    font-size: 11px;
  }
  .product-cycle-center img {
    width: 40px;
    height: 40px;
  }
  .product-cycle-center span:first-of-type {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-page *,
  .product-page *::before,
  .product-page *::after {
    transition: none !important;
  }
}

/* Compute extends the existing Product.css design language. */
.compute-page .compute-hero { padding-bottom: 44px; }
.compute-page .product-hero-copy { max-width: 880px; margin-top: 38px; }
.compute-page .product-hero h1 { letter-spacing: -.025em; }
.compute-page .product-hero-description { max-width: 740px; }
.compute-page .compute-service-note { margin: 18px auto 0; color: #75808d; font-size: 12px; line-height: 1.8; }
.compute-page .compute-band { padding: 26px 0 30px; }
.compute-page .compute-band-top { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--product-line); font-size: 12px; color: var(--product-muted); }
.compute-page .compute-band-top strong { color: var(--product-ink); font-weight: 550; }
.compute-page .compute-flow { display: grid; grid-template-columns: 1fr 24px 1.3fr 24px 1fr; gap: 28px; align-items: center; margin-top: 26px; }
.compute-page .compute-flow h2, .compute-page .compute-flow h3 { font-size: 18px; font-weight: 600; line-height: 1.5; }
.compute-page .compute-flow p { margin-top: 7px; color: var(--product-muted); font-size: 13px; line-height: 1.85; }
.compute-page .compute-flow-arrow { color: #8faed6; }
.compute-page .compute-flow-core { display: flex; align-items: center; gap: 20px; }
.compute-page .compute-flow-core img { width: 56px; height: 56px; object-fit: contain; }
.compute-page .compute-flow-core h2 { color: var(--product-blue); }
.compute-page .compute-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.compute-page .compute-intro-lead { font-size: 22px; font-weight: 500; line-height: 1.8; }
.compute-page .compute-intro-copy p + p { margin-top: 16px; }
.compute-page .compute-values { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 36px; margin-top: 38px; }
.compute-page .compute-values li { padding-top: 22px; border-top: 1px solid var(--product-line); }
.compute-page .compute-values h3 { font-size: 17px; font-weight: 600; }
.compute-page .compute-values p { margin-top: 10px; color: var(--product-muted); font-size: 14px; line-height: 1.85; }
.compute-page .compute-offers { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.compute-page .compute-offer { padding-top: 24px; border-top: 2px solid var(--product-blue); }
.compute-page .compute-offer h3 { margin: 14px 0 12px; font-size: 25px; font-weight: 600; }
.compute-page .compute-offer ul { display: grid; gap: 12px; margin-top: 24px; }
.compute-page .compute-offer li { display: flex; align-items: baseline; gap: 12px; font-size: 14px; color: var(--product-muted); line-height: 1.8; }
.compute-page .compute-offer li::before { content: '✓'; color: #448575; }
.compute-page .compute-offer .product-text-link { margin-top: 24px; color: var(--product-blue); }
.compute-page .compute-together { margin-top: 32px; padding: 20px 0 0; border-top: 1px solid var(--product-line); color: #4e6681; font-size: 14px; line-height: 1.9; }
.compute-page .compute-tabs { display: flex; border-bottom: 1px solid var(--product-line); gap: 32px; }
.compute-page .compute-tab { padding: 15px 0; border-bottom: 2px solid transparent; color: var(--product-muted); font-size: 15px; font-weight: 550; white-space: nowrap; }
.compute-page .compute-tab[aria-selected='true'] { color: var(--product-blue); border-bottom-color: var(--product-blue); }
.compute-page .compute-scenario { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; padding: 38px 0 0; }
.compute-page .compute-scenario h3 { margin-top: 12px; font-size: 27px; font-weight: 600; line-height: 1.5; }
.compute-page .compute-scenario .product-description { margin-top: 16px; }
.compute-page .compute-scenario dl { display: grid; gap: 0; margin: 0; }
.compute-page .compute-scenario dl div { display: grid; grid-template-columns: 88px 1fr; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--product-line); }
.compute-page .compute-scenario dl div:first-child { border-top: 1px solid var(--product-line); }
.compute-page .compute-scenario dt { color: var(--product-blue); font-size: 13px; font-weight: 600; line-height: 1.85; }
.compute-page .compute-scenario dd { margin: 0; color: var(--product-muted); font-size: 14px; line-height: 1.85; }
.compute-page .compute-scenario-note { margin-top: 26px; color: #75808d; font-size: 12px; line-height: 1.8; }
.compute-page .compute-governance { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.compute-page .compute-governance article { display: grid; grid-template-columns: 32px 1fr; gap: 14px; padding: 28px 0; border-top: 1px solid var(--product-line); }
.compute-page .compute-governance svg { color: var(--product-blue); margin-top: 4px; }
.compute-page .compute-governance h3 { font-size: 18px; font-weight: 600; }
.compute-page .compute-governance p { margin-top: 10px; color: var(--product-muted); font-size: 14px; line-height: 1.9; }
.compute-page .compute-terms { display: grid; grid-template-columns: .65fr 1fr; gap: 56px; padding: 28px 32px; border-left: 3px solid var(--product-blue); background: #edf3fa; margin-top: 12px; }
.compute-page .compute-terms h3 { font-size: 18px; font-weight: 600; line-height: 1.6; }
.compute-page .compute-terms p { font-size: 14px; line-height: 1.9; color: #52667f; }
.compute-page .compute-steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 30px; counter-reset: step; }
.compute-page .compute-steps li { padding-top: 22px; border-top: 1px solid var(--product-line); }
.compute-page .compute-steps li::before { counter-increment: step; content: '0' counter(step); font-family: var(--font-mono); color: var(--product-blue); font-size: 13px; }
.compute-page .compute-steps h3 { margin: 14px 0 10px; font-size: 18px; font-weight: 600; }
.compute-page .compute-steps p { color: var(--product-muted); font-size: 14px; line-height: 1.85; }
.compute-page .compute-faq { max-width: 860px; margin: 0 auto; }
.compute-page .compute-faq details { border-top: 1px solid var(--product-line); }
.compute-page .compute-faq details:last-child { border-bottom: 1px solid var(--product-line); }
.compute-page .compute-faq summary { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 23px 0; font-weight: 550; font-size: 16px; cursor: pointer; list-style: none; line-height: 1.75; }
.compute-page .compute-faq summary::-webkit-details-marker { display: none; }
.compute-page .compute-faq summary::after { content: '+'; color: var(--product-blue); font-size: 22px; font-weight: 400; }
.compute-page .compute-faq details[open] summary::after { content: '−'; }
.compute-page .compute-faq details p { padding-bottom: 24px; max-width: 780px; color: var(--product-muted); font-size: 14px; line-height: 1.95; }
.compute-page .compute-types { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0 36px; }
.compute-page .compute-type { padding: 28px 0; border-top: 1px solid var(--product-line); }
.compute-page .compute-type-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.compute-page .compute-type h3 { margin-top: 16px; font-size: 23px; font-weight: 600; }
.compute-page .compute-type p { margin-top: 12px; color: var(--product-muted); font-size: 14px; line-height: 1.85; }
.compute-page .compute-type .compute-type-units { margin-top: 20px; font-size: 12px; color: #55718e; }
.compute-page .compute-type-evolution { border-top-color: var(--product-blue); }
.compute-page .compute-type-evolution h3 { color: var(--product-blue); }
.compute-page .compute-type-evolution .product-text-link { margin-top: 12px; font-size: 13px; color: var(--product-blue); }
.compute-page .compute-evolution-intro { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; padding-bottom: 32px; border-bottom: 1px solid var(--product-line); }
.compute-page .compute-evolution-claim { color: #30485f; font-size: 23px; font-weight: 500; line-height: 1.7; }
.compute-page .compute-evolution-intro p + p { margin-top: 14px; }
.compute-page .compute-development-scope { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; margin-top: 10px; }
.compute-page .compute-development-scope article { padding: 26px 0; border-bottom: 1px solid var(--product-line); }
.compute-page .compute-development-scope h3 { font-size: 19px; font-weight: 600; }
.compute-page .compute-development-scope p { margin-top: 10px; color: var(--product-muted); font-size: 14px; line-height: 1.9; }
.compute-page .compute-development-scope .compute-output { margin-top: 14px; color: #55718e; font-size: 12px; }
.compute-page .compute-delivery { margin-top: 36px; }
.compute-page .compute-delivery > h3 { font-size: 20px; font-weight: 600; }
.compute-page .compute-delivery .compute-dispatch { gap: 24px; margin-top: 24px; }
.compute-page .compute-delivery .compute-dispatch p { font-size: 13px; }
.compute-page .compute-delivery-footer { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; margin-top: 28px; padding: 24px 28px; border-left: 3px solid var(--product-blue); background: #edf3fa; }
.compute-page .compute-delivery-footer p { color: #52667f; font-size: 14px; line-height: 1.9; }
.compute-page .compute-evolution-example { display: grid; grid-template-columns: .85fr 1.25fr; gap: 40px; padding: 26px 28px; margin-top: 36px; background: #f7f9fb; border: 1px solid var(--product-line); border-radius: 5px; }
.compute-page .compute-evolution-example h3 { margin-top: 10px; font-size: 22px; font-weight: 600; line-height: 1.5; }
.compute-page .compute-evolution-example ol { display: grid; gap: 14px; }
.compute-page .compute-evolution-example li { display: grid; grid-template-columns: 74px 1fr; gap: 16px; font-size: 14px; line-height: 1.8; }
.compute-page .compute-evolution-example strong { color: var(--product-blue); font-weight: 550; }
.compute-page .compute-evolution-example li span { color: var(--product-muted); }
.compute-page .compute-planned { padding: 3px 8px; border: 1px solid #d3dde8; border-radius: 3px; color: #66778a; font-size: 11px; }
.compute-page .compute-dispatch { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 20px; margin-top: 28px; }
.compute-page .compute-dispatch li { position: relative; padding-right: 18px; }
.compute-page .compute-dispatch li:not(:last-child)::after { content: '→'; position: absolute; right: -4px; top: 22px; color: #93aed0; }
.compute-page .compute-dispatch h3 { font-size: 17px; font-weight: 600; margin-top: 8px; line-height: 1.5; }
.compute-page .compute-dispatch p { margin-top: 9px; font-size: 12px; line-height: 1.85; color: var(--product-muted); }
.compute-page .compute-account { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; }
.compute-page .compute-account-board { border: 1px solid var(--product-line); border-radius: 5px; background: #fff; }
.compute-page .compute-account-head { padding: 24px; border-bottom: 1px solid var(--product-line); }
.compute-page .compute-account-head h3 { font-size: 19px; font-weight: 600; }
.compute-page .compute-account-head p { margin-top: 8px; font-size: 12px; color: var(--product-muted); line-height: 1.8; }
.compute-page .compute-account-overview { display: grid; grid-template-columns: repeat(3,1fr); padding: 24px; gap: 14px; }
.compute-page .compute-account-overview strong { display: block; font-size: 15px; color: var(--product-blue); font-weight: 550; }
.compute-page .compute-account-overview span { display: block; margin-top: 9px; font-size: 12px; color: var(--product-muted); line-height: 1.75; }
.compute-page .compute-account-usage { padding: 0 24px 24px; }
.compute-page .compute-account-usage p { padding-top: 20px; border-top: 1px solid var(--product-line); color: var(--product-muted); font-size: 12px; }
.compute-page .compute-account-usage ul { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 15px; }
.compute-page .compute-account-usage li { font-size: 13px; color: #4e6681; padding: 8px 10px; border-left: 2px solid #bdd2ee; background: #f7f9fc; }
.compute-page .compute-account-notes { display: grid; gap: 22px; }
.compute-page .compute-account-notes h3 { font-size: 18px; font-weight: 600; line-height: 1.5; }
.compute-page .compute-account-notes p { margin-top: 9px; font-size: 14px; color: var(--product-muted); line-height: 1.9; }
.compute-page .compute-routing { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--product-line); display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: baseline; }
.compute-page .compute-routing h3 { font-size: 18px; font-weight: 600; }
.compute-page .compute-routing p { font-size: 14px; line-height: 1.9; color: var(--product-muted); }
.compute-page .compute-final { background: #f1f6fd; border-block: 1px solid #dce6f3; }
.compute-page summary:focus-visible, .compute-page [role='tabpanel']:focus-visible { outline: 2px solid var(--product-blue); outline-offset: 5px; }
@media (max-width: 1199px) {
  .compute-page .compute-flow { gap: 18px; }
  .compute-page .compute-intro, .compute-page .compute-offers, .compute-page .compute-scenario { gap: 36px; }
  .compute-page .compute-steps { gap: 22px; }
}
@media (max-width: 899px) {
  .compute-page .compute-evolution-intro, .compute-page .compute-evolution-example { grid-template-columns: 1fr; gap: 20px; }
  .compute-page .compute-development-scope { gap: 0 28px; }
  .compute-page .compute-delivery-footer { grid-template-columns: 1fr; gap: 20px; }
  .compute-page .compute-delivery-footer .product-button { justify-self: start; }
  .compute-page .compute-types { grid-template-columns: 1fr 1fr; gap: 0 28px; }
  .compute-page .compute-account { grid-template-columns: 1fr; gap: 32px; }
  .compute-page .compute-dispatch { grid-template-columns: 1fr; gap: 16px; }
  .compute-page .compute-dispatch li { display: grid; grid-template-columns: 24px 1fr; gap: 10px 14px; padding-bottom: 24px; }
  .compute-page .compute-dispatch h3 { margin-top: 0; }
  .compute-page .compute-dispatch p { grid-column: 2; margin-top: 0; }
  .compute-page .compute-dispatch li:not(:last-child)::after { content: '↓'; right: auto; left: 0; top: auto; bottom: 0; }
  .compute-page .compute-routing { grid-template-columns: 1fr; gap: 12px; }
  .compute-page .compute-flow { grid-template-columns: 1fr; gap: 16px; }
  .compute-page .compute-flow-arrow { transform: rotate(90deg); justify-self: start; width: 18px; }
  .compute-page .compute-flow-core { gap: 14px; }
  .compute-page .compute-flow-core img { width: 44px; height: 44px; }
  .compute-page .compute-intro, .compute-page .compute-scenario { grid-template-columns: 1fr; gap: 24px; }
  .compute-page .compute-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .compute-page .compute-terms { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
}
@media (max-width: 599px) {
  .compute-page .compute-development-scope { grid-template-columns: 1fr; }
  .compute-page .compute-evolution-claim { font-size: 21px; }
  .compute-page .compute-evolution-example, .compute-page .compute-delivery-footer { padding: 22px 20px; }
  .compute-page .compute-evolution-example li { grid-template-columns: 1fr; gap: 4px; }
  .compute-page .compute-types { grid-template-columns: 1fr; gap: 0; }
  .compute-page .compute-type { padding-block: 24px; }
  .compute-page .compute-tabs { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 14px; }
  .compute-page .compute-account-head, .compute-page .compute-account-overview { padding: 20px; }
  .compute-page .compute-account-usage { padding: 0 20px 20px; }
  .compute-page .compute-account-usage ul { grid-template-columns: 1fr 1fr; }
  .compute-page .compute-account-overview { grid-template-columns: 1fr; gap: 16px; }
  .compute-page .compute-account-overview div { display: grid; grid-template-columns: 82px 1fr; gap: 16px; }
  .compute-page .compute-account-overview span { margin-top: 0; }
  .compute-page .compute-hero { padding-top: 85px; padding-bottom: 32px; }
  .compute-page .product-hero-copy { margin-top: 28px; }
  .compute-page .product-hero h1 { font-size: 33px; }
  .compute-page .product-hero .product-hero-claim { font-size: 20px; }
  .compute-page .compute-band-top { display: grid; gap: 5px; }
  .compute-page .compute-intro-lead { font-size: 20px; }
  .compute-page .compute-values, .compute-page .compute-offers, .compute-page .compute-governance { grid-template-columns: 1fr; gap: 24px; }
  .compute-page .compute-governance { gap: 0; }
  .compute-page .compute-offers { gap: 38px; }
  .compute-page .compute-values { margin-top: 26px; }
  .compute-page .compute-tab { font-size: 13px; padding-block: 14px; flex: 1; text-align: center; white-space: normal; }
  .compute-page .compute-tabs { gap: 8px; }
  .compute-page .compute-scenario { padding-top: 25px; }
  .compute-page .compute-scenario h3 { font-size: 24px; }
  .compute-page .compute-scenario dl div { grid-template-columns: 66px 1fr; gap: 16px; }
  .compute-page .compute-steps { grid-template-columns: 1fr; gap: 24px; }
  .compute-page .compute-faq summary { font-size: 15px; }
  .compute-page .product-final h2 { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .compute-page *, .compute-page *::before, .compute-page *::after { animation: none !important; transition: none !important; }
}
