:root {
  --ap-bg: #f8f7f3;
  --ap-bg-soft: #f3f2ed;
  --ap-paper: #ffffff;
  --ap-ink: #14191e;
  --ap-ink-soft: #303840;
  --ap-muted: #5b636b;
  --ap-line: rgba(20, 25, 30, 0.16);
  --ap-line-soft: rgba(20, 25, 30, 0.09);
  --ap-blue: #0a72c7;
  --ap-blue-deep: #075996;
  --ap-blue-pale: #dcecf7;
  --ap-product: #071a2d;
  --ap-product-muted: #aab8c5;
  --ap-shell: 1320px;
  --ap-gutter: clamp(28px, 5vw, 76px);
  --ap-shadow: 0 28px 80px rgba(11, 25, 38, 0.19);
}

* {
  box-sizing: border-box;
}

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

body.ap-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--ap-bg);
  color: var(--ap-ink);
  font-family: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.ap-menu-open {
  overflow: hidden;
}

.ap-site h1,
.ap-site h2,
.ap-site h3,
.ap-site p {
  padding: 0;
}

.ap-site a {
  color: inherit;
  text-decoration: none;
}

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

.ap-site button,
.ap-site input,
.ap-site textarea,
.ap-site select {
  font: inherit;
}

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

.ap-shell {
  width: min(calc(100% - (var(--ap-gutter) * 2)), var(--ap-shell));
  margin-inline: auto;
}

.ap-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ap-ink);
  color: #fff !important;
  font-weight: 700;
}

.ap-skip-link:focus {
  transform: none;
}

.ap-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ap-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: rgba(10, 114, 199, 0.5);
  opacity: 0;
  transition: opacity 180ms ease;
}

.ap-header.is-scrolled::after {
  opacity: 1;
}

.admin-bar .ap-header {
  top: 32px;
}

.ap-header__inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.ap-brand {
  width: 238px;
}

.ap-brand img {
  width: 238px;
  height: auto;
}

.ap-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ap-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: var(--ap-ink-soft);
  font-size: 14px;
  font-weight: 520;
  word-spacing: 0.1em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.ap-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--ap-blue);
  transition: right 220ms ease;
}

.ap-nav a:hover,
.ap-nav a:focus-visible {
  color: var(--ap-blue-deep);
}

.ap-nav a:hover::after,
.ap-nav a:focus-visible::after,
.ap-nav .current-menu-item > a::after {
  right: 0;
}

.ap-nav .current-menu-item > a {
  color: var(--ap-blue-deep);
}

.ap-menu-toggle {
  display: none;
}

.ap-nav .ap-nav__mobile-cta {
  display: none;
}

.ap-button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid var(--ap-blue);
  border-radius: 3px;
  background: var(--ap-blue);
  color: #fff !important;
  font-size: 15px;
  font-weight: 620;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ap-button:hover {
  transform: translateY(-2px);
  border-color: var(--ap-blue-deep);
  background: var(--ap-blue-deep);
  box-shadow: 0 8px 0 rgba(7, 89, 150, 0.12);
}

.ap-button--header {
  min-width: 156px;
  min-height: 54px;
  padding-inline: 22px;
}

.ap-button--dark {
  border-color: var(--ap-ink);
  background: var(--ap-ink);
}

.ap-button--dark:hover {
  border-color: #000;
  background: #000;
  box-shadow: 0 8px 0 rgba(20, 25, 30, 0.14);
}

.ap-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 4px 0 7px;
  border-bottom: 1px solid var(--ap-blue);
  color: var(--ap-ink) !important;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.2;
  transition: gap 180ms ease, color 180ms ease;
}

.ap-text-link:hover {
  gap: 34px;
  color: var(--ap-blue-deep) !important;
}

.ap-text-link--light {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff !important;
}

.ap-text-link--light:hover {
  border-color: #2ac7f2;
  color: #2ac7f2 !important;
}

.ap-button:focus-visible,
.ap-text-link:focus-visible,
.ap-brand:focus-visible,
.ap-menu-toggle:focus-visible,
.ap-footer a:focus-visible {
  outline: 2px solid var(--ap-blue);
  outline-offset: 4px;
}

.ap-hero {
  position: relative;
  min-height: clamp(720px, calc(100svh - 104px), 900px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--ap-line-soft);
  background: var(--ap-bg);
}

.ap-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.32) 20%,
    rgba(255, 255, 255, 0.15) 42%,
    rgba(255, 255, 255, 0.04) 54%,
    rgba(255, 255, 255, 0) 64%
  );
}

.ap-hero__background {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 -1%;
  width: 104%;
  height: 100%;
  object-fit: fill;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

.ap-hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.ap-hero__content {
  position: relative;
  left: 10%;
  width: min(610px, 48%);
  padding: 26px 0 42px 2px;
}

.ap-hero h1 {
  margin: 0 0 32px;
  max-width: 650px;
  color: var(--ap-ink);
  font-size: clamp(74px, 7.35vw, 116px);
  font-weight: 390;
  letter-spacing: -0.019em;
  line-height: 0.89;
}

.ap-hero h1 span,
.ap-hero h1 em {
  display: block;
  font-style: normal;
}

.ap-hero h1 em {
  color: var(--ap-blue);
  font-weight: 430;
}

.ap-hero__content > p {
  max-width: 545px;
  margin: 0;
  color: var(--ap-ink-soft);
  font-size: clamp(18px, 1.45vw, 22px);
  letter-spacing: -0.012em;
  line-height: 1.52;
}

.ap-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.4vw, 48px);
  flex-wrap: wrap;
}

