:root {
  --ink: #0f172a;
  --navy: #0b1739;
  --navy-2: #12234f;
  --blue: #2557d6;
  --blue-dark: #173b8f;
  --blue-soft: #e9efff;
  --cyan: #22c7e7;
  --text: #46536b;
  --muted: #6b778c;
  --line: #dbe3ee;
  --line-dark: rgba(255, 255, 255, .15);
  --surface: #ffffff;
  --canvas: #f5f7fb;
  --canvas-2: #eef3fa;
  --success: #0f766e;
  --shadow: 0 18px 48px rgba(20, 39, 83, .10);
  --shadow-lg: 0 28px 80px rgba(7, 20, 52, .18);
  --radius: 16px;
  --container: min(1180px, calc(100vw - 48px));
  --header: 76px;
  --header-compact: 52px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --motion-fast: 180ms;
  --motion-medium: 420ms;
  --motion-slow: 720ms;
  --font: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  min-width: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

svg {
  display: block;
}

::selection {
  background: #cfdbff;
  color: var(--navy);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

@supports (content-visibility: auto) {
  main > section:not(.intro-section):not(.audit-section) {
    content-visibility: auto;
    contain-intrinsic-size: auto 860px;
  }
}

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

.skip-link {
  position: fixed;
  z-index: 4000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s;
}

.page-loader {
  position: fixed;
  z-index: 3000;
  top: 0;
  right: 0;
  left: 0;
  display: none;
  height: 112px;
  place-items: center;
  background:
    radial-gradient(circle at 64% 20%, rgba(37, 87, 214, .5), transparent 38%),
    var(--navy);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 72%);
  transform: translate3d(0, 0, 0);
  transition: transform .42s var(--ease-out), visibility .42s;
  will-change: transform;
}

.js .page-loader {
  display: grid;
}

.loader-seen .page-loader {
  display: none;
}

.is-ready .page-loader {
  visibility: hidden;
  transform: translate3d(0, -118%, 0);
  pointer-events: none;
}

.loader-core {
  display: flex;
  align-items: center;
  transform: translateY(-4px);
}

.loader-core img {
  width: 38px;
  height: 38px;
}

.loader-core strong {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
}

.loader-core span {
  margin-left: 11px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .24);
  color: #aab8d3;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .34em;
}

.loader-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.loader-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  animation: loader-line .34s var(--ease-out) forwards;
}

.page-transition {
  position: fixed;
  z-index: 1600;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-transition i {
  position: absolute;
  top: -35vh;
  left: -32vw;
  width: 44vw;
  height: 170vh;
  background: linear-gradient(150deg, rgba(37, 87, 214, .93), rgba(34, 199, 231, .76));
  opacity: 0;
  transform: translate3d(-120%, 32%, 0) rotate(-18deg);
}

.page-transition.is-active i {
  animation: diagonal-sweep .58s var(--ease-out);
}

@keyframes loader-line {
  to { transform: scaleX(1); }
}

@keyframes diagonal-sweep {
  0% { opacity: 0; transform: translate3d(-120%, 32%, 0) rotate(-18deg); }
  28% { opacity: .42; }
  100% { opacity: 0; transform: translate3d(350%, -34%, 0) rotate(-18deg); }
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .54);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  transition: height .38s var(--ease-out), border-color .25s, background .25s, box-shadow .25s;
}

.site-header.scrolled {
  height: var(--header-compact);
  border-color: var(--line);
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 8px 28px rgba(20, 39, 83, .055);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, .94);
  }

  .site-header.scrolled {
    background: rgba(255, 255, 255, .97);
  }
}

body.menu-open .site-header {
  height: var(--header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand > span:last-child {
  display: block;
  line-height: 1.1;
}

.brand-word {
  min-width: 78px;
}

.brand strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .015em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  max-height: 10px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .26em;
  overflow: hidden;
  transition: max-height .28s var(--ease), margin .28s var(--ease), opacity .2s, transform .28s var(--ease);
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  transition: width .34s var(--ease-out), height .34s var(--ease-out), transform .34s var(--ease-out);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-header.scrolled .brand-mark {
  width: 29px;
  height: 29px;
}

.site-header.scrolled .brand small {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-4px);
}

body.menu-open .site-header .brand-mark {
  width: 34px;
  height: 34px;
}

body.menu-open .site-header .brand small {
  max-height: 10px;
  margin-top: 4px;
  opacity: 1;
  transform: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #34415b;
  font-size: 14px;
  font-weight: 620;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(37, 87, 214, .25);
  border-radius: 10px;
  background: rgba(37, 87, 214, .08);
  color: var(--blue-dark);
  box-shadow: none;
  transition: min-height .3s var(--ease-out), padding .3s var(--ease-out), border-radius .3s var(--ease-out), border-color .2s, background .2s, color .2s, transform .2s;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(37, 87, 214, .42);
  background: rgba(37, 87, 214, .14);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.site-header.scrolled .nav-cta {
  min-height: 30px;
  padding-inline: 11px;
  border-radius: 8px;
}

body.menu-open .site-header .nav-cta {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--canvas);
}

.menu-button i {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

.intro-section {
  position: relative;
  min-height: 780px;
  padding: 154px 0 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(34, 199, 231, .14), transparent 26%),
    radial-gradient(circle at 8% 36%, rgba(37, 87, 214, .08), transparent 26%),
    #fff;
  overflow: hidden;
}

.intro-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(35, 70, 145, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 70, 145, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 76%);
  pointer-events: none;
}

.intro-motion-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.motion-line {
  --line-angle: -17deg;
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  display: block;
  width: 48vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 87, 214, .25), transparent);
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotate(var(--line-angle));
  transform-origin: center;
}

.motion-line-one {
  top: 27%;
  right: -7%;
}

.motion-line-two {
  --line-angle: 11deg;
  bottom: 23%;
  left: -15%;
  width: 40vw;
  background: linear-gradient(90deg, transparent, rgba(34, 199, 231, .18), transparent);
}

.motion-orbit {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  top: 12%;
  right: 7%;
  width: min(44vw, 620px);
  aspect-ratio: 1.7;
  border: 1px solid rgba(37, 87, 214, .1);
  border-radius: 50%;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotate(-14deg);
}

.intro-grid[data-parallax-x] {
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
}

