:root {
  --forest-950: #0b241c;
  --forest-900: #132f24;
  --forest-800: #174438;
  --teal: #229486;
  --teal-bright: #33ad9d;
  --sand: #d8c19c;
  --cream: #f3f1e9;
  --paper: #fbfaf6;
  --ink: #18221d;
  --muted: #66716c;
  --line: rgba(19, 47, 36, 0.14);
  --white-line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 315px 1fr auto;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header--scrolled {
  background: rgba(251, 250, 246, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(11, 36, 28, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  display: block;
  width: 285px;
  height: auto;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #36433d;
  font-size: 18px;
  font-weight: 620;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  background: var(--forest-900);
  color: white;
}

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

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 770px;
  padding: 178px 0 104px;
  background:
    radial-gradient(circle at 78% 24%, rgba(34, 148, 134, 0.15), transparent 31%),
    linear-gradient(135deg, #fbfaf6 0%, #f3f1e9 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(19, 47, 36, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 47, 36, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  align-items: center;
}

.eyebrow,
.section-index {
  margin: 0 0 25px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--forest-900);
  font-size: clamp(58px, 6.7vw, 92px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.hero h1 span {
  display: block;
  color: var(--teal);
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #54615b;
  font-size: 18px;
  line-height: 1.72;
}

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

.button--primary {
  min-height: 54px;
  padding: 0 24px;
  background: var(--teal);
  color: white;
}

.button--primary:hover {
  background: #197f73;
}

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

.hero-sequence {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 52px;
  color: #617069;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-sequence svg {
  color: var(--sand);
}

.hero-sequence b {
  color: var(--sand);
  font-weight: 700;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  height: min(61vh, 560px);
  background: var(--forest-900);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 35px 80px rgba(6, 24, 18, 0.3);
}

.hero-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero-media__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 26, 19, 0.7), transparent 36%),
    linear-gradient(to right, rgba(7, 26, 19, 0.12), transparent 45%);
  pointer-events: none;
}

.detection-frame {
  position: absolute;
  border: 2px solid var(--teal-bright);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 28px rgba(34, 148, 134, 0.08);
}

.detection-frame::before,
.detection-frame::after {
  position: absolute;
  width: 22px;
  height: 22px;
  content: "";
  border-color: #8be4d8;
  border-style: solid;
}

.detection-frame::before {
  top: -3px;
  left: -3px;
  border-width: 4px 0 0 4px;
}

.detection-frame::after {
  right: -3px;
  bottom: -3px;
  border-width: 0 4px 4px 0;
}

.detection-frame > span {
  position: absolute;
  top: -24px;
  left: -2px;
  padding: 4px 7px;
  color: #062820;
  background: var(--teal-bright);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.detection-frame--primary {
  top: 31%;
  left: 49%;
  width: 34%;
  height: 54%;
}

.detection-frame--secondary {
  top: 43%;
  left: 17%;
  width: 20%;
  height: 36%;
  opacity: 0.82;
}

.camera-status {
  position: absolute;
  top: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 208px;
  padding: 14px 16px;
  color: white;
  background: rgba(11, 36, 28, 0.86);
  border: 1px solid rgba(51, 173, 157, 0.48);
  border-radius: 7px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.camera-status > div {
  display: grid;
  gap: 4px;
}

.camera-status small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.camera-status strong {
  font-size: 11px;
  font-weight: 680;
}

.hero-media__caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media__caption span:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.vision-card {
  display: none;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  color: white;
  background: #0d281f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  box-shadow: 0 35px 80px rgba(6, 24, 18, 0.28);
}

.vision-topbar,
.vision-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vision-topbar {
  border-bottom: 1px solid var(--white-line);
}

.vision-topbar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--teal-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(51, 173, 157, 0.14);
}

.vision-stage {
  position: relative;
  min-height: 355px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--teal-bright);
  background:
    linear-gradient(rgba(51, 173, 157, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 173, 157, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(34, 148, 134, 0.18), transparent 50%);
  background-size: 36px 36px, 36px 36px, auto;
}

.vision-stage > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.camera-glyph {
  display: grid;
  place-items: center;
  width: 74px;
  height: 54px;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 34px;
}

.scan-line {
  position: absolute;
  top: 18%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal-bright), transparent);
  box-shadow: 0 0 18px var(--teal-bright);
  animation: scan 4.2s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(220px); opacity: 1; }
}