.ap-actions .ap-button {
  min-width: 204px;
}

.ap-hero .ap-actions .ap-button {
  min-width: 184px;
  min-height: 52px;
  padding-inline: 21px;
  gap: 28px;
  border-color: rgba(10, 114, 199, 0.32);
  background: rgba(10, 114, 199, 0.08);
  color: var(--ap-blue-deep) !important;
  font-weight: 560;
}

.ap-hero .ap-actions .ap-button:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 114, 199, 0.48);
  background: rgba(10, 114, 199, 0.14);
  box-shadow: none;
}

.ap-section {
  position: relative;
  padding: clamp(96px, 10vw, 154px) 0;
  border-top: 1px solid var(--ap-line-soft);
}

.ap-audit {
  overflow: hidden;
  isolation: isolate;
  background: var(--ap-bg);
}

.ap-audit::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -34%;
  right: -17%;
  width: min(58vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(10, 114, 199, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 88px rgba(10, 114, 199, 0.018), 0 0 0 89px rgba(10, 114, 199, 0.055);
  pointer-events: none;
}

.ap-audit::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 54%;
  background-image:
    linear-gradient(rgba(10, 114, 199, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 114, 199, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.ap-audit__grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.38fr) minmax(0, 1.62fr);
  gap: clamp(60px, 8vw, 132px);
}

.ap-audit__rail {
  position: relative;
  min-height: 590px;
  padding: 2px 0 2px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--ap-blue);
}

.ap-audit__rail::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--ap-blue);
  border-radius: 50%;
  background: var(--ap-bg);
}

.ap-audit__rail p,
.ap-audit__rail span {
  margin: 0;
  color: var(--ap-blue-deep);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ap-audit__rail p {
  max-width: 155px;
}

.ap-audit__rail span {
  color: #8b9399;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.ap-audit__content header {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(270px, 0.5fr);
  gap: clamp(45px, 7vw, 108px);
  align-items: end;
}

.ap-audit__content h2 {
  max-width: 950px;
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(62px, 6.7vw, 102px);
  font-weight: 390;
  letter-spacing: 0.05em;
  line-height: 0.92;
}

.ap-audit__content header > p {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--ap-muted);
  font-size: 17px;
  line-height: 1.58;
}

.ap-audit__details {
  margin-top: clamp(68px, 8vw, 106px);
  border-top: 1px solid var(--ap-ink);
}

.ap-audit__details > div {
  min-height: 90px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--ap-line);
}

.ap-audit__details > div > span {
  color: var(--ap-blue-deep);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ap-audit__details p {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 480;
  letter-spacing: -0.015em;
}

.ap-audit__details i {
  margin-inline: 10px;
  color: rgba(10, 114, 199, 0.55);
  font-style: normal;
  font-weight: 400;
}

.ap-audit__action {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.ap-audit__action .ap-button {
  min-width: 238px;
}

.ap-audit__action > p {
  margin: 0;
  color: #747d83;
  font-size: 12px;
}

.ap-kicker {
  margin: 0;
  color: var(--ap-blue-deep);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ap-index {
  color: #92989d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.ap-intro {
  background: var(--ap-bg-soft);
}

.ap-intro__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.6fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.ap-intro__label {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 20px;
  border-left: 1px solid var(--ap-blue);
}

.ap-intro h2,
.ap-section-heading h2,
.ap-custom h2,
.ap-final-cta h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(48px, 5.15vw, 78px);
  font-weight: 420;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.ap-intro h2 {
  max-width: 860px;
}

.ap-intro h2 + p {
  max-width: 735px;
  margin: 32px 0 0;
  color: var(--ap-muted);
  font-size: 19px;
  line-height: 1.6;
}

.ap-products {
  padding-top: clamp(72px, 7.5vw, 116px);
  background: var(--ap-paper);
}

.ap-products .ap-section-heading {
  margin-bottom: 50px;
}

.ap-products .ap-section-heading h2 span {
  color: var(--ap-blue);
}

.ap-section-heading {
  max-width: none;
  margin-bottom: clamp(58px, 6vw, 86px);
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: 18px clamp(54px, 8vw, 132px);
}

.ap-section-heading h2 {
  max-width: 920px;
}

.ap-section-heading__intro {
  grid-column: 2;
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--ap-muted);
  font-size: 18px;
}

.ap-section-heading--compact {
  margin-bottom: 62px;
}

.ap-product-feature {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  isolation: isolate;
  background: var(--ap-product);
  color: #fff;
}

.ap-product-feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 73% 39%, rgba(15, 194, 235, 0.16), transparent 29%);
  pointer-events: none;
}

