:root {
  --layout-container-max: var(--container-phone);
  --page-inline: var(--container-padding-phone);
  --layout-grid-gap: var(--grid-gap-phone);
  --layout-grid-columns: var(--grid-columns-phone);
  --site-header-height: 80px;
  --site-grid-size: 7.5rem;
  --site-line-soft: var(--color-grid-line-soft);
  --site-section-border: var(--color-border-soft);
  --site-text-body: var(--figma-color-dark-tint-2);
  --motion-duration-reveal-mobile: 0.5;
  --motion-duration-reveal-desktop: 0.65;
  --motion-distance-reveal-mobile: 18;
  --motion-distance-reveal-desktop: 28;
  --motion-scale-start-mobile: 0.985;
  --motion-scale-start-desktop: 0.965;
  --motion-duration-hover: 0.5;
  --motion-scale-button: 1;
}

* {
  box-sizing: border-box;
}

body.site-page {
  margin: 0;
  min-width: 320px;
  color: var(--color-text-strong);
  background: var(--figma-color-off-white-base);
  overflow-x: clip;
}

::selection {
  background: #1f1f1f;
  color: #ffffff;
}

::-moz-selection {
  background: #1f1f1f;
  color: #ffffff;
}

/* Keep text selection visible on dark surfaces via one shared marker. */
[data-surface="dark"]::selection,
[data-surface="dark"] *::selection {
  background: #f4f4f4 !important;
  color: #1f1f1f !important;
  text-shadow: none;
  -webkit-text-fill-color: #1f1f1f;
}

[data-surface="dark"]::-moz-selection,
[data-surface="dark"] *::-moz-selection {
  background: #f4f4f4 !important;
  color: #1f1f1f !important;
  text-shadow: none;
}

body.site-page.has-custom-cursor,
body.site-page.has-custom-cursor * {
  cursor: none !important;
}

.site-cursor {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 160;
  opacity: 0;
  overflow: visible;
  will-change: transform, width, height, opacity;
}

.site-cursor__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

body.site-page.is-hero-laser-cursor .site-cursor {
  background: #ed585a;
  border-color: rgb(237 88 90 / 0.8);
  mix-blend-mode: normal;
}

body.site-page.is-hero-laser-cursor .site-cursor__ring {
  border-color: rgb(237 88 90 / 0.72);
}

@supports not (mix-blend-mode: difference) {
  .site-cursor {
    background: #111;
    border-color: rgba(255, 255, 255, 0.85);
  }
}

body.site-page.is-preloading {
  overflow: hidden;
}

@media (hover: none), (pointer: coarse) {
  body.site-page.has-custom-cursor,
  body.site-page.has-custom-cursor * {
    cursor: auto !important;
  }

  .site-cursor {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .security-slider__track,
  .capabilities-section__nav-item img,
  .how-v2__learn-link::after,
  .how-v2__learn-link-arrow,
  .hero-section__docs-link .site-header-button-v2__icon,
  .solution-section__docs-link .site-header-button-v2__icon,
  .security-slider__nav-btn,
  .security-slider__nav-icon {
    transition: none !important;
  }
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.site-preloader[hidden] {
  display: none !important;
}

.site-preloader__grid {
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.site-preloader__col {
  background: transparent;
  border-right: none;
  transform: translate3d(0, 0, 0);
}

.site-preloader__col:last-child {
  border-right: none;
}

.site-preloader {
  display: grid;
  place-items: center;
  background: #121212;
  pointer-events: auto;
  overflow: hidden;
}

.site-preloader__logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
}

.site-preloader__logo {
  position: relative;
  width: clamp(10rem, 18vw, 14rem);
  height: auto;
  opacity: 0.92;
  filter: brightness(0) invert(1);
  will-change: transform, opacity, filter;
}

@media (max-width: 767px) {
  .site-preloader__logo {
    width: min(52vw, 12rem);
  }
}

.site-preloader__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.site-preloader__line {
  position: absolute;
  background: rgba(255, 255, 255, 0.38);
  will-change: transform, opacity;
}

.site-preloader__line--top,
.site-preloader__line--bottom {
  left: 5%;
  width: 90%;
  height: 1px;
  transform: scaleX(0);
}

.site-preloader__line--top {
  top: 14%;
  transform-origin: left center;
}

.site-preloader__line--bottom {
  bottom: 14%;
  transform-origin: right center;
}

.site-preloader__line--left,
.site-preloader__line--right {
  top: 9%;
  width: 1px;
  height: 82%;
  transform: scaleY(0);
}

.site-preloader__line--left {
  left: 8%;
  transform-origin: center top;
}

.site-preloader__line--right {
  right: 8%;
  transform-origin: center bottom;
}

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

a {
  color: inherit;
}

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

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

.site-grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, var(--site-line-soft) 1px, transparent 1px),
    linear-gradient(180deg, var(--site-line-soft) 1px, transparent 1px);
  background-size: var(--site-grid-size) var(--site-grid-size);
  z-index: 0;
}

.landing-page,
.site-header-shell {
  position: relative;
  z-index: 1;
}

.site-container,
.site-wide {
  width: min(var(--layout-container-max), calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
}

.site-wide {
  width: min(var(--layout-container-max), 100%);
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--site-section-border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--figma-color-off-white-base);
  transition:
    border-color var(--motion-duration-shell) var(--motion-ease-emphasized),
    background var(--motion-duration-shell) var(--motion-ease-emphasized),
    box-shadow var(--motion-duration-shell) var(--motion-ease-emphasized);
}

.site-header-shell::before,
.site-header-shell::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site-header-shell::before {
  inset: -24px 0 -10px;
  backdrop-filter: blur(var(--effect-blur-header-progressive-start));
  -webkit-backdrop-filter: blur(var(--effect-blur-header-progressive-start));
  background: var(--effect-header-overlay-top);
  mask-image: var(--effect-header-mask-top);
  -webkit-mask-image: var(--effect-header-mask-top);
  opacity: 1;
  transition: opacity var(--motion-duration-shell) var(--motion-ease-emphasized);
}

.site-header-shell::after {
  inset: 0 0 -16px;
  backdrop-filter: blur(var(--effect-blur-header-progressive-mid));
  -webkit-backdrop-filter: blur(var(--effect-blur-header-progressive-mid));
  background: var(--effect-header-overlay-bottom);
  mask-image: var(--effect-header-mask-bottom);
  -webkit-mask-image: var(--effect-header-mask-bottom);
  opacity: 1;
  transition: opacity var(--motion-duration-shell) var(--motion-ease-emphasized);
}

.site-header-shell.is-scrolled,
.site-header-shell.is-open {
  border-bottom-color: var(--site-section-border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--figma-color-off-white-base);
  box-shadow: none;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--layout-header-padding-inline);
  height: var(--site-header-height);
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.site-header__menu {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4);
  min-width: 0;
}

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

.site-header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(
    990px,
    calc(100% - (var(--header-logo-width) * 2) - (var(--space-24) * 2))
  );
  justify-content: center;
  gap: var(--header-nav-gap);
  flex: 0 0 auto;
  min-width: 0;
}

.site-header__controls {
  flex: 0 0 auto;
  width: var(--header-logo-width);
  min-width: var(--header-logo-width);
  margin-left: 0;
  justify-content: flex-end;
}

.site-header__dropdown-group {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header__dropdown-panel {
  position: absolute;
  top: calc(100% + var(--space-8));
  left: 0;
  min-width: var(--layout-dropdown-panel-min);
  padding: var(--space-stack-sm);
  display: grid;
  gap: var(--space-inline-xl);
  border: 1px solid var(--site-section-border);
  background: var(--color-surface-glass-strong);
  backdrop-filter: blur(var(--effect-blur-panel-md));
  -webkit-backdrop-filter: blur(var(--effect-blur-panel-md));
  box-shadow: var(--effect-shadow-panel-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(var(--space-8));
  transition:
    opacity var(--motion-duration-fast) var(--motion-ease-standard),
    transform var(--motion-duration-fast) var(--motion-ease-standard),
    visibility var(--motion-duration-fast) var(--motion-ease-standard);
}

.site-header__dropdown-group.is-open .site-header__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__dropdown-link {
  display: block;
  padding: var(--space-stack-sm) var(--type-body-sm-size);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: var(--type-body-sm-size);
  line-height: var(--type-body-sm-line);
  letter-spacing: var(--type-body-sm-track);
}

.site-header__dropdown-link:hover,
.site-header__dropdown-link:focus-visible {
  border-color: var(--site-section-border);
  outline: none;
}

.site-header__toggle {
  display: none;
  width: var(--size-control-md);
  height: var(--size-control-md);
  padding: 0;
  border: 1px solid var(--site-section-border);
  background: var(--color-surface-glass-strong);
  backdrop-filter: blur(var(--effect-blur-panel-md));
  -webkit-backdrop-filter: blur(var(--effect-blur-panel-md));
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--landing-toggle-gap);
  cursor: pointer;
}

.site-header__toggle-line {
  width: var(--size-icon-xs);
  height: 1px;
  background: var(--color-text-strong);
}

.hero-section {
  padding-block: 0;
  min-height: auto;
  display: block;
}

.hero-section__viewport {
  width: 100%;
  min-height: auto;
}

.hero-section__frame {
  width: min(var(--hero-shell-max), calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-section__lead-strip,
.hero-section__cta-bar,
.section-intro,
.problem-grid,
.problem-statement {
  border-inline: 1px solid var(--site-section-border);
}

.hero-section__panel {
  position: relative;
  display: grid;
  grid-template-columns: var(--hero-panel-columns);
  grid-template-rows: var(--hero-panel-row-height);
  height: auto;
  gap: var(--hero-panel-gap);
  align-items: stretch;
  padding:
    var(--hero-panel-padding-top)
    var(--hero-panel-padding-x)
    var(--hero-panel-padding-bottom);
  background-color: var(--figma-color-white-base);
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 0;
  border-inline: 1px solid var(--site-section-border);
}

.hero-section__frame > .hero-section__panel,
.hero-section__frame > .hero-section__lead-strip {
  width: 100%;
  margin-inline: 0;
}

.hero-section__frame > .hero-section__metrics-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.hero-section__frame > .hero-section__cta-bar {
  width: 100%;
  margin-inline: auto;
}

.hero-section__panel::before {
  content: none;
}

.hero-section__panel {
  overflow: hidden;
  overflow: clip;
}

.hero-section__grid-background {
  position: absolute;
  top: 0;
  right: 47px;
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.hero-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  justify-self: start;
  justify-content: flex-end;
  isolation: isolate;
}

.hero-section__title {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: var(--type-heading-hero-size);
  line-height: var(--type-heading-hero-line);
}

.hero-section__visual-stage {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  min-height: auto;
  overflow: visible;
}

.hero-section__visual-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-height: var(--hero-visual-height);
  z-index: 2;
}

.hero-section__visual {
  position: relative;
  inset: auto;
  width: min(100%, var(--hero-visual-width));
  height: auto;
  object-fit: contain;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, filter;
  -webkit-filter: var(--shadow-hero-visual);
  filter: var(--shadow-hero-visual);
}

.hero-section__lead-strip,
.section-intro {
  padding: var(--section-space-lg);
  background: var(--color-surface-overlay-strong);
  border-top: 1px solid var(--site-section-border);
}

.hero-section__lead-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  isolation: isolate;
  overflow: hidden;
  padding: var(--hero-lead-strip-padding);
  background: var(--hero-lead-strip-background);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-section__lead-strip::before,
.hero-section__lead-strip::after {
  content: none;
}

.hero-section__lead {
  margin: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  color: var(--hero-lead-strip-color);
  text-wrap: wrap;
}

.hero-section__metrics-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  background: var(--color-surface-canvas);
  border: 1px solid var(--site-section-border);
  backdrop-filter: blur(var(--hero-metrics-wrap-blur));
  -webkit-backdrop-filter: blur(var(--hero-metrics-wrap-blur));
}

.hero-section__metrics-wrap.is-carousel::before,
.hero-section__metrics-wrap.is-carousel::after {
  content: none;
}

.hero-section__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  background: var(--color-surface-canvas);
  will-change: transform;
}

.hero-section__metrics-carousel-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-section__metrics-group {
  display: flex;
  width: max-content;
  min-width: max-content;
  background: var(--color-surface-canvas);
}

.hero-metric {
  min-width: 0;
  padding: var(--hero-metric-padding-y) var(--hero-metric-padding-x);
  text-align: center;
  background: var(--color-surface-canvas);
  border-right: 1px solid var(--site-section-border);
}

.hero-section__metrics-group .hero-metric {
  border-right: 1px solid var(--site-section-border);
}

.hero-metric__value {
  display: block;
  font-size: var(--hero-metric-value-size);
  line-height: var(--hero-metric-value-line);
  font-weight: var(--font-weight-regular);
}

.hero-metric__label {
  display: block;
  margin-top: var(--hero-metric-label-gap);
  font-size: var(--type-eyebrow-size);
  line-height: var(--type-eyebrow-line);
  letter-spacing: var(--type-eyebrow-track);
  text-transform: uppercase;
  color: var(--site-text-body);
}

.hero-section__cta-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: var(--hero-cta-columns);
  grid-template-rows: var(--hero-cta-row-height);
  gap: var(--hero-cta-gap);
  padding: var(--hero-cta-padding);
  background: var(--color-control-dark-bg);
}

.hero-section__cta-bar::before,
.hero-section__cta-bar::after {
  content: "";
  position: absolute;
  right: var(--hero-cta-corner-offset);
  width: 15px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
}

.hero-section__cta-bar::before {
  top: var(--hero-cta-corner-offset);
  background-image: var(--hero-cta-shell-corner-tr);
}

.hero-section__cta-bar::after {
  bottom: var(--hero-cta-corner-offset);
  background-image: var(--hero-cta-shell-corner-br);
}

.hero-section__cta-row {
  display: flex;
  grid-column: 1;
  align-self: center;
  justify-self: stretch;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: var(--hero-cta-button-gap);
  row-gap: 0;
  width: 100%;
}

