@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans SC Local";
  src: url("assets/fonts/NotoSansSC-SpaceMint.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --page: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f8f7;
  --surface-mint: #edf9f4;
  --ink: #17211e;
  --ink-strong: #0b1713;
  --muted: #68756f;
  --line: #dfe7e3;
  --line-strong: #cbd8d2;
  --green-950: #08201c;
  --green-900: #103f3a;
  --green-800: #15564c;
  --green-700: #1c715d;
  --green-600: #25866a;
  --mint: #83e2ba;
  --mint-bright: #4bdca1;
  --mint-soft: #dff7ed;
  --blue: #1473e6;
  --container: 1220px;
  --header-height: 76px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 55px rgba(16, 63, 58, 0.12);
  --shadow-window: 0 35px 90px rgba(16, 45, 39, 0.19), 0 8px 24px rgba(16, 45, 39, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: "Plus Jakarta Sans", "Inter", "Noto Sans SC Local", "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--green-950);
  background: var(--mint);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid rgba(20, 115, 230, 0.38);
  outline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  transition: height 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px) saturate(130%);
  }
}

.site-header.is-scrolled {
  height: 66px;
  border-color: rgba(16, 63, 58, 0.09);
  box-shadow: 0 8px 30px rgba(25, 54, 47, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(16, 63, 58, 0.14);
}

.brand>span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  color: var(--green-950);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.015em;
}

.brand small {
  margin-top: 5px;
  color: #83908b;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  padding: 7px 0;
  color: #56635e;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 9px;
  background: var(--green-700);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.site-nav a:hover {
  color: var(--green-900);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 39px;
  padding: 0 17px;
  border-radius: 9px;
  color: #ffffff;
  background: var(--green-900);
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 8px 20px rgba(16, 63, 58, 0.16);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.header-download:hover {
  background: var(--green-800);
  box-shadow: 0 11px 26px rgba(16, 63, 58, 0.22);
  transform: translateY(-1px);
}

.header-download svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: calc(var(--header-height) + 38px) 0 72px;
  overflow: hidden;
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: 56%;
  background: linear-gradient(135deg, #effaf5 0%, #e6f7ef 58%, #f5fbf8 100%);
  clip-path: polygon(0 0, 90% 0, 100% 21%, 77% 100%, 0 100%);
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.hero-shape-a {
  top: 76px;
  left: 32%;
  width: 260px;
  height: 720px;
  opacity: 0.72;
  background: rgba(200, 241, 224, 0.56);
  transform: skewX(-27deg);
}

.hero-shape-b {
  top: 76px;
  right: -160px;
  width: 360px;
  height: 300px;
  background: #f4fbf8;
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 54px;
  min-height: 660px;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.laptop {
  position: relative;
  z-index: 2;
  width: min(100%, 710px);
  padding: 11px 11px 18px;
  border-radius: 20px 20px 11px 11px;
  background: linear-gradient(145deg, #25302d, #101714 72%);
  box-shadow: 0 42px 80px rgba(27, 75, 62, 0.2), 0 14px 28px rgba(19, 50, 42, 0.16);
}

.laptop-camera {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #53615c;
  transform: translateX(-50%);
}

.laptop-screen {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 10px 10px 5px 5px;
  overflow: hidden;
  background: #eef3f1;
  cursor: zoom-in;
}

.laptop-screen img {
  width: 100%;
  aspect-ratio: 1186 / 773;
  object-fit: cover;
}

.laptop-base {
  position: absolute;
  top: calc(100% - 7px);
  left: -6%;
  width: 112%;
  height: 24px;
  border-radius: 2px 2px 45% 45%;
  background: linear-gradient(180deg, #f2f5f4 0%, #aeb9b5 48%, #dce2e0 76%, #88938f 100%);
  box-shadow: 0 22px 24px rgba(16, 48, 39, 0.2);
}

.laptop-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffffff;
}

.laptop-base span {
  position: absolute;
  top: 2px;
  left: 44%;
  width: 12%;
  height: 5px;
  border-radius: 0 0 8px 8px;
  background: #bac4c0;
}

.hero-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 184px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 38px rgba(17, 67, 54, 0.16);
  animation: note-float 5.5s ease-in-out infinite;
}

@supports (backdrop-filter: blur(10px)) {
  .hero-note {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px) saturate(130%);
  }
}

.hero-note-scan {
  right: -4px;
  bottom: 42px;
}

.hero-note-native {
  top: 28px;
  right: 44px;
  min-width: 168px;
  animation-delay: -2.6s;
}

.hero-note>span:last-child {
  display: grid;
}

.hero-note small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.hero-note strong {
  margin-top: 3px;
  color: var(--green-950);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.note-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 10px;
  color: var(--green-700);
  background: var(--mint-soft);
}

.note-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.native-dot {
  width: 12px;
  height: 12px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--mint-bright);
  box-shadow: 0 0 0 4px rgba(75, 220, 161, 0.18);
}

@keyframes note-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-bottom: 5px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.08em;
}

.eyebrow>span {
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 8px;
  background: var(--mint-bright);
}

.hero h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(53px, 5.1vw, 74px);
  font-weight: 760;
  line-height: 1.13;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--green-700);
  font-style: normal;
}

