:root {
  --navy-1000: #021323;
  --navy-950: #031b32;
  --navy-900: #052b4d;
  --navy-800: #0b4b75;
  --orange: #ff650f;
  --orange-soft: #ff9d64;
  --paper: #f4f6f8;
  --white: #fff;
  --ink: #10263d;
  --muted: #66798b;
  --line: #dce4ec;
  --content: 1260px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.shell {
  width: min(var(--content), calc(100% - 44px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: .84rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: linear-gradient(135deg, var(--orange), #ff7f2f);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(255, 101, 15, .27);
}

.button-primary:hover { box-shadow: 0 18px 44px rgba(255, 101, 15, .36); }

.button-ghost {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
}

.button-ghost:hover { background: rgba(255, 255, 255, .12); }

.button-light {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(2, 19, 35, .16);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(2, 19, 35, .92);
  color: var(--white);
  backdrop-filter: blur(18px) saturate(135%);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 220px;
  flex-direction: column;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 136px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  position: relative;
  margin-top: 5px;
  padding-left: 36px;
  color: rgba(255, 255, 255, .52);
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 27px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.nav-wrap,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-wrap { gap: 28px; }
.nav-links { gap: 24px; }

.nav-links a {
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover { color: var(--white); }

.header-cta {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 999px;
  font-size: .75rem;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 101, 15, .14), transparent 25%),
    linear-gradient(118deg, var(--navy-1000) 0%, #032440 64%, #063b60 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(255, 255, 255, .034) 48%, rgba(255, 255, 255, .034) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 47%, rgba(255, 255, 255, .026) 48%, rgba(255, 255, 255, .026) 50%, transparent 51%);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero::after {
  position: absolute;
  right: -5vw;
  bottom: -82px;
  width: 58vw;
  height: 155px;
  border-top: 8px solid var(--orange);
  background: rgba(255, 255, 255, .05);
  content: "";
  transform: rotate(-15deg);
}

.hero-inner {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, .98fr) minmax(460px, 1.02fr);
  gap: clamp(54px, 6vw, 94px);
  align-items: center;
  padding-top: 56px;
  padding-bottom: 118px;
}

.hero-copy,
.showcase { position: relative; z-index: 2; min-width: 0; }

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 42px;
  height: 3px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.hero .eyebrow { color: #ffb27e; }

h1 {
  max-width: 700px;
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: clamp(5rem, 7.35vw, 7.35rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .88;
  text-transform: uppercase;
}

h1 span { color: var(--orange); }

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.68;
}

.hero-lead strong { color: var(--white); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  margin: 25px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .61);
  font-size: .7rem;
  font-weight: 650;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 101, 15, .13);
  content: "";
}

.showcase { padding: 30px 5px 8px; }

.showcase::before,
.showcase::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.showcase::before {
  top: -5px;
  right: -28px;
  width: 56%;
  height: 45%;
  border-top: 5px solid var(--orange);
  border-right: 5px solid var(--orange);
}

.showcase::after {
  bottom: -20px;
  left: -20px;
  width: 42%;
  height: 35%;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
  border-left: 1px solid rgba(255, 255, 255, .32);
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .3);
  transform: rotate(-.65deg);
}

.window-topbar {
  display: grid;
  min-height: 58px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: #7890a3;
}

.traffic { display: flex; gap: 7px; }
.traffic i { width: 9px; height: 9px; border-radius: 50%; background: #dce3e8; }
.traffic i:first-child { background: #ff8d52; }
.traffic i:nth-child(2) { background: #ffd072; }
.traffic i:last-child { background: #7ac8a4; }

.window-title,
.window-badge {
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.window-badge { justify-self: end; color: var(--orange); }

.workflow-map {
  min-height: 410px;
  padding: 38px 28px 32px;
  background:
    linear-gradient(rgba(5, 43, 77, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 43, 77, .035) 1px, transparent 1px),
    #f7f9fb;
  background-size: 30px 30px;
}

.map-label,
.visual-label {
  margin-bottom: 58px;
  color: #8293a2;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.system-row {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 5px;
}

.system-box {
  min-width: 0;
  padding: 15px 12px;
  border: 1px solid #cbd7e1;
  border-radius: 10px;
  background: var(--white);
}

.system-box.manual {
  border-style: dashed;
  border-color: #f3a071;
  background: #fff7f2;
}

.system-box small,
.system-box strong,
.missing-piece small,
.missing-piece strong,
.stack-row small,
.stack-row strong,
.gap-piece small,
.gap-piece strong,
.floating-card small,
.floating-card strong,
.capability strong,
.capability small {
  display: block;
}

.system-box small,
.missing-piece small,
.stack-row small,
.gap-piece small,
.floating-card small {
  color: #8495a5;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.system-box strong { margin-top: 5px; color: var(--navy-900); font-size: .68rem; }
.map-arrow { color: var(--orange); font-weight: 900; text-align: center; }

.connector {
  width: 2px;
  height: 47px;
  margin-inline: auto;
  border-left: 2px dashed #f2a275;
}

.missing-piece {
  display: flex;
  max-width: 390px;
  align-items: center;
  gap: 15px;
  margin-inline: auto;
  padding: 17px;
  border: 1px solid rgba(255, 101, 15, .42);
  border-radius: 12px;
  background: var(--navy-900);
  box-shadow: 0 18px 38px rgba(2, 19, 35, .18);
}

.piece-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 400;
}

.missing-piece small { color: var(--orange-soft); }
.missing-piece strong { margin-top: 4px; color: var(--white); font-size: .77rem; }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 19px 46px rgba(2, 19, 35, .24);
}

.floating-card > span {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  place-items: center;
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.floating-card strong { margin-top: 3px; color: var(--navy-900); font-size: .7rem; }
.floating-card-one { top: 102px; left: -32px; }
.floating-card-two { right: -26px; bottom: 61px; }

.capability-rail {
  position: relative;
  z-index: 10;
  margin-top: -43px;
}

.capability-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 55px rgba(2, 19, 35, .16);
}

.capability {
  position: relative;
  min-height: 132px;
  padding: 22px 25px;
  border-right: 1px solid var(--line);
}

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

.capability::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 4px;
  background: transparent;
  content: "";
  transition: right .2s ease, left .2s ease, background .2s ease;
}

.capability:hover::after { right: 8%; left: 8%; background: var(--orange); }
.capability-icon { color: var(--orange); font-size: 1.55rem; line-height: 1; }
.capability strong { margin-top: 11px; color: var(--navy-900); font-size: .83rem; }
.capability small { margin-top: 4px; color: var(--muted); font-size: .66rem; line-height: 1.4; }

.section { padding: 104px 0; }

.section h2,
.cta-panel h2 {
  margin-bottom: 25px;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .94;
  text-transform: uppercase;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.gap-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(64px, 8vw, 118px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
  color: var(--navy-900);
  font-size: .84rem;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-size: 1rem;
  font-weight: 900;
}

.gap-visual {
  position: relative;
  isolation: isolate;
  min-height: 455px;
  overflow: hidden;
  padding: 31px;
  border-radius: 27px;
  background: linear-gradient(145deg, var(--navy-1000), var(--navy-800));
  box-shadow: 0 26px 68px rgba(2, 19, 35, .18);
  color: var(--white);
}

.gap-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
}

.visual-label { color: var(--orange-soft); }
.stack-flow { position: absolute; right: 30px; bottom: 30px; left: 30px; }

.stack-row {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: center;
  gap: 10px;
}

.stack-row > div {
  min-height: 91px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 13px;
  background: rgba(255, 255, 255, .07);
}

.stack-row > span { color: var(--orange); font-size: 1.6rem; font-weight: 900; text-align: center; }
.stack-row small { color: rgba(255, 255, 255, .43); }
.stack-row strong { margin-top: 6px; font-size: .78rem; }
.stack-line { width: 2px; height: 56px; margin-inline: auto; border-left: 2px dashed rgba(255, 157, 100, .58); }

.gap-piece {
  padding: 19px 21px;
  border: 1px solid rgba(255, 101, 15, .6);
  border-radius: 14px;
  background: rgba(255, 101, 15, .13);
}

.gap-piece small { color: var(--orange-soft); }
.gap-piece strong { max-width: 440px; margin-top: 6px; font-size: .86rem; line-height: 1.45; }

.work-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.work-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(255, 101, 15, .16), transparent 28%);
  content: "";
  pointer-events: none;
}

.work-section .shell { position: relative; }
.work-section .section-kicker { color: var(--orange-soft); }
.work-section h2 { color: var(--white); }

.work-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 430px);
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.work-head > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .61);
  font-size: .92rem;
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.proof-card {
  position: relative;
  min-height: 380px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.proof-card:last-child { border-right: 0; }
.proof-number { color: rgba(255, 255, 255, .34); font-size: .62rem; font-weight: 850; letter-spacing: .14em; }

.proof-mark {
  display: grid;
  width: 66px;
  height: 66px;
  margin-top: 55px;
  place-items: center;
  border: 1px solid rgba(255, 101, 15, .54);
  border-radius: 16px;
  background: rgba(255, 101, 15, .1);
  color: var(--orange-soft);
  font-size: 1.75rem;
}

.proof-type { margin: 44px 0 9px; color: var(--orange-soft); font-size: .57rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.proof-card h3 { margin-bottom: 13px; font-size: 1.08rem; }
.proof-card > p:last-child { margin: 0; color: rgba(255, 255, 255, .56); font-size: .78rem; line-height: 1.62; }
.proof-note { margin: 23px 0 0; color: rgba(255, 255, 255, .42); font-size: .69rem; }

.process-section { background: var(--white); }
.process-section > .shell > h2 { max-width: 900px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 53px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article {
  min-height: 276px;
  padding: 26px 27px;
  border-right: 1px solid var(--line);
}

.process-grid article:last-child { border-right: 0; }
.process-grid span { color: var(--orange); font-size: .62rem; font-weight: 900; letter-spacing: .14em; }
.process-grid h3 { margin: 86px 0 10px; color: var(--navy-950); font-size: 1rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.62; }

.questions-section { background: #eef2f5; }

.questions-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(64px, 9vw, 140px);
}

.question-list { margin: 0; }

.question-list > div {
  padding: 24px 0;
  border-top: 1px solid #ccd7df;
}

.question-list > div:last-child { border-bottom: 1px solid #ccd7df; }
.question-list dt { margin-bottom: 8px; color: var(--navy-950); font-size: .9rem; font-weight: 850; }
.question-list dd { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.65; }

.cta-wrap {
  padding: 0 0 100px;
  background: var(--white);
}

.cta-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding: clamp(44px, 6vw, 78px);
  border-radius: 29px;
  background: linear-gradient(125deg, var(--orange), #ff7a25);
  box-shadow: 0 25px 65px rgba(255, 101, 15, .2);
  color: var(--white);
}

.cta-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 57%, rgba(2, 19, 35, .16) 57%),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .17), transparent 24%);
  content: "";
}

.cta-panel .section-kicker { color: rgba(255, 255, 255, .8); }
.cta-panel h2 { margin: 0; color: var(--white); font-size: clamp(3rem, 4.8vw, 5.1rem); }
.cta-copy > p:first-child { color: rgba(255, 255, 255, .86); font-size: .91rem; line-height: 1.7; }
.contact-note { margin: 15px 0 0; color: rgba(255, 255, 255, .66); font-size: .67rem; line-height: 1.5; }
.contact-note a { color: var(--white); }

footer {
  background: var(--navy-1000);
  color: rgba(255, 255, 255, .49);
}

.footer-inner {
  display: grid;
  min-height: 126px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  font-size: .68rem;
}

.footer-inner p { margin: 0; }
.footer-inner p:last-child { text-align: right; }
.footer-brand { display: inline-flex; width: 118px; height: 34px; align-items: center; overflow: hidden; }
.footer-brand img { width: 118px; height: auto; }

a:focus-visible {
  outline: 3px solid var(--orange-soft);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding-top: 84px; }
  .hero-copy { max-width: 820px; }
  .showcase { width: min(760px, 100%); margin-inline: auto; }
  .gap-layout,
  .questions-layout,
  .cta-panel { grid-template-columns: 1fr; }
  .work-head { grid-template-columns: 1fr; gap: 18px; }
  .proof-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card:nth-child(2),
  .process-grid article:nth-child(2) { border-right: 0; }
  .proof-card:nth-child(-n + 2),
  .process-grid article:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .process-grid article:nth-child(-n + 2) { border-bottom-color: var(--line); }
}

