:root {
  --ap-ink: #07111f;
  --ap-muted: #667085;
  --ap-blue: #00419f;
  --ap-cyan: #00a8ea;
  --ap-green: #71eb30;
  --ap-navy: #04163d;
  --ap-line: #dbe5ef;
  --ap-soft: #f4f7fb;
  --ap-white: #ffffff;
  --ap-shadow: 0 26px 70px rgba(7, 17, 31, .14);
  --ap-shadow-soft: 0 16px 42px rgba(7, 17, 31, .08);
  --ap-shadow-card: 0 22px 60px rgba(7, 17, 31, .12);
  --ap-radius-sm: 10px;
  --ap-radius-md: 16px;
  --ap-radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ap-ink);
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.5;
  background:
    linear-gradient(90deg, rgba(0, 65, 159, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 65, 159, .05) 1px, transparent 1px),
    #f7f9fc;
  background-size: 44px 44px;
}

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

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

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

.ap-wrap {
  width: min(1248px, calc(100% - 44px));
  margin: 0 auto;
}

.ap-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(219, 229, 239, .82);
  background: rgba(247, 249, 252, .86);
  backdrop-filter: blur(18px);
}

.ap-nav,
.ap-menu,
.ap-actions,
.ap-hero-buttons,
.ap-signal-track,
.ap-command-top,
.ap-command-row,
.ap-command-tags,
.ap-final-inner,
.ap-copyright {
  display: flex;
  align-items: center;
}

.ap-nav {
  min-height: 78px;
  justify-content: space-between;
  gap: 26px;
}

.ap-brand img {
  width: 140px;
}

.ap-menu {
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(219, 229, 239, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 30px rgba(7, 17, 31, .05);
}

.ap-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #2a3445;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.ap-menu a:hover,
.ap-menu a:focus-visible {
  color: #fff;
  background: var(--ap-ink);
}

.ap-actions {
  gap: 10px;
}

.ap-nav-cta,
.ap-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 1000;
}

.ap-nav-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--ap-ink);
  box-shadow: 0 12px 28px rgba(7, 17, 31, .18);
}

.ap-lang {
  width: 42px;
  color: var(--ap-blue);
  border: 1px solid var(--ap-line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 17, 31, .06);
}

.ap-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ap-button:hover,
.ap-button:focus-visible {
  transform: translateY(-2px);
}

.ap-button-dark {
  color: #fff;
  background: var(--ap-ink);
  box-shadow: 0 18px 38px rgba(7, 17, 31, .22);
}

.ap-button-light {
  color: var(--ap-ink);
  border-color: rgba(7, 17, 31, .12);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 32px rgba(7, 17, 31, .08);
}

.ap-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0 42px;
}

.ap-hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 58%;
  background:
    linear-gradient(135deg, rgba(0, 168, 234, .26), transparent 44%),
    linear-gradient(110deg, transparent 0 52%, rgba(113, 235, 48, .32) 52% 65%, transparent 65%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
}

.ap-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.ap-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ap-muted);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ap-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(0, 65, 159, .22);
  border-radius: 999px;
  color: var(--ap-blue);
  background: #fff;
}

.ap-kicker i {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--ap-cyan), var(--ap-green));
}

.ap-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(44px, 7.3vw, 96px);
  line-height: .96;
  letter-spacing: 0;
}

.ap-hero h1 strong {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--ap-ink);
  text-stroke: 2px var(--ap-ink);
}

.ap-hero-copy p {
  max-width: 720px;
  margin: 26px 0 0;
  color: #475467;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.82;
}

.ap-hero-buttons {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.ap-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 44px;
}

.ap-hero-proof article {
  min-height: 122px;
  padding: 22px;
  border: 1px solid rgba(219, 229, 239, .88);
  border-radius: var(--ap-radius-md);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--ap-shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ap-hero-proof article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 168, 234, .35);
  box-shadow: var(--ap-shadow-card);
}

.ap-hero-proof img {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  filter: invert(24%) sepia(96%) saturate(1826%) hue-rotate(204deg) brightness(82%) contrast(106%);
}

.ap-hero-proof b {
  display: block;
  color: var(--ap-blue);
  font-size: 14px;
  text-transform: uppercase;
}

.ap-hero-proof span {
  display: block;
  margin-top: 12px;
  color: #344054;
  font-weight: 800;
}