.hero-section__cta-row .site-header-button-v1,
.hero-section__cta-row .site-header-button-v2 {
  color: var(--control-color, currentColor);
  font-size: var(--type-control-caps-size);
  line-height: var(--type-control-caps-line);
  letter-spacing: var(--type-control-caps-track);
  text-transform: uppercase;
}

.hero-section__cta-row .site-header-button-v1__label,
.hero-section__cta-row .site-header-button-v2__label {
  display: block;
  color: inherit;
}

.hero-section__cta-row .site-header-button-v1:hover,
.hero-section__cta-row .site-header-button-v1.is-hover,
.hero-section__cta-row .site-header-button-v1[aria-current="page"],
.hero-section__cta-row .site-header-button-v2:hover,
.hero-section__cta-row .site-header-button-v2.is-hover,
.hero-section__cta-row .site-header-button-v2[aria-current="page"] {
  color: var(--control-color, currentColor);
}

.hero-section__cta-row .site-header-button-v2__icon {
  width: var(--header-button-v2-icon-size);
  height: var(--header-button-v2-icon-size);
  object-fit: contain;
  display: block;
  transition:
    left var(--motion-duration-control-emphasis) var(--motion-ease-emphasized),
    transform var(--motion-duration-control-emphasis) var(--motion-ease-emphasized);
}

/* SECTION 01 — HERO (Figma 476:11898) */
.hero-section__frame {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
}

.hero-section__panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  padding: var(--space-48);
  border-inline: 1px solid var(--site-section-border);
  background: var(--figma-color-white-base);
}

.hero-section__grid-bg {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(90deg, var(--site-section-border) 1px, transparent 1px),
    linear-gradient(180deg, var(--site-section-border) 1px, transparent 1px);
  background-size: 100px 100px;
  background-position: 99px 99px;
}

.hero-section__grid-laser {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-section__grid-laser-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  background: rgb(237 88 90 / 0.95);
  box-shadow:
    0 0 0 3px rgb(237 88 90 / 0.2),
    0 0 12px rgb(237 88 90 / 0.5),
    0 0 20px rgb(237 88 90 / 0.25);
}

.hero-section__grid-laser-line {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity, width, height;
}

.hero-section__grid-laser-line--v {
  width: 1px;
  background:
    linear-gradient(
      180deg,
      rgb(237 88 90 / 0) 0%,
      rgb(237 88 90 / 0.66) 24%,
      rgb(237 88 90 / 0.96) 50%,
      rgb(237 88 90 / 0.66) 76%,
      rgb(237 88 90 / 0) 100%
    );
  box-shadow: 0 0 14px rgb(237 88 90 / 0.34);
}

.hero-section__grid-laser-line--h {
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgb(237 88 90 / 0) 0%,
      rgb(237 88 90 / 0.66) 24%,
      rgb(237 88 90 / 0.96) 50%,
      rgb(237 88 90 / 0.66) 76%,
      rgb(237 88 90 / 0) 100%
    );
  box-shadow: 0 0 14px rgb(237 88 90 / 0.34);
}

.hero-section__grid-laser-line--ghost {
  filter: blur(0.9px);
  box-shadow: 0 0 20px rgb(237 88 90 / 0.28);
}

.hero-section__grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgb(255 255 255 / 0.88) 80%, rgb(255 255 255 / 0.28) 100%);
}

.hero-section__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero-section__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  width: 100%;
  padding: var(--space-24) var(--space-48);
}

.hero-section__lead-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: var(--space-24) var(--space-48);
}

.hero-section__kicker {
  margin: 0;
  color: var(--figma-color-dark-tint-5);
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 2px;
}

.hero-section__title {
  margin: 0;
  padding: 0;
  width: 900px;
  max-width: 100%;
  color: var(--figma-color-dark-base);
  font-size: 59px;
  line-height: 59px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0;
  white-space: normal;
}

.hero-section__title-line {
  display: block;
}

.hero-section__lead {
  margin: 0;
  padding: 0;
  width: 780px;
  max-width: 100%;
  color: var(--figma-color-dark-tint-2);
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.18px;
}

.hero-section__cta-row {
  padding: var(--space-24) var(--space-48);
  justify-content: center;
}

.hero-section__cta-row .site-header-button-v1 {
  --control-height: 44px;
  --control-padding-inline: var(--space-20);
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: var(--font-weight-regular);
  --control-color: var(--figma-color-dark-tint-1);
  --header-button-v1-bg: transparent;
  --header-button-v1-hover-color: var(--figma-color-dark-base);
  --header-button-v1-corner-br-default: url("../assets/sections/hero/cta-corner-br.svg");
  --header-button-v1-corner-bl-default: url("../assets/sections/hero/cta-corner-bl.svg");
  --header-button-v1-corner-tr-default: url("../assets/sections/hero/cta-corner-tr.svg");
  --header-button-v1-corner-tl-default: url("../assets/sections/hero/cta-corner-tl.svg");
  --corner-inset: 5px;
  text-transform: uppercase;
}

.hero-section__docs-link {
  --control-height: 44px;
  --control-padding-inline: var(--space-20);
  --control-gap: var(--space-4);
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: var(--font-weight-regular);
  --control-color: var(--color-accent-alert);
  --header-button-v2-hover-color: var(--color-accent-alert);
  --header-button-v2-bg: transparent;
  --header-button-v2-icon-size: 9.8995px;
  --header-button-v2-icon-shift-hover: var(--space-8);
  text-transform: uppercase;
}

.hero-section__docs-link .site-header-button-v2__icon-wrap {
  width: 9.8995px;
  height: 16.9706px;
}

.hero-section__docs-link .site-header-button-v2__icon {
  width: 9.8995px;
  height: 16.9706px;
  transition:
    left var(--motion-duration-control-emphasis) var(--motion-ease-emphasized),
    transform var(--motion-duration-control-emphasis) var(--motion-ease-emphasized);
}

.hero-section__metrics-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  border: 1px solid var(--site-section-border);
  border-bottom: 0;
  background: var(--figma-color-white-base);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}

.hero-section__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--figma-color-white-base);
}

.hero-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-20);
  padding: var(--hero-metric-padding-y) var(--space-48);
  border-right: 1px solid var(--site-section-border);
  background: var(--figma-color-white-base);
}

.hero-metric:last-child {
  border-right: 0;
}

.hero-section__metrics-wrap.is-carousel .hero-metric,
.hero-section__metrics-wrap.is-carousel .hero-metric:nth-child(2n),
.hero-section__metrics-wrap.is-carousel .hero-metric:last-child {
  border-right: 1px solid var(--site-section-border);
  border-top: 0;
}

.hero-metric__icon {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.hero-metric__line {
  margin: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  width: min(264px, 100%);
  height: 44px;
  padding: var(--space-8) var(--space-20);
  color: var(--figma-color-dark-base);
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: var(--font-weight-regular);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-metric__line::before,
.hero-metric__line::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-metric__line::before {
  top: 0;
  right: 0;
  background-image: url("../assets/sections/hero/cta-corner-tr.svg");
}

.hero-metric__line::after {
  left: 0;
  bottom: 0;
  background-image: url("../assets/sections/hero/cta-corner-bl.svg");
}

.hero-metric__line > .hero-metric__line-value {
  color: var(--figma-color-extras-2, #ed585a);
}

.hero-metric__line > .hero-metric__line-label {
  color: var(--figma-color-dark-base, #1f1f1f);
}

.hero-section__metrics .hero-metric__line > .hero-metric__line-value {
  color: var(--figma-color-extras-2, #ed585a);
}

.how-section {
  border-top: 1px solid var(--site-section-border);
}

.how-section__shell {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  border-left: 1px solid var(--site-section-border);
  border-right: 1px solid var(--site-section-border);
  background: var(--figma-color-off-white-base);
}

.how-section__title-row {
  display: flex;
  align-items: center;
  gap: var(--space-inline-xl);
  min-height: 149px;
  padding: var(--space-120) var(--space-48) var(--space-12);
  border-bottom: 1px solid var(--site-section-border);
}

.how-section__chevrons {
  display: inline-flex;
  align-items: center;
  gap: var(--space-inline-xl);
}

.how-section__title {
  margin: 0;
}

/* Shared section-label bar shell used by Solution / How / Capabilities / Security / Developers. */
.solution-section .section-label-bar,
#how .section-label-bar,
.capabilities-section .section-label-bar,
.security-section .section-label-bar,
.developers-section .section-label-bar,
.pricing-section .section-label-bar,
.operations-section .section-label-bar,
.faq-section .section-label-bar {
  position: relative;
  min-height: 149px;
  padding-top: var(--space-120);
  display: flex;
  align-items: flex-end;
}

#how .section-label-bar {
  width: 100%;
  margin-inline: 0;
  border-bottom: 1px solid var(--site-section-border);
}

#how .section-label-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 100vw;
  border-bottom: 1px solid var(--site-section-border);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.solution-section .section-label,
#how .section-label,
.capabilities-section .section-label,
.security-section .section-label,
.developers-section .section-label,
.pricing-section .section-label,
.operations-section .section-label,
.faq-section .section-label {
  width: 100%;
  max-width: none;
  min-height: auto;
  margin-inline: 0;
  padding: var(--space-12) var(--space-48);
  gap: var(--space-8);
  border-bottom: 0;
}

.how-v2__intro {
  display: grid;
  justify-items: center;
  gap: var(--space-24);
  padding: var(--space-48);
  border-bottom: 1px solid var(--site-section-border);
  background: rgb(var(--figma-color-off-white-rgb) / 0.85);
}

.how-v2__headline {
  width: min(724px, 100%);
  margin: 0;
  text-align: center;
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
}

.how-v2__subhead {
  width: min(858px, 100%);
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.18px;
  color: var(--figma-color-dark-tint-2);
}

.how-v2__diagram {
  position: relative;
  min-height: 500px;
  border-bottom: 1px solid var(--site-section-border);
  overflow: hidden;
  background: var(--figma-color-white-base);
}

.how-v2__diagram-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    );
}

.how-v2__diagram-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgb(255 255 255 / 0.84) 60%, rgb(255 255 255 / 0.3) 100%);
}

.how-v2__pipeline {
  position: absolute;
  left: 50%;
  top: 250px;
  transform: translate(-50%, -50%);
  width: min(800px, calc(100% - 96px));
  display: grid;
  grid-template-columns: 120px 1fr 214px 1fr 120px;
  align-items: center;
  gap: var(--space-32);
  z-index: 2;
}

.how-v2__endpoint {
  margin: 0;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 12px;
}

.how-v2__endpoint-icon {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.how-v2__endpoint-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
  background: var(--figma-color-dark-base);
  color: var(--figma-color-white-base);
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.how-v2__pipeline-arrow {
  --how-pipeline-chevron-size: 12px;
  --how-pipeline-chevron-gap: 8px;
  position: relative;
  display: block;
  width: 100%;
  min-width: 110px;
  height: 18px;
  background: none;
  overflow: hidden;
}

.how-v2__pipeline-motion {
  position: absolute;
  inset: 0 8px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.how-v2__pipeline-track {
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-flex;
  align-items: center;
  width: max-content;
  transform: translateY(-50%);
  will-change: transform, opacity;
}

.how-v2__pipeline-chevrons {
  display: inline-flex;
  align-items: center;
  gap: var(--how-pipeline-chevron-gap);
  padding-right: var(--how-pipeline-chevron-gap);
}

.how-v2__pipeline-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--how-pipeline-chevron-size);
  height: var(--how-pipeline-chevron-size);
  color: rgb(237 88 90);
}

.how-v2__pipeline-chevron-icon {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-90deg);
  fill: currentColor;
}

.how-v2__pipeline-chevron.is-opacity-3 {
  opacity: 0.3;
}

.how-v2__pipeline-chevron.is-opacity-5 {
  opacity: 0.5;
}

.how-v2__pipeline-chevron.is-opacity-7 {
  opacity: 0.7;
}

.how-v2__gateway {
  position: relative;
  width: 214px;
  height: 124px;
}

.how-v2__gateway-icon {
  width: 214px;
  height: 124px;
  object-fit: contain;
}