.hero-lead {
  max-width: 510px;
  margin: 27px 0 0;
  color: #55635e;
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 33px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 23px;
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 670;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  min-width: 190px;
  color: #ffffff;
  background: var(--green-900);
  box-shadow: 0 13px 30px rgba(16, 63, 58, 0.22);
}

.button-primary:hover {
  background: var(--green-800);
  box-shadow: 0 16px 34px rgba(16, 63, 58, 0.28);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 650;
}

.text-link span {
  font-size: 18px;
  transition: transform 0.18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-meta {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.45fr;
  gap: 0;
  max-width: 500px;
  margin: 38px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: grid;
  padding-right: 16px;
}

.hero-meta div+div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-meta dt {
  color: #63706b;
  font-size: 12px;
  font-weight: 550;
}

.hero-meta dd {
  margin: 4px 0 0;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.feature-shortcuts {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.shortcut-grid>a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 154px;
  padding: 24px 22px;
  border-left: 1px solid var(--line);
  transition: background 0.18s ease;
}

.shortcut-grid>a:last-child {
  border-right: 1px solid var(--line);
}

.shortcut-grid>a:hover {
  background: #f8fbfa;
}

.shortcut-icon {
  display: grid;
  place-items: center;
  width: 61px;
  height: 61px;
  color: var(--green-700);
}

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

.shortcut-grid>a>span:last-child {
  display: grid;
}

.shortcut-grid strong {
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 700;
}

.shortcut-grid small {
  margin-top: 4px;
  color: #5c6863;
  font-size: 12px;
}

.section {
  padding: 116px 0;
}

.anchor-offset {
  position: absolute;
  transform: translateY(-100px);
}

.section-heading {
  max-width: 650px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.feature-copy h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(39px, 4vw, 54px);
  font-weight: 735;
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.section-heading>p:last-child,
.feature-copy>p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.cleanup-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.cleanup-stage {
  position: relative;
  min-height: 690px;
  margin-top: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-shape {
  position: absolute;
  top: 0;
  left: 50%;
  width: 88%;
  height: 93%;
  border-radius: 46% 54% 47% 53% / 55% 42% 58% 45%;
  background: #edf9f4;
  transform: translateX(-50%) rotate(-2deg);
}

.stage-shape::before,
.stage-shape::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(32, 126, 94, 0.14);
  border-radius: 50%;
}

.stage-shape::before {
  top: 9%;
  left: 6%;
  width: 230px;
  height: 230px;
}

.stage-shape::after {
  right: 5%;
  bottom: 6%;
  width: 145px;
  height: 145px;
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 63, 58, 0.16);
  border-radius: 15px;
  background: #f3f3f3;
  box-shadow: var(--shadow-window);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.app-window>button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #f3f3f3;
  cursor: zoom-in;
}

.app-window>button>img {
  width: 100%;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.app-window-cleanup {
  z-index: 2;
  width: min(91%, 1030px);
}

.stage-fact {
  position: absolute;
  z-index: 4;
  padding: 14px 17px;
  border: 1px solid rgba(16, 63, 58, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.stage-fact-left {
  bottom: 47px;
  left: 2px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.stage-fact-left svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 9px;
  color: var(--green-700);
  background: var(--mint-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-fact>span,
.stage-fact-right {
  display: grid;
}

.stage-fact-right {
  top: 75px;
  right: 0;
}

.stage-fact strong {
  color: var(--green-950);
  font-size: 12px;
  font-weight: 700;
}

.stage-fact small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.feature-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-details article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 17px;
  padding: 36px 36px 37px;
}

.feature-details article+article {
  border-left: 1px solid var(--line);
}

.feature-details article>span {
  grid-row: 1 / 3;
  padding-top: 2px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 700;
}

.feature-details h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 690;
}

.feature-details p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.analysis-section {
  overflow: hidden;
  background: var(--surface-soft);
}

.feature-split {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 88px;
}

.feature-copy {
  position: relative;
  z-index: 4;
  max-width: 460px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 29px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #4c5b55;
  font-size: 12px;
  font-weight: 550;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 1px;
  width: 13px;
  height: 8px;
  border-bottom: 2px solid var(--green-600);
  border-left: 2px solid var(--green-600);
  transform: rotate(-45deg);
}

.analysis-visual {
  position: relative;
  min-height: 620px;
}

.analysis-disc {
  position: absolute;
  border-radius: 50%;
}

.disc-one {
  top: 15px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: #e3f6ed;
}

.disc-one::after {
  content: "";
  position: absolute;
  top: 53px;
  left: 53px;
  width: calc(100% - 106px);
  height: calc(100% - 106px);
  border: 1px solid rgba(28, 113, 93, 0.13);
  border-radius: 50%;
}

.disc-two {
  bottom: 35px;
  left: -35px;
  width: 175px;
  height: 175px;
  border: 1px solid rgba(28, 113, 93, 0.16);
}

.analysis-window {
  position: absolute;
  z-index: 2;
  top: 96px;
  left: 0;
  width: 780px;
  max-width: calc(100% + 130px);
  transform: rotate(1.5deg);
}

.analysis-window>button {
  height: 430px;
}

.analysis-window img {
  min-height: 100%;
  object-fit: cover;
  object-position: top left;
}

.analysis-label {
  position: absolute;
  z-index: 4;
  right: -20px;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 18px;
  border: 1px solid rgba(16, 63, 58, 0.1);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.analysis-label svg {
  width: 33px;
  height: 33px;
  padding: 7px;
  border-radius: 9px;
  color: var(--green-700);
  background: var(--mint-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analysis-label span {
  display: grid;
}

.analysis-label strong {
  color: var(--ink-strong);
  font-size: 13px;
}

.analysis-label small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.mapping-section {
  position: relative;
  padding: 135px 0;
  overflow: hidden;
  background: var(--green-900);
}

.mapping-pattern {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(131, 226, 186, 0.15);
  border-radius: 50%;
}

.mapping-pattern::before,
.mapping-pattern::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(131, 226, 186, 0.12);
  border-radius: 50%;
}

.mapping-pattern::before {
  inset: 80px;
}

.mapping-pattern::after {
  inset: 165px;
}

.mapping-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 90px;
}

.mapping-visual {
  position: relative;
  min-height: 560px;
}

.mapping-window {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 820px;
  max-width: calc(100% + 90px);
  transform: rotate(-1.2deg);
}

.mapping-route {
  position: absolute;
  z-index: 4;
  top: 6px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  color: #ffffff;
  background: rgba(7, 39, 33, 0.78);
  box-shadow: 0 16px 34px rgba(1, 15, 12, 0.24);
  backdrop-filter: blur(10px);
}

.mapping-route span {
  display: grid;
}

.mapping-route small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.mapping-route strong {
  margin-top: 3px;
  color: #ffffff;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 500;
}

.mapping-route i {
  color: var(--mint);
  font-size: 19px;
  font-style: normal;
}

.mapping-copy h2 {
  color: #ffffff;
}

.mapping-copy .eyebrow {
  color: var(--mint);
}

.mapping-copy>p {
  color: rgba(255, 255, 255, 0.66);
}

.mapping-copy .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.mapping-copy .check-list li::before {
  border-color: var(--mint);
}

.rules-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.rules-heading {
  position: relative;
  z-index: 3;
  max-width: 630px;
}

.rules-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.rules-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 630;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.rules-tab svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rules-tab:hover {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.7);
}

.rules-tab.is-active {
  color: var(--green-800);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 63, 58, 0.1);
}

.rules-stage {
  position: relative;
  min-height: 620px;
  margin-top: 36px;
}

.rules-halo {
  position: absolute;
  top: -20px;
  right: -170px;
  width: 860px;
  height: 710px;
  border-radius: 51% 49% 41% 59% / 44% 41% 59% 56%;
  background: #eef9f4;
  transform: rotate(5deg);
}

.rules-halo::before {
  content: "";
  position: absolute;
  top: 85px;
  left: 70px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(28, 113, 93, 0.13);
  border-radius: 50%;
}

.rules-window {
  position: absolute;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.45s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.rules-window:not(.is-active) {
  z-index: 2;
  opacity: 0.78;
  filter: brightness(0.96);
  box-shadow: 0 16px 40px rgba(16, 45, 39, 0.12);
}

.rules-window:not(.is-active):hover {
  opacity: 0.92;
  filter: brightness(1);
}

.rules-window.is-active {
  z-index: 5;
  opacity: 1;
  filter: none;
  box-shadow: var(--shadow-window);
}

.rules-window-community {
  top: 10px;
  right: -30px;
  width: 790px;
  transform: rotate(2deg) scale(0.96);
}

.rules-window-community.is-active {
  transform: rotate(0deg) scale(1);
}

.rules-window-local {
  right: 120px;
  top: 60px;
  width: 760px;
  transform: rotate(-2deg) scale(0.96);
}

.rules-window-local.is-active {
  transform: rotate(0deg) scale(1);
}

.rules-badge {
  position: absolute;
  z-index: 10;
  right: 15px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(16, 63, 58, 0.1);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rules-badge svg {
  width: 36px;
  height: 36px;
  padding: 7px;
  border-radius: 10px;
  color: var(--green-700);
  background: var(--mint-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rules-badge span {
  display: grid;
}

.rules-badge strong {
  color: var(--ink-strong);
  font-size: 13px;
}

.rules-badge small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.software-section {
  padding: 118px 0 128px;
  overflow: hidden;
  background: #f5f8f7;
}

.software-layout {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  align-items: center;
  gap: 75px;
}

.software-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.software-facts span {
  display: grid;
  padding: 15px 16px;
  border-left: 2px solid var(--mint-bright);
  background: #ffffff;
}

.software-facts strong {
  color: var(--ink-strong);
  font-size: 13px;
}

.software-facts small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.software-visual {
  position: relative;
  min-height: 510px;
}

.software-visual::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 45px;
  width: 100%;
  height: 450px;
  border-radius: 28px 0 0 28px;
  background: #dff5eb;
}

.software-window {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 850px;
  max-width: calc(100% + 140px);
}

.safety-section {
  background: #ffffff;
}

.safety-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 110px;
}

.safety-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.safety-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.safety-list li>span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--green-700);
  background: var(--mint-soft);
  font-size: 9px;
  font-weight: 750;
}

.safety-list h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 680;
}

.safety-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.download-section {
  position: relative;
  overflow: hidden;
  background: #dff7ed;
}

.download-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: var(--mint);
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
}

.download-shape {
  position: absolute;
  top: -180px;
  right: 17%;
  width: 240px;
  height: 680px;
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(24deg);
}

.download-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 150px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.download-product {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-product img {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(16, 63, 58, 0.18);
}

.download-product span {
  display: none;
}

.download-copy>p {
  margin: 0 0 4px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.download-copy h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 740;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.download-copy>span {
  display: block;
  margin-top: 6px;
  color: #537168;
  font-size: 13px;
}

.download-copy b {
  font-weight: 650;
}

.button-download {
  min-width: 177px;
  color: #ffffff;
  background: var(--green-900);
  box-shadow: 0 13px 30px rgba(16, 63, 58, 0.24);
}

.button-download:hover {
  background: var(--green-800);
  transform: translateY(-2px);
}

.checksum {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  max-width: 700px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 63, 58, 0.14);
  color: #6c857d;
  font-size: 8px;
}

.checksum code {
  min-width: 0;
  overflow: hidden;
  color: #46675e;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checksum button {
  padding: 4px 9px;
  border: 1px solid rgba(16, 63, 58, 0.23);
  border-radius: 6px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  cursor: pointer;
}

.faq-section {
  background: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
  gap: 100px;
}

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

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

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  position: relative;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 1.5px;
  margin-top: -0.75px;
  border-radius: 4px;
  background: var(--green-700);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0deg);
}

.faq-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-collapse {
  grid-template-rows: 1fr;
}

.faq-content {
  overflow: hidden;
}

.faq-list p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.faq-item.is-open .faq-content p {
  opacity: 1;
}

.site-footer {
  padding: 58px 0 32px;
  color: rgba(255, 255, 255, 0.85);
  background: var(--green-950);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 16px;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-main>p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-main nav {
  display: flex;
  gap: 24px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer-main nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.image-dialog {
  width: min(1280px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  padding: 0;
  border: 1px solid #4c635c;
  border-radius: 14px;
  overflow: hidden;
  color: #ffffff;
  background: var(--green-950);
  box-shadow: 0 35px 100px rgba(0, 8, 6, 0.55);
}

.image-dialog::backdrop {
  background: rgba(3, 12, 9, 0.82);
  backdrop-filter: blur(5px);
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 8px 9px 8px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dialog-header strong {
  font-size: 12px;
  font-weight: 600;
}

.dialog-header button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.dialog-header button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.image-dialog>img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 98px);
  object-fit: contain;
  background: #eaf1ee;
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 42px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-note-native {
    right: 8px;
  }

  .analysis-window {
    width: 730px;
  }

  .mapping-layout {
    gap: 60px;
  }

  .rules-window-community {
    right: -145px;
  }

  .rules-window-local {
    right: 75px;
  }
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 22px;
  }

  .hero {
    min-height: 730px;
  }

  .hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    min-height: 610px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-note {
    transform: scale(0.9);
  }

  .hero-note-native {
    top: 3px;
  }

  .hero-note-scan {
    right: -18px;
    bottom: -4px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 62px);
  }

  .feature-split,
  .mapping-layout,
  .software-layout,
  .safety-layout {
    gap: 50px;
  }

  .analysis-window {
    max-width: calc(100% + 85px);
  }

  .mapping-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .mapping-window {
    max-width: calc(100% + 50px);
  }

  .software-window {
    max-width: calc(100% + 80px);
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-button {
    grid-column: 3;
    display: grid;
    place-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--green-900);
    background: #ffffff;
    cursor: pointer;
  }

  .menu-button i {
    display: block;
    width: 17px;
    height: 1.5px;
    border-radius: 4px;
    background: currentColor;
    transition: transform 0.17s ease, opacity 0.17s ease;
  }

  .menu-button.is-open i:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .menu-button.is-open i:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open i:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 2px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 2px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 12px;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(16, 63, 58, 0.16);
    transform: translateY(-7px);
    transition: opacity 0.17s ease, transform 0.17s ease, visibility 0.17s;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 10px 12px;
  }

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

  .header-download {
    grid-column: 4;
  }

  .hero {
    padding-top: 108px;
  }

  .hero::before {
    top: 0;
    width: 100%;
    height: 57%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 75% 100%, 0 91%);
  }

  .hero-shape-a {
    top: 0;
    left: 55%;
    height: 500px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    grid-row: 1;
    max-width: 650px;
    padding-top: 35px;
  }

  .hero-visual {
    grid-row: 2;
    min-height: 480px;
    justify-content: center;
  }

  .hero-note-native {
    right: 8%;
  }

  .hero-note-scan {
    right: 2%;
    bottom: 16px;
  }

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

  .shortcut-grid>a:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .shortcut-grid>a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 105px 0;
  }

  .cleanup-stage {
    min-height: 560px;
  }

  .feature-details article {
    padding-inline: 24px;
  }

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

  .feature-copy {
    max-width: 650px;
  }

  .analysis-visual {
    min-height: 610px;
  }

  .analysis-window {
    left: 5%;
    max-width: 96%;
  }

  .analysis-label {
    right: 5%;
  }

  .mapping-layout {
    grid-template-columns: 1fr;
  }

  .mapping-copy {
    grid-row: 1;
    max-width: 650px;
  }

  .mapping-visual {
    grid-row: 2;
  }

  .mapping-window {
    left: 4%;
    max-width: 96%;
  }

  .rules-stage {
    margin-top: -30px;
  }

  .rules-window-community {
    right: -130px;
    width: 680px;
  }

  .rules-window-local {
    right: auto;
    left: 0;
    width: 650px;
  }

  .software-layout {
    grid-template-columns: 1fr;
  }

  .software-visual {
    min-height: 560px;
  }

  .software-window {
    left: 3%;
    max-width: 96%;
  }

  .safety-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .download-layout {
    grid-template-columns: auto 1fr;
  }

  .download-layout>.button {
    grid-column: 2;
    justify-self: start;
  }

  .checksum {
    grid-column: 2;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header,
  .site-header.is-scrolled {
    height: 62px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }

  .header-download {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0;
  }

  .header-download svg {
    width: 17px;
  }

  .menu-button {
    width: 36px;
    height: 36px;
    margin-right: 6px;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 70px;
  }

  .hero::before {
    height: 55%;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 66% 100%, 0 89%);
  }

  .hero-shape-a {
    left: 71%;
    width: 130px;
    height: 390px;
  }

  .hero-layout {
    gap: 47px;
    min-height: 0;
  }

  .hero-copy {
    padding-top: 16px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.15;
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 13px;
    line-height: 1.8;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 26px;
  }

  .button-primary {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 0.7fr 0.7fr 1.5fr;
    margin-top: 27px;
  }

  .hero-meta div {
    padding-right: 8px;
  }

  .hero-meta div+div {
    padding-left: 10px;
  }

  .hero-meta dd {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 290px;
  }

  .laptop {
    width: 108%;
    max-width: none;
    margin-left: -4%;
    padding: 6px 6px 11px;
    border-radius: 12px 12px 7px 7px;
  }

  .laptop-base {
    height: 16px;
  }

  .hero-note {
    min-width: 0;
    padding: 9px 11px;
    border-radius: 10px;
    transform: scale(1);
    animation: none;
  }

  .hero-note-native {
    top: -19px;
    right: 0;
  }

  .hero-note-scan {
    right: -2px;
    bottom: -9px;
  }

  .hero-note small {
    font-size: 7px;
  }

  .hero-note strong {
    font-size: 9px;
  }

  .note-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .note-icon svg {
    width: 15px;
  }

  .native-dot {
    width: 9px;
    height: 9px;
  }

  .shortcut-grid>a {
    justify-content: flex-start;
    min-height: 112px;
    gap: 10px;
    padding: 18px 11px;
  }

  .shortcut-icon {
    width: 43px;
    height: 43px;
  }

  .shortcut-icon svg {
    width: 39px;
    height: 39px;
  }

  .shortcut-grid strong {
    font-size: 12px;
  }

  .shortcut-grid small {
    font-size: 8px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .feature-copy h2 {
    font-size: 34px;
  }

  .section-heading>p:last-child,
  .feature-copy>p {
    margin-top: 17px;
    font-size: 12px;
    line-height: 1.85;
  }

  .cleanup-stage {
    min-height: 345px;
    margin-top: 38px;
  }

  .stage-shape {
    width: 106%;
    height: 96%;
  }

  .stage-shape::before,
  .stage-shape::after {
    display: none;
  }

  .app-window {
    border-radius: 9px;
  }

  .window-topbar {
    height: 24px;
    padding: 0 7px;
  }

  .window-brand {
    font-size: 6px;
  }

  .window-brand img {
    width: 11px;
    height: 11px;
  }

  .window-actions {
    gap: 8px;
    transform: scale(0.75);
    transform-origin: right center;
  }

  .app-window-cleanup {
    width: 104%;
    max-width: none;
  }

  .stage-fact {
    display: none;
  }

  .feature-details {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .feature-details article {
    padding: 24px 4px;
  }

  .feature-details article+article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .analysis-section {
    padding-bottom: 66px;
  }

  .feature-split {
    gap: 30px;
  }

  .analysis-visual {
    min-height: 330px;
  }

  .disc-one {
    top: 10px;
    right: -130px;
    width: 370px;
    height: 370px;
  }

  .disc-one::after {
    inset: 35px;
    width: auto;
    height: auto;
  }

  .disc-two {
    display: none;
  }

  .analysis-window {
    top: 56px;
    left: -8px;
    width: 480px;
    max-width: none;
  }

  .analysis-window>button {
    height: 280px;
  }

  .analysis-label {
    right: 0;
    bottom: -2px;
    padding: 9px 11px;
  }

  .analysis-label svg {
    width: 27px;
    height: 27px;
    padding: 6px;
  }

  .analysis-label strong {
    font-size: 9px;
  }

  .analysis-label small {
    font-size: 7px;
  }

  .mapping-section {
    padding: 82px 0 64px;
  }

  .mapping-layout {
    gap: 28px;
  }

  .mapping-visual {
    min-height: 345px;
  }

  .mapping-window {
    right: auto;
    left: -30px;
    width: 500px;
    max-width: none;
  }

  .mapping-route {
    top: -3px;
    left: 0;
    gap: 9px;
    padding: 9px 11px;
    border-radius: 9px;
  }

  .mapping-route small {
    font-size: 6px;
  }

  .mapping-route strong {
    font-size: 7px;
  }

  .mapping-route i {
    font-size: 14px;
  }

  .rules-heading h2 br {
    display: none;
  }

  .rules-stage {
    min-height: 425px;
    margin-top: 20px;
  }

  .rules-halo {
    top: 10px;
    right: -260px;
    width: 590px;
    height: 440px;
  }

  .rules-window-community {
    top: 38px;
    right: -285px;
    width: 555px;
  }

  .rules-window-local {
    bottom: 18px;
    left: -45px;
    width: 520px;
  }

  .rules-badge {
    right: 0;
    bottom: -4px;
    padding: 9px 11px;
  }

  .rules-badge svg {
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .rules-badge strong {
    font-size: 9px;
  }

  .rules-badge small {
    font-size: 7px;
  }

  .software-section {
    padding: 82px 0 70px;
  }

  .software-layout {
    gap: 34px;
  }

  .software-facts {
    grid-template-columns: 1fr;
  }

  .software-visual {
    min-height: 325px;
  }

  .software-visual::before {
    top: 22px;
    left: 14px;
    height: 285px;
    border-radius: 17px;
  }

  .software-window {
    left: -28px;
    width: 500px;
    max-width: none;
  }

  .safety-layout {
    gap: 32px;
  }

  .safety-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .safety-list li>span {
    width: 36px;
    height: 36px;
  }

  .download-section::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 34%;
    clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
  }

  .download-layout {
    grid-template-columns: 1fr;
    min-height: 430px;
    gap: 20px;
    padding-top: 55px;
    padding-bottom: 44px;
    text-align: center;
  }

  .download-product {
    justify-self: center;
  }

  .download-product img {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .download-layout>.button {
    grid-column: auto;
    justify-self: stretch;
    margin-top: 5px;
  }

  .checksum {
    grid-column: auto;
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .checksum>span {
    grid-column: 1 / -1;
  }

  .faq-layout {
    gap: 25px;
  }

  .faq-list summary {
    padding: 20px 38px 20px 0;
    font-size: 12px;
  }

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

  .footer-main nav {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 24px;
    margin-top: 8px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .image-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}