.intro-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(56px, 7vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .05em;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.intro-section h1 {
  max-width: 730px;
  margin-top: 22px;
  font-size: clamp(44px, 4.7vw, 66px);
  font-weight: 720;
  letter-spacing: -.055em;
  line-height: 1.16;
}

.intro-lead {
  max-width: 610px;
  margin-top: 28px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  transition: border-color .2s, background .2s, color .2s, transform .2s, box-shadow .2s;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 87, 214, .25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 16px 36px rgba(37, 87, 214, .32);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: #c9d4e4;
  background: rgba(255, 255, 255, .76);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.intro-note {
  max-width: 610px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.intro-visual {
  position: relative;
  padding: 34px 22px 44px;
}

.reveal.in-view[data-parallax-x] {
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
}

.system-window {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(38, 71, 139, .16);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #59677e;
  font: 500 10px/1 var(--font);
  letter-spacing: .02em;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4dce8;
}

.window-bar b {
  justify-self: end;
  color: var(--success);
  font-size: 9px;
  letter-spacing: .09em;
}

.window-bar b i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.system-body {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(37, 87, 214, .04), transparent 42%),
    #f9fbff;
}

.system-head span {
  display: block;
  color: #7a879c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.system-head strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -.035em;
}

.system-head p {
  max-width: 390px;
  min-height: 38px;
  margin-top: 8px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.65;
}

.device-map {
  position: relative;
  height: 260px;
  margin-top: 26px;
  border: 1px solid #d8e2f0;
  border-radius: 12px;
  background:
    linear-gradient(rgba(37, 87, 214, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 87, 214, .055) 1px, transparent 1px),
    #fff;
  background-size: 24px 24px;
  overflow: hidden;
}

.device {
  position: absolute;
  border: 2px solid #2f426b;
  background: #fff;
  box-shadow: 0 16px 24px rgba(27, 48, 92, .12);
  transition: opacity .52s var(--ease), transform .62s var(--ease-out), filter .52s var(--ease);
  overflow: hidden;
}

.device::before {
  display: block;
  height: 14px;
  background: var(--navy);
  content: "";
}

.device i,
.device span,
.device b {
  display: block;
  border-radius: 2px;
}

.device i {
  width: 52%;
  height: 8px;
  margin: 14px 10px 7px;
  background: #9fb6ef;
}

.device span {
  width: calc(100% - 20px);
  height: 6px;
  margin: 6px 10px;
  background: #dce5f5;
}

.device b {
  width: calc(100% - 20px);
  height: 36px;
  margin: 11px 10px;
  background: linear-gradient(135deg, var(--blue), #4a75e4);
}

.desktop-device {
  z-index: 1;
  top: 27px;
  left: 45px;
  width: 265px;
  height: 168px;
  border-radius: 7px;
}

.desktop-device::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 26px;
  border-top: 1px solid #e0e7f2;
  background: #f5f8fc;
  content: "";
}

.tablet-device {
  z-index: 2;
  right: 48px;
  bottom: 20px;
  width: 135px;
  height: 188px;
  border-radius: 9px;
}

.mobile-device {
  z-index: 3;
  right: 18px;
  bottom: 17px;
  width: 76px;
  height: 146px;
  border-radius: 11px;
}

.mobile-device i,
.mobile-device span,
.mobile-device b {
  margin-right: 7px;
  margin-left: 7px;
}

.mobile-device i {
  width: 55%;
}

.mobile-device span,
.mobile-device b {
  width: calc(100% - 14px);
}

.intro-visual[data-active-feature="languages"] .device {
  opacity: .48;
  filter: saturate(.72);
  transform: translate3d(-5px, 5px, 0) scale(.985);
}

.intro-visual[data-active-feature="operation"] .device {
  opacity: .38;
  filter: saturate(.58);
  transform: translate3d(6px, -3px, 0) scale(.975);
}

.scene-layer {
  position: absolute;
  z-index: 5;
  opacity: 0;
  transform: translate3d(18px, 16px, 0) scale(.96);
  transition: opacity .38s var(--ease), transform .62s var(--ease-out);
  pointer-events: none;
}

.scene-layer.is-active {
  opacity: 1;
  transform: none;
}

.scene-responsive {
  inset: 0;
}

.scene-responsive span {
  position: absolute;
  display: grid;
  min-width: 40px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(37, 87, 214, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 18px rgba(17, 40, 86, .12);
  color: var(--blue-dark);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
}

.scene-responsive span:nth-child(1) { top: 16px; left: 55px; }
.scene-responsive span:nth-child(2) { top: 58px; right: 59px; }
.scene-responsive span:nth-child(3) { right: 9px; bottom: 8px; }

.scene-languages {
  top: 20px;
  left: 18px;
  display: flex;
  gap: 7px;
}

.scene-languages span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(37, 87, 214, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 24px rgba(21, 46, 99, .12);
  color: var(--blue);
  font-size: 11px;
  font-weight: 820;
}

.scene-languages.is-active span {
  animation: scene-item-settle .58s var(--ease-out) both;
}

.scene-languages.is-active span:nth-child(2) { animation-delay: 90ms; }
.scene-languages.is-active span:nth-child(3) { animation-delay: 180ms; }
.scene-languages.is-active span:nth-child(4) { animation-delay: 270ms; }

.scene-operation {
  top: 18px;
  right: 16px;
  display: grid;
  width: 150px;
  gap: 7px;
}

.scene-operation span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 22px rgba(17, 52, 74, .12);
  color: #31506a;
  font-size: 9px;
  font-weight: 720;
}

.scene-operation span i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.scene-operation.is-active span {
  animation: scene-item-settle .58s var(--ease-out) both;
}

.scene-operation.is-active span:nth-child(2) { animation-delay: 110ms; }
.scene-operation.is-active span:nth-child(3) { animation-delay: 220ms; }

@keyframes scene-item-settle {
  from { opacity: 0; transform: translate3d(24px, 18px, 0) scale(.94); }
  to { opacity: 1; transform: none; }
}

.system-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
  overflow: hidden;
}

.system-status div {
  padding: 13px 12px;
  background: #fff;
  box-shadow: inset 0 0 0 0 transparent;
  transition: background .36s var(--ease), box-shadow .36s var(--ease), color .36s var(--ease);
}

.system-status div.is-active {
  background: #eef3ff;
  box-shadow: inset 0 -2px 0 var(--blue);
}

.system-status span {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.system-status strong {
  display: block;
  margin-top: 4px;
  color: #263552;
  font-size: 10px;
  line-height: 1.45;
}

.feature-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px 0 7px;
  border: 1px solid #d9e2ee;
  border-radius: 9px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 30px rgba(18, 38, 83, .14);
  color: #283853;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: opacity .42s var(--ease), transform .7s var(--ease-out), border-color .25s, background .25s, box-shadow .25s, color .25s;
}

.feature-chip:hover,
.feature-chip:focus-visible,
.feature-chip.is-active {
  border-color: rgba(37, 87, 214, .38);
  background: rgba(238, 243, 255, .96);
  box-shadow: 0 15px 34px rgba(18, 38, 83, .18);
  color: var(--blue-dark);
}

.feature-chip span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 8px;
}