.how-v2__gateway-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 213px;
  height: 125px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.how-v2__stats {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(800px, calc(100% - 96px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-block: 40px;
  z-index: 2;
}

.how-v2__stats p {
  margin: 0;
  width: 200px;
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
  color: var(--figma-color-dark-tint-2);
}

.how-v2__stats span {
  font-size: 18px;
  line-height: 27px;
  color: var(--color-accent-alert);
}

.how-v2__performance {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.how-v2__learn {
  min-height: 244px;
  padding: 40px 48px;
  border-right: 1px solid var(--site-section-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.how-v2__learn-content {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.how-v2__learn-title {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
}

.how-v2__learn-link {
  --how-learn-link-arrow-inset: 2px;
  position: relative;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  width: fit-content;
  padding-left: 22px;
  padding-right: 22px;
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
  color: var(--figma-color-dark-base);
  text-decoration: none;
  overflow: hidden;
}

.how-v2__learn-link::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
  transition: transform var(--motion-duration-control-emphasis) var(--motion-ease-emphasized);
}

.how-v2__learn-link-text {
  position: relative;
  display: inline-block;
}

.how-v2__learn-link-arrow {
  position: absolute;
  top: 50%;
  width: 9.899px;
  height: 16.971px;
  background: center / 100% 100% no-repeat url("../assets/sections/how/learn-arrow.svg");
  transition:
    transform var(--motion-duration-control-emphasis) var(--motion-ease-emphasized),
    opacity var(--motion-duration-control) var(--motion-ease-emphasized);
}

.how-v2__learn-link-arrow--left {
  left: var(--how-learn-link-arrow-inset);
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.how-v2__learn-link-arrow--right {
  right: var(--how-learn-link-arrow-inset);
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
}

.how-v2__learn-link:hover::after,
.how-v2__learn-link:focus-visible::after {
  transform: scaleX(0);
}

.how-v2__learn-link:hover .how-v2__learn-link-arrow--left,
.how-v2__learn-link:focus-visible .how-v2__learn-link-arrow--left {
  transform: translateY(-50%) translateX(11px);
  opacity: 0;
}

.how-v2__learn-link:hover .how-v2__learn-link-arrow--right,
.how-v2__learn-link:focus-visible .how-v2__learn-link-arrow--right {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.how-v2__learn-mark {
  display: block;
  width: 84.314px;
  height: 56.304px;
  transform: rotate(-90deg);
  transform-origin: center;
  flex-shrink: 0;
}

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

.how-v2__node-card {
  min-height: 122px;
  margin: 0;
  padding: var(--space-40) var(--space-48);
  border-right: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
}

.how-v2__node-card:nth-child(2n) {
  border-right: 0;
}

.how-v2__node-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.how-v2__node-card p {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.14px;
  color: var(--figma-color-dark-tint-2);
}

.how-section__intro {
  padding: 0;
  border-bottom: 1px solid var(--site-section-border);
  background: var(--color-surface-overlay-strong);
  backdrop-filter: blur(var(--hero-metrics-wrap-blur));
  -webkit-backdrop-filter: blur(var(--hero-metrics-wrap-blur));
}

.how-section__headline {
  margin: 0;
  padding: var(--space-48) var(--space-48) var(--space-12);
  font-size: var(--type-heading-xl-size);
  line-height: var(--type-heading-xl-line);
  letter-spacing: var(--type-heading-xl-track);
  font-weight: var(--font-weight-regular);
}

.how-section__headline span {
  display: inline-block;
  color: var(--figma-color-white-base);
  background: var(--figma-color-dark-base);
}

.how-section__eyebrow {
  margin: 0;
  padding: var(--space-12) var(--space-48) var(--space-48);
  letter-spacing: var(--type-eyebrow-track);
  color: var(--site-text-body);
}

.how-section__main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-48);
  align-items: center;
  border-bottom: 1px solid var(--site-section-border);
}

.how-section__steps {
  border: 0;
  border-right: 1px solid var(--site-section-border);
  overflow: clip;
}

.how-step-card {
  position: relative;
  padding: var(--space-40) var(--space-48);
  background: var(--figma-color-white-base);
  border-bottom: 1px solid var(--site-section-border);
  cursor: pointer;
  transition: background-color var(--motion-duration-control-emphasis) var(--motion-ease-emphasized);
}

.how-step-card:hover,
.how-step-card:focus-within {
  background: #f4f4f4;
}

.how-step-card + .how-step-card {
  border-top: 0;
}

.how-step-card:last-child {
  border-bottom: 0;
}

.how-step-card__icon-box {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.how-step-card__icon {
  width: 29.5px;
  height: 29.5px;
  display: block;
}

.how-step-card__title {
  margin: 0;
  font-size: var(--type-heading-md-size);
  line-height: var(--type-heading-md-line);
  font-weight: var(--font-weight-regular);
  color: var(--figma-color-dark-base);
}

.how-step-card__tag {
  display: inline-block;
  margin: var(--space-8) 0 0;
  padding-inline: var(--space-4);
  font-size: var(--type-heading-xs-caps-size);
  line-height: var(--type-heading-xs-caps-line);
  letter-spacing: var(--type-heading-xs-caps-track);
  font-weight: var(--type-heading-xs-caps-weight);
  text-transform: uppercase;
  color: var(--figma-color-off-white-base);
  background: var(--figma-color-dark-base);
}

.how-section__visual {
  position: relative;
  min-height: 544px;
  overflow: visible;
  background: var(--figma-color-off-white-base);
}

.how-section__visual-grid {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
}

.how-section__group-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 221.7026px;
  height: 483px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.how-section__node-apg {
  position: absolute;
  left: 9.3513px;
  top: -14px;
  width: 213px;
  height: 125px;
  display: block;
  z-index: 7;
  filter: none;
}

.how-section__node-apg-impulse {
  position: absolute;
  left: 9.3513px;
  top: -14px;
  width: 213px;
  height: 125px;
  display: block;
  z-index: 8;
  pointer-events: none;
}

.how-section__apg-impulse-base {
  fill: none;
  stroke: rgba(238, 88, 90, 0.52);
  stroke-width: 1.55;
}

.how-section__apg-impulse-runner {
  fill: none;
  stroke: transparent;
  stroke-width: 0;
  opacity: 0;
}

.how-section__apg-impulse-dot {
  fill: var(--color-accent-alert);
  filter: none;
}

.how-v2__gateway .how-section__node-apg-impulse {
  left: 50%;
  top: 50%;
  width: 213px;
  height: 125px;
  transform: translate(-50%, -50%);
}

.how-section__layer-group {
  position: absolute;
  left: -0.1487px;
  top: 18px;
  width: 222px;
  height: 465px;
}

.how-section__nodes-telemetry {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.how-section__node-telemetry {
  position: absolute;
  left: 0;
  width: 222px;
  height: 173px;
}

.how-section__node-telemetry--auth {
  top: 0;
}

.how-section__node-telemetry--proxy {
  top: 73px;
}

.how-section__node-telemetry--file {
  top: 146px;
}

.how-section__node-telemetry--notifs {
  top: 219px;
}

.how-section__node-telemetry--admin {
  top: 292px;
}

.how-section__node-telemetry-indicator {
  position: absolute;
  width: 6.2px;
  height: 10.2px;
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(30deg);
  opacity: 0.06;
}

.how-section__node-telemetry-indicator--green {
  left: 154px;
  top: 129px;
  background: #7b9d89;
}

.how-section__node-telemetry-indicator--red {
  left: 166px;
  top: 122px;
  background: #ee585a;
}

.how-section__node-telemetry-indicator--dark {
  left: 178px;
  top: 115px;
  background: #1f1f1f;
}

.how-section__layer-node {
  position: absolute;
  left: 0;
  width: 222px;
  height: 173px;
  display: block;
}

.how-section__layer-node--auth {
  top: 0;
  z-index: 6;
}

.how-section__layer-node--proxy {
  top: 73px;
  z-index: 5;
}

.how-section__layer-node--file {
  top: 146px;
  z-index: 4;
}

.how-section__layer-node--notifs {
  top: 219px;
  z-index: 3;
}

.how-section__layer-node--admin {
  top: 292px;
  z-index: 2;
  filter: none;
}

.how-section__foot {
  padding: var(--space-48);
  background: var(--color-surface-overlay-strong);
}

.how-section__foot-copy {
  display: block;
  margin: 0;
  max-width: none;
  color: var(--figma-color-dark-tint-2);
  visibility: visible;
  opacity: 1;
}

#how .how-section__foot-copy.fade-up {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.content-section {
  border-top: 1px solid var(--site-section-border);
}

.pricing-section {
  border-top: 0;
}

.faq-section {
  border-top: 0;
}

.section-label-bar {
  border-bottom: 1px solid var(--site-section-border);
}

.section-label {
  min-height: var(--landing-section-label-min-height);
  width: min(var(--layout-container-max), calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-inline-xl);
}

.section-label__chevrons {
  display: inline-flex;
  gap: var(--space-inline-xl);
  align-items: center;
}

.section-intro__title {
  margin: 0;
}

.section-intro__kicker {
  margin: var(--space-stack-xs) 0 0;
  color: var(--site-text-body);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, var(--layout-problem-visual-max));
  gap: var(--layout-grid-gap);
  padding: var(--section-space-lg);
  background: var(--color-surface-canvas);
}

.problem-grid__visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--landing-problem-visual-min-height);
}

.problem-grid__visual-grid {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 480px;
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: block;
  z-index: 0;
}

.problem-grid__impulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.problem-grid__impulse-node,
.problem-grid__impulse-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  will-change: transform, opacity, box-shadow;
}

.problem-grid__impulse-node {
  width: 12px;
  height: 12px;
  background: var(--color-accent-alert);
  opacity: 0;
  box-shadow: 0 0 0 rgb(var(--figma-color-extra-2-rgb) / 0);
}

.problem-grid__impulse-node--1 {
  left: 95px;
  top: 96px;
}

.problem-grid__impulse-node--2 {
  left: 383px;
  top: 192px;
}

.problem-grid__impulse-node--3 {
  left: 383px;
  top: 288px;
}

.problem-grid__impulse-node--4 {
  left: 287px;
  top: 384px;
}

.problem-grid__impulse-dot {
  left: 0;
  top: 0;
  width: 8px;
  height: 8px;
  background: var(--color-accent-alert);
  opacity: 0;
  box-shadow:
    0 0 8px rgb(var(--figma-color-extra-2-rgb) / 0.62),
    0 0 16px rgb(var(--figma-color-extra-2-rgb) / 0.36);
}

.problem-grid__visual-cube {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 211px;
  height: 170px;
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: block;
  z-index: 1;
  -webkit-filter:
    drop-shadow(0 10px 12px rgba(31, 31, 31, 0.16))
    drop-shadow(0 26px 30px rgba(31, 31, 31, 0.12))
    drop-shadow(0 42px 52px rgba(31, 31, 31, 0.08));
  filter:
    drop-shadow(0 10px 12px rgba(31, 31, 31, 0.16))
    drop-shadow(0 26px 30px rgba(31, 31, 31, 0.12))
    drop-shadow(0 42px 52px rgba(31, 31, 31, 0.08));
}

.system-node-b-flow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 211px;
  height: 170px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.system-node-b-flow__light {
  position: absolute;
  width: 8px;
  height: 26px;
  border-radius: 999px;
  background: rgb(var(--figma-color-extra-2-rgb) / 0);
  border: 1px solid #1f1f1f;
  opacity: 1;
  box-shadow: none;
  transform: translate(-50%, -50%);
  will-change: transform, opacity, box-shadow;
}

.system-node-b-flow__light--1 {
  left: 16.4%;
  top: 63.8%;
}

.system-node-b-flow__light--2 {
  left: 22.1%;
  top: 68%;
}

.system-node-b-flow__light--3 {
  left: 28%;
  top: 72.2%;
}

.problem-list {
  display: grid;
  align-content: start;
  background: transparent;
  border: 1px solid var(--site-section-border);
}

.problem-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-stack-2xl);
  padding: var(--space-stack-2xl);
  background: var(--figma-color-white-base);
}

.problem-item + .problem-item {
  border-top: 1px solid var(--site-section-border);
}

.problem-item::before,
.problem-item::after {
  content: "";
  position: absolute;
  width: var(--size-corner-width);
  height: var(--size-corner-height);
  background: center / 100% 100% no-repeat;
}

.problem-item::before {
  top: var(--space-stack-sm);
  right: var(--space-stack-sm);
  background-image: var(--problem-item-corner-tr-asset);
}

.problem-item::after {
  left: var(--space-stack-sm);
  bottom: var(--space-stack-sm);
  transform: rotate(180deg);
  background-image: var(--problem-item-corner-bl-asset);
}

.problem-item__number {
  font-size: var(--type-heading-md-numeric-size);
  line-height: var(--type-heading-md-numeric-line);
  font-variant-numeric: tabular-nums;
  color: var(--figma-color-dark-base);
}

.problem-item__copy p {
  margin: 0;
}

.problem-item__copy .text-body-lg {
  color: var(--figma-color-dark-tint-2);
}

.problem-item__copy .heading-xs-caps {
  color: var(--figma-color-dark-base);
}

.problem-statement {
  padding: var(--section-space-lg);
  border-top: 1px solid var(--site-section-border);
  background: var(--color-surface-glass-medium);
}

.problem-statement__eyebrow {
  margin: 0 0 var(--section-space-sm);
  color: var(--site-text-body);
}

.problem-statement__quote {
  margin: 0;
  max-width: 13ch;
}

.solution-section .section-label-bar,
.solution-section .section-intro,
.solution-section .problem-grid,
.solution-section .problem-statement {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
}

.solution-section .section-label-bar {
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 0;
}

.solution-section .section-label-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 100vw;
  border-bottom: 1px solid var(--site-section-border);
  transform: translateX(-50%);
  pointer-events: none;
}

.solution-section .section-label {
  width: 100%;
  max-width: none;
  min-height: auto;
  margin-inline: 0;
  padding: var(--space-12) var(--space-48);
  gap: var(--space-8);
  border-bottom: 0;
}

.capabilities-section .section-label-bar,
.security-section .section-label-bar,
.developers-section .section-label-bar,
.pricing-section .section-label-bar,
.operations-section .section-label-bar,
.faq-section .section-label-bar {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  max-width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 0;
}

.capabilities-section .section-label-bar::after,
.developers-section .section-label-bar::after,
.pricing-section .section-label-bar::after,
.operations-section .section-label-bar::after,
.faq-section .section-label-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  background: var(--site-section-border);
  transform: translateX(-50%);
  pointer-events: none;
}

.pricing-section .section-label-bar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 1px;
  background: var(--site-section-border);
  transform: translateX(-50%);
  pointer-events: none;
}

.faq-section .section-label-bar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 1px;
  background: var(--site-section-border);
  transform: translateX(-50%);
  pointer-events: none;
}

.faq-section .section-label-bar {
  background: var(--figma-color-off-white-base);
}

.security-section .section-label-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 100vw;
  border-bottom: 1px solid var(--site-section-border);
  transform: translateX(-50%);
  pointer-events: none;
}

.security-section {
  border-top: 0;
}

.security-section__panel {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  min-height: 304px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-inline: 1px solid var(--site-section-border);
  border-top: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
}

.security-section__intro {
  padding: var(--space-48);
  background: var(--figma-color-white-base);
  border-right: 1px solid var(--site-section-border);
  display: flex;
  flex-direction: column;
}

.security-section__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-12);
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
}

.security-section__title-chip {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  padding-inline: 0;
  background: var(--figma-color-dark-base);
  color: var(--figma-color-white-base);
  white-space: nowrap;
}

.security-section__intro-copy {
  margin: var(--space-24) 0 0;
  max-width: 41ch;
  color: var(--figma-color-dark-tint-2);
}