.ap-product-feature__copy {
  position: relative;
  z-index: 3;
  min-height: 680px;
  padding: 58px 38px 54px 58px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ap-product-feature__index {
  color: #85a0b8;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.ap-product-logo-wrap {
  width: 220px;
  height: 54px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ap-product-logo {
  width: 216px;
  height: auto;
  filter: brightness(0) invert(1);
}

.ap-product-feature h3 {
  max-width: 470px;
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(42px, 4.5vw, 70px);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.ap-product-feature__copy > p {
  max-width: 460px;
  margin: 0;
  color: var(--ap-product-muted);
  font-size: 18px;
  line-height: 1.5;
}

.ap-flow-chips {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.ap-flow-chips span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #dce6ee;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ap-flow-chips i {
  color: #20c6ef;
  font-style: normal;
}

.ap-product-feature__copy .ap-text-link {
  margin-top: auto;
  padding-top: 40px;
}

.ap-product-feature__visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background-color: #173450;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
}

.ap-shot {
  position: absolute;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: #fff;
  box-shadow: var(--ap-shadow);
  transition: transform 420ms ease;
}

.ap-shot--preview {
  z-index: 2;
  top: 12%;
  right: -7%;
  width: 78%;
  transform: rotate(-0.4deg);
}

.ap-shot--voice {
  z-index: 4;
  top: 6%;
  left: 1%;
  width: 52%;
  transform: rotate(0.8deg);
}

.ap-shot--dashboard {
  z-index: 5;
  bottom: -8%;
  left: 3%;
  width: 66%;
  transform: rotate(-0.5deg);
}

.ap-product-feature:hover .ap-shot--preview {
  transform: translateY(-6px) rotate(-0.35deg);
}

.ap-product-feature:hover .ap-shot--voice {
  transform: translate(-3px, -4px) rotate(0.7deg);
}

.ap-product-feature:hover .ap-shot--dashboard {
  transform: translateY(-5px) rotate(-0.1deg);
}

.ap-product-tags {
  position: absolute;
  z-index: 7;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.ap-product-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(8, 27, 43, 0.7);
  color: #a9bdce;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ap-product-teaser {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 190px minmax(260px, 0.86fr) minmax(400px, 1.14fr);
  gap: 42px;
  border-top: 1px solid var(--ap-ink);
  border-bottom: 1px solid var(--ap-ink);
}

.ap-product-teaser__side {
  padding: 30px 0;
  color: #858d92;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ap-product-teaser__copy {
  padding: 52px 0;
}

.ap-product-teaser h3 {
  margin: 22px 0 15px;
  color: var(--ap-ink);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 1;
}

.ap-product-teaser__copy > p {
  max-width: 460px;
  margin: 0;
  color: var(--ap-muted);
  font-size: 18px;
  line-height: 1.5;
}

.ap-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ap-blue-deep);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ap-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ap-blue);
  box-shadow: 0 0 0 6px rgba(10, 114, 199, 0.09);
}

.ap-review-ui {
  padding: 36px 0 36px 42px;
  display: flex;
  align-items: center;
}

.ap-review-card {
  width: 100%;
  max-width: 520px;
  border: 1px solid #cfd3d0;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 23, 21, 0.08);
}

.ap-review-card__top {
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e2e4e1;
  color: #6d7470;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ap-review-card__top span:last-child {
  color: var(--ap-blue-deep);
}

.ap-review-card__customer {
  padding: 17px 16px 14px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
}

.ap-review-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f4fb;
  color: var(--ap-blue-deep);
  font-size: 11px;
  font-weight: 760;
}

.ap-review-card__customer strong,
.ap-review-card__customer small {
  display: block;
}

.ap-review-card__customer strong {
  color: var(--ap-ink);
  font-size: 13px;
}

.ap-review-card__customer small {
  margin-top: 2px;
  color: #8a908d;
  font-size: 10px;
}

.ap-review-send {
  padding: 8px 10px;
  background: var(--ap-blue);
  color: #fff;
  font-size: 9px;
  font-weight: 720;
}

.ap-review-card > p {
  margin: 0 16px 16px;
  padding: 13px 14px;
  border: 1px solid #e2e4e1;
  color: #5f6762;
  font-size: 11px;
  line-height: 1.5;
}

.ap-review-card__auto {
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e2e4e1;
  color: #737a76;
  font-size: 10px;
}

.ap-review-card__auto i {
  position: relative;
  width: 30px;
  height: 16px;
  border-radius: 20px;
  background: var(--ap-blue);
}

.ap-review-card__auto i::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.ap-custom {
  overflow: hidden;
  padding: 120px 0 110px;
  background: #0f304a;
  color: #f5f4ef;
}

.ap-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent, #000 24%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 24%, #000 86%, transparent);
  pointer-events: none;
}

.ap-custom__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(64px, 7vw, 108px);
  align-items: center;
}

.ap-custom__copy {
  position: relative;
}

.ap-custom .ap-kicker {
  color: #9ba49c;
}

.ap-custom h2 {
  max-width: 760px;
  margin-top: 0;
  color: #f5f4ef;
  font-size: clamp(50px, 6.3vw, 94px);
  line-height: 0.92;
}

.ap-custom h2 span {
  color: var(--ap-blue);
}

.ap-custom h2 + p {
  max-width: 600px;
  margin: 32px 0 0;
  color: #bdcbd6;
  font-size: 18px;
  line-height: 1.58;
}

.ap-custom__copy > .ap-text-link {
  margin-top: 34px;
}

.ap-ops-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 2.8vw, 38px);
  border: 1px solid rgba(172, 205, 229, 0.2);
  background: linear-gradient(145deg, rgba(27, 70, 101, 0.98), rgba(16, 51, 77, 0.98));
  box-shadow: 0 34px 90px rgba(1, 13, 24, 0.28);
}

.ap-ops-panel::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(24, 156, 226, 0.1);
  filter: blur(12px);
  pointer-events: none;
}

.ap-ops-panel__header,
.ap-ops-panel__metrics,
.ap-ops-panel__workflow,
.ap-ops-panel__footer {
  position: relative;
  z-index: 1;
}