.js .intro-visual .feature-chip {
  opacity: 0;
  transform: translate3d(150px, 92px, 0) rotate(4deg) scale(.9);
}

.js .intro-visual.in-view .feature-chip {
  opacity: 1;
  transform: none;
}

.js .intro-visual.in-view .chip-one { transition-delay: 360ms, 360ms, 0s, 0s, 0s, 0s; }
.js .intro-visual.in-view .chip-two { transition-delay: 570ms, 570ms, 0s, 0s, 0s, 0s; }
.js .intro-visual.in-view .chip-three { transition-delay: 780ms, 780ms, 0s, 0s, 0s, 0s; }

.intro-visual.is-feature-changing .system-head strong,
.intro-visual.is-feature-changing .system-head p {
  animation: feature-copy-settle .5s var(--ease-out) both;
}

@keyframes feature-copy-settle {
  from { opacity: 0; transform: translate3d(10px, 8px, 0); }
  to { opacity: 1; transform: none; }
}

.chip-one {
  top: 12px;
  left: -12px;
}

.chip-two {
  top: 49%;
  right: -20px;
}

.chip-three {
  bottom: 14px;
  left: 8px;
}

.capability-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-strip div {
  position: relative;
  min-height: 108px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.capability-strip div:first-child {
  border-left: 1px solid var(--line);
}

.capability-strip span {
  display: block;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.capability-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
}

.scroll-cue {
  position: fixed;
  z-index: 92;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 22px;
  display: grid;
  width: 52px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(37, 87, 214, .2);
  border-radius: 13px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .13);
  color: var(--navy);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(12px, 10px, 0);
  transition: opacity .3s, visibility .3s, transform .42s var(--ease-out);
  backdrop-filter: blur(12px);
}

.scroll-cue.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.scroll-cue span {
  align-self: end;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.scroll-cue i {
  position: relative;
  align-self: start;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.scroll-cue.is-visible i {
  animation: cue-bounce .72s var(--ease-out) 2;
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(-2px) rotate(45deg); }
  50% { transform: translateY(4px) rotate(45deg); }
}

.section {
  padding: clamp(92px, 9vw, 136px) 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 52px;
}

.section-heading h2,
.showcase-copy h2,
.check-intro h2,
.contact-copy h2 {
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 720;
  letter-spacing: -.05em;
  line-height: 1.22;
}

.section-heading > p:last-child,
.showcase-copy > p,
.check-intro > p,
.contact-copy > p {
  margin-top: 18px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-card {
  position: relative;
  min-height: 310px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background .25s, box-shadow .25s, transform .25s;
  overflow: hidden;
}

.benefit-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(37, 87, 214, .09), transparent 48%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}

.benefit-card:hover {
  position: relative;
  z-index: 1;
  background: #fbfcff;
  box-shadow: 0 18px 40px rgba(26, 49, 101, .10);
  transform: translateY(-3px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #ccdaff;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
}

.icon-box svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3 {
  margin-top: 26px;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -.035em;
}

.benefit-card p {
  margin-top: 13px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.78;
}

.section-dark {
  padding: clamp(86px, 9vw, 128px) 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(37, 87, 214, .34), transparent 33%),
    radial-gradient(circle at 88% 74%, rgba(34, 199, 231, .15), transparent 27%),
    var(--navy);
  color: #fff;
}

.showcase-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: clamp(54px, 8vw, 104px);
}

.eyebrow-light {
  color: #80a7ff;
}

.showcase-copy > p {
  color: #b9c3d7;
}

.device-switch {
  display: inline-flex;
  gap: 5px;
  margin-top: 30px;
  padding: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
}

.device-switch button {
  min-width: 74px;
  height: 38px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #aeb9cd;
  font-size: 13px;
  font-weight: 680;
}

.device-switch button.active {
  background: #fff;
  color: var(--navy);
}

.responsive-stage {
  display: grid;
  min-height: 540px;
  place-items: center;
}

.stage-frame {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .32);
  overflow: hidden;
  transition: width .5s var(--ease), border-radius .5s var(--ease);
}

.responsive-stage.is-switching .stage-frame {
  animation: stage-settle .42s var(--ease-out);
}

@keyframes stage-settle {
  0% { opacity: .72; transform: translate3d(11px, -7px, 0) scale(.986); }
  100% { opacity: 1; transform: none; }
}

.responsive-stage[data-device="tablet"] .stage-frame {
  width: 70%;
  border-radius: 18px;
}

.responsive-stage[data-device="mobile"] .stage-frame {
  width: 42%;
  border-radius: 24px;
}

.stage-browser {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 32px;
  padding: 0 12px;
  background: #e9eef6;
}

.stage-browser i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aab5c5;
}

.stage-browser span {
  margin-left: 8px;
  color: #748095;
  font-size: 8px;
}

.clinic-screen {
  min-height: 405px;
  color: #14213a;
  background: #f7f9fc;
  overflow: hidden;
}

.clinic-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 58px;
  padding: 0 24px;
  border-bottom: 1px solid #e4eaf2;
  background: #fff;
}

.clinic-nav b {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .08em;
}

.clinic-nav span {
  margin-left: auto;
  color: #5d687b;
  font-size: 8px;
}

.clinic-nav em {
  display: grid;
  min-width: 49px;
  height: 26px;
  place-items: center;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.clinic-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
  min-height: 270px;
  padding: 34px;
  background:
    linear-gradient(120deg, #f5f8ff 0 58%, #e7efff 58%),
    #f5f8ff;
}

.clinic-intro small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
}

.clinic-intro > div > strong {
  display: block;
  margin-top: 12px;
  font-size: 27px;
  font-weight: 740;
  letter-spacing: -.055em;
  line-height: 1.25;
}

.clinic-intro > div > p {
  margin-top: 12px;
  color: #687489;
  font-size: 9px;
}

.clinic-panel {
  padding: 24px;
  border: 1px solid #d6e1f4;
  border-radius: 10px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 34px rgba(28, 53, 108, .12);
}

.clinic-panel span,
.clinic-panel i {
  display: block;
  color: #6b778c;
  font-size: 8px;
  font-style: normal;
}

.clinic-panel b {
  display: block;
  margin: 9px 0;
  color: var(--blue);
  font-size: 16px;
}

.clinic-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 72px;
  border-top: 1px solid #e2e8f1;
  background: #fff;
}

.clinic-actions span {
  display: grid;
  place-items: center;
  border-right: 1px solid #e2e8f1;
  color: #34415b;
  font-size: 9px;
  font-weight: 700;
}

.clinic-actions span:last-child {
  border-right: 0;
}

