:root {
  --ink: #171219;
  --navy: #35141b;
  --navy-2: #5a1b28;
  --blue: #b42318;
  --blue-dark: #7a1f1a;
  --blue-soft: #fbece9;
  --cyan: #f26a4b;
  --text: #55474a;
  --muted: #75666a;
  --line: #e7dadc;
  --line-dark: rgba(255, 255, 255, .15);
  --surface: #ffffff;
  --canvas: #fbf7f6;
  --canvas-2: #f4eceb;
  --success: #0f766e;
  --shadow: 0 18px 48px rgba(66, 24, 31, .10);
  --shadow-lg: 0 28px 80px rgba(46, 12, 19, .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: #f4c9c2;
  color: var(--navy);
}

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

.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(180, 35, 24, .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,
.page-transition b {
  position: absolute;
  inset: -34vmax;
  display: block;
  background: linear-gradient(150deg, rgba(180, 35, 24, .93), rgba(242, 106, 75, .76));
  clip-path: polygon(0 35%, 100% 0, 100% 65%, 0 100%);
  opacity: 0;
  transform: var(--sweep-from, translate3d(-92%, 58%, 0));
  will-change: transform, opacity;
}

.page-transition b {
  background: linear-gradient(135deg, rgba(53, 20, 27, .88), rgba(180, 35, 24, .72));
  clip-path: polygon(0 43%, 100% 12%, 100% 57%, 0 88%);
}

.page-transition.is-active i {
  animation: section-sweep .72s var(--ease-out) both;
}

.page-transition.is-active b {
  animation: section-sweep .68s .11s var(--ease-out) both;
}

.page-transition[data-transition="change"] i {
  --sweep-from: translate3d(-92%, 58%, 0);
  --sweep-to: translate3d(92%, -58%, 0);
}

.page-transition[data-transition="change"] b {
  --sweep-from: translate3d(92%, -54%, 0);
  --sweep-to: translate3d(-92%, 54%, 0);
}

.page-transition[data-transition="process"] i {
  --sweep-from: translate3d(0, 94%, 0);
  --sweep-to: translate3d(0, -94%, 0);
}

.page-transition[data-transition="process"] b {
  --sweep-from: translate3d(-28%, 96%, 0);
  --sweep-to: translate3d(28%, -96%, 0);
}

.page-transition[data-transition="price"] i {
  --sweep-from: translate3d(-92%, -58%, 0);
  --sweep-to: translate3d(92%, 58%, 0);
}

.page-transition[data-transition="price"] b {
  --sweep-from: translate3d(92%, 52%, 0);
  --sweep-to: translate3d(-92%, -52%, 0);
}

.page-transition[data-transition="operation"] i {
  --sweep-from: translate3d(94%, 0, 0);
  --sweep-to: translate3d(-94%, 0, 0);
}

.page-transition[data-transition="operation"] b {
  --sweep-from: translate3d(-94%, 18%, 0);
  --sweep-to: translate3d(94%, -18%, 0);
}

.page-transition[data-transition="site-audit"] i {
  --sweep-from: translate3d(0, -94%, 0);
  --sweep-to: translate3d(0, 94%, 0);
}

.page-transition[data-transition="site-audit"] b {
  --sweep-from: translate3d(30%, -96%, 0);
  --sweep-to: translate3d(-30%, 96%, 0);
}

.page-transition[data-transition="default"] i {
  --sweep-from: translate3d(-94%, 0, 0);
  --sweep-to: translate3d(94%, 0, 0);
}

.page-transition[data-transition="default"] b {
  --sweep-from: translate3d(94%, 0, 0);
  --sweep-to: translate3d(-94%, 0, 0);
}

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

@keyframes section-sweep {
  0% { opacity: 0; transform: var(--sweep-from); }
  24% { opacity: .34; }
  72% { opacity: .18; }
  100% { opacity: 0; transform: var(--sweep-to); }
}

.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(66, 24, 31, .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;
  margin-left: auto;
  color: #34415b;
  font-size: 14px;
  font-weight: 620;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.language-toggle {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(53, 20, 27, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .56);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}

[data-language-toggle][hidden] {
  display: none !important;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(180, 35, 24, .36);
  background: rgba(180, 35, 24, .09);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.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(180, 35, 24, .25);
  border-radius: 10px;
  background: rgba(180, 35, 24, .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(180, 35, 24, .42);
  background: rgba(180, 35, 24, .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);
}

.business-info a {
  width: fit-content;
  color: rgba(255, 255, 255, .82);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .3);
  text-underline-offset: 3px;
}

.business-info a:hover,
.business-info a:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

.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(242, 106, 75, .14), transparent 26%),
    radial-gradient(circle at 8% 36%, rgba(180, 35, 24, .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(180, 35, 24, .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(242, 106, 75, .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(180, 35, 24, .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(180, 35, 24, .25);
}

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

.button-secondary {
  border-color: #decfd1;
  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(180, 35, 24, .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 #e5d6d8;
  border-radius: 12px;
  background:
    linear-gradient(rgba(180, 35, 24, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 35, 24, .055) 1px, transparent 1px),
    #fff;
  background-size: 24px 24px;
  overflow: hidden;
}

.device {
  position: absolute;
  border: 2px solid #58343a;
  background: #fff;
  box-shadow: 0 16px 24px rgba(73, 27, 37, .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: #dda6a2;
}

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

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

.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: #fbf7f6;
  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(180, 35, 24, .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 {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(180, 35, 24, .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 span.is-option {
  border-style: dashed;
  background: rgba(248, 250, 255, .9);
  color: #69758d;
}

.scene-languages span small {
  position: absolute;
  right: 3px;
  bottom: 3px;
  color: #7a879d;
  font-size: 5px;
  font-weight: 750;
  letter-spacing: 0;
}

.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(73, 27, 37, .12);
  color: #623b40;
  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 button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 13px 12px;
  border: 0;
  text-align: left;
  background: #fff;
  box-shadow: inset 0 0 0 0 transparent;
  transition: background .36s var(--ease), box-shadow .36s var(--ease), color .36s var(--ease), transform .2s var(--ease-out);
}

.system-status button:hover,
.system-status button:focus-visible {
  background: #fdf8f7;
}

.system-status button:active {
  transform: translateY(1px);
}

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

.system-status .status-index {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: #f0f4fb;
  color: #70809b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: background .3s var(--ease), color .3s var(--ease);
}

.system-status button.is-active .status-index {
  background: var(--blue);
  color: #fff;
}

.system-status .status-copy {
  display: block;
  min-width: 0;
}

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

.system-status .status-copy > 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(180, 35, 24, .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(180, 35, 24, .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,
.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,
.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(180, 35, 24, .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 #e8c9c6;
  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(180, 35, 24, .34), transparent 33%),
    radial-gradient(circle at 88% 74%, rgba(242, 106, 75, .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: #f2a28f;
}

.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;
}

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

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

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

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

.business-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;
}

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

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

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

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

.business-panel {
  padding: 24px;
  border: 1px solid #e7d5d6;
  border-radius: 10px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 34px rgba(73, 27, 37, .12);
}

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

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

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

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

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

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

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

.responsive-stage[data-device="tablet"] .business-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"] .business-screen {
  min-height: 455px;
}

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

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

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

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

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

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

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

.prep-section {
  background: #fff;
  padding-bottom: clamp(64px, 6vw, 92px);
}

.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(180, 35, 24, .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(180, 35, 24, .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;
}

.service-section {
  padding-top: clamp(74px, 7vw, 108px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--canvas) 0, #fff 132px);
  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 #e1d3d5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(73, 27, 37, .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: #fdf2ef;
  color: #654247;
  font-size: 13px;
  line-height: 1.65;
}

.scope-card {
  margin-top: 22px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid #e1d3d5;
  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(180, 35, 24, .055), transparent 42%),
    var(--canvas);
  overflow: hidden;
}

.audit-section::before {
  position: absolute;
  top: -190px;
  right: -110px;
  width: 520px;
  height: 320px;
  border: 1px solid rgba(180, 35, 24, .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(180, 35, 24, .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 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.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);
  row-gap: 30px;
  margin-top: 26px;
  list-style: none;
}

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

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

.audit-progress li::after {
  background: #dce4ef;
}

.audit-progress li::before {
  z-index: 1;
  background: var(--success);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .48s var(--ease-out);
}

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

.audit-progress li:nth-child(4n)::before,
.audit-progress li:nth-child(4n)::after {
  display: none;
}

.audit-progress li > span {
  position: relative;
  z-index: 2;
  display: grid;
  grid-row: 1;
  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: 2;
  grid-row: 2;
  padding-right: 8px;
}

.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(180, 35, 24, .09);
  animation: audit-active-bounce 1.35s cubic-bezier(.4, 0, .2, 1) infinite;
}

.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::before {
  transform: scaleX(1);
}

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

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

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

@keyframes audit-active-bounce {
  0%, 58%, 100% { transform: translateY(0); }
  24% { transform: translateY(-2px); }
  40% { transform: translateY(1px); }
}

.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(180, 35, 24, .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-results:focus-visible {
  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.is-good {
  border-left-color: var(--success);
  background: #eff9f6;
}

.audit-summary.is-warning {
  border-left-color: #d89912;
  background: #fff8e8;
}

.audit-summary.is-critical {
  border-left-color: #d34b3f;
  background: #fff1ef;
}

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

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

.audit-health {
  margin-top: 30px;
}

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

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

.audit-health-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.audit-health-card {
  position: relative;
  min-height: 126px;
  padding: 20px 21px 19px 45px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.audit-health-card::before {
  position: absolute;
  top: 22px;
  left: 21px;
  width: 10px;
  height: 10px;
  border: 2px solid #8e9aad;
  border-radius: 50%;
  content: "";
}

.audit-health-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.audit-health-card h5 {
  color: #2f3e58;
  font-size: 14px;
  font-weight: 740;
}

.audit-health-card small {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 6px;
  background: #eef2f7;
  color: #667289;
  font-size: 9px;
  font-weight: 740;
}

.audit-health-card p {
  margin-top: 9px;
  color: #536078;
  font-size: 12px;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.audit-health-card.is-good::before {
  border-color: var(--success);
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .09);
}

.audit-health-card.is-good small {
  background: #e7f5f2;
  color: #17655e;
}

.audit-health-card.is-warning::before {
  border-color: #d89912;
  background: #d89912;
  box-shadow: 0 0 0 4px rgba(216, 153, 18, .10);
}

.audit-health-card.is-warning small {
  background: #fff4d9;
  color: #8a5a00;
}

.audit-health-card.is-critical {
  border-color: #efc5c0;
  background: #fffafa;
}

.audit-health-card.is-critical::before {
  border-color: #d34b3f;
  background: #d34b3f;
  box-shadow: 0 0 0 4px rgba(211, 75, 63, .10);
}

.audit-health-card.is-critical small {
  background: #fcebe9;
  color: #9b352b;
}

.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;
  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-overview {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 24px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid #d5deec;
  border-radius: 14px;
  background: #fdf9f8;
}

.audit-total {
  padding-right: 22px;
  border-right: 1px solid #dce4ef;
}

.audit-total > span,
.audit-assessment > span,
.audit-findings-heading > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .08em;
}

.audit-total p {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 11px;
  color: var(--ink);
  line-height: 1;
}

.audit-total p strong {
  font-size: 50px;
  font-weight: 780;
  letter-spacing: -.07em;
}

.audit-total p small {
  padding-bottom: 6px;
  color: #7a879b;
  font-size: 12px;
}

.audit-total > em {
  display: table;
  margin-top: 13px;
  padding: 5px 9px;
  border-radius: 7px;
  background: #eef2f7;
  color: #5e6b81;
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
}

.audit-assessment {
  align-self: center;
}

.audit-assessment h4 {
  margin-top: 7px;
  font-size: 20px;
  font-weight: 740;
  letter-spacing: -.035em;
  line-height: 1.4;
}

.audit-assessment p {
  margin-top: 8px;
  color: #526079;
  font-size: 13px;
  line-height: 1.72;
}

.audit-overview.is-good,
.audit-overview.is-opportunity {
  border-color: #c6e2dd;
  background: #f3faf8;
}

.audit-overview.is-good .audit-total > em,
.audit-overview.is-opportunity .audit-total > em {
  background: #dff3ef;
  color: #17655e;
}

.audit-overview.is-needs_improvement {
  border-color: #ecd79c;
  background: #fffaf0;
}

.audit-overview.is-needs_improvement .audit-total > em {
  background: #fff0c7;
  color: #805700;
}

.audit-overview.is-problem,
.audit-overview.is-severe,
.audit-overview.is-emergency {
  border-color: #efc5c0;
  background: #fff7f6;
}

.audit-overview.is-problem .audit-total > em,
.audit-overview.is-severe .audit-total > em,
.audit-overview.is-emergency .audit-total > em {
  background: #fce3df;
  color: #97352c;
}

.audit-findings-section {
  margin-top: 30px;
}

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

.audit-findings {
  margin-top: 13px;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.audit-finding {
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(0, 1fr) 82px;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  animation: audit-finding-in .46s var(--ease-out) both;
  animation-delay: calc(var(--finding-index, 0) * 55ms);
}

@keyframes audit-finding-in {
  from { opacity: 0; transform: translate3d(15px, 4px, 0); }
  to { opacity: 1; transform: none; }
}

.audit-finding h5 {
  grid-row: 1;
  grid-column: 1;
  color: #2e3c55;
  font-size: 13px;
  font-weight: 750;
}

.audit-finding p {
  grid-row: 1;
  grid-column: 2;
  min-width: 0;
  color: #5a667b;
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.audit-finding em {
  grid-row: 1;
  grid-column: 3;
  align-self: center;
  justify-self: stretch;
  display: grid;
  width: 100%;
  min-height: 28px;
  box-sizing: border-box;
  place-items: center;
  padding: 5px 8px;
  border-radius: 7px;
  background: #eef2f7;
  color: #637087;
  font-size: 9px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

.audit-finding.is-good em {
  background: #e3f4f0;
  color: #17655e;
}

.audit-finding.is-opportunity em,
.audit-finding.is-needs_improvement em {
  background: #fff1ca;
  color: #805700;
}

.audit-finding.is-problem {
  border-bottom-color: #f1d2c0;
  background: #fff8f3;
  box-shadow: inset 3px 0 0 #df8b5d;
}

.audit-finding.is-severe {
  border-bottom-color: #edc1bc;
  background: #fff4f2;
  box-shadow: inset 3px 0 0 #d85f53;
}

.audit-finding.is-emergency {
  border-bottom-color: #e7aaa4;
  background: #ffefed;
  box-shadow: inset 4px 0 0 #b83228;
}

.audit-finding.is-problem em {
  background: #fbe4d8;
  color: #93451f;
}

.audit-finding.is-severe em {
  background: #f8d8d4;
  color: #a53229;
}

.audit-finding.is-emergency em {
  background: #efc5c0;
  color: #84231c;
}

.audit-finding.is-severe h5,
.audit-finding.is-emergency h5 {
  color: #7e2923;
}

.audit-finding.is-emergency p {
  color: #733b37;
}

.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-detail-scope {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audit-detail-scope li {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.audit-detail-scope strong {
  color: #2d3b54;
  font-size: 11px;
}

.audit-detail-scope span {
  color: #69758a;
  font-size: 11px;
  line-height: 1.5;
}

.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(180, 35, 24, .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(180, 35, 24, .35), transparent 33%),
    radial-gradient(circle at 88% 88%, rgba(242, 106, 75, .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(180, 35, 24, .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;
}

.form-status[data-state="progress"] {
  color: #42526c;
}

.form-status[data-state="success"] {
  color: #08796d;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.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(180, 35, 24, .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(180, 35, 24, .24), transparent 31%),
    #071127;
  color: #fff;
  overflow: hidden;
}

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

.footer-rail {
  position: absolute;
  top: 50%;
  left: -12vw;
  width: max-content;
  transform: translateY(-50%) rotate(4deg);
  transform-origin: left center;
}

.footer-track {
  display: flex;
  width: max-content;
  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;
  will-change: transform;
}

.site-footer.in-view .footer-track {
  opacity: 1;
  animation: footer-marquee 18s linear infinite;
}

.footer-loop {
  display: flex;
  flex: none;
}

.footer-loop span {
  flex: none;
  padding-right: .25em;
}

@keyframes footer-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.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(180, 35, 24, .28), transparent 32%),
    radial-gradient(circle at 86% 84%, rgba(242, 106, 75, .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: block;
  width: 72px;
  height: 72px;
  margin: 40px auto 0;
  animation: thanks-icon-in .48s var(--ease-out) both;
}

@keyframes thanks-icon-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.9);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.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(180, 35, 24, .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(66, 24, 31, .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,
  .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;
  }

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

  .system-status button {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    min-height: 66px;
    padding: 11px 14px;
  }

  .feature-chips {
    display: none;
  }

  .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,
  .contact-copy {
    position: static;
  }

  .contact-layout {
    gap: 40px;
  }

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

  .audit-progress li:nth-child(even)::before,
  .audit-progress li:nth-child(even)::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;
  }

  .system-status button {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    min-height: 66px;
    padding: 11px 14px;
  }

  .system-status .status-index {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .system-status .status-copy > span {
    font-size: 11px;
    font-weight: 700;
  }

  .system-status .status-copy > strong {
    margin-top: 2px;
    font-size: 12px;
  }

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

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

  .feature-chips {
    display: none;
  }

  .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,
  .contact-copy h2 {
    font-size: 31px;
  }

  .section-heading > p:last-child,
  .showcase-copy > 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%;
  }

  .business-intro {
    padding: 24px;
  }

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

  .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: "추가 비용";
  }

  html[lang="en"] .scope-row span:nth-of-type(1)::before {
    content: "Included";
  }

  html[lang="en"] .scope-row span:nth-of-type(2)::before {
    content: "Additional";
  }

  .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-rail {
    top: 52%;
    left: -24vw;
  }

  .footer-track {
    color: rgba(255, 255, 255, .035);
    font-size: 58px;
    -webkit-text-stroke-color: rgba(255, 255, 255, .36);
  }

  .site-footer.in-view .footer-track {
    animation: footer-marquee 13s linear infinite;
  }

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

  .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 {
    grid-template-columns: 22px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 10px;
    min-height: 64px;
    padding: 0 0 18px;
  }

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

  .audit-progress li::before {
    transform: scaleY(0);
    transform-origin: center top;
  }

  .audit-progress li.is-complete::before {
    transform: scaleY(1);
  }

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

  .audit-progress li > span,
  .audit-progress li > div {
    grid-row: 1;
  }

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

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

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

  .audit-overview {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .audit-total {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 5px 12px;
    padding: 0 0 17px;
    border-right: 0;
    border-bottom: 1px solid #dce4ef;
  }

  .audit-total p {
    grid-row: span 2;
    grid-column: 2;
    margin-top: 0;
  }

  .audit-total p strong {
    font-size: 44px;
  }

  .audit-total > em {
    margin-top: 4px;
  }

  .audit-assessment h4 {
    font-size: 18px;
  }

  .audit-finding {
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 5px 10px;
    min-height: 0;
    padding: 14px 12px;
    animation-delay: calc(var(--finding-index, 0) * 75ms);
  }

  .audit-finding h5 {
    grid-row: 1;
    grid-column: 1;
  }

  .audit-finding p {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .audit-finding em {
    grid-row: 1;
    grid-column: 2;
  }

  .audit-detail-scope li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .audit-health-card {
    min-height: 0;
  }

  .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,
  .thanks-icon,
  .site-footer.in-view .footer-track,
  .responsive-stage.is-switching .stage-frame,
  .audit-finding,
  .audit-spinner,
  .audit-submit i,
  .audit-progress li.is-active > span,
  .audit-progress li.is-active > span::after {
    animation: none !important;
  }

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

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