.ap-ops-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.ap-ops-panel__header span,
.ap-ops-panel__workflow-heading span,
.ap-ops-panel__footer {
  color: #88a9c1;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ap-ops-panel__header h3 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1;
}

.ap-ops-panel__status {
  padding-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ap-ops-panel__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22bee8;
  box-shadow: 0 0 0 4px rgba(34, 190, 232, 0.1);
}

.ap-ops-panel__metrics {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(184, 210, 228, 0.16);
  border-bottom: 1px solid rgba(184, 210, 228, 0.16);
}

.ap-ops-panel__metrics article {
  min-width: 0;
  padding: 19px 14px 18px 0;
}

.ap-ops-panel__metrics article + article {
  padding-left: 14px;
  border-left: 1px solid rgba(184, 210, 228, 0.16);
}

.ap-ops-panel__metrics span,
.ap-ops-panel__metrics small {
  display: block;
  color: #9db4c6;
  font-size: 10px;
  line-height: 1.35;
}

.ap-ops-panel__metrics span {
  min-height: 27px;
  font-weight: 650;
}

.ap-ops-panel__metrics strong {
  display: block;
  margin: 8px 0 5px;
  color: #fff;
  font-size: 34px;
  font-weight: 480;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ap-ops-panel__workflow {
  margin-top: 24px;
  padding: 20px 20px 16px;
  border: 1px solid rgba(184, 210, 228, 0.15);
  background: rgba(4, 27, 45, 0.38);
}

.ap-ops-panel__workflow-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ap-ops-panel__workflow-heading small {
  color: #718fa5;
  font-size: 10px;
}

.ap-ops-panel__workflow ol {
  margin: 17px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.ap-ops-panel__workflow li {
  position: relative;
  min-width: 0;
  padding: 15px 18px 0 0;
  border-top: 1px solid rgba(151, 181, 201, 0.22);
}

.ap-ops-panel__workflow li::after {
  content: "→";
  position: absolute;
  top: 11px;
  right: 6px;
  color: #55768d;
  font-size: 12px;
}

.ap-ops-panel__workflow li:last-child::after {
  content: none;
}

.ap-ops-panel__workflow li span,
.ap-ops-panel__workflow li strong {
  display: block;
}

.ap-ops-panel__workflow li span {
  color: #64849b;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.ap-ops-panel__workflow li strong {
  max-width: 105px;
  margin-top: 8px;
  color: #b3c4d0;
  font-size: 11px;
  font-weight: 620;
  line-height: 1.35;
}

.ap-ops-panel__workflow li.is-complete {
  border-color: #168bc5;
}

.ap-ops-panel__workflow li.is-current {
  border-color: #22bee8;
}

.ap-ops-panel__workflow li.is-complete span,
.ap-ops-panel__workflow li.is-current span {
  color: #22bee8;
}

.ap-ops-panel__workflow li.is-complete strong,
.ap-ops-panel__workflow li.is-current strong {
  color: #fff;
}

.ap-ops-panel__footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.ap-process {
  background: var(--ap-paper);
}

.ap-process__grid {
  --ap-process-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ap-ink);
}

.ap-process__progress {
  position: absolute;
  z-index: 2;
  top: -2px;
  left: 0;
  width: var(--ap-process-progress);
  height: 3px;
  background: var(--ap-blue);
}

.ap-process article {
  min-height: 300px;
  padding: 32px 46px 34px 0;
  border-right: 1px solid var(--ap-line);
}

.ap-process article + article {
  padding-left: 46px;
}

.ap-process article:last-child {
  border-right: 0;
}

.ap-process article > span {
  color: var(--ap-blue-deep);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ap-process h3 {
  margin: 66px 0 15px;
  color: var(--ap-ink);
  font-size: clamp(28px, 2.6vw, 39px);
  font-weight: 440;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.ap-process p {
  max-width: 345px;
  margin: 0;
  color: var(--ap-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ap-web-design {
  overflow: hidden;
  padding: clamp(64px, 5.5vw, 86px) 0;
  background: var(--ap-paper);
}

.ap-web-design::before {
  content: "";
  position: absolute;
  inset: 0 0 0 42%;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(10, 114, 199, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 114, 199, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, #000 22%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 22%, #000 86%, transparent);
  pointer-events: none;
}

.ap-web-design__inner {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: grid;
  grid-template-columns: 130px minmax(270px, 0.72fr) minmax(460px, 1.18fr) minmax(150px, 0.42fr);
  gap: clamp(26px, 3vw, 48px);
  align-items: center;
}

.ap-web-design__technical {
  position: relative;
  min-height: 330px;
  padding: 24px 0 0 22px;
  border-left: 1px solid rgba(10, 114, 199, 0.75);
}

.ap-web-design__technical::before,
.ap-web-design__technical::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ap-web-design__technical::before {
  top: 70px;
  left: -218px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(10, 114, 199, 0.18);
  border-radius: 50%;
}

.ap-web-design__technical::after {
  top: -3px;
  left: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--ap-blue);
  border-radius: 50%;
  background: #f6f4ef;
}

.ap-web-design__technical > span {
  display: block;
  color: var(--ap-blue-deep);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.2em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ap-web-design__technical i {
  position: absolute;
  top: 180px;
  left: -42px;
  width: 78px;
  height: 1px;
  background: rgba(10, 114, 199, 0.3);
}

.ap-web-design__technical i::before,
.ap-web-design__technical i::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fb7d2;
}

.ap-web-design__technical i::before {
  left: 0;
}

.ap-web-design__technical i::after {
  right: 0;
}

.ap-web-design__copy h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(48px, 4.5vw, 68px);
  font-weight: 410;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.ap-web-design__copy p {
  max-width: 420px;
  margin: 34px 0 0;
  color: var(--ap-muted);
  font-size: 17px;
  line-height: 1.62;
}

.ap-web-design__visual {
  position: relative;
  min-height: 360px;
  perspective: 1200px;
}

.ap-web-design__layer {
  position: absolute;
  display: block;
  border: 1px solid rgba(69, 115, 145, 0.2);
  pointer-events: none;
}

.ap-web-design__layer--grid {
  top: 36px;
  right: 4px;
  width: 84%;
  height: 78%;
  opacity: 0.68;
  transform: translate(18px, -10px);
  background-image:
    linear-gradient(rgba(65, 112, 144, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 112, 144, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

.ap-web-design__layer--blue {
  bottom: 22px;
  left: 2px;
  width: 72%;
  height: 72%;
  background: rgba(190, 216, 232, 0.48);
  transform: translate(-13px, 16px);
}

.ap-web-design__mockup {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(100%, 590px);
  overflow: hidden;
  border: 1px solid rgba(32, 48, 60, 0.18);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 26px 58px rgba(26, 46, 60, 0.16);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.ap-web-design__visual:hover .ap-web-design__mockup {
  transform: translate(-50%, calc(-50% - 5px));
  box-shadow: 0 32px 70px rgba(26, 46, 60, 0.2);
}

.ap-web-design__mockup > header {
  min-height: 48px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(25, 40, 51, 0.1);
  color: #1a242c;
}

.ap-web-design__mockup > header strong {
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.ap-web-design__mockup > header strong span {
  display: block;
  margin-top: 1px;
  color: var(--ap-blue);
  font-size: 6px;
  letter-spacing: 0.22em;
}

.ap-web-design__mockup nav {
  display: flex;
  gap: 16px;
  color: #66717a;
  font-size: 7px;
  font-weight: 650;
  text-transform: uppercase;
}

.ap-web-design__mockup-body {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(180px, 0.96fr);
  background: #f9f8f4;
}

.ap-web-design__mockup-body > div:first-child {
  padding: 34px 24px 28px 28px;
}

.ap-web-design__mockup-body > div:first-child > span {
  color: var(--ap-blue-deep);
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ap-web-design__mockup-body h3 {
  margin: 17px 0 0;
  color: #172028;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.ap-web-design__mockup-body > div:first-child i {
  width: 54px;
  height: 2px;
  margin-top: 27px;
  display: block;
  background: var(--ap-blue);
}

.ap-web-design__architecture {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #dfe9ef, #9db8ca);
}

.ap-web-design__architecture::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.62) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 1px, transparent 1px);
  background-size: 36px 36px;
}

.ap-web-design__architecture span {
  position: absolute;
  bottom: -18%;
  display: block;
  border: 1px solid rgba(21, 64, 91, 0.22);
  background: rgba(244, 248, 250, 0.64);
  transform: skewY(-15deg);
}

.ap-web-design__architecture span:nth-child(1) {
  right: 8%;
  width: 34%;
  height: 95%;
}

.ap-web-design__architecture span:nth-child(2) {
  right: 40%;
  width: 28%;
  height: 72%;
}

.ap-web-design__architecture span:nth-child(3) {
  right: 64%;
  width: 17%;
  height: 50%;
  background: rgba(10, 114, 199, 0.38);
}

.ap-web-design__architecture span:nth-child(4) {
  right: -7%;
  width: 18%;
  height: 58%;
}

.ap-web-design__mockup > footer {
  min-height: 36px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(25, 40, 51, 0.08);
  color: #737d84;
  font-size: 7px;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ap-web-design__action {
  align-self: center;
}

.ap-web-design__action a {
  position: relative;
  padding: 14px 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ap-ink);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.3;
  white-space: nowrap;
}

.ap-web-design__action a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform-origin: left;
  background: var(--ap-blue);
  transition: transform 220ms ease;
}

.ap-web-design__action a:hover::after,
.ap-web-design__action a:focus-visible::after {
  transform: scaleX(0.62);
}

.ap-final-cta {
  padding: clamp(56px, 5vw, 72px) 0;
  background: var(--ap-bg);
}

.ap-final-cta__inner {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  overflow: hidden;
}

.ap-final-cta__primary,
.ap-final-cta__secondary {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 4.3vw, 62px);
  isolation: isolate;
}

.ap-final-cta__primary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--ap-blue-deep);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  color: #fff;
}

.ap-final-cta__primary::before,
.ap-final-cta__primary::after,
.ap-final-cta__secondary::before {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.ap-final-cta__primary::before {
  right: -155px;
  bottom: -245px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ap-final-cta__primary::after {
  right: 68px;
  bottom: 79px;
  width: 7px;
  height: 7px;
  background: #55c5ee;
  box-shadow: -118px -196px 0 -2px rgba(255, 255, 255, 0.72);
}

.ap-final-cta .ap-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.ap-final-cta h2 {
  max-width: 690px;
  margin-top: 24px;
  color: #fff;
  font-size: clamp(56px, 5.3vw, 78px);
  line-height: 0.92;
}

.ap-final-cta__primary > p:last-child {
  max-width: 530px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.55;
}

.ap-final-cta__secondary {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  border: 1px solid rgba(20, 25, 30, 0.1);
  border-left: 0;
  background: var(--ap-bg);
}

.ap-final-cta__secondary::before {
  right: -155px;
  bottom: -205px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(10, 114, 199, 0.16);
}

.ap-final-cta__secondary p {
  max-width: 390px;
  margin: 0;
  color: var(--ap-ink-soft);
  font-size: 18px;
  line-height: 1.58;
}

.ap-final-cta__secondary a {
  position: relative;
  min-height: 48px;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ap-ink);
  font-size: 16px;
  font-weight: 720;
  white-space: nowrap;
}

.ap-final-cta__secondary a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  transform-origin: left;
  background: var(--ap-blue);
  transition: transform 220ms ease;
}

.ap-final-cta__secondary a:hover::after,
.ap-final-cta__secondary a:focus-visible::after {
  transform: scaleX(0.64);
}

.ap-footer {
  padding: 62px 0 38px;
  border-top: 1px solid var(--ap-line);
  background: var(--ap-paper);
}

.ap-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px 70px;
  align-items: end;
}

.ap-footer__identity {
  max-width: 480px;
}

.ap-footer__brand {
  display: inline-block;
}

.ap-footer__brand img {
  width: 222px;
  height: auto;
}

.ap-footer p {
  margin: 13px 0 0;
  color: var(--ap-muted);
  font-size: 13px;
}

.ap-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 34px;
  font-size: 13px;
  font-weight: 620;
}

.ap-footer__links a {
  transition: color 180ms ease;
}

.ap-footer__links a:hover {
  color: var(--ap-blue-deep);
}

.ap-footer__bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 40px;
  border-top: 1px solid var(--ap-line-soft);
}

.ap-footer__bottom small {
  color: #858c92;
  font-size: 11px;
}

.ap-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ap-footer__legal {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ap-line);
  color: #6e767c !important;
  font-size: 11px;
  font-weight: 560;
  transition: color 180ms ease, border-color 180ms ease;
}