.scan-corner {
  position: absolute;
  width: 38px;
  height: 38px;
  border-color: var(--teal-bright);
  border-style: solid;
}

.scan-corner--tl { top: 56px; left: 56px; border-width: 2px 0 0 2px; }
.scan-corner--tr { top: 56px; right: 56px; border-width: 2px 2px 0 0; }
.scan-corner--bl { bottom: 56px; left: 56px; border-width: 0 0 2px 2px; }
.scan-corner--br { right: 56px; bottom: 56px; border-width: 0 2px 2px 0; }

.signal-mark {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--sand);
  border-radius: 50%;
}

.signal-mark::after {
  position: absolute;
  inset: 4px;
  content: "";
  background: var(--sand);
  border-radius: 50%;
}

.signal-mark span {
  position: absolute;
  left: 26px;
  color: var(--sand);
  font-size: 9px;
}

.signal-mark--one { top: 34%; left: 22%; }
.signal-mark--two { top: 27%; right: 22%; }
.signal-mark--three { right: 29%; bottom: 23%; }

.vision-footer {
  align-items: flex-start;
  border-top: 1px solid var(--white-line);
}

.vision-footer div {
  display: grid;
  gap: 6px;
}

.vision-footer small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
}

.vision-footer strong {
  color: white;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.intro-strip {
  padding: 92px 0;
  background: var(--sand);
}

.intro-strip__grid {
  display: grid;
  grid-template-columns: 0.55fr 1.75fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.intro-strip .section-index {
  color: rgba(19, 47, 36, 0.65);
}

.intro-strip h2 {
  margin: 0;
  color: var(--forest-900);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.intro-strip__grid > p:last-child {
  margin: 0;
  color: #4d5148;
  font-size: 15px;
  line-height: 1.75;
}

.video-section {
  padding: 118px 0 86px;
  color: white;
  background: var(--forest-900);
}

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

.section-heading--split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 100px;
  align-items: end;
}

.eyebrow--light {
  color: var(--sand);
}

.section-heading h2,
.applications-copy h2,
.about-layout h2,
.closing-layout h2 {
  margin: 0;
  font-size: clamp(40px, 5.1vw, 68px);
  font-weight: 720;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.section-heading--split > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.75;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050a08;
  border: 1px solid rgba(216, 193, 156, 0.42);
  border-radius: 10px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.video-frame::before,
.video-frame::after {
  position: absolute;
  z-index: 1;
  width: 56px;
  height: 56px;
  pointer-events: none;
  content: "";
}

.video-frame::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--teal-bright);
  border-left: 3px solid var(--teal-bright);
}

.video-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--sand);
  border-bottom: 3px solid var(--sand);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 44px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-section {
  padding: 120px 0;
  background: var(--paper);
}

.process-section .section-heading h2 {
  color: var(--forest-900);
}

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

.process-grid article {
  position: relative;
  min-height: 350px;
  padding: 42px 34px 40px;
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  position: absolute;
  top: 44px;
  right: 34px;
  color: #9ba39f;
  font-size: 11px;
  font-weight: 800;
}

.process-icon,
.application-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--teal);
  background: rgba(34, 148, 134, 0.09);
  border-radius: 50%;
}

.process-icon svg,
.application-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.65;
}

.process-icon,
.application-icon {
  font-size: 22px;
}