.ap-command {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(7, 17, 31, .16);
  border-radius: var(--ap-radius-lg);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0, 168, 234, .18), transparent 38%),
    linear-gradient(180deg, #07111f 0%, #04163d 100%);
  box-shadow: var(--ap-shadow);
}

.ap-command::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: .55;
}

.ap-command > * {
  position: relative;
}

.ap-command-top {
  justify-content: space-between;
  gap: 16px;
}

.ap-command-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ap-command-top img {
  width: 15px;
  height: 15px;
  filter: invert(72%) sepia(100%) saturate(405%) hue-rotate(43deg) brightness(102%) contrast(93%);
}

.ap-command-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ap-green);
  background: rgba(113, 235, 48, .1);
  font-size: 13px;
  text-transform: uppercase;
}

.ap-command-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 10px;
  height: 250px;
  margin: 26px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--ap-radius-md);
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.ap-command-chart i {
  display: block;
  min-height: 42px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--ap-green), var(--ap-cyan));
  box-shadow: 0 0 26px rgba(0, 168, 234, .22);
}

.ap-command-chart i:nth-child(1) { height: 46%; }
.ap-command-chart i:nth-child(2) { height: 62%; }
.ap-command-chart i:nth-child(3) { height: 54%; }
.ap-command-chart i:nth-child(4) { height: 78%; }
.ap-command-chart i:nth-child(5) { height: 66%; }
.ap-command-chart i:nth-child(6) { height: 92%; }
.ap-command-chart i:nth-child(7) { height: 74%; }

.ap-command-row {
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.ap-command-row span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 900;
}

.ap-command-row b {
  font-size: 28px;
}

.ap-command-row em {
  color: var(--ap-green);
  font-size: 12px;
  font-style: normal;
  font-weight: 1000;
}

.ap-command-tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ap-command-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  font-weight: 900;
}

.ap-signal {
  overflow: hidden;
  border-block: 1px solid var(--ap-line);
  background: #fff;
  box-shadow: 0 14px 42px rgba(7, 17, 31, .05);
}

.ap-signal-track {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: min(1248px, calc(100% - 44px));
  min-height: 92px;
  margin: 0 auto;
  padding: 18px 0;
  animation: none;
}

.ap-signal-track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(0, 65, 159, .14);
  border-radius: 999px;
  color: var(--ap-ink);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 10px 26px rgba(7, 17, 31, .06);
  font-size: 14px;
  font-weight: 1000;
  white-space: nowrap;
}

.ap-signal-track span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  background: linear-gradient(135deg, var(--ap-cyan), var(--ap-green));
  box-shadow: 0 0 14px rgba(0, 168, 234, .28);
  content: "";
}

@keyframes ap-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ap-apply-band {
  padding: 46px 0;
  background: var(--ap-ink);
}

.ap-apply-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.ap-apply-copy {
  padding: 34px;
  border-radius: var(--ap-radius-lg);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 168, 234, .22), transparent 45%),
    #0b1829;
  box-shadow: 0 22px 56px rgba(0, 0, 0, .22);
}

.ap-apply-copy span,
.ap-section-head span,
.ap-system-copy span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.ap-apply-copy span img,
.ap-section-head span img,
.ap-system-copy span img {
  width: 15px;
  height: 15px;
  filter: invert(59%) sepia(98%) saturate(1566%) hue-rotate(158deg) brightness(97%) contrast(101%);
}

.ap-apply-copy span,
.ap-section-head span,
.ap-system-copy span {
  margin-bottom: 14px;
  color: var(--ap-cyan);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ap-apply-copy h2,
.ap-section-head h2,
.ap-system-copy h2,
.ap-final h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.ap-apply-copy h2,
.ap-system-copy h2 {
  color: #fff;
}

.ap-apply-copy p,
.ap-system-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.78;
}

.ap-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(219, 229, 239, .72);
  border-radius: var(--ap-radius-lg);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.ap-form button {
  justify-self: start;
  min-width: 180px;
}

.ap-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.ap-form span {
  color: #293447;
  font-size: 13px;
  font-weight: 1000;
}

.ap-form input,
.ap-form select,
.ap-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--ap-line);
  border-radius: var(--ap-radius-sm);
  outline: none;
  color: var(--ap-ink);
  background: #f8fafc;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ap-form input,
.ap-form select {
  padding: 0 14px;
}