.security-section__metric {
  position: relative;
  padding: var(--space-48);
  background: var(--figma-color-dark-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.security-section__metric::before,
.security-section__metric::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  pointer-events: none;
}

.security-section__metric::before {
  top: 24px;
  right: 23px;
  border-top: 1px solid var(--site-section-border);
  border-right: 1px solid var(--site-section-border);
}

.security-section__metric::after {
  right: 23px;
  bottom: 23px;
  border-bottom: 1px solid var(--site-section-border);
  border-right: 1px solid var(--site-section-border);
}

.security-section__metric-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.security-section__metric-kicker {
  margin: 0;
  font-size: 39px;
  line-height: 39px;
  font-weight: 400;
  color: var(--figma-color-off-white-alpha-2);
}

.security-section__metric-main {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: var(--space-24);
  font-size: 80px;
  line-height: 80px;
  font-weight: 400;
  color: var(--figma-color-off-white-base);
}

.security-section__metric-main > span:first-child {
  font-size: 59px;
  line-height: 59px;
}

.security-section__metric-accent {
  display: inline-block;
  transform: translateY(4px);
  color: var(--figma-color-extra-2);
}

.security-section__metric-foot {
  margin: 0;
  color: var(--figma-color-off-white-alpha-2);
}

.security-section__performance {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
}

.security-performance-item {
  min-height: 134px;
  padding: var(--space-40);
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
}

.security-performance-item:not(:last-child) {
  border-right: 1px solid var(--site-section-border);
}

.security-performance-item__num {
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
}

.security-performance-item__text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
  color: var(--figma-color-dark-tint-2);
}

.security-slider {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  border-inline: 1px solid var(--site-section-border);
  border-top: 0;
}

.security-slider__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.security-slider__track {
  display: flex;
  width: 100%;
  transition: transform var(--motion-duration-control-emphasis) var(--motion-ease-emphasized);
  will-change: transform;
}

.security-slide {
  position: relative;
  flex: 0 0 50%;
  min-height: 231px;
  padding: var(--space-48);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-24);
  border-right: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
  background: var(--figma-color-white-base);
}

.security-slide.is-trailing-visible {
  border-right: 0;
}

.security-slide::before,
.security-slide::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  pointer-events: none;
}

.security-slide::before {
  top: 23px;
  right: 23px;
  background: center / 100% 100% no-repeat url("../assets/sections/security-slider/sec-corner-tr.svg");
}

.security-slide::after {
  bottom: 23px;
  left: 23px;
  background: center / 100% 100% no-repeat url("../assets/sections/security-slider/sec-corner-bl.svg");
  transform: rotate(180deg);
  transform-origin: center;
}

.security-slide__row {
  display: flex;
  align-items: center;
  gap: var(--space-24);
}

.security-slide__dash {
  width: 24px;
  height: 1px;
  flex-shrink: 0;
  background: var(--figma-color-dark-base);
}

.security-slide__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}

.security-slide__text {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
}

.security-slide__read {
  position: absolute;
  right: 39px;
  bottom: 39px;
  margin-top: 0;
  color: var(--figma-color-dark-base);
}

.security-slide__read.how-v2__learn-link {
  --how-learn-link-arrow-inset: 2px;
  padding-left: 22px;
  padding-right: 22px;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.18px;
}

.security-slider__pagination {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
}

.security-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: var(--space-12) var(--space-24);
}

.security-slider__dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: var(--figma-color-dark-tint-8);
  cursor: pointer;
}

.security-slider__dot.is-active {
  background: var(--figma-color-extra-2);
}

.security-slider__nav {
  display: inline-flex;
  align-items: center;
}

.security-slider__nav-btn {
  min-width: 68px;
  height: 44px;
  padding: 12px 24px;
  border: 0;
  border-right: 1px solid var(--site-section-border);
  border-left: 1px solid var(--site-section-border);
  border-bottom: 0;
  border-top: 0;
  background: var(--figma-color-white-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color var(--motion-duration-control) var(--motion-ease-emphasized),
    color var(--motion-duration-control) var(--motion-ease-emphasized);
}

.security-slider__nav-icon {
  width: 11.1298px;
  height: 16.6667px;
  display: block;
  transition: filter var(--motion-duration-control) var(--motion-ease-emphasized);
}

.security-slider__nav-btn:is(:hover, :focus-visible):not([disabled]) {
  background: var(--figma-color-dark-base);
}

.security-slider__nav-btn:is(:hover, :focus-visible):not([disabled]) img {
  filter: brightness(0) invert(1);
}

.security-slider__nav-btn:first-child {
  border-right: 0;
}

.security-slider__nav-btn:last-child {
  border-right: 0;
}

.security-slider__nav-btn:first-child .security-slider__nav-icon {
  transform: scaleX(-1);
}

.security-slider__nav-btn[disabled] {
  opacity: 0.42;
  cursor: default;
}

.developers-section__intro {
  position: relative;
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  min-height: 600px;
  margin-inline: auto;
  padding: var(--space-24) var(--space-48);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-inline: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  background-color: #ffffff;
  background-image:
    linear-gradient(#d7d7d7 1px, transparent 1px),
    linear-gradient(90deg, #d7d7d7 1px, transparent 1px);
  background-size: 100px 100px;
  background-position: 0 99px, 99px 0;
}

.developers-section__intro-inner {
  width: min(998px, 100%);
  min-height: 399px;
  padding: var(--space-24) var(--space-48);
  box-sizing: border-box;
  transform: translateX(1px);
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-24);
  background: #ffffff;
}

.developers-section__intro-inner > * {
  position: relative;
  z-index: 2;
}

.developers-section__dissolve-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.developers-section__dissolve-glyph {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "IBM Plex Mono", "Roboto Mono", monospace;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgb(31 31 31 / 0.64);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  white-space: pre;
}

.developers-section__dissolve-glyph--base {
  pointer-events: none;
}

.developers-section__dissolve-glyph--burst {
  color: rgb(31 31 31 / 0.72);
}

.developers-section__dissolve-glyph.is-accent {
  color: rgb(237 88 90 / 0.98);
}

.developers-section__title {
  margin: 0;
  width: min(100%, 580px);
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  color: #1f1f1f;
  text-align: center;
}

.developers-section__title-chip {
  display: inline-flex;
  width: fit-content;
  padding-inline: 0;
  background: #1f1f1f;
  color: #f4f4f4;
  white-space: nowrap;
}

.developers-section__copy {
  margin: 0;
  width: min(100%, 700px);
  text-align: center;
  color: #595959;
  letter-spacing: 0.18px;
}

.developers-section__highlights {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  min-height: 369px;
  margin-inline: auto;
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--figma-color-off-white-base);
}

.developers-highlights__column {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.developers-highlights__column--left {
  border-right: 1px solid var(--site-section-border);
}

.developers-highlights__column--right {
  border-left: 1px solid var(--site-section-border);
}

.developers-highlights__center {
  position: relative;
  min-height: 369px;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  transform: translateZ(0);
}

.developers-highlights__center::before {
  content: '';
  position: absolute;
  inset: 15px 0;
  background: url('../assets/sections/developers/dev-perspective-grid.svg') center / 100% 100% no-repeat;
  opacity: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.developers-highlights__beams {
  position: absolute;
  inset: 15px 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  contain: paint;
  transform: translateZ(0);
}

.developers-highlights__beams-svg {
  display: block;
  width: 100%;
  height: 100%;
  will-change: opacity;
}

.developers-highlights__center::after {
  content: '';
  position: absolute;
  inset: 15px 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(
      to bottom,
      rgb(244 244 244 / 1) 0%,
      rgb(244 244 244 / 0) 20%
    ),
    linear-gradient(
      to bottom,
      rgb(244 244 244 / 0) 0%,
      rgb(244 244 244 / 0) 64%,
      rgb(244 244 244 / 1) 100%
    ),
    radial-gradient(circle at 50% 50%, rgb(244 244 244 / 0) 26%, rgb(244 244 244 / 0.94) 100%);
}

.developers-highlights__beam-path {
  fill: none;
  stroke: #ed585a;
  stroke-width: 1.2;
  stroke-linecap: round;
  opacity: 0.88;
}

.developers-highlights__beam-path--ghost {
  opacity: 0.46;
}

.developers-highlights__node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 224px;
  height: 174px;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 4;
  will-change: transform;
}

.developers-highlight-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-12);
  min-height: 123px;
  padding: var(--space-48);
  border-bottom: 1px solid var(--site-section-border);
}

.developers-highlights__column .developers-highlight-card:last-child {
  border-bottom: 0;
}

.developers-highlight-card__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.developers-highlight-card__text {
  margin: 0;
  color: var(--figma-color-dark-tint-2);
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
}

.developers-highlight-card__corner {
  position: absolute;
  width: 15px;
  height: 12px;
  pointer-events: none;
}

.developers-highlight-card__corner--bl {
  left: 24px;
  bottom: 24px;
  transform: rotate(180deg);
}

.developers-highlight-card__corner--tr {
  right: 23px;
  top: 24px;
}

.developers-section__ship {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  min-height: 213px;
  margin-inline: auto;
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 0;
  background: var(--figma-color-white-base);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.developers-section__ship-copy {
  border-right: 0;
  box-shadow: 1px 0 0 var(--site-section-border);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-48);
}

.developers-section__ship-title {
  margin: 0;
  width: 100%;
  color: var(--figma-color-dark-base);
  font-size: 39px;
  line-height: 39px;
  font-weight: 400;
  letter-spacing: 0;
}

.developers-section__ship-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-48);
}

.developers-section__ship-button {
  --control-height: 44px;
  --control-padding-inline: var(--space-20);
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: var(--font-weight-regular);
  --control-color: var(--figma-color-dark-tint-1);
  --header-button-v1-bg: transparent;
  --header-button-v1-corner-br-default: url("../assets/sections/hero/cta-corner-br.svg");
  --header-button-v1-corner-bl-default: url("../assets/sections/hero/cta-corner-bl.svg");
  --header-button-v1-corner-tr-default: url("../assets/sections/hero/cta-corner-tr.svg");
  --header-button-v1-corner-tl-default: url("../assets/sections/hero/cta-corner-tl.svg");
  --header-button-v1-hover-color: var(--figma-color-dark-base);
  --corner-inset: 5px;
  text-transform: uppercase;
}

.developers-section__ship-button .site-header-button-v1__label {
  display: block;
  color: inherit;
}

.operations-section__intro {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  padding: var(--space-48);
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
  background: rgb(var(--figma-color-off-white-rgb) / 0.85);
}

.operations-section__title {
  margin: 0;
  color: var(--figma-color-dark-base);
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
}

.operations-section__copy {
  margin: var(--space-24) 0 0;
  max-width: 113ch;
  color: var(--figma-color-dark-tint-2);
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
}

.operations-section__panel {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  min-height: 696px;
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--figma-color-off-white-base);
}

.operations-section__visual {
  position: relative;
  border-right: 1px solid var(--site-section-border);
  background: var(--figma-color-white-base);
}

.operations-visual__canvas {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 696px;
  overflow: hidden;
}

.operations-visual__scene {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
}

.operations-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    );
  background-size: 100px 100px;
}

.operations-visual__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgb(255 255 255 / 0.3) 0%, rgb(255 255 255 / 1) 100%);
}

.operations-visual__icon,
.operations-visual__stack,
.operations-visual__arrow,
.operations-visual__arrow-flow,
.operations-section__docs-link,
.operations-visual__corner {
  position: absolute;
  z-index: 2;
}

.operations-visual__icon {
  display: block;
}

.operations-visual__icon--robot {
  left: 100px;
  top: 100px;
  width: 100px;
  height: 100px;
}

.operations-visual__icon--cube {
  right: 100px;
  top: 100px;
  width: 100px;
  height: 100px;
}

.operations-visual__icon--files {
  left: 100px;
  bottom: 100px;
  width: 100px;
  height: 100px;
}

.operations-visual__icon--browser {
  right: 100px;
  bottom: 100px;
  width: 100px;
  height: 100px;
}

.operations-visual__stack {
  left: 50%;
  top: 50%;
  width: 153px;
  height: 171px;
  transform: translate(-50%, -50%);
  display: block;
}

.operations-visual__arrow--top {
  left: 245px;
  top: 144px;
  width: 110px;
  height: 12px;
}

.operations-visual__arrow--right {
  right: 144px;
  top: 245px;
  width: 12px;
  height: 110px;
}

.operations-visual__arrow--bottom {
  left: 245px;
  bottom: 144px;
  width: 110px;
  height: 12px;
  transform: rotate(180deg);
}

.operations-visual__arrow--left {
  left: 144px;
  top: 245px;
  width: 12px;
  height: 110px;
  transform: rotate(180deg);
}

.operations-visual__arrow.is-motion-hidden {
  opacity: 0;
}

.operations-visual__arrow-flow {
  width: 110px;
  height: 12px;
  pointer-events: none;
  overflow: hidden;
}

.operations-visual__arrow-flow-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.operations-visual__arrow-flow.is-dash .operations-visual__arrow-flow-motion {
  overflow: visible;
}

.operations-visual__arrow-flow-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  width: max-content;
  transform: translateY(-50%);
  will-change: transform;
}

.operations-visual__arrow-flow.is-vertical .operations-visual__arrow-flow-track {
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.operations-visual__arrow-flow-chevrons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
}

.operations-visual__arrow-flow-chevrons--up,
.operations-visual__arrow-flow-chevrons--down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-right: 0;
  padding-bottom: 8px;
}

.operations-visual__arrow-flow-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  color: rgb(237 88 90);
}

.operations-visual__arrow-flow-chevron svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.operations-visual__arrow-flow-chevron.is-dir-right svg {
  transform: rotate(-90deg);
}

.operations-visual__arrow-flow-chevron.is-dir-left svg {
  transform: rotate(90deg);
}

.operations-visual__arrow-flow-chevron.is-dir-up svg {
  transform: rotate(180deg);
}

.operations-visual__arrow-flow-chevron.is-dir-down svg {
  transform: rotate(0deg);
}

.operations-visual__arrow-flow-chevron.is-opacity-3 {
  opacity: 0.3;
}

.operations-visual__arrow-flow-chevron.is-opacity-5 {
  opacity: 0.5;
}

.operations-visual__arrow-flow-chevron.is-opacity-7 {
  opacity: 0.7;
}

.operations-visual__arrow-flow-dash-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.operations-visual__arrow-flow-dash-path {
  fill: none;
  stroke: rgb(237 88 90);
  stroke-width: 1.1;
  stroke-dasharray: 2 6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.96;
}