.responsive-stage[data-device="tablet"] .clinic-nav span {
  display: none;
}

.responsive-stage[data-device="tablet"] .clinic-intro {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 26px;
  background: #f5f8ff;
}

.responsive-stage[data-device="tablet"] .clinic-panel {
  padding: 16px;
}

.responsive-stage[data-device="mobile"] .stage-browser {
  justify-content: center;
}

.responsive-stage[data-device="mobile"] .stage-browser i,
.responsive-stage[data-device="mobile"] .stage-browser span {
  display: none;
}

.responsive-stage[data-device="mobile"] .clinic-screen {
  min-height: 455px;
}

.responsive-stage[data-device="mobile"] .clinic-nav {
  height: 50px;
  padding: 0 14px;
}

.responsive-stage[data-device="mobile"] .clinic-nav span {
  display: none;
}

.responsive-stage[data-device="mobile"] .clinic-nav em {
  margin-left: auto;
}

.responsive-stage[data-device="mobile"] .clinic-intro {
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 330px;
  padding: 24px 18px;
  background: #f5f8ff;
}

.responsive-stage[data-device="mobile"] .clinic-intro > div > strong {
  font-size: 22px;
}

.responsive-stage[data-device="mobile"] .clinic-panel {
  padding: 16px;
}

.responsive-stage[data-device="mobile"] .clinic-actions {
  position: relative;
  min-height: 62px;
}

.prep-section {
  background: #fff;
}

.prep-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header) + 42px);
  margin-bottom: 0;
}

.prep-list {
  position: relative;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.prep-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue), rgba(37, 87, 214, .08));
  content: "";
  opacity: .24;
}

.prep-list li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity .34s, transform .42s var(--ease-out);
}

.prep-list li::before {
  position: absolute;
  top: 37px;
  left: 21px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #cbd5e1;
  box-shadow: 0 0 0 1px #cbd5e1;
  content: "";
  transition: background .25s, box-shadow .25s, transform .32s var(--ease-out);
}

.prep-list li.is-active::before,
.prep-list li.is-past::before {
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 0 0 6px rgba(37, 87, 214, .1);
}

.prep-list li.is-active::before {
  transform: scale(1.15);
}

.prep-list > li > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.prep-list h3 {
  font-size: 21px;
  font-weight: 720;
  letter-spacing: -.035em;
}

.prep-list p {
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
}

.check-section {
  background:
    linear-gradient(135deg, rgba(37, 87, 214, .05), transparent 35%),
    var(--canvas);
}

.check-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: clamp(50px, 8vw, 102px);
}

.check-intro {
  position: sticky;
  top: calc(var(--header) + 42px);
}

.check-result {
  position: relative;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid #cfdaeb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(26, 49, 101, .07);
  overflow: hidden;
}

.check-result::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 12%, rgba(37, 87, 214, .1), transparent 72%);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
}

.check-result.is-updated {
  animation: result-settle .3s var(--ease-out);
}

.check-result.is-updated::after {
  animation: result-sweep .48s var(--ease-out);
}

@keyframes result-settle {
  0% { transform: translate3d(8px, -3px, 0); }
  100% { transform: none; }
}

@keyframes result-sweep {
  0% { opacity: 0; transform: translateX(-100%); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateX(100%); }
}

.check-result > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 720;
}

.check-result > span b {
  font-size: 27px;
  font-weight: 780;
}

.check-result strong {
  display: block;
  margin-top: 11px;
  font-size: 18px;
  line-height: 1.45;
}

.check-result p {
  margin-top: 8px;
  color: var(--text);
  font-size: 14px;
}

.check-card {
  padding: 20px 32px;
  border: 1px solid #d3dce9;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.check-card label {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 15px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #e4e9f1;
  cursor: pointer;
}

.check-card input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.check-card label span {
  color: #27344d;
  font-size: 15px;
  font-weight: 620;
}

.check-card label:has(input:checked) span {
  color: var(--blue);
}

.check-footnote {
  padding: 20px 0 4px;
  color: var(--muted);
  font-size: 12px;
}

.service-section {
  background: #fff;
  overflow: clip;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service-rail article {
  min-height: 230px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-rail article:nth-child(3n),
.service-rail article:last-child {
  border-right: 0;
}

.service-rail article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-rail span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.service-rail h3 {
  margin-top: 52px;
  font-size: 19px;
  font-weight: 720;
}

.service-rail p {
  margin-top: 11px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}

.js .service-sequence.reveal {
  opacity: 1;
  transform: none;
}

.js .service-sequence .service-step {
  opacity: 0;
  transform: translate3d(min(104vw, 1500px), min(28vh, 240px), 0) rotate(3deg) scale(.97);
  transform-origin: right bottom;
  transition: opacity .46s ease-out, transform .94s var(--ease-out);
  will-change: transform, opacity;
}

.js .service-sequence.in-view .service-step {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js .service-sequence .service-step:nth-child(2) { transition-delay: 150ms; }
.js .service-sequence .service-step:nth-child(3) { transition-delay: 300ms; }
.js .service-sequence .service-step:nth-child(4) { transition-delay: 450ms; }
.js .service-sequence .service-step:nth-child(5) { transition-delay: 600ms; }
.js .service-sequence .service-step:nth-child(6) { transition-delay: 750ms; }

.price-section {
  background: var(--canvas);
}

.price-heading {
  max-width: 770px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid #cfd9e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(23, 45, 94, .08);
  overflow: hidden;
}

.price-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--blue);
  content: "";
}

.manage-card::before {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-top h3 {
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
}

.price-top small {
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--canvas-2);
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.price {
  margin-top: 23px;
}

.price strong {
  display: block;
  font-size: clamp(31px, 3.4vw, 43px);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1.2;
}

.price em {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.price-note {
  min-height: 54px;
  margin-top: 17px;
  color: var(--text);
  font-size: 14px;
}

.price-card ul {
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: #34415b;
  font-size: 14px;
}

.price-card li::before {
  position: absolute;
  top: 15px;
  left: 2px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  content: "";
  transform: rotate(-45deg);
}

.price-option {
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  background: #f3f6ff;
  color: #35466b;
  font-size: 13px;
  line-height: 1.65;
}

.scope-card {
  margin-top: 22px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid #cfd9e8;
  border-radius: 16px;
  background: #fff;
}

.scope-heading {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: baseline;
}

.scope-heading span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
}

.scope-heading h3 {
  font-size: 25px;
  font-weight: 720;
  letter-spacing: -.04em;
}

.scope-table {
  margin-top: 30px;
  border-top: 1px solid var(--ink);
}

.scope-row {
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
}

.scope-row strong {
  color: var(--ink);
  font-weight: 720;
}

.scope-head {
  padding: 13px 0;
  color: var(--muted);
  font-size: 11px;
}

.scope-head b {
  font-weight: 650;
}

.scope-card > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(50px, 8vw, 104px);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
  transition: transform .2s;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 45px 24px 0;
  color: var(--text);
  font-size: 15px;
}

.audit-section {
  position: relative;
  background:
    linear-gradient(145deg, rgba(37, 87, 214, .055), transparent 42%),
    var(--canvas);
  overflow: hidden;
}

.audit-section::before {
  position: absolute;
  top: -190px;
  right: -110px;
  width: 520px;
  height: 320px;
  border: 1px solid rgba(37, 87, 214, .08);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
  pointer-events: none;
}

.audit-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.audit-heading h2 {
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 720;
  letter-spacing: -.05em;
  line-height: 1.22;
}

.audit-heading > p:last-child {
  max-width: 720px;
  margin-top: 18px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
}

.audit-shell {
  position: relative;
  min-height: 290px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #d5dfef;
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 70px rgba(16, 36, 79, .11);
}

.audit-shell [hidden] {
  display: none !important;
}

.audit-form {
  max-width: 890px;
}

.audit-form > label {
  display: block;
  margin-bottom: 10px;
  color: #30405f;
  font-size: 13px;
  font-weight: 740;
}

.audit-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.audit-input-row input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid #c6d2e4;
  border-radius: 11px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.audit-input-row input::placeholder {
  color: #97a3b5;
}

.audit-input-row input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 87, 214, .11);
}