.ap-form textarea {
  resize: vertical;
  padding: 12px 14px;
}

.ap-form input:focus,
.ap-form select:focus,
.ap-form textarea:focus {
  border-color: var(--ap-cyan);
  box-shadow: 0 0 0 4px rgba(0, 168, 234, .13);
}

.ap-form-wide,
.ap-form button {
  grid-column: 1 / -1;
}

.ap-section {
  padding: clamp(78px, 8vw, 124px) 0;
}

.ap-section-head {
  max-width: 930px;
  margin-bottom: 38px;
}

.ap-section-head h2 {
  max-width: 900px;
}

.ap-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ap-advantage-grid article {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(219, 229, 239, .9);
  border-radius: var(--ap-radius-lg);
  background: #fff;
  box-shadow: var(--ap-shadow-soft);
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ap-advantage-grid article::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 168, 234, .1), transparent 45%);
  content: "";
  opacity: 0;
  transition: opacity .2s ease;
}

.ap-advantage-grid article:hover {
  color: #fff;
  border-color: rgba(0, 168, 234, .28);
  background: var(--ap-ink);
  transform: translateY(-8px);
  box-shadow: var(--ap-shadow-card);
}

.ap-advantage-grid article:hover::before {
  opacity: 1;
}

.ap-card-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 168, 234, .24);
  border-radius: 16px;
  background: rgba(0, 168, 234, .08);
  box-shadow: 0 14px 28px rgba(0, 168, 234, .1);
}

.ap-card-icon img {
  width: 24px;
  height: 24px;
  filter: invert(24%) sepia(96%) saturate(1826%) hue-rotate(204deg) brightness(82%) contrast(106%);
  transition: filter .2s ease;
}

.ap-advantage-grid article:hover .ap-card-icon {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
}

.ap-advantage-grid article:hover .ap-card-icon img {
  filter: invert(72%) sepia(100%) saturate(405%) hue-rotate(43deg) brightness(102%) contrast(93%);
}

.ap-advantage-grid small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 44px;
  color: var(--ap-blue);
  font-size: 38px;
  font-weight: 1000;
  line-height: 1;
}

.ap-advantage-grid h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 14px;
  font-size: 23px;
  line-height: 1.2;
}

.ap-advantage-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ap-muted);
  line-height: 1.72;
}

.ap-advantage-grid article:hover small,
.ap-advantage-grid article:hover p {
  color: rgba(255, 255, 255, .72);
}

.ap-system {
  color: #fff;
  background:
    linear-gradient(110deg, var(--ap-navy) 0 54%, #07111f 54% 100%);
}

.ap-system-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(520px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.ap-system-copy p {
  margin-bottom: 30px;
}

.ap-ledger {
  display: grid;
  gap: 14px;
}

.ap-ledger article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--ap-radius-lg);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.ap-ledger article:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 235, 48, .34);
  background: rgba(255, 255, 255, .09);
}

.ap-ledger span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ap-green);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ap-ledger span img {
  width: 15px;
  height: 15px;
  filter: invert(72%) sepia(100%) saturate(405%) hue-rotate(43deg) brightness(102%) contrast(93%);
}

.ap-ledger strong {
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.ap-ledger em {
  grid-column: 2;
  color: rgba(255, 255, 255, .68);
  font-style: normal;
}

.ap-section-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  max-width: none;
  align-items: end;
}

.ap-section-head-row p {
  margin: 0;
  color: var(--ap-muted);
  line-height: 1.78;
}

.ap-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ap-tool-grid article {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--ap-radius-lg);
  color: #fff;
  background: var(--ap-ink);
  box-shadow: var(--ap-shadow-card);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ap-tool-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 72px rgba(7, 17, 31, .18);
}

.ap-tool-grid article::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--ap-blue), var(--ap-cyan), var(--ap-green));
  content: "";
}

.ap-tool-grid article > img {
  width: 34px;
  height: 34px;
  filter: invert(72%) sepia(100%) saturate(405%) hue-rotate(43deg) brightness(102%) contrast(93%);
}

.ap-tool-grid article:nth-child(2),
.ap-tool-grid article:nth-child(4) {
  margin-top: 42px;
}

.ap-tool-grid h3 {
  margin: 24px 0 14px;
  font-size: 22px;
  line-height: 1.25;
}

.ap-tool-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.72;
}