.operations-visual__corner {
  width: 15px;
  height: 12px;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.operations-visual__corner--bl {
  left: 24px;
  bottom: 24px;
  transform: rotate(180deg);
  background-image: url("../assets/sections/operations/ops-corner-bl.svg");
}

.operations-visual__corner--tr {
  right: 24px;
  top: 24px;
  background-image: url("../assets/sections/operations/ops-corner-tr.svg");
}

.operations-section__docs-link {
  --control-height: 44px;
  --control-padding-inline: 0;
  --control-gap: var(--space-4);
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: var(--font-weight-regular);
  --control-color: var(--color-accent-alert);
  --header-button-v2-hover-color: var(--color-accent-alert);
  --header-button-v2-bg: transparent;
  --header-button-v2-icon-size: 9.8995px;
  --header-button-v2-icon-shift-hover: var(--space-8);
  left: 48px;
  bottom: 48px;
  text-transform: uppercase;
}

.operations-section__docs-link .site-header-button-v2__icon-wrap {
  width: 20px;
  height: 20px;
}

.operations-section__docs-link .site-header-button-v2__icon {
  width: 9.8995px;
  height: 16.9706px;
  inset: 2px auto auto 0;
  transform: none;
}

.operations-section__steps {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.operations-step-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-48);
  border-bottom: 1px solid var(--site-section-border);
  min-height: 139px;
}

.operations-step-card:last-child {
  border-bottom: 0;
}

.operations-step-card__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
}

.operations-step-card__text {
  margin: 0;
  color: var(--figma-color-dark-base);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.operations-step-card__corner {
  position: absolute;
  width: 15px;
  height: 12px;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.operations-step-card__corner--bl {
  left: 24px;
  bottom: 24px;
  transform: rotate(180deg);
  background-image: url("../assets/sections/operations/ops-corner-bl.svg");
}

.operations-step-card__corner--tr {
  right: 24px;
  top: 24px;
  background-image: url("../assets/sections/operations/ops-corner-tr.svg");
}

.pricing-section__hero,
.pricing-section__plans,
.pricing-section__free-title,
.pricing-section__benefits {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  border-inline: 1px solid var(--site-section-border);
}

.pricing-section__hero {
  position: relative;
  min-height: 500px;
  border-bottom: 1px solid var(--site-section-border);
  background: rgb(var(--figma-color-off-white-rgb) / 0.85);
  overflow: hidden;
}

.pricing-section__hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    );
  background-size: 100px 100px;
}

.pricing-section__hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 600px 250px at 50% 50%,
    rgb(244 244 244 / 0.9) 60.096%,
    rgb(244 244 244 / 0.4) 100%
  );
}

.pricing-section__hero-grid .hero-section__grid-laser {
  z-index: 1;
}

.pricing-section__headline-wrap,
.pricing-section__subheadline-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.pricing-section__headline-wrap {
  padding: var(--space-24) var(--space-48);
  margin-top: 150px;
}

.pricing-section__headline {
  margin: 0;
  width: 580px;
  max-width: 100%;
  text-align: center;
  color: var(--color-accent-alert);
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-section__subheadline-wrap {
  padding: var(--space-24) var(--space-48);
}

.pricing-section__subheadline {
  margin: 0;
  width: 700px;
  max-width: 100%;
  text-align: center;
  color: var(--figma-color-dark-tint-2);
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
}

.pricing-section__plans {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 362px;
  border-bottom: 1px solid var(--site-section-border);
  background: rgb(var(--figma-color-off-white-rgb) / 0.85);
}

.pricing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-48);
  padding: var(--space-48);
  min-height: 362px;
  border-right: 1px solid var(--site-section-border);
  overflow: hidden;
}

.pricing-plan-card:last-child {
  border-right: 0;
}

.pricing-plan-card--popular {
  background: var(--figma-color-white-base);
  overflow: visible;
}

.pricing-plan-card__badge {
  position: absolute;
  left: 0;
  top: -31px;
  width: 100px;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--figma-color-dark-base);
  color: var(--figma-color-white-base);
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.pricing-plan-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  width: 100%;
}

.pricing-plan-card__title {
  margin: 0;
  color: var(--figma-color-dark-base);
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-plan-card__title--accent {
  color: var(--color-accent-alert);
}

.pricing-plan-card__price {
  margin: 0;
  display: inline-flex;
  align-items: flex-start;
  color: var(--figma-color-dark-base);
  font-size: 41px;
  line-height: 41px;
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-plan-card__price-main {
  color: inherit;
}

.pricing-plan-card__price-period {
  margin-left: var(--space-4);
  color: var(--figma-color-dark-tint-2);
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.18px;
}

.pricing-plan-card__desc {
  margin: 0;
  color: var(--figma-color-dark-tint-2);
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
}

.pricing-plan-card__button-frame {
  position: absolute;
  left: var(--space-48);
  bottom: 39px;
  width: 304px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.pricing-plan-card__button-frame--popular {
  left: var(--space-48);
  bottom: 39px;
  width: 304px;
  height: 44px;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.pricing-plan-card__button {
  --control-height: 44px;
  --control-padding-inline: var(--space-20);
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: var(--font-weight-regular);
  --control-color: var(--figma-color-dark-base);
  --header-button-v1-bg: transparent;
  --header-button-v1-hover-color: var(--figma-color-dark-base);
  --header-button-v1-corner-br-default: url("../assets/sections/hero/cta-corner-br.svg");
  --header-button-v1-corner-bl-default: url("../assets/sections/hero/cta-corner-bl.svg");
  --header-button-v1-corner-tr-default: url("../assets/sections/hero/cta-corner-tr.svg");
  --header-button-v1-corner-tl-default: url("../assets/sections/hero/cta-corner-tl.svg");
  --corner-inset: 5px;
  display: inline-flex;
  min-width: 0;
  width: auto;
  text-transform: uppercase;
}

.pricing-section__plans .pricing-plan-card:first-child .pricing-plan-card__button {
  width: 202px;
}

.pricing-section__plans .pricing-plan-card--popular .pricing-plan-card__button {
  width: 274px;
}

.pricing-section__plans .pricing-plan-card:last-child .pricing-plan-card__button {
  width: 199px;
}

.pricing-section__free-title {
  padding: var(--space-48);
  border-bottom: 1px solid var(--site-section-border);
  background: rgb(var(--figma-color-off-white-rgb) / 0.85);
}

.pricing-section__free-chip {
  margin: 0;
  width: fit-content;
  padding-inline: var(--space-4);
  background: var(--figma-color-dark-base);
  color: var(--figma-color-white-base);
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-section__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  background: rgb(var(--figma-color-off-white-rgb) / 0.85);
  border-bottom: 0;
}

.pricing-benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  height: 148px;
  min-height: 148px;
  padding: var(--space-48);
  border-right: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
  background: var(--figma-color-white-base);
  overflow: hidden;
}

.pricing-benefit-item:nth-child(3n) {
  border-right: 0;
}

.pricing-benefit-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.pricing-benefit-item__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.pricing-benefit-item__text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  color: var(--figma-color-dark-base);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.faq-section__intro {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  padding: var(--space-48) var(--space-48) var(--space-48);
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
  background: rgb(var(--figma-color-off-white-rgb) / 0.85);
}

.faq-section__title {
  margin: 0;
  color: var(--figma-color-dark-base);
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
}

.faq-section__copy {
  margin: var(--space-12) 0 0;
  color: var(--figma-color-dark-tint-5);
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.faq-section__panel {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  background: var(--figma-color-off-white-base);
}

.faq-section__accordion {
  background: var(--figma-color-white-base);
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  padding: var(--space-48);
  border-bottom: 1px solid var(--site-section-border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item__question-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-24);
  cursor: pointer;
  user-select: none;
  outline: none;
}

.faq-item__question {
  margin: 0;
  flex: 1 1 auto;
  color: var(--figma-color-dark-base);
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  letter-spacing: 0;
  transition: color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:not(.faq-item--open) .faq-item__question-row:hover .faq-item__question,
.faq-item:not(.faq-item--open) .faq-item__question-row:focus-visible .faq-item__question,
.faq-item.faq-item--open .faq-item__question {
  color: var(--color-accent-alert);
}

.faq-item__toggle-wrap {
  position: relative;
  width: 64px;
  height: 44px;
  flex: 0 0 auto;
  pointer-events: none;
}

.faq-item__toggle-corner {
  position: absolute;
  width: 15px;
  height: 12px;
  display: block;
  will-change: transform;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__toggle-corner--tr {
  top: 0;
  right: 0;
}

.faq-item__toggle-corner--bl {
  left: 0;
  bottom: 0;
}

.faq-item:not(.faq-item--open) .faq-item__question-row:hover .faq-item__toggle-corner--tr,
.faq-item:not(.faq-item--open) .faq-item__question-row:focus-visible .faq-item__toggle-corner--tr {
  transform: translate3d(3px, -3px, 0);
}

.faq-item:not(.faq-item--open) .faq-item__question-row:hover .faq-item__toggle-corner--bl,
.faq-item:not(.faq-item--open) .faq-item__question-row:focus-visible .faq-item__toggle-corner--bl {
  transform: translate3d(-3px, 3px, 0);
}

.faq-item__toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 17px;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.faq-item__question-row:focus-visible {
  box-shadow: 0 0 0 2px rgb(31 31 31 / 0.15);
  border-radius: 2px;
}

.faq-item__answer-wrap {
  overflow: hidden;
}

.faq-item__answer-wrap .faq-item__answer {
  will-change: transform, opacity;
}

.faq-item__answer {
  margin: 0;
  color: var(--figma-color-dark-tint-2);
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
}

.faq-section__docs-panel {
  position: relative;
  background: var(--figma-color-dark-base);
  color: var(--figma-color-off-white-base);
  border-left: 1px solid var(--site-section-border);
  padding: var(--space-48);
  padding-bottom: calc(38px + 44px + var(--space-24));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.faq-section__docs-shortcuts {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.faq-section__docs-title {
  margin: 0;
  color: var(--figma-color-off-white-base);
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
}

.faq-docs-link.how-v2__learn-link {
  --how-learn-link-arrow-inset: 2px;
  margin-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--figma-color-off-white-base);
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.18px;
}

.faq-docs-link.how-v2__learn-link::after {
  left: 20px;
  right: 20px;
}

.faq-docs-link .how-v2__learn-link-arrow {
  background-image: url("../assets/sections/faq/faq-link-arrow-light.svg");
}

.faq-section__docs-mark-wrap {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-section__docs-mark {
  width: 84.3145px;
  height: 56.3044px;
  display: block;
}

.faq-section__docs-site-link {
  --control-height: 44px;
  --control-padding-inline: 0;
  --control-gap: var(--space-4);
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: var(--font-weight-regular);
  --control-color: var(--figma-color-off-white-base);
  --header-button-v2-hover-color: var(--figma-color-off-white-base);
  --header-button-v2-bg: transparent;
  --header-button-v2-icon-size: 9.8995px;
  --header-button-v2-icon-shift-hover: var(--space-8);
  position: absolute;
  left: 48px;
  bottom: 38px;
  text-transform: uppercase;
}

.faq-section__docs-site-link .site-header-button-v2__icon-wrap {
  width: 20px;
  height: 20px;
}

.faq-section__docs-site-link .site-header-button-v2__icon {
  width: 9.8995px;
  height: 16.9706px;
  inset: 2px auto auto 0;
  transform: none;
}

.faq-section__docs-corner {
  position: absolute;
  width: 15px;
  height: 12px;
  background: center / 100% 100% no-repeat url("../assets/sections/faq/faq-panel-corner-light.svg");
  pointer-events: none;
}

.faq-section__docs-corner--tr {
  top: 24px;
  right: 24px;
}

.faq-section__docs-corner--br {
  right: 24px;
  bottom: 24px;
  transform: rotate(180deg) scaleX(-1);
}

.final-cta-section {
  position: relative;
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
}

.final-cta-section__container {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  padding-top: 120px;
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
}

.final-cta-section__dialog {
  position: relative;
  width: min(1100px, 100%);
  margin-inline: auto;
}

.final-cta-section__dialog-shell {
  position: relative;
  height: 489px;
  border-top: 3px solid var(--figma-color-dark-tint-4);
  border-left: 3px solid var(--figma-color-dark-tint-4);
  border-right: 3px solid var(--figma-color-dark-tint-4);
  border-bottom: 0;
  border-radius: 33px 33px 0 0;
  overflow: hidden;
  background: var(--figma-color-dark-base);
}

.final-cta-section__dialog-surface {
  position: absolute;
  inset: 0;
  height: 580px;
  padding: 32px;
  background: var(--figma-color-dark-base);
}

.final-cta-section__dialog-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--figma-color-white-base);
  overflow: hidden;
}

.final-cta-section__dialog-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: multiply;
  background: url("../assets/sections/final-cta/dialog-bg-tile.png") lightgray 0% 0% / 100px 100px repeat;
}

.final-cta-section__dialog-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    78.1% 104.47% at 50% 50%,
    rgb(255 255 255 / 0) 0%,
    rgb(215 215 215 / 0.27) 50%,
    rgb(215 215 215 / 0.5) 100%
  );
}

.final-cta-section__dialog-container > * {
  position: relative;
  z-index: 1;
}

.final-cta-section__headline-row {
  position: absolute;
  left: 200px;
  top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 796px;
  z-index: 3;
}

.final-cta-section__brand {
  position: absolute;
  left: 40px;
  top: 48px;
  width: 121.708px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  z-index: 4;
}

.final-cta-section__headline {
  margin: 0;
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  color: var(--figma-color-white-base);
}

.final-cta-section__headline-chip {
  background: var(--figma-color-dark-base);
  padding-inline: 0;
}

.final-cta-section__mockups {
  position: absolute;
  left: 40px;
  right: 40px;
  width: auto;
  top: 141px;
  transform: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.final-cta-screen {
  flex: 0 0 294px;
  width: 294px;
  min-width: 0;
  border: 1px solid var(--figma-color-dark-tint-4);
  border-radius: 33px;
  background: var(--figma-color-off-white-base);
  padding: 26px 18px;
  color: var(--figma-color-dark-base);
}

.final-cta-screen--asset {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.final-cta-screen__asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.final-cta-screen--signin {
  height: 637px;
}

.final-cta-screen--access,
.final-cta-screen--keys {
  height: 631px;
}

.final-cta-screen__clock {
  margin: 0;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

.final-cta-screen__title {
  margin: 12px 0 0;
  font-size: 43px;
  line-height: 43px;
  font-weight: 500;
}

.final-cta-screen__subtitle {
  margin: 14px 0 0;
  font-size: 31px;
  line-height: 31px;
  font-weight: 500;
}

.final-cta-screen__module {
  margin-top: 24px;
  border: 1px solid var(--site-section-border);
  border-radius: 16px;
  height: 52px;
  display: flex;
  align-items: center;
  padding-inline: 18px;
  color: var(--figma-color-dark-base);
}

.final-cta-screen__module-label {
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
}

.final-cta-screen__chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.final-cta-screen__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding-inline: 18px;
  border: 1px solid var(--site-section-border);
  border-radius: 14px;
  font-size: 24px;
  line-height: 24px;
  color: var(--figma-color-dark-base);
}

.final-cta-screen__version {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 20px;
  color: var(--figma-color-dark-tint-5);
}

.final-cta-screen__list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--site-section-border);
}

.final-cta-screen__list li {
  min-height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--site-section-border);
  font-size: 33px;
  line-height: 33px;
  color: var(--figma-color-dark-base);
}

.final-cta-screen__keys-title {
  margin: 0;
  font-size: 24px;
  line-height: 24px;
}

.final-cta-screen__key-item {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.final-cta-screen__key-date {
  font-size: 31px;
  line-height: 31px;
  color: var(--figma-color-dark-base);
}

.final-cta-screen__key-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 40px;
  border: 1px solid var(--site-section-border);
  border-radius: 12px;
  font-size: 20px;
  line-height: 20px;
}

.final-cta-section__dialog-dot {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%);
  background: var(--figma-color-extra-2);
  border-radius: 50%;
  z-index: 5;
}

.final-cta-section__summary {
  position: relative;
  margin-top: 0;
  min-height: 218px;
  padding: 48px;
  border-top: 1px solid var(--site-section-border);
  background: var(--figma-color-white-base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-section__copy {
  margin: 0;
  width: min(820px, 100%);
  color: var(--figma-color-dark-tint-2);
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.18px;
  text-align: center;
}

.final-cta-section__actions {
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.final-cta-section__button-primary {
  --control-height: 44px;
  --control-padding-inline: 20px;
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: 400;
  --header-button-v1-bg: transparent;
  --header-button-v1-color: var(--figma-color-extras-2);
  --header-button-v1-hover-color: var(--figma-color-extras-2);
  --header-button-v1-corner-br-default: url("../assets/sections/hero/cta-corner-br.svg");
  --header-button-v1-corner-bl-default: url("../assets/sections/hero/cta-corner-bl.svg");
  --header-button-v1-corner-tr-default: url("../assets/sections/hero/cta-corner-tr.svg");
  --header-button-v1-corner-tl-default: url("../assets/sections/hero/cta-corner-tl.svg");
  --corner-inset: 5px;
  text-transform: uppercase;
}

.final-cta-section__button-secondary {
  --control-height: 44px;
  --control-padding-inline: 20px;
  --control-gap: 4px;
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: 400;
  --control-color: var(--color-accent-alert);
  --header-button-v2-bg: transparent;
  --header-button-v2-hover-color: var(--color-accent-alert);
  --header-button-v2-icon-size: 9.8995px;
  --header-button-v2-icon-shift-hover: var(--space-8);
  position: relative;
  text-transform: uppercase;
}

.final-cta-section__button-secondary .site-header-button-v2__icon-wrap {
  width: 20px;
  height: 20px;
}

.final-cta-section__button-secondary .site-header-button-v2__icon {
  width: 9.8995px;
  height: 16.9706px;
  inset: 2px auto auto 0;
  transform: none;
}

.final-cta-section__corner {
  position: absolute;
  width: 15px;
  height: 12px;
  background: center / 100% 100% no-repeat url("../assets/sections/hero/cta-corner-tr.svg");
  pointer-events: none;
}

.final-cta-section__corner--tl {
  top: 24px;
  left: 24px;
  transform: scaleX(-1);
}

.final-cta-section__corner--tr {
  top: 24px;
  right: 24px;
}

.final-cta-section__corner--bl {
  bottom: 24px;
  left: 24px;
  transform: rotate(180deg);
}

.final-cta-section__corner--br {
  bottom: 24px;
  right: 24px;
  transform: rotate(180deg) scaleX(-1);
}

.capabilities-section__intro {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  padding: var(--space-48);
  border-inline: 1px solid var(--site-section-border);
  border-top: 0;
  border-bottom: 1px solid var(--site-section-border);
  background: var(--figma-color-off-white-base);
}

.capabilities-section__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
}

.capabilities-section__title-chip {
  display: inline-flex;
  width: fit-content;
  color: var(--figma-color-white-base);
  background: var(--figma-color-dark-base);
  padding-inline: 0;
}

.capabilities-section__intro-copy {
  margin: var(--space-24) 0 0;
  max-width: 111ch;
  color: var(--figma-color-dark-tint-2);
}

.capabilities-section__panel {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  min-height: 600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  border-inline: 1px solid var(--site-section-border);
  border-bottom: 0;
}

.capabilities-section {
  position: relative;
}

.capabilities-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  background: var(--site-section-border);
  transform: translateX(-50%);
  pointer-events: none;
}

.capabilities-section__nav {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--site-section-border);
}

.capabilities-section__nav-item {
  min-height: 120px;
  padding: var(--space-40) var(--space-48);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-4);
  border-top: 1px solid var(--site-section-border);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--figma-color-dark-base);
  text-decoration: none;
}