.audit-input-row input[aria-invalid="true"] {
  border-color: #d92d20;
  background: #fff9f8;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, .07);
}

.audit-submit {
  display: inline-flex;
  min-width: 132px;
  min-height: 58px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--blue);
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 740;
  transition: background .2s, border-color .2s, transform .2s, opacity .2s;
}

.audit-submit:hover,
.audit-submit:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.audit-submit:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.audit-submit i {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .36);
  border-top-color: #fff;
  border-radius: 50%;
}

.audit-shell[aria-busy="true"] .audit-submit i {
  display: block;
  animation: audit-spin .8s linear infinite;
}

.audit-help,
.audit-field-error,
.audit-live-region {
  font-size: 12px;
}

.audit-help {
  margin-top: 10px;
  color: var(--muted);
}

.audit-field-error {
  margin-top: 8px;
  color: #b42318;
  font-weight: 680;
}

.audit-live-region {
  min-height: 20px;
  margin-top: 10px;
  color: #42516c;
}

.audit-progress {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.audit-progress-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.audit-progress-head strong,
.audit-progress-head small {
  display: block;
}

.audit-progress-head strong {
  font-size: 17px;
  letter-spacing: -.02em;
}

.audit-progress-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.audit-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid #d9e2f1;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: audit-spin .9s linear infinite;
}

@keyframes audit-spin {
  to { transform: rotate(360deg); }
}

.audit-progress ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
  list-style: none;
}

.audit-progress li {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding-right: 22px;
  color: #7c8799;
}

.audit-progress li::after {
  position: absolute;
  z-index: 0;
  top: 10px;
  right: 0;
  left: 11px;
  height: 1px;
  background: #dce4ef;
  content: "";
}

.audit-progress li:last-child::after {
  display: none;
}

.audit-progress li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid #cbd5e3;
  border-radius: 50%;
  background: #fff;
}

.audit-progress li > span::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c2ccda;
  content: "";
}

.audit-progress li > div {
  position: relative;
  z-index: 1;
  padding-right: 8px;
  background: #fff;
}

.audit-progress li strong,
.audit-progress li small {
  display: block;
}

.audit-progress li strong {
  font-size: 13px;
}

.audit-progress li small {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.45;
}

.audit-progress li.is-active {
  color: var(--blue-dark);
}

.audit-progress li.is-active > span {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(37, 87, 214, .09);
}

.audit-progress li.is-active > span::after {
  background: var(--blue);
  animation: audit-pulse 1.25s var(--ease) infinite;
}

.audit-progress li.is-complete {
  color: #24655f;
}

.audit-progress li.is-complete::after {
  background: rgba(15, 118, 110, .35);
}

.audit-progress li.is-complete > span {
  border-color: var(--success);
  background: var(--success);
}

.audit-progress li.is-complete > span::after {
  width: 7px;
  height: 4px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  border-radius: 0;
  background: transparent;
  transform: translateY(-1px) rotate(45deg);
}

@keyframes audit-pulse {
  50% { transform: scale(.65); opacity: .55; }
}

.audit-notice {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid #f1c8c3;
  border-radius: 12px;
  background: #fff9f8;
}

.audit-notice strong {
  color: #8f2d24;
  font-size: 16px;
}

.audit-notice p {
  margin-top: 6px;
  color: #6f443f;
  font-size: 13px;
}

.audit-text-link {
  display: inline;
  margin-top: 12px;
  padding: 1px 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(37, 87, 214, .36);
  background: transparent;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.55;
  text-align: left;
  transition: border-color .2s, color .2s;
}

.audit-text-link:hover,
.audit-text-link:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.audit-results {
  margin-top: 38px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  outline: 0;
}

.audit-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.audit-result-kicker,
.audit-measured-at {
  color: var(--muted);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .04em;
}

.audit-result-head h3 {
  margin-top: 7px;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 730;
  letter-spacing: -.045em;
  line-height: 1.3;
}

.audit-result-head [data-audit-host] {
  margin-top: 7px;
  color: var(--text);
  font-size: 13px;
  word-break: break-all;
}

.audit-score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.audit-score-card {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfcff;
}

.audit-score-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audit-score-card h4 {
  color: #3d4c66;
  font-size: 13px;
  font-weight: 720;
}

.audit-score-card small {
  padding: 4px 8px;
  border-radius: 6px;
  background: #edf1f7;
  color: #667289;
  font-size: 10px;
  font-weight: 740;
}

.audit-score-card > strong {
  display: block;
  margin-top: 15px;
  font-size: 47px;
  font-weight: 760;
  letter-spacing: -.06em;
  line-height: 1;
}

.audit-score-track {
  height: 4px;
  margin-top: 18px;
  border-radius: 99px;
  background: #e5eaf2;
  overflow: hidden;
}

.audit-score-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width .7s var(--ease-out), background .2s;
}

.audit-score-card.is-good small,
.audit-metric-row span.is-good em {
  background: #e7f5f2;
  color: #17655e;
}

.audit-score-card.is-good .audit-score-track i {
  background: var(--success);
}

.audit-score-card.is-needs-work small,
.audit-metric-row span.is-needs-work em {
  background: #fff4d9;
  color: #8a5a00;
}