.ap-footer__legal:hover,
.ap-footer__legal:focus-visible {
  border-color: var(--ap-blue);
  color: var(--ap-blue-deep) !important;
}

.ap-footer__credit a {
  color: var(--ap-ink-soft);
  font-weight: 620;
  transition: color 180ms ease;
}

.ap-footer__credit a:hover {
  color: var(--ap-blue-deep);
}

.ap-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.ap-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1220px) {
  .ap-header__inner {
    grid-template-columns: minmax(210px, 1fr) auto;
    gap: 26px;
  }

  .ap-brand,
  .ap-brand img {
    width: 220px;
  }

  .ap-nav__list {
    gap: 22px;
  }

  .ap-button--header {
    min-width: 136px;
    padding-inline: 18px;
  }

  .ap-product-feature {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  }

  .ap-product-feature__copy {
    padding-inline: 42px 34px;
  }

  .ap-web-design__inner {
    grid-template-columns: 100px minmax(235px, 0.72fr) minmax(400px, 1.18fr) minmax(125px, 0.42fr);
    gap: 22px;
  }
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 88px;
  }

  .ap-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .ap-header__inner {
    min-height: 88px;
    grid-template-columns: 1fr auto;
  }

  .ap-brand,
  .ap-brand img {
    width: 205px;
  }

  .ap-button--header {
    display: none;
  }

  .ap-menu-toggle {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    padding: 11px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .ap-menu-toggle span:not(.screen-reader-text) {
    width: 24px;
    height: 1px;
    display: block;
    background: var(--ap-ink);
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .ap-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

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

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

  .ap-nav {
    position: fixed;
    z-index: 1;
    inset: 88px 0 0;
    padding: 34px var(--ap-gutter) 60px;
    visibility: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    background: var(--ap-bg);
    transition: transform 260ms ease, visibility 260ms;
  }

  .admin-bar .ap-nav {
    top: 120px;
  }

  .ap-nav.is-open {
    visibility: visible;
    transform: none;
  }

  .ap-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .ap-nav__list li {
    border-bottom: 1px solid var(--ap-line);
  }

  .ap-nav a {
    width: 100%;
    padding: 15px 0;
    font-size: clamp(25px, 5vw, 38px);
    font-weight: 430;
    letter-spacing: -0.035em;
  }

  .ap-nav a::after {
    display: none;
  }

  .ap-nav .ap-nav__mobile-cta {
    width: min(100%, 230px);
    min-height: 56px;
    margin-top: 30px;
    padding: 0 22px;
    display: inline-flex;
    color: #fff;
    font-size: 15px;
    font-weight: 620;
    letter-spacing: 0;
  }

  .ap-hero {
    min-height: 780px;
  }

  .ap-hero::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.34) 28%,
      rgba(255, 255, 255, 0.16) 50%,
      rgba(255, 255, 255, 0) 70%
    );
  }

  .ap-hero__background {
    width: 104%;
    object-position: 52% center;
    opacity: 0.82;
  }

  .ap-hero__content {
    width: min(650px, 72%);
  }

  .ap-hero h1 {
    font-size: clamp(70px, 10vw, 100px);
  }

  .ap-audit__grid {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 55px;
  }

  .ap-audit__content header {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
    gap: 40px;
  }

  .ap-audit__content h2 {
    font-size: clamp(58px, 7.3vw, 82px);
  }

  .ap-product-feature {
    grid-template-columns: 1fr;
  }

  .ap-product-feature__visual {
    min-height: 610px;
  }

  .ap-product-feature__copy {
    min-height: 520px;
  }

  .ap-product-feature__copy > p {
    max-width: 610px;
  }

  .ap-custom__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ap-custom::before {
    inset: 0;
  }

  .ap-ops-panel {
    margin-top: 8px;
  }

  .ap-web-design__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ap-web-design__technical {
    min-height: 72px;
    padding: 18px 0 0 22px;
    border-top: 1px solid rgba(10, 114, 199, 0.75);
    border-left: 0;
  }

  .ap-web-design__technical::before {
    top: -152px;
    left: -145px;
    width: 220px;
    height: 220px;
  }

  .ap-web-design__technical::after {
    top: -4px;
    left: -3px;
  }

  .ap-web-design__technical i {
    display: none;
  }

  .ap-web-design__copy {
    max-width: 660px;
  }

  .ap-web-design__visual {
    min-height: 380px;
  }

  .ap-web-design__action {
    width: fit-content;
  }
}