.process-grid h3,
.application-list h3 {
  margin: 80px 0 14px;
  color: var(--forest-900);
  font-size: 25px;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.process-grid p,
.application-list p,
.applications-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.applications-section {
  padding: 125px 0;
  background: var(--cream);
}

.applications-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.applications-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.applications-copy h2 {
  color: var(--forest-900);
}

.applications-copy > p {
  max-width: 460px;
  margin-top: 28px;
  font-size: 15px;
}

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

.application-list article {
  display: grid;
  grid-template-columns: 42px 58px 1fr 24px;
  gap: 22px;
  align-items: center;
  min-height: 180px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
}

.application-number {
  color: #a1aaa5;
  font-size: 10px;
  font-weight: 800;
}

.application-list h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.application-check {
  color: var(--teal);
  font-weight: 800;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 125px 0 150px;
  color: white;
  background: #0b241c;
}

.about-word {
  position: absolute;
  bottom: -34px;
  left: 50%;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 800;
  letter-spacing: -0.08em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.45fr 1.2fr 0.65fr;
  gap: 68px;
  align-items: start;
}

.section-index--light {
  color: var(--sand);
}

.about-kicker {
  margin: 0 0 28px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-text p {
  margin: 48px 0 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.8;
}

.about-text a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 8px;
  color: var(--sand);
  border-bottom: 1px solid rgba(216, 193, 156, 0.42);
  font-size: 12px;
  font-weight: 750;
}

.closing-section {
  padding: 112px 0;
  background: var(--teal);
}

.closing-layout {
  display: grid;
  grid-template-columns: 0.45fr 1.4fr auto;
  gap: 60px;
  align-items: center;
}

.closing-layout .eyebrow {
  color: white;
  margin: 0;
}

.closing-layout h2 {
  color: white;
  font-size: clamp(38px, 4.6vw, 62px);
}

.button--dark {
  min-height: 54px;
  color: white;
  background: var(--forest-900);
  white-space: nowrap;
}

footer {
  padding: 46px 0;
  background: var(--paper);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: center;
}

.brand--footer img {
  width: 150px;
}

.footer-layout p {
  margin: 0;
  color: #7a847f;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 250px 1fr auto;
  }

  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

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

  .vision-card {
    min-height: 460px;
  }

  .intro-strip__grid,
  .about-layout {
    gap: 38px;
  }

  .applications-layout {
    gap: 64px;
  }

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

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

@media (max-width: 800px) {
  .container {
    width: min(100% - 36px, 620px);
  }

  .site-header {
    height: 78px;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 178px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 61;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--forest-900);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .mobile-menu {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px 26px 38px;
    color: white;
    background: var(--forest-950);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .mobile-menu--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--white-line);
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -0.04em;
  }

  .mobile-menu nav span {
    color: var(--teal-bright);
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .mobile-menu > p {
    margin: auto 0 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
  }

  .site-header:has(.mobile-menu--open) .brand,
  .site-header:has(.mobile-menu--open) .menu-button {
    filter: brightness(0) invert(1);
  }

  .hero {
    min-height: auto;
    padding: 126px 0 72px;
  }

  .hero-layout,
  .intro-strip__grid,
  .section-heading--split,
  .applications-layout,
  .about-layout,
  .closing-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 64px;
  }

  .hero-media {
    display: none;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 78px);
  }

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

  .vision-card {
    display: block;
    min-height: 440px;
  }

  .intro-strip,
  .video-section,
  .process-section,
  .applications-section,
  .about-section,
  .closing-section {
    padding: 82px 0;
  }

  .intro-strip__grid,
  .section-heading--split,
  .applications-layout,
  .about-layout,
  .closing-layout {
    gap: 34px;
  }

  .intro-strip__grid .section-index,
  .section-heading--split .eyebrow,
  .about-layout .section-index {
    margin-bottom: 0;
  }

  .section-heading--split {
    align-items: start;
  }

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

  .video-meta {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .video-meta span:last-child {
    grid-column: 1 / -1;
  }

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

  .process-grid article {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 58px;
  }

  .applications-copy {
    position: static;
  }

  .about-text p {
    margin-top: 0;
  }

  .closing-layout .button {
    grid-column: auto;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 500px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-sequence {
    align-items: flex-start;
    flex-wrap: wrap;
    line-height: 1.4;
  }

  .vision-card {
    min-height: 390px;
  }

  .vision-stage {
    min-height: 295px;
  }

  .vision-footer {
    gap: 12px;
    padding-inline: 14px;
  }

  .scan-corner--tl { top: 42px; left: 32px; }
  .scan-corner--tr { top: 42px; right: 32px; }
  .scan-corner--bl { bottom: 42px; left: 32px; }
  .scan-corner--br { right: 32px; bottom: 42px; }

  .application-list article {
    grid-template-columns: 30px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .application-icon,
  .application-check {
    display: none;
  }
}

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