.audit-score-card.is-needs-work .audit-score-track i {
  background: #d89912;
}

.audit-score-card.is-slow small,
.audit-metric-row span.is-slow em {
  background: #fcebe9;
  color: #9b352b;
}

.audit-score-card.is-slow .audit-score-track i {
  background: #d34b3f;
}

.audit-summary {
  margin-top: 14px;
  padding: 22px 24px;
  border-left: 3px solid var(--blue);
  background: #f3f6fd;
}

.audit-summary strong {
  font-size: 16px;
}

.audit-summary p {
  margin-top: 5px;
  color: var(--text);
  font-size: 13px;
}

.audit-metrics-wrap {
  margin-top: 32px;
}

.audit-metrics-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.audit-metrics-heading span,
.audit-context-grid span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audit-metrics-heading h4 {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: -.025em;
}

.audit-info-trigger {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid #aebbd0;
  background: transparent;
  color: #53617a;
  font-size: 11px;
}

.audit-metric-guide {
  margin-top: 12px;
  padding: 13px 15px;
  border-radius: 8px;
  background: var(--canvas);
  color: #59657a;
  font-size: 11px;
}

.audit-metrics {
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.audit-metric-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.audit-metric-row > * {
  padding: 11px 14px;
}

.audit-metric-row > * + * {
  border-left: 1px solid var(--line);
}

.audit-metric-head {
  min-height: 38px;
  background: #f7f9fc;
  color: #6b778b;
  font-size: 10px;
  font-weight: 720;
}

.audit-metric-row strong {
  color: #33415a;
  font-size: 13px;
}

.audit-metric-row strong small {
  display: block;
  color: #8994a6;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .05em;
}

.audit-metric-row span[role="cell"] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: #26344e;
  font-size: 14px;
  font-weight: 700;
}

.audit-metric-row span[role="cell"] em {
  padding: 3px 6px;
  border-radius: 5px;
  background: #eef2f7;
  color: #69758a;
  font-size: 9px;
  font-style: normal;
  font-weight: 720;
}

.audit-context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.audit-context-grid > div {
  padding: 20px 21px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.audit-context-grid p {
  margin-top: 7px;
  color: #44516a;
  font-size: 12px;
}

.audit-context-grid small {
  display: block;
  margin-top: 7px;
  color: #7e899b;
  font-size: 10px;
}

.audit-detail-invite {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.audit-detail-invite p {
  max-width: 830px;
  color: var(--text);
  font-size: 13px;
}

.audit-disclaimer {
  max-width: 910px;
  margin: 16px 3px 0;
  color: #788497;
  font-size: 11px;
}

.audit-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: min(86dvh, 720px);
  margin: auto;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

.audit-dialog::backdrop {
  background: rgba(5, 14, 35, .58);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.audit-dialog-panel {
  position: relative;
  max-height: min(86dvh, 720px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(4, 16, 46, .34);
  overflow-y: auto;
}

.audit-message-panel {
  text-align: center;
}

.audit-dialog-kicker {
  color: var(--blue);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .09em;
}

.audit-dialog h2 {
  margin-top: 8px;
  font-size: 25px;
  font-weight: 730;
  letter-spacing: -.04em;
  line-height: 1.35;
}

.audit-dialog-panel > p:not(.audit-dialog-kicker) {
  margin-top: 12px;
  color: var(--text);
  font-size: 13px;
}

.audit-dialog-close {
  position: absolute;
  top: 13px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--canvas);
  color: #4f5d75;
  font-size: 21px;
  line-height: 1;
}

.audit-dialog form {
  margin-top: 22px;
}

.audit-dialog form > label:not(.consent) {
  display: block;
}

.audit-dialog form label span {
  display: block;
  margin-bottom: 7px;
  color: #34415b;
  font-size: 12px;
  font-weight: 700;
}

.audit-dialog input[type="email"] {
  width: 100%;
  height: 49px;
  padding: 0 13px;
  border: 1px solid #cbd5e4;
  border-radius: 9px;
  outline: 0;
  background: #fbfcfe;
}

.audit-dialog input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 87, 214, .11);
}

.audit-dialog input[aria-invalid="true"] {
  border-color: #d92d20;
  background: #fff8f7;
}

.audit-dialog .consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  margin-top: 15px;
}

.audit-dialog .consent input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.audit-dialog .consent span {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.audit-dialog details {
  margin-top: 8px;
  color: #748096;
  font-size: 10px;
}

.audit-dialog details summary {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.audit-dialog details p {
  margin-top: 7px;
  padding: 9px 10px;
  border-radius: 6px;
  background: var(--canvas);
}

.audit-dialog-status {
  min-height: 19px;
  margin-top: 9px;
  color: #b42318;
  font-size: 11px;
}

.audit-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.audit-dialog-actions button,
.audit-dialog-confirm {
  min-height: 43px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 710;
}

.audit-dialog-cancel {
  border: 1px solid #cbd5e3;
  background: #fff;
  color: #4c5970;
}

.audit-dialog-submit,
.audit-dialog-confirm {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.audit-dialog-confirm {
  margin-top: 22px;
}

.contact-section {
  padding: clamp(86px, 9vw, 126px) 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(37, 87, 214, .35), transparent 33%),
    radial-gradient(circle at 88% 88%, rgba(34, 199, 231, .14), transparent 27%),
    var(--navy);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: clamp(54px, 9vw, 120px);
}

.contact-copy {
  position: sticky;
  top: calc(var(--header) + 42px);
}

.contact-copy > p {
  color: #bdc7d9;
}

.contact-assurance {
  max-width: 430px;
  margin-top: 28px;
  color: #d9e1ef;
  font-size: 13px;
  line-height: 1.7;
}

.contact-form {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .22);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form > label {
  display: block;
  margin-top: 18px;
}

.contact-form label span {
  display: block;
  margin-bottom: 7px;
  color: #34415b;
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8e6;
  border-radius: 9px;
  outline: 0;
  background: #fbfcfe;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 87, 214, .12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #99a4b5;
}

.contact-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
}

.contact-form .consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.contact-form .consent span {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.privacy-detail {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.privacy-detail summary {
  color: #66738a;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-detail p {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 7px;
  background: var(--canvas);
  line-height: 1.6;
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
  color: #b42318;
  font-size: 12px;
  font-weight: 650;
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #d92d20;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, .08);
}

.button-light {
  border: 0;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 11px 28px rgba(37, 87, 214, .24);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button-full {
  width: 100%;
  margin-top: 25px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  position: relative;
  padding: 0 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 87, 214, .24), transparent 31%),
    #071127;
  color: #fff;
  overflow: hidden;
}

.footer-motion {
  height: clamp(126px, 16vw, 214px);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  overflow: hidden;
}

.footer-track {
  display: flex;
  width: max-content;
  padding-top: clamp(35px, 5vw, 60px);
  color: transparent;
  font-size: clamp(64px, 10.5vw, 150px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .88;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .26);
  opacity: 0;
  transform: translate3d(4%, 26px, 0) rotate(-4deg);
  transform-origin: left center;
}

.site-footer.in-view .footer-track {
  animation: footer-arrive 1.15s var(--ease-out) forwards;
}

.footer-track span {
  padding-right: .25em;
}

@keyframes footer-arrive {
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(-4deg); }
}

@keyframes footer-arrive-mobile {
  to { opacity: 1; transform: none; }
}

.footer-main {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr auto;
  align-items: start;
  gap: clamp(34px, 6vw, 80px);
  padding-top: 54px;
}

.footer-brand-block > p {
  margin-top: 19px;
  color: #9eacc3;
  font-size: 13px;
}

.brand-footer strong {
  color: #fff;
}

.brand-footer small {
  color: #91a0bb;
}

.brand-footer .brand-mark {
  width: 40px;
  height: 40px;
}

.business-info {
  display: grid;
  gap: 7px;
  color: #9eacc3;
  font-size: 12px;
  line-height: 1.65;
}

.business-info strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer-main nav {
  display: grid;
  gap: 12px;
  justify-items: end;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 650;
}

.footer-main nav a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #7f8da6;
  font-size: 11px;
}