@media (max-width: 760px) {
  .shell { width: min(var(--content), calc(100% - 28px)); }
  .header-inner { min-height: 68px; }
  .brand { min-width: 0; }
  .brand img { width: 112px; height: 27px; }
  .brand span { padding-left: 25px; font-size: .43rem; letter-spacing: .14em; white-space: nowrap; }
  .brand span::before { width: 18px; }
  .nav-links { display: none; }
  .nav-wrap { gap: 0; }
  .header-cta { max-width: 140px; padding: 8px 14px; font-size: .66rem; line-height: 1.2; text-align: center; }
  .hero-inner { gap: 58px; padding-top: 61px; padding-bottom: 92px; }
  .hero::after { bottom: -110px; width: 84vw; }
  .eyebrow { align-items: flex-start; font-size: .6rem; line-height: 1.5; }
  h1 { font-size: clamp(4.25rem, 20vw, 6rem); }
  .hero-lead { font-size: .94rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-notes { display: grid; }
  .showcase { padding-inline: 0; }
  .showcase::before,
  .showcase::after { display: none; }
  .product-window { border-radius: 18px; transform: none; }
  .window-topbar { min-height: 52px; padding-inline: 14px; }
  .window-title { font-size: .48rem; }
  .workflow-map { min-height: 425px; padding: 28px 15px 24px; }
  .map-label { margin-bottom: 30px; }
  .system-row { grid-template-columns: 1fr; gap: 6px; }
  .map-arrow { transform: rotate(90deg); }
  .system-box { padding: 11px 13px; }
  .connector { height: 25px; }
  .missing-piece { padding: 13px; }
  .floating-card { position: static; min-width: 0; margin-top: 10px; }
  .capability-rail { margin-top: -30px; }
  .capability-card { grid-template-columns: repeat(2, 1fr); border-radius: 18px; }
  .capability { min-height: 124px; padding: 18px; border-bottom: 1px solid var(--line); }
  .capability:nth-child(2n) { border-right: 0; }
  .capability:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .section { padding: 78px 0; }
  .section h2,
  .cta-panel h2 { font-size: clamp(3.15rem, 15vw, 4.7rem); }
  .gap-layout,
  .questions-layout { gap: 48px; }
  .gap-visual { min-height: 480px; padding: 23px; border-radius: 20px; }
  .stack-flow { right: 21px; bottom: 21px; left: 21px; }
  .stack-row { grid-template-columns: 1fr; }
  .stack-row > span { line-height: 1; }
  .stack-line { height: 38px; }
  .proof-grid,
  .process-grid { grid-template-columns: 1fr; }
  .proof-card,
  .proof-card:nth-child(2),
  .process-grid article,
  .process-grid article:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .process-grid article,
  .process-grid article:nth-child(2) { border-bottom-color: var(--line); }
  .proof-card:last-child,
  .process-grid article:last-child { border-bottom: 0; }
  .proof-mark { margin-top: 35px; }
  .proof-type { margin-top: 31px; }
  .process-grid h3 { margin-top: 50px; }
  .cta-wrap { padding-bottom: 74px; }
  .cta-panel { gap: 34px; padding: 31px 22px; border-radius: 21px; }
  .cta-panel::before { background: radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .17), transparent 28%); }
  .footer-inner { grid-template-columns: 1fr auto; min-height: 112px; }
  .footer-inner p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