@media (max-width: 782px) {
  .admin-bar .ap-header {
    top: 46px;
  }

  .admin-bar .ap-nav {
    top: 134px;
  }

  .ap-section {
    padding-block: 92px;
  }

  .ap-audit__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ap-audit__rail {
    min-height: 68px;
    padding: 22px 0 0;
    flex-direction: row;
    align-items: flex-start;
    border-top: 1px solid var(--ap-blue);
    border-left: 0;
  }

  .ap-audit__rail::after {
    top: -4px;
    left: 0;
  }

  .ap-audit__rail p {
    max-width: none;
  }

  .ap-audit__content header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ap-audit__content header > p {
    max-width: 600px;
  }

  .ap-audit__details {
    margin-top: 62px;
  }

  .ap-intro__grid,
  .ap-section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ap-intro__label {
    min-height: 0;
    padding: 0 0 20px;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid var(--ap-blue);
    border-left: 0;
  }

  .ap-section-heading__intro {
    grid-column: 1;
    margin-top: 0;
  }

  .ap-product-teaser {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ap-product-teaser__side {
    padding: 22px 0 0;
  }

  .ap-product-teaser__copy {
    padding: 25px 0 24px;
  }

  .ap-review-ui {
    padding: 0 0 30px;
  }

  .ap-status {
    margin-top: 7px;
  }

  .ap-process__grid {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .ap-process__progress {
    display: none;
  }

  .ap-process article,
  .ap-process article + article {
    min-height: 0;
    padding: 30px 0 34px;
    border-top: 1px solid var(--ap-ink);
    border-right: 0;
  }

  .ap-process h3 {
    margin-top: 34px;
  }

  .ap-final-cta__inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .ap-final-cta__primary {
    min-height: 320px;
  }

  .ap-final-cta__secondary {
    min-height: 220px;
    border-top: 0;
    border-left: 1px solid rgba(20, 25, 30, 0.1);
  }

  .ap-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ap-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --ap-gutter: 22px;
  }

  .ap-header__inner {
    min-height: 80px;
  }

  .ap-brand,
  .ap-brand img {
    width: 184px;
  }

  .ap-nav {
    inset: 80px 0 0;
  }

  .admin-bar .ap-nav {
    top: 126px;
  }

  .ap-hero {
    min-height: 720px;
  }

  .ap-hero::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.48) 0%,
      rgba(255, 255, 255, 0.36) 35%,
      rgba(255, 255, 255, 0.15) 58%,
      rgba(255, 255, 255, 0) 82%
    );
  }

  .ap-site .ap-hero__background {
    inset: 0 auto 0 auto;
    right: calc(100vw - 685px);
    width: auto;
    height: 100%;
    max-width: none !important;
    object-fit: contain;
    object-position: center;
    opacity: 0.65;
  }

  .ap-hero__content {
    left: 0;
    width: 100%;
    padding: 10px 0 20px;
  }

  .ap-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(58px, 17vw, 80px);
    font-weight: 410;
  }

  .ap-hero h1 em {
    font-weight: 475;
  }

  .ap-hero__content > p {
    max-width: 420px;
    font-size: 17px;
  }

  .ap-actions {
    margin-top: 34px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .ap-text-link {
    min-height: 44px;
    padding-block: 10px;
  }

  .ap-hero .ap-actions .ap-button,
  .ap-hero .ap-actions .ap-text-link {
    width: 152px;
    min-height: 44px;
  }

  .ap-hero .ap-actions .ap-button {
    min-width: 0;
    padding-inline: 12px;
    gap: 12px;
  }

  .ap-section {
    padding-block: 78px;
  }

  .ap-audit::before {
    top: -8%;
    right: -65%;
    width: 135vw;
  }

  .ap-audit::after {
    width: 70%;
    height: 38%;
    background-size: 40px 40px;
  }

  .ap-audit__grid {
    gap: 40px;
  }

  .ap-audit__rail {
    min-height: 62px;
    padding-top: 18px;
  }

  .ap-audit__rail p,
  .ap-audit__rail span {
    font-size: 8px;
  }

  .ap-audit__content h2 {
    font-size: clamp(47px, 13vw, 60px);
    line-height: 0.96;
  }

  .ap-audit__content header > p {
    font-size: 16px;
  }

  .ap-audit__details {
    margin-top: 50px;
  }

  .ap-audit__details > div {
    min-height: 0;
    padding: 22px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ap-audit__details p {
    font-size: 17px;
    line-height: 1.65;
  }

  .ap-audit__details i {
    margin-inline: 5px;
  }

  .ap-audit__action {
    margin-top: 34px;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .ap-audit__action .ap-button {
    width: min(100%, 260px);
  }

  .ap-intro h2,
  .ap-section-heading h2,
  .ap-custom h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .ap-intro h2 + p,
  .ap-custom h2 + p {
    font-size: 17px;
  }

  .ap-section-heading {
    margin-bottom: 48px;
  }

  .ap-product-feature {
    min-height: 0;
    margin-inline: calc(var(--ap-gutter) * -1);
  }

  .ap-product-feature__copy {
    min-height: 0;
    padding: 38px 28px 42px;
  }

  .ap-product-logo-wrap {
    width: 220px;
    height: 54px;
    margin-bottom: 45px;
  }

  .ap-product-logo {
    width: 210px;
  }

  .ap-product-feature h3 {
    font-size: clamp(37px, 10.5vw, 48px);
  }

  .ap-flow-chips {
    gap: 7px;
  }

  .ap-product-feature__copy .ap-text-link {
    margin-top: 32px;
    padding-block: 10px;
  }

  .ap-product-feature__visual {
    display: none;
  }

  .ap-shot--preview {
    top: 12%;
    right: -6%;
    width: 77%;
  }

  .ap-shot--voice {
    top: 5%;
    left: 2%;
    width: 53%;
  }

  .ap-shot--dashboard {
    bottom: -6%;
    left: 4%;
    width: 68%;
  }

  .ap-product-tags {
    display: none;
  }

  .ap-product-teaser {
    margin-top: 18px;
  }

  .ap-custom {
    padding-block: 88px 80px;
  }

  .ap-custom h2 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .ap-ops-panel {
    padding: 22px 20px;
  }

  .ap-ops-panel__header {
    flex-direction: column;
    gap: 16px;
  }

  .ap-ops-panel__status {
    padding-top: 0;
  }

  .ap-ops-panel__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-ops-panel__metrics article:nth-child(n + 3) {
    border-top: 1px solid rgba(184, 210, 228, 0.16);
  }

  .ap-ops-panel__metrics article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .ap-ops-panel__workflow,
  .ap-ops-panel__footer {
    display: none;
  }

  .ap-ops-panel__workflow {
    padding: 18px;
  }

  .ap-ops-panel__workflow ol {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ap-ops-panel__workflow li {
    padding: 13px 0 13px 28px;
    border-top: 0;
    border-left: 1px solid rgba(151, 181, 201, 0.22);
  }

  .ap-ops-panel__workflow li::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -5px;
    left: -5px;
  }

  .ap-ops-panel__workflow li:last-child {
    padding-bottom: 0;
  }

  .ap-ops-panel__workflow li strong {
    max-width: none;
    margin-top: 4px;
  }

  .ap-ops-panel__workflow li.is-complete,
  .ap-ops-panel__workflow li.is-current {
    border-color: #22bee8;
  }

  .ap-ops-panel__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .ap-web-design__inner {
    gap: 26px;
  }

  .ap-web-design__technical {
    min-height: 48px;
  }

  .ap-web-design__copy h2 {
    font-size: clamp(45px, 12.5vw, 58px);
  }

  .ap-web-design__copy p {
    margin-top: 24px;
    font-size: 16px;
  }

  .ap-web-design__visual {
    min-height: 310px;
  }

  .ap-web-design__layer--grid {
    top: 32px;
    right: -8px;
    width: 88%;
    height: 74%;
  }

  .ap-web-design__layer--blue {
    bottom: 28px;
    left: 0;
    width: 76%;
    height: 68%;
  }

  .ap-web-design__mockup > header {
    min-height: 48px;
    padding-inline: 16px;
  }

  .ap-web-design__mockup nav {
    display: none;
  }

  .ap-web-design__mockup-body {
    min-height: 200px;
    grid-template-columns: minmax(0, 1fr) 42%;
  }

  .ap-web-design__mockup-body > div:first-child {
    padding: 30px 16px 26px 18px;
  }

  .ap-web-design__mockup-body h3 {
    font-size: clamp(24px, 7.3vw, 30px);
  }

  .ap-web-design__mockup > footer {
    padding-inline: 16px;
    gap: 13px;
  }

  .ap-web-design__action a {
    min-height: 48px;
  }

  .ap-final-cta {
    padding-block: 42px;
  }

  .ap-final-cta__inner {
    min-height: 0;
    padding: 0;
  }

  .ap-final-cta__primary,
  .ap-final-cta__secondary {
    padding: 30px 25px;
  }

  .ap-final-cta__primary {
    min-height: 290px;
  }

  .ap-final-cta__secondary {
    min-height: 190px;
    gap: 28px;
  }

  .ap-final-cta h2 {
    font-size: clamp(46px, 13vw, 58px);
  }

  .ap-final-cta__primary > p:last-child,
  .ap-final-cta__secondary p {
    font-size: 16px;
  }

  .ap-final-cta__primary > p:last-child {
    margin-top: 22px;
  }

  .ap-footer {
    padding-top: 50px;
  }

  .ap-footer__links {
    flex-direction: column;
    gap: 0;
  }

  .ap-footer__links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .ap-footer__credit a {
    padding-block: 14px;
    margin-block: -14px;
  }

  .ap-footer__legal {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .ap-footer__legal-links {
    gap: 20px;
  }

  .ap-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

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

  .ap-motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