.footer-bottom a {
  color: #cbd5e1;
}

.footer-bottom b {
  font-weight: inherit;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-slow) var(--ease), transform var(--motion-slow) var(--ease);
}

.js .reveal[data-reveal="left"] {
  transform: translate3d(-22px, 14px, 0);
}

.js .reveal[data-reveal="right"] {
  transform: translate3d(22px, -9px, 0);
}

.js .reveal[data-reveal="clip"] {
  transform: translate3d(-16px, 8px, 0);
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

.benefit-card:nth-child(2),
.benefit-card:nth-child(5) {
  transition-delay: 55ms;
}

.benefit-card:nth-child(3),
.benefit-card:nth-child(6) {
  transition-delay: 110ms;
}

.thanks-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 16%, rgba(37, 87, 214, .28), transparent 32%),
    radial-gradient(circle at 86% 84%, rgba(34, 199, 231, .14), transparent 28%),
    var(--navy);
}

.thanks-wrap {
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
}

.thanks-card {
  width: min(100%, 580px);
  padding: clamp(32px, 6vw, 64px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .28);
  text-align: center;
}

.thanks-card .brand {
  justify-content: center;
}

.thanks-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 40px auto 0;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 26px;
  font-weight: 800;
}

.thanks-card h1 {
  margin-top: 25px;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 750;
  letter-spacing: -.05em;
  line-height: 1.3;
}

.thanks-card p {
  margin: 14px auto 28px;
  color: var(--text);
}

.thanks-card .button {
  width: auto;
}

:focus-visible {
  outline: 3px solid rgba(37, 87, 214, .42);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  :root {
    --container: min(100% - 40px, 940px);
  }

  .primary-nav {
    gap: 20px;
  }

  .intro-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .intro-visual {
    padding-right: 0;
    padding-left: 0;
  }

  .device-map {
    height: 235px;
  }

  .desktop-device {
    left: 24px;
    width: 230px;
  }

  .tablet-device {
    right: 35px;
  }

  .mobile-device {
    right: 8px;
  }

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

}