.ap-flow {
  background: #fff;
}

.ap-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ap-flow-grid article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--ap-line);
  border-radius: var(--ap-radius-lg);
  background: #f8fafc;
  box-shadow: var(--ap-shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ap-flow-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 234, .35);
  box-shadow: var(--ap-shadow-card);
}

.ap-flow-grid article::after {
  position: absolute;
  right: -8px;
  top: 50%;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border-top: 2px solid var(--ap-cyan);
  border-right: 2px solid var(--ap-cyan);
  background: transparent;
  filter: drop-shadow(0 8px 14px rgba(0, 168, 234, .22));
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.ap-flow-grid article > img {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  filter: invert(24%) sepia(96%) saturate(1826%) hue-rotate(204deg) brightness(82%) contrast(106%);
}

.ap-flow-grid article:last-child::after {
  display: none;
}

.ap-flow-grid b {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ap-blue);
  text-stroke: 1.5px var(--ap-blue);
  font-size: 52px;
  line-height: 1;
}

.ap-flow-grid h3 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.ap-flow-grid p {
  margin: 0;
  color: var(--ap-muted);
  line-height: 1.72;
}

.ap-final {
  padding: 54px 0;
  background:
    linear-gradient(100deg, rgba(113, 235, 48, .2) 0 18%, transparent 18%),
    linear-gradient(110deg, #ffffff 0 62%, rgba(0, 168, 234, .18) 62% 100%);
}

.ap-final-inner {
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(7, 17, 31, .12);
  border-radius: var(--ap-radius-lg);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--ap-shadow-soft);
}

.ap-final h2 {
  max-width: 860px;
  font-size: clamp(30px, 4.4vw, 58px);
}

.ap-footer {
  padding: 56px 0 28px;
  color: #dbe8ff;
  background: var(--ap-ink);
}

.ap-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 42px;
}

.ap-footer img {
  width: 154px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.ap-footer p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
}

.ap-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.ap-footer a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .68);
}

.ap-footer a:hover {
  color: #fff;
}

.ap-copyright {
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .ap-menu {
    display: none;
  }

  .ap-hero-grid,
  .ap-apply-grid,
  .ap-system-grid,
  .ap-section-head-row {
    grid-template-columns: 1fr;
  }

  .ap-command {
    max-width: 720px;
  }

  .ap-advantage-grid,
  .ap-tool-grid,
  .ap-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ap-tool-grid article:nth-child(2),
  .ap-tool-grid article:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .ap-wrap {
    width: min(100% - 28px, 1248px);
  }

  .ap-nav {
    min-height: 66px;
  }

  .ap-brand img {
    width: 116px;
  }

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

  .ap-hero {
    padding-top: 44px;
  }

  .ap-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .ap-hero h1 strong {
    -webkit-text-stroke-width: 1.3px;
    text-stroke-width: 1.3px;
  }

  .ap-hero-buttons .ap-button,
  .ap-final .ap-button {
    width: 100%;
  }

  .ap-hero-proof,
  .ap-form,
  .ap-advantage-grid,
  .ap-tool-grid,
  .ap-flow-grid,
  .ap-footer-grid {
    grid-template-columns: 1fr;
  }

  .ap-command-chart {
    height: 190px;
    gap: 7px;
    padding: 12px;
  }

  .ap-apply-copy {
    padding: 26px;
  }

  .ap-form {
    padding: 18px;
  }

  .ap-form button {
    justify-self: stretch;
  }

  .ap-section {
    padding: 66px 0;
  }

  .ap-advantage-grid article,
  .ap-tool-grid article,
  .ap-flow-grid article {
    min-height: auto;
  }

  .ap-advantage-grid h3,
  .ap-flow-grid h3 {
    margin-top: 34px;
  }

  .ap-ledger article {
    grid-template-columns: 1fr;
  }

  .ap-ledger em {
    grid-column: 1;
  }

  .ap-flow-grid article::after {
    right: 28px;
    top: auto;
    bottom: -10px;
    transform: rotate(135deg);
  }

  .ap-final-inner,
  .ap-copyright {
    display: grid;
  }
}

@media (max-width: 420px) {
  .ap-button {
    min-height: 48px;
    padding: 0 18px;
  }

  .ap-command-row {
    display: grid;
    align-items: start;
    padding: 12px 0;
  }
}