.capabilities-section__nav-item:first-child {
  border-top: 0;
}

.capabilities-section__nav-item img {
  width: 9.8995px;
  height: 16.9706px;
  flex-shrink: 0;
  transform: translateX(0);
  transition: transform var(--motion-duration-control-emphasis) var(--motion-ease-emphasized);
  will-change: transform;
}

.capabilities-section__nav-item:is(:hover, :focus-visible),
.capabilities-section__nav-item.is-active {
  background: var(--figma-color-white-base);
}

.capabilities-section__nav-item:is(:hover, :focus-visible) img {
  transform: translateX(var(--space-8));
}

.capabilities-section__detail {
  position: relative;
  overflow: hidden;
  padding: var(--space-48) var(--space-48) 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-24);
  background-color: var(--figma-color-white-base);
}

.capabilities-section__detail::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    );
}

.capabilities-section__detail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle 300px at 100% 50%, rgb(255 255 255 / 0) 0%, rgb(255 255 255 / 1) 100%);
}

.capabilities-section__detail > * {
  position: relative;
  z-index: 1;
}

.capabilities-section__detail-mark {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 30px;
  height: 30px;
}

.capabilities-section__detail-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.capabilities-section__detail-title {
  margin: 0;
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
}

.capabilities-section__detail-copy {
  margin: 0;
  max-width: none;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.18px;
  color: var(--figma-color-dark-tint-2);
}

.capabilities-section__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-24);
}

.capability-benefit {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-12);
  min-height: 82px;
  padding: var(--space-24);
  border: 1px solid var(--site-section-border);
  background: var(--figma-color-off-white-base);
}

.capability-benefit::before,
.capability-benefit::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  pointer-events: none;
}

.capability-benefit::before {
  left: -1px;
  bottom: -1px;
  background: center / 100% 100% no-repeat url("../assets/sections/capabilities/cap-corner-bl.svg");
  transform: rotate(180deg);
  transform-origin: center;
}

.capability-benefit::after {
  right: -1px;
  top: -1px;
  background: center / 100% 100% no-repeat url("../assets/sections/capabilities/cap-corner-tr.svg");
}

.capability-benefit__dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: center / 100% 100% no-repeat url("../assets/sections/capabilities/cap-dot.svg");
}

.capability-benefit__text {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--figma-color-dark-tint-2);
}

.capabilities-section__link {
  --control-height: 44px;
  --control-padding-inline: 0;
  --control-gap: var(--space-4);
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: var(--font-weight-regular);
  --control-color: var(--color-accent-alert);
  --header-button-v2-hover-color: var(--color-accent-alert);
  --header-button-v2-bg: transparent;
  --header-button-v2-icon-size: 9.8995px;
  --header-button-v2-icon-shift-hover: var(--space-8);
  align-self: flex-start;
  display: inline-flex;
  margin-top: auto;
  padding-inline: 0;
  padding-right: var(--space-20);
  text-transform: uppercase;
}

.capabilities-section__link .site-header-button-v2__label {
  margin: 0;
  padding-inline: 0;
}

.capabilities-section__link .site-header-button-v2__icon-wrap {
  width: 9.8995px;
  height: 16.9706px;
}

.capabilities-section__link .site-header-button-v2__icon {
  width: 9.8995px;
  height: 16.9706px;
}

.section-label__chip,
.solution-section__label-chip {
  display: inline-flex;
  align-items: center;
  padding-inline: var(--space-4);
  letter-spacing: 0.5px;
  color: var(--figma-color-off-white-base);
  background: var(--figma-color-dark-base);
  text-transform: uppercase;
}

.solution-section__intro {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  padding: var(--space-48);
  border-inline: 1px solid var(--site-section-border);
  border-top: 1px solid var(--site-section-border);
  background: rgb(var(--figma-color-off-white-rgb) / 0.85);
}

.solution-section__title {
  margin: 0;
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
}

.solution-section__cards {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--site-section-border);
}

.solution-card {
  position: relative;
  min-height: 231px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-24);
  align-content: start;
  padding: var(--space-48);
  background: var(--figma-color-off-white-base);
  border-right: 1px solid var(--site-section-border);
  border-bottom: 1px solid var(--site-section-border);
  --solution-corner-color: var(--figma-color-dark-base);
}

.solution-card:nth-child(2n) {
  border-right: 0;
}

.solution-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.solution-card::before,
.solution-card::after {
  content: "";
  position: absolute;
  width: var(--size-corner-width);
  height: var(--size-corner-height);
  box-sizing: border-box;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.solution-card::before {
  top: var(--space-24);
  right: var(--space-24);
  border-top: 1px solid var(--solution-corner-color);
  border-right: 1px solid var(--solution-corner-color);
}

.solution-card::after {
  left: var(--space-24);
  bottom: var(--space-24);
  border-bottom: 1px solid var(--solution-corner-color);
  border-left: 1px solid var(--solution-corner-color);
}

.solution-card--lead {
  display: flex;
  align-items: center;
  grid-template-columns: none;
  gap: 0;
  background: var(--figma-color-dark-base);
  --solution-corner-color: var(--figma-color-off-white-base);
}

.solution-card--lead::before {
  top: var(--space-24);
  right: var(--space-24);
}

.solution-card--lead::after {
  left: var(--space-24);
  bottom: var(--space-24);
}

.solution-card__lead-copy {
  margin: 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
  color: var(--figma-color-off-white-base);
}

/* Explicit selection colors for the dark lead card copy. */
.solution-card__lead-copy::selection,
.solution-card__lead-copy *::selection {
  background-color: #f4f4f4 !important;
  color: #1f1f1f !important;
  -webkit-text-fill-color: #1f1f1f !important;
  text-shadow: none !important;
}

.solution-card__lead-copy::-moz-selection,
.solution-card__lead-copy *::-moz-selection {
  background-color: #f4f4f4 !important;
  color: #1f1f1f !important;
  text-shadow: none !important;
}

/* Safari-specific fallback for dark-card selection rendering. */
@supports (-webkit-touch-callout: none) {
  [data-surface="dark"]::selection,
  [data-surface="dark"] *::selection,
  .solution-card__lead-copy::selection,
  .solution-card__lead-copy *::selection {
    background: #f4f4f4 !important;
    color: #1f1f1f !important;
    -webkit-text-fill-color: #1f1f1f !important;
    text-shadow: none !important;
  }

  [data-surface="dark"]::-moz-selection,
  [data-surface="dark"] *::-moz-selection,
  .solution-card__lead-copy::-moz-selection,
  .solution-card__lead-copy *::-moz-selection {
    background: #f4f4f4 !important;
    color: #1f1f1f !important;
    text-shadow: none !important;
  }
}

.solution-card__number {
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
  font-variant-numeric: tabular-nums;
}

.solution-card__copy p {
  margin: 0;
}

.solution-card__desc {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.18px;
  color: var(--figma-color-dark-tint-2);
}

.solution-card__detail {
  margin-top: var(--space-16) !important;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--figma-color-dark-base);
}

.solution-section__bottom {
  width: min(1200px, calc(100% - (var(--page-inline) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-inline: 1px solid var(--site-section-border);
  border-top: 0;
  border-bottom: 0;
}

.solution-section__summary {
  display: grid;
  grid-template-rows: 202px 469px 116px;
  align-items: stretch;
  min-height: 787px;
  padding: 0;
  background: var(--figma-color-white-base);
  border-right: 1px solid var(--site-section-border);
}

.solution-section__summary-head {
  width: 100%;
  padding: var(--space-48) var(--space-48) var(--space-24);
}

.solution-section__summary-capabilities {
  width: 100%;
  padding: var(--space-24) var(--space-48);
}

.solution-section__summary-footer {
  width: 100%;
  padding: var(--space-24) var(--space-48) var(--space-48);
}

.solution-section__summary-title {
  margin: 0;
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--figma-color-dark-base);
}

.solution-section__summary-title .text-highlight {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-inline: 0;
  font-size: 59px;
  line-height: 59px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--figma-color-white-base);
  background: var(--figma-color-dark-base);
}

.solution-section__capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.solution-capability-item {
  margin: 0;
}

.solution-capability-item__title {
  margin: 0;
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  color: var(--figma-color-dark-base);
}

.solution-capability-item__tag {
  margin: var(--space-8) 0 0;
  display: inline-flex;
  padding-inline: 4px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--figma-color-off-white-base);
  background: var(--figma-color-dark-base);
}

.solution-section__docs-link {
  display: flex;
  margin-top: 0;
  margin-left: 0;
  align-self: flex-start;
  --control-height: 44px;
  --control-padding-inline: 0;
  --control-gap: var(--space-4);
  --control-font-size: 18px;
  --control-line-height: 26px;
  --control-letter-spacing: 1px;
  --control-font-weight: var(--font-weight-regular);
  --control-color: var(--color-accent-alert);
  --header-button-v2-hover-color: var(--color-accent-alert);
  --header-button-v2-bg: transparent;
  --header-button-v2-icon-size: 9.8995px;
  --header-button-v2-icon-shift-hover: var(--space-8);
  padding-inline: 0;
  padding-right: var(--space-20);
  justify-content: flex-start;
  text-transform: uppercase;
}

.solution-section__docs-link .site-header-button-v2__label {
  margin: 0;
  padding-inline: 0;
}

.solution-section__docs-link .site-header-button-v2__icon-wrap {
  width: 9.8995px;
  height: 16.9706px;
}

.solution-section__docs-link .site-header-button-v2__icon {
  width: 9.8995px;
  height: 16.9706px;
  transition:
    left var(--motion-duration-control-emphasis) var(--motion-ease-emphasized),
    transform var(--motion-duration-control-emphasis) var(--motion-ease-emphasized);
}

.solution-section__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 787px;
  padding: 0;
  background: var(--figma-color-off-white-base);
  overflow: hidden;
}

.solution-section__visual::before,
.solution-section__visual::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  border-color: var(--figma-color-dark-base);
  border-style: solid;
  pointer-events: none;
}

.solution-section__visual::before {
  left: 24px;
  bottom: 24px;
  border-width: 0 0 1px 1px;
}

.solution-section__visual::after {
  top: 24px;
  right: 24px;
  border-width: 1px 1px 0 0;
}

.solution-section__visual-grid {
  position: relative;
  width: 600px;
  height: 600px;
  max-width: 100%;
  max-height: 100%;
  background-color: var(--figma-color-off-white-base);
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 99px,
      var(--site-section-border) 99px,
      var(--site-section-border) 100px
    );
}

.solution-section__stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.solution-section__visual-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgb(244 244 244 / 1) 0%,
      rgb(244 244 244 / 0) 24%
    ),
    linear-gradient(
      to bottom,
      rgb(244 244 244 / 0) 0%,
      rgb(244 244 244 / 0) 68%,
      rgb(244 244 244 / 1) 100%
    ),
    radial-gradient(circle at 50% 42%, rgb(244 244 244 / 0) 34%, rgb(244 244 244 / 0.98) 100%);
}

.solution-section .section-intro {
  padding: 0;
  border-top: 1px solid var(--site-section-border);
  background: var(--color-surface-overlay-strong);
  backdrop-filter: blur(var(--hero-metrics-wrap-blur));
  -webkit-backdrop-filter: blur(var(--hero-metrics-wrap-blur));
}

.solution-section .section-intro__title {
  padding: var(--space-48) var(--space-48) var(--space-12);
}

.solution-section .section-intro__kicker {
  margin: 0;
  padding: var(--space-12) var(--space-48) var(--space-48);
}

.solution-section .problem-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-48);
  padding: 0;
  background: transparent;
  border: 1px solid var(--site-section-border);
}

.solution-section .problem-grid__visual-wrap {
  min-height: 535px;
}

.solution-section .problem-list {
  height: 100%;
  overflow: hidden;
  border: 0;
  border-left: 1px solid var(--site-section-border);
}

.solution-section .problem-item {
  gap: var(--space-24);
  padding: var(--space-40) var(--space-48);
}

.solution-section .problem-item::after {
  left: var(--space-24);
  bottom: var(--space-24);
}

.solution-section .problem-item::before {
  right: var(--space-24);
  top: var(--space-24);
}

.solution-section .problem-statement {
  padding: 0;
  border-top: 0;
  background: var(--color-surface-overlay-strong);
  backdrop-filter: blur(var(--hero-metrics-wrap-blur));
  -webkit-backdrop-filter: blur(var(--hero-metrics-wrap-blur));
}

.solution-section .problem-statement__eyebrow {
  margin: 0;
  padding: var(--space-48) var(--space-48) var(--space-12);
}

.solution-section .problem-statement__quote {
  max-width: none;
  padding: var(--space-12) var(--space-48) var(--space-48);
}

.text-highlight {
  display: inline-block;
  padding-inline: 0.125em;
  color: var(--figma-color-white-base);
  background: var(--figma-color-dark-base);
}

:focus-visible {
  outline: 2px solid var(--figma-color-dark-base);
  outline-offset: 2px;
}

@media (max-width: 1199px) {
  .site-header__inner {
    padding-inline: var(--page-inline);
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: var(--space-16);
    padding: var(--space-16) var(--page-inline) var(--space-24);
    border-bottom: 1px solid var(--site-section-border);
    background: var(--figma-color-off-white-base);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(var(--space-8) * -1));
    transition:
      opacity var(--motion-duration-fast) var(--motion-ease-standard),
      transform var(--motion-duration-fast) var(--motion-ease-standard),
      visibility var(--motion-duration-fast) var(--motion-ease-standard);
  }

  .site-header-shell.is-open .site-header__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__nav {
    position: static;
    transform: none;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .site-header__controls {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .site-header__dropdown-panel {
    position: static;
    top: auto;
    left: auto;
    min-width: 100%;
    margin-top: var(--space-8);
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .site-header__dropdown-group.is-open .site-header__dropdown-panel {
    display: grid;
  }

  .hero-section__panel {
    gap: var(--space-24);
    padding: var(--space-32) var(--space-24);
  }

  .solution-section__title {
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    line-height: clamp(2.125rem, 4.8vw, 3.125rem);
  }

  .solution-section__cards,
  .solution-section__bottom {
    grid-template-columns: 1fr;
  }

  .solution-card {
    border-right: 0;
  }

  .solution-card:not(:last-child) {
    border-bottom: 1px solid var(--site-section-border);
  }

  .solution-section__summary {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--site-section-border);
  }

  .solution-section__visual {
    min-height: 420px;
    padding: var(--space-24);
  }

  .solution-section__visual-grid {
    width: min(100%, 420px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .capabilities-section__title {
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    line-height: clamp(2.125rem, 4.8vw, 3.125rem);
  }

  .security-section__title {
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    line-height: clamp(2.125rem, 4.8vw, 3.125rem);
  }

  .security-section__panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .security-performance-item {
    min-height: 150px;
  }

  .security-performance-item:nth-child(2n) {
    border-right: 0;
  }

  .security-performance-item:nth-child(n + 3) {
    border-top: 1px solid var(--site-section-border);
  }

  .security-slide {
    flex-basis: 100%;
    min-height: 210px;
    padding: var(--space-24);
  }

  .security-slide__row {
    gap: var(--space-16);
  }

  .security-slide__text {
    font-size: 18px;
    line-height: 24px;
  }

  .security-slide__read {
    right: 24px;
    bottom: 24px;
  }

  .security-section__intro {
    border-right: 0;
    border-bottom: 1px solid var(--site-section-border);
  }

  .security-section__intro,
  .security-section__metric {
    padding: var(--space-24);
  }

  .security-section__metric-kicker {
    font-size: 39px;
    line-height: 39px;
  }

  .security-section__metric-main {
    font-size: 64px;
    line-height: 64px;
  }

  .security-section__metric-main > span:first-child {
    font-size: 46px;
    line-height: 46px;
  }

  .security-section__metric::before {
    top: 24px;
    right: 24px;
  }

  .security-section__metric::after {
    right: 24px;
    bottom: 24px;
  }

  .capabilities-section__panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .capabilities-section__nav {
    border-right: 0;
    border-bottom: 1px solid var(--site-section-border);
  }

  .capabilities-section__nav-item {
    min-height: 96px;
    padding: var(--space-24);
    font-size: 22px;
    line-height: 26px;
  }

  .capabilities-section__detail {
    padding: var(--space-24);
  }

  .capabilities-section__detail-mark {
    top: 24px;
    right: 24px;
  }

  .capabilities-section__detail-title {
    font-size: 36px;
    line-height: 40px;
  }

  #how .section-label,
  .how-section__intro,
  .how-step-card,
  .how-section__foot {
    padding-inline: var(--space-24);
  }

  #how .section-label-bar {
    min-height: 122px;
    padding-top: var(--space-64);
  }

  .how-section__headline {
    font-size: clamp(1.9rem, 4.6vw, 2.9rem);
    line-height: clamp(1.9rem, 4.6vw, 2.9rem);
  }

  .how-v2__headline {
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    line-height: clamp(2.125rem, 4.8vw, 3.125rem);
  }

  .how-v2__pipeline {
    width: calc(100% - 96px);
    grid-template-columns: 120px minmax(56px, 1fr) 214px minmax(56px, 1fr) 120px;
    gap: var(--space-16);
  }

  .how-v2__stats p {
    font-size: 18px;
    line-height: 27px;
  }

  .hero-section__lead-strip,
  .hero-section__cta-bar,
  .section-intro,
  .problem-grid,
  .problem-statement {
    border-inline: 0;
  }

  .hero-section__grid-background {
    display: none;
  }

  .hero-section__frame > .hero-section__metrics-wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .hero-section__title {
    font-size: clamp(2.4rem, 7.5vw, 4.25rem);
    line-height: clamp(2.4rem, 7.5vw, 4.25rem);
    white-space: normal;
  }

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

  .hero-section__content {
    order: 1;
  }

  .hero-section__visual-stage {
    order: 0;
  }

  .hero-section__visual-wrap {
    width: min(100%, var(--hero-visual-width));
    min-height: auto;
    margin-inline: auto;
  }

  .hero-section__visual {
    width: 100%;
    height: auto;
  }

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

  .hero-metric {
    border-right: 1px solid var(--site-section-border);
  }

  .hero-metric:nth-child(2n) {
    border-right: 0;
  }

  .hero-metric:nth-child(n + 3) {
    border-top: 1px solid var(--site-section-border);
  }

  .hero-section__cta-bar {
    grid-template-columns: 1fr;
    gap: var(--space-24);
    padding: var(--space-24);
  }
}

@media (min-width: 810px) and (max-width: 1199px) {
  .site-header__inner {
    padding-inline: var(--space-48);
  }

  .site-header__toggle {
    display: none;
  }

  .site-header__menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: 0;
    border-bottom: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header__nav {
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: nowrap;
    gap: var(--space-24);
  }

  .site-header__controls {
    width: auto;
    margin-left: var(--space-4);
    justify-content: flex-end;
  }

  .site-header__dropdown-panel {
    position: absolute;
    top: calc(100% + var(--space-8));
    left: 0;
    min-width: var(--layout-dropdown-panel-min);
    margin-top: 0;
    display: grid;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(var(--space-8));
  }

  .site-header__dropdown-group.is-open .site-header__dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
    padding-block: 0;
  }

  .hero-section__viewport {
    min-height: calc(100svh - var(--site-header-height) - var(--space-64));
    height: auto;
  }
}

@media (max-width: 809px) {
  .site-header__nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header-link,
  .site-header-dropdown,
  .site-header-link-m2 {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-section__frame > .hero-section__metrics-wrap {
    margin-inline: 0;
    width: 100%;
    max-width: 100%;
  }

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

  .hero-metric {
    min-width: 0;
    padding: var(--space-24) var(--space-16);
    border-right: 0;
    border-top: 1px solid var(--site-section-border);
  }

  .hero-metric:first-child {
    border-top: 0;
  }

  .hero-section__cta-row {
    flex-direction: column;
    row-gap: var(--space-12);
    align-items: stretch;
  }

  .hero-section__cta-row .site-header-button-v1,
  .hero-section__cta-row .site-header-button-v2 {
    justify-content: flex-start;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    padding: var(--space-24);
  }

  .section-label__chip,
  .solution-section__label-chip {
    font-size: 22px;
    line-height: 26px;
  }

  .solution-section__intro {
    padding: var(--space-24);
  }

  .solution-card {
    min-height: 200px;
    grid-template-columns: 1fr;
    gap: var(--space-16);
    padding: var(--space-24);
  }

  .solution-section__summary {
    padding: 0;
  }

  .solution-section__summary-head {
    padding: var(--space-24) var(--space-24) var(--space-16);
  }

  .solution-section__summary-capabilities {
    padding: var(--space-16) var(--space-24);
  }

  .solution-section__summary-footer {
    padding: var(--space-16) var(--space-24) var(--space-24);
  }

  .solution-section__summary-title {
    font-size: 40px;
    line-height: 40px;
  }

  .capabilities-section__intro,
  .capabilities-section__detail {
    padding: var(--space-24);
  }

  .security-section__intro,
  .security-section__metric {
    padding: var(--space-24);
  }

  .capabilities-section__title {
    font-size: 40px;
    line-height: 40px;
  }

  .security-section__title {
    font-size: 40px;
    line-height: 40px;
  }

  .security-section__metric-kicker {
    font-size: 32px;
    line-height: 32px;
  }

  .security-section__metric-main {
    gap: var(--space-16);
    font-size: 52px;
    line-height: 52px;
  }

  .security-section__metric-main > span:first-child {
    font-size: 40px;
    line-height: 40px;
  }

  .security-section__performance {
    grid-template-columns: 1fr;
  }

  .security-performance-item {
    min-height: auto;
    padding: var(--space-24);
  }

  .security-performance-item,
  .security-performance-item:nth-child(2n) {
    border-right: 0;
  }

  .security-performance-item:not(:first-child) {
    border-top: 1px solid var(--site-section-border);
  }

  .security-slide {
    min-height: 190px;
    padding: var(--space-24);
  }

  .security-slide__row {
    gap: var(--space-12);
  }

  .security-slide__icon {
    width: 40px;
    height: 40px;
  }

  .security-slide__text {
    font-size: 17px;
    line-height: 22px;
  }

  .security-slide__read {
    position: static;
    margin-top: auto;
    font-size: 16px;
    line-height: 24px;
  }

  .capabilities-section__detail-title {
    font-size: 32px;
    line-height: 36px;
  }

  .capabilities-section__benefits {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }

  .capabilities-section__nav-item {
    min-height: 82px;
    padding: var(--space-24);
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .solution-capability-item__title {
    font-size: 28px;
    line-height: 31px;
  }

  .solution-capability-item__tag {
    font-size: 18px;
    line-height: 26px;
  }

  .how-section__shell {
    border-inline: 0;
  }

  .how-section__main {
    grid-template-columns: 1fr;
  }

  .how-section__steps {
    border-right: 0;
    border-bottom: 1px solid var(--site-section-border);
  }

  .how-section__visual {
    min-height: 420px;
  }

  .how-section__visual-grid {
    transform: translate(-50%, -50%) scale(0.88);
    transform-origin: 50% 50%;
  }

  .how-step-card {
    padding-block: var(--space-32);
  }

  .hero-section__viewport {
    min-height: 0;
    height: auto;
  }

  .how-v2__intro {
    padding: var(--space-24);
  }

  .how-v2__subhead {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
  }

  .how-v2__diagram {
    min-height: 560px;
  }

  .how-v2__pipeline {
    top: 220px;
    grid-template-columns: 1fr;
    justify-items: center;
    width: calc(100% - 48px);
    gap: var(--space-20);
  }

  .how-v2__pipeline-arrow {
    --how-pipeline-chevron-size: 11px;
    --how-pipeline-chevron-gap: 7px;
    width: 120px;
  }

  .how-v2__stats {
    grid-template-columns: 1fr;
    height: auto;
    bottom: var(--space-24);
    width: calc(100% - 48px);
    gap: var(--space-8);
  }

  .how-v2__stats p {
    font-size: 24px;
    line-height: 31px;
    letter-spacing: 0.24px;
  }

  .how-v2__performance {
    grid-template-columns: 1fr;
  }

  .how-v2__learn {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--site-section-border);
    padding: var(--space-24);
    justify-content: flex-start;
  }

  .how-v2__learn-link {
    font-size: 18px;
  }

  .how-v2__learn-mark {
    display: none;
  }

  .how-v2__nodes {
    grid-template-columns: 1fr;
  }

  .how-v2__node-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--site-section-border);
    padding: var(--space-24);
  }

  .how-v2__node-card:last-child {
    border-bottom: 0;
  }
}

/* Labs-style adaptive layer: fluid typography + compact desktop normalization */
@media (min-width: 320px) and (max-width: 1439px) {
  html {
    font-size: calc(15px + 1 * ((100vw - 320px) / 1119));
  }
}

@media (min-width: 1440px) {
  html {
    font-size: calc(16px + 1 * ((100vw - 1440px) / 960));
  }
}

@media (max-width: 1439px) {
  .hero-section,
  .content-section,
  .section-label-bar {
    overflow-x: clip;
  }
}

@media (min-width: 810px) and (max-width: 1199px) {
  :root {
    --layout-container-max: var(--container-tablet);
    --page-inline: var(--container-padding-tablet);
    --layout-grid-gap: var(--grid-gap-tablet);
    --layout-grid-columns: var(--grid-columns-tablet);
  }
}

@media (min-width: 1200px) {
  :root {
    --layout-container-max: var(--container-desktop);
    --page-inline: var(--container-padding-desktop);
    --layout-grid-gap: var(--grid-gap-desktop);
    --layout-grid-columns: var(--grid-columns-desktop);
  }

  .section-label__chip,
  .solution-section__label-chip {
    letter-spacing: 0.75px;
  }

  .hero-section {
    padding-block: 0;
  }

  .hero-section__viewport {
    width: 100%;
    min-height: 0;
    height: auto;
    display: block;
  }

}

@media (min-width: 1264px) {
  .how-v2__performance {
    width: 1200px;
    margin-inline: auto;
    grid-template-columns: 600px 600px;
  }

  .how-v2__nodes {
    grid-template-columns: 300px 300px;
  }
}

@media (max-width: 1199px) {
  .developers-section__intro {
    min-height: auto;
    padding: 120px var(--space-24) var(--space-32);
  }

  .developers-section__intro-inner {
    min-height: auto;
    padding: var(--space-24);
  }

  .developers-section__title {
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    line-height: clamp(2.125rem, 4.8vw, 3.125rem);
  }

  .developers-section__copy {
    max-width: 42ch;
  }

  .developers-section__highlights {
    grid-template-columns: 1fr;
  }

  .developers-highlights__center {
    border-inline: 0;
  }

  .developers-section__ship {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .developers-section__ship-copy {
    border-right: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--site-section-border);
  }

  .developers-highlights__column--left,
  .developers-highlights__column--right {
    border-left: 0;
    border-right: 0;
    margin-left: 0;
  }

  .developers-highlights__center {
    min-height: 260px;
    border-bottom: 1px solid var(--site-section-border);
  }

  .operations-section__title {
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    line-height: clamp(2.125rem, 4.8vw, 3.125rem);
  }

  .operations-section__panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .operations-section__visual {
    border-right: 0;
    border-bottom: 1px solid var(--site-section-border);
  }

  .operations-visual__canvas {
    min-height: 560px;
  }

  .pricing-section__headline-wrap {
    margin-top: 96px;
  }

  .pricing-section__headline {
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    line-height: clamp(2.125rem, 4.8vw, 3.125rem);
  }

  .pricing-section__plans {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pricing-plan-card {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--site-section-border);
  }

  .pricing-plan-card:last-child {
    border-bottom: 0;
  }

  .pricing-plan-card__badge {
    top: 0;
  }

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

  .pricing-benefit-item {
    border-right: 0;
    border-bottom: 1px solid var(--site-section-border);
  }

  .pricing-benefit-item:last-child {
    border-bottom: 0;
  }

  .faq-section__title {
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    line-height: clamp(2.125rem, 4.8vw, 3.125rem);
  }

  .faq-section__panel {
    grid-template-columns: 1fr;
  }

  .faq-section__docs-panel {
    border-left: 0;
    border-top: 1px solid var(--site-section-border);
  }

  .final-cta-section__container {
    padding-top: 96px;
  }

  .final-cta-section__dialog-shell {
    height: 420px;
    border-width: 2px;
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
  }

  .final-cta-section__dialog-surface {
    height: 520px;
    padding: 24px;
  }

  .final-cta-section__headline-row {
    left: 152px;
    top: 32px;
    width: min(560px, calc(100% - 184px));
  }

  .final-cta-section__headline {
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    line-height: clamp(2.125rem, 4.8vw, 3.125rem);
  }

  .final-cta-section__brand {
    left: 24px;
    top: 32px;
    width: 102px;
    height: auto;
  }

  .final-cta-section__mockups {
    left: 24px;
    right: 24px;
    top: 118px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .final-cta-screen {
    width: auto;
    flex-basis: auto;
    min-width: 0;
    min-height: 420px;
    height: 420px;
    border-radius: 24px;
  }

  .final-cta-screen--asset {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }

  .final-cta-screen__title {
    font-size: 32px;
    line-height: 32px;
  }

  .final-cta-screen__subtitle,
  .final-cta-screen__module-label,
  .final-cta-screen__chip,
  .final-cta-screen__list li,
  .final-cta-screen__key-date {
    font-size: 20px;
    line-height: 24px;
  }

  .final-cta-screen__version,
  .final-cta-screen__key-state {
    font-size: 14px;
    line-height: 18px;
  }

  .final-cta-section__summary {
    min-height: 0;
  }

}

@media (max-width: 809px) {
  .developers-section__intro {
    padding-top: var(--space-80);
  }

  .developers-section__intro-inner {
    padding: var(--space-16);
  }

  .developers-section__copy {
    max-width: 36ch;
  }

  .developers-highlight-card {
    min-height: 96px;
    padding: var(--space-24);
  }

  .developers-section__ship-copy,
  .developers-section__ship-cta {
    padding: var(--space-24);
  }

  .developers-section__ship-title {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
    line-height: 1.05;
  }

  .developers-highlight-card__corner--bl {
    left: 12px;
    bottom: 12px;
  }

  .developers-highlight-card__corner--tr {
    right: 12px;
    top: 12px;
  }

  .operations-section__intro {
    padding: var(--space-24);
  }

  .operations-visual__canvas {
    min-height: 500px;
    padding: var(--space-24);
  }

  .operations-visual__scene {
    width: 500px;
    height: 500px;
  }

  .operations-visual__grid {
    inset: 0;
  }

  .operations-visual__icon--robot {
    left: 52px;
    top: 90px;
  }

  .operations-visual__icon--cube {
    right: 52px;
    top: 90px;
  }

  .operations-visual__icon--files {
    left: 52px;
    bottom: 110px;
  }

  .operations-visual__icon--browser {
    right: 52px;
    bottom: 110px;
  }

  .operations-visual__stack {
    transform: translate(-50%, -50%) scale(0.88);
  }

  .operations-visual__arrow--top,
  .operations-visual__arrow--bottom {
    left: 50%;
    width: 94px;
    transform: translateX(-50%);
  }

  .operations-visual__arrow--top {
    top: 132px;
  }

  .operations-visual__arrow--bottom {
    bottom: 148px;
    transform: translateX(-50%) rotate(180deg);
  }

  .operations-visual__arrow--left,
  .operations-visual__arrow--right {
    top: 50%;
    height: 94px;
    transform: translateY(-50%);
  }

  .operations-visual__arrow--left {
    left: 86px;
    transform: translateY(-50%) rotate(180deg);
  }

  .operations-visual__arrow--right {
    right: 86px;
  }

  .operations-section__docs-link {
    left: 24px;
    bottom: 24px;
  }

  .final-cta-section__container {
    width: calc(100% - (var(--page-inline) * 2));
    padding-top: 64px;
  }

  .final-cta-section__dialog-shell {
    height: auto;
    border-width: 2px;
    border-radius: 24px 24px 0 0;
  }

  .final-cta-section__dialog-surface {
    position: static;
    width: 100%;
    min-height: 420px;
    height: auto;
    padding: 16px;
    background: var(--figma-color-dark-base);
  }

  .final-cta-section__dialog-container {
    min-height: 388px;
  }

  .final-cta-section__headline-row {
    position: static;
    width: 100%;
    padding: 24px 20px 0 20px;
    left: auto;
    top: auto;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .final-cta-section__brand {
    position: static;
    width: 102px;
    height: auto;
    margin: 0 0 16px 20px;
  }

  .final-cta-section__headline {
    font-size: 40px;
    line-height: 40px;
  }

  .final-cta-section__mockups {
    position: static;
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 8px 8px;
  }

  .final-cta-screen {
    height: auto;
    min-height: 0;
    border-radius: 18px;
    padding: 20px 16px;
  }

  .final-cta-screen--asset {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    height: auto;
  }

  .final-cta-screen__clock {
    display: none;
  }

  .final-cta-screen__title {
    margin-top: 0;
  }

  .final-cta-screen__list li {
    min-height: 46px;
  }

  .final-cta-section__summary {
    padding: 24px;
  }

  .final-cta-section__copy {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
  }

  .final-cta-section__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .final-cta-section__actions .site-header-button-v1,
  .final-cta-section__actions .site-header-button-v2 {
    justify-content: flex-start;
  }

  .final-cta-section__corner--tl,
  .final-cta-section__corner--tr {
    top: 12px;
  }

  .final-cta-section__corner--bl,
  .final-cta-section__corner--br {
    bottom: 12px;
  }

  .final-cta-section__corner--tl,
  .final-cta-section__corner--bl {
    left: 12px;
  }

  .final-cta-section__corner--tr,
  .final-cta-section__corner--br {
    right: 12px;
  }

  .operations-step-card {
    min-height: 112px;
    padding: var(--space-24);
  }

  .operations-step-card__text {
    font-size: 20px;
    line-height: 24px;
  }

  .operations-step-card__corner--bl {
    left: 12px;
    bottom: 12px;
  }

  .operations-step-card__corner--tr {
    right: 12px;
    top: 12px;
  }

  .pricing-section__hero {
    min-height: 420px;
  }

  .pricing-section__headline-wrap {
    margin-top: 72px;
    padding: var(--space-24);
  }

  .pricing-section__headline {
    width: min(320px, 100%);
    font-size: 40px;
    line-height: 40px;
  }

  .pricing-section__subheadline-wrap {
    padding: var(--space-16) var(--space-24) var(--space-24);
  }

  .pricing-section__subheadline {
    width: min(320px, 100%);
  }

  .pricing-plan-card {
    padding: var(--space-24);
    min-height: 260px;
    gap: var(--space-24);
  }

  .pricing-plan-card__button-frame {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    justify-content: flex-start;
  }

  .pricing-plan-card__button {
    width: auto;
  }

  .pricing-section__plans .pricing-plan-card:first-child .pricing-plan-card__button {
    width: auto;
  }

  .pricing-section__plans .pricing-plan-card--popular .pricing-plan-card__button {
    width: auto;
  }

  .pricing-section__plans .pricing-plan-card:last-child .pricing-plan-card__button {
    width: auto;
  }

  .pricing-section__free-title {
    padding: var(--space-24);
  }

  .pricing-section__free-chip {
    font-size: 40px;
    line-height: 40px;
  }

  .pricing-benefit-item {
    min-height: 112px;
    padding: var(--space-24);
    gap: var(--space-16);
  }

  .pricing-benefit-item__text {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.8px;
  }

  .faq-section__intro {
    padding: var(--space-24);
  }

  .faq-section__copy {
    margin-top: var(--space-12);
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 1.6px;
  }

  .faq-item {
    padding: var(--space-24);
    gap: var(--space-16);
  }

  .faq-item__question {
    font-size: 24px;
    line-height: 31px;
  }

  .faq-item__answer {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
  }

  .faq-item__toggle {
    width: 22px;
    height: 15px;
  }

  .faq-item__toggle-wrap {
    width: 52px;
    height: 36px;
  }

  .faq-section__docs-panel {
    padding: var(--space-24);
    padding-bottom: calc(24px + 44px + var(--space-16));
  }

  .faq-section__docs-title {
    font-size: 24px;
    line-height: 31px;
  }

  .faq-docs-link.how-v2__learn-link {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
  }

  .faq-section__docs-mark-wrap {
    min-height: 200px;
    padding-block: var(--space-24);
  }

  .faq-section__docs-site-link {
    left: 24px;
    bottom: 24px;
  }

  .faq-section__docs-corner--tr {
    top: 24px;
    right: 24px;
  }

  .faq-section__docs-corner--br {
    right: 24px;
    bottom: 24px;
  }
}