@media (max-width: 820px) {
  :root {
    --header: 68px;
    --header-compact: 52px;
    --container: calc(100% - 32px);
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] i:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 120;
    top: var(--header);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100dvh - var(--header));
    padding: 16px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 30px rgba(20, 39, 83, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .22s, visibility .22s, transform .22s;
    overflow-y: auto;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 12px;
  }

  .site-header.scrolled .primary-nav .nav-cta {
    min-height: 42px;
    padding-inline: 18px;
    border-radius: 10px;
  }

  .intro-section {
    min-height: auto;
    padding-top: 118px;
  }

  .intro-layout,
  .showcase-layout,
  .prep-layout,
  .check-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-layout {
    gap: 38px;
  }

  .intro-section h1 {
    font-size: clamp(40px, 8.5vw, 58px);
  }

  .intro-visual {
    width: min(100%, 610px);
    margin-inline: auto;
  }

  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 46px;
  }

  .capability-strip div {
    min-height: 90px;
    border-bottom: 1px solid var(--line);
  }

  .showcase-layout {
    gap: 42px;
  }

  .responsive-stage {
    min-height: 520px;
  }

  .sticky-heading,
  .check-intro,
  .contact-copy {
    position: static;
  }

  .check-layout,
  .contact-layout {
    gap: 40px;
  }

  .audit-progress ol {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }

  .audit-progress li:nth-child(2)::after {
    display: none;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-note {
    min-height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-main nav {
    grid-auto-flow: column;
    justify-content: start;
    justify-items: start;
  }

  .prep-list::before,
  .prep-list li::before {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  body {
    font-size: 15px;
    line-height: 1.65;
  }

  .page-loader {
    height: 96px;
  }

  .loader-core img {
    width: 32px;
    height: 32px;
  }

  .loader-core strong {
    margin-left: 9px;
    font-size: 12px;
  }

  .loader-core span {
    margin-left: 8px;
    padding-left: 9px;
    font-size: 6px;
  }

  .intro-section {
    padding-top: 108px;
  }

  .motion-line,
  .motion-orbit {
    opacity: .5;
  }

  .scroll-cue {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 54px;
  }

  .intro-section h1 {
    font-size: 39px;
    line-height: 1.18;
  }

  .intro-lead {
    font-size: 16px;
  }

  .intro-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .system-body {
    padding: 18px;
  }

  .device-map {
    height: 225px;
  }

  .desktop-device {
    top: 24px;
    left: 16px;
    width: 210px;
  }

  .tablet-device {
    right: 21px;
    bottom: 15px;
    width: 117px;
  }

  .mobile-device {
    right: 2px;
    bottom: 12px;
    width: 68px;
  }

  .system-status {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    padding: 12px 0 0;
  }

  .system-head p {
    min-height: 52px;
    font-size: 11px;
  }

  .feature-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .feature-chip,
  .chip-one,
  .chip-two,
  .chip-three {
    position: relative;
    inset: auto;
    display: grid;
    width: 100%;
    min-height: 62px;
    padding: 8px 4px;
    place-items: center;
    align-content: center;
    gap: 5px;
    font-size: 10px;
    line-height: 1.2;
  }

  .feature-chip span {
    width: 22px;
    height: 22px;
  }

  .js .intro-visual .feature-chip {
    transform: translate3d(30px, 28px, 0) rotate(2deg) scale(.94);
  }

  .capability-strip {
    grid-template-columns: 1fr 1fr;
  }

  .capability-strip div {
    min-height: 92px;
    padding: 20px 16px;
  }

  .capability-strip strong {
    font-size: 13px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .showcase-copy h2,
  .check-intro h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .section-heading > p:last-child,
  .showcase-copy > p,
  .check-intro > p,
  .contact-copy > p {
    font-size: 15px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .device-switch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .device-switch button {
    min-width: 0;
  }

  .responsive-stage {
    min-height: 440px;
  }

  .responsive-stage[data-device="tablet"] .stage-frame {
    width: 84%;
  }

  .responsive-stage[data-device="mobile"] .stage-frame {
    width: 60%;
  }

  .clinic-intro {
    padding: 24px;
  }

  .prep-list li {
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }

  .check-card {
    padding: 12px 20px;
  }

  .check-card label {
    gap: 12px;
    padding: 17px 0;
  }

  .service-rail {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--ink);
  }

  .service-rail article,
  .service-rail article:nth-child(3),
  .service-rail article:last-child {
    min-height: auto;
    padding: 24px 8px;
    border-right: 0;
  }

  .service-rail article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .service-rail article:last-child {
    border-bottom: 0;
  }

  .js .service-sequence .service-step {
    transform: translate3d(58px, 44px, 0) rotate(1.8deg) scale(.98);
    transition-duration: .4s, .82s;
    transition-delay: 0s !important;
  }

  .js .service-sequence.in-view .service-step {
    opacity: 0;
    transform: translate3d(58px, 44px, 0) rotate(1.8deg) scale(.98);
  }

  .js .service-sequence .service-step.in-view,
  .js .service-sequence.in-view .service-step.in-view {
    opacity: 1;
    transform: none;
  }

  .js .reveal {
    transform: translateY(26px);
    transition-duration: .84s;
  }

  .js .reveal[data-reveal="left"] {
    transform: translate3d(-24px, 20px, 0);
  }

  .js .reveal[data-reveal="right"] {
    transform: translate3d(24px, 20px, 0);
  }

  .js .reveal.in-view,
  .js .reveal.in-view[data-reveal="left"],
  .js .reveal.in-view[data-reveal="right"],
  .js .reveal.in-view[data-reveal="clip"] {
    opacity: 1;
    transform: none;
  }

  .service-rail h3 {
    margin-top: 20px;
  }

  .price-card,
  .scope-card {
    padding: 26px 21px;
  }

  .price strong {
    font-size: 32px;
  }

  .scope-heading {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .scope-table {
    border-top-color: var(--line);
  }

  .scope-head {
    display: none;
  }

  .scope-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
  }

  .scope-row span {
    position: relative;
    padding-left: 76px;
  }

  .scope-row span::before {
    position: absolute;
    left: 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
  }

  .scope-row span:nth-of-type(1)::before {
    content: "기본 관리";
  }

  .scope-row span:nth-of-type(2)::before {
    content: "추가 비용";
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-grid label + label {
    margin-top: 18px;
  }

  .contact-form {
    padding: 24px 19px;
  }

  .audit-heading h2 {
    font-size: 31px;
  }

  .audit-heading > p:last-child {
    font-size: 15px;
  }

  .footer-main nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footer-motion {
    height: 106px;
  }

  .footer-track {
    padding: 34px 0 0 14px;
    color: rgba(255, 255, 255, .035);
    font-size: 58px;
    -webkit-text-stroke-color: rgba(255, 255, 255, .36);
    transform: translate3d(0, 16px, 0);
    transform-origin: left center;
  }

  .site-footer.in-view .footer-track {
    animation-name: footer-arrive-mobile;
    animation-duration: .86s;
  }

  .footer-main {
    padding-top: 40px;
  }

  .business-info br {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 620px) {
  .audit-section::before {
    top: -110px;
    right: -220px;
    width: 420px;
    height: 240px;
  }

  .audit-shell {
    min-height: 250px;
    padding: 24px 19px;
    border-radius: 14px;
  }

  .audit-input-row {
    grid-template-columns: 1fr;
  }

  .audit-submit {
    width: 100%;
    min-height: 50px;
  }

  .audit-input-row input {
    height: 52px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .audit-progress {
    margin-top: 26px;
    padding-top: 24px;
  }

  .audit-progress ol {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 22px;
  }

  .audit-progress li {
    min-height: 64px;
    padding: 0 0 18px;
  }

  .audit-progress li::after,
  .audit-progress li:nth-child(2)::after {
    top: 12px;
    right: auto;
    bottom: -4px;
    left: 10px;
    display: block;
    width: 1px;
    height: auto;
  }

  .audit-progress li:last-child::after {
    display: none;
  }

  .audit-progress li > div {
    padding-right: 0;
  }

  .audit-result-head {
    display: block;
  }

  .audit-measured-at {
    display: block;
    margin-top: 10px;
  }

  .audit-score-grid,
  .audit-context-grid {
    grid-template-columns: 1fr;
  }

  .audit-score-card {
    padding: 21px;
  }

  .audit-metrics-heading {
    align-items: flex-start;
  }

  .audit-metric-row {
    grid-template-columns: 1.05fr .95fr .95fr;
  }

  .audit-metric-row > * {
    min-width: 0;
    padding: 10px 7px;
  }

  .audit-metric-row strong,
  .audit-metric-row span[role="cell"] {
    font-size: 11px;
  }

  .audit-metric-row span[role="cell"] {
    display: block;
  }

  .audit-metric-row span[role="cell"] em {
    display: table;
    margin-top: 4px;
  }

  .audit-dialog-panel {
    padding: 28px 20px 22px;
  }

  .audit-dialog h2 {
    padding-right: 18px;
    font-size: 22px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .js .service-sequence .service-step {
    opacity: 1;
    transform: none !important;
  }

  .page-loader,
  .page-transition {
    display: none !important;
  }

  .scroll-cue.is-visible i,
  .site-footer.in-view .footer-track,
  .responsive-stage.is-switching .stage-frame,
  .check-result.is-updated,
  .check-result.is-updated::after,
  .audit-spinner,
  .audit-submit i,
  .audit-progress li.is-active > span::after {
    animation: none !important;
  }

  .audit-score-track i {
    transition: none;
  }

  .footer-track {
    opacity: 1;
    transform: none;
  }

  [data-parallax-x] {
    --parallax-x: 0px !important;
    --parallax-y: 0px !important;
  }
}
