:root {
  --ink: #0d1110;
  --ink-soft: #171d1b;
  --paper: #f4f2ec;
  --cream: #e9e5db;
  --white: #fffdf7;
  --signal: #ff5a1f;
  --signal-dark: #d9430f;
  --acid: #d7ff42;
  --steel: #8c9690;
  --line: rgba(13, 17, 16, 0.17);
  --line-light: rgba(255, 253, 247, 0.17);
  --display: "Bahnschrift Condensed", "Aptos Display", "Franklin Gothic Medium", sans-serif;
  --body: "Segoe UI Variable", "Aptos", "Trebuchet MS", sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --radius: 4px;
  --shadow: 0 24px 80px rgba(13, 17, 16, 0.17);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

[id] {
  scroll-margin-top: 112px;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

button,
input,
textarea {
  font: inherit;
}

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

summary {
  touch-action: manipulation;
}

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

::selection {
  color: var(--ink);
  background: var(--acid);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--acid);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.service-bar {
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid var(--line-light);
  font-size: 0.79rem;
  letter-spacing: 0.045em;
}

.service-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-bar__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 253, 247, 0.7);
}

.service-bar a {
  text-decoration: none;
}

.service-bar a strong {
  color: var(--acid);
  margin-left: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(215, 255, 66, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--paper);
  background: rgba(13, 17, 16, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-light);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--signal);
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--display);
  font-size: 1.08rem;
  font-stretch: condensed;
  letter-spacing: 0.018em;
  text-transform: uppercase;
}

.brand__text span {
  margin-top: 6px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.site-nav .nav-cta {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  background: var(--acid);
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
  color: var(--paper);
  background: transparent;
  border: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 90, 31, 0.14), transparent 30%),
    linear-gradient(135deg, #0d1110 0%, #111715 68%, #0b0f0e 100%);
}

.hero-grid,
.contact-section__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 158px);
  padding: clamp(62px, 7vw, 116px) 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span:not(:last-child)::after {
  content: "/";
  margin-left: 18px;
  color: var(--signal);
}

.hero h1,
.section-heading h2,
.repair-focus h2,
.process-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 750;
  font-stretch: condensed;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4.2rem, 7.4vw, 7.8rem);
}

.hero h1 em,
.section-heading h2 span,
.repair-focus h2 span,
.process-heading h2 span,
.about-copy h2 span,
.faq-intro h2 span,
.contact-copy h2 span,
.legal-hero h1 span {
  display: block;
  color: var(--signal);
  font-style: normal;
}

.hero__lead {
  max-width: 665px;
  margin: 31px 0 0;
  color: rgba(255, 253, 247, 0.75);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.6;
}

.hero__actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease;
}

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

.button svg {
  width: 21px;
  height: 21px;
}

.button--signal {
  color: var(--white);
  background: var(--signal);
}

.button--signal:hover {
  background: var(--signal-dark);
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--signal);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 253, 247, 0.35);
}

.text-link span {
  color: var(--acid);
}

.text-link--dark {
  color: var(--ink);
  border-color: var(--line);
}

.text-link--dark span {
  color: var(--signal);
}

.hero__facts {
  margin: clamp(46px, 5vw, 76px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero__facts div {
  padding: 22px 18px 0 0;
}

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

.hero__facts dt {
  font-family: var(--display);
  color: var(--acid);
  font-size: 2.15rem;
  font-weight: 750;
  line-height: 1;
}

.hero__facts dd {
  max-width: 150px;
  margin: 8px 0 0;
  color: rgba(255, 253, 247, 0.58);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero__visual {
  min-width: 0;
}

.visual-frame {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 247, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 45%),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.35);
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: var(--signal);
  border-style: solid;
}

.visual-frame::before {
  top: -1px;
  left: -1px;
  border-width: 3px 0 0 3px;
}

.visual-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 3px 3px 0;
}

.visual-frame > img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.35));
}

.visual-frame__label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 20px;
  color: rgba(255, 253, 247, 0.46);
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.diagnostic-card {
  position: absolute;
  z-index: 3;
  color: var(--paper);
  background: rgba(13, 17, 16, 0.9);
  border: 1px solid rgba(255, 253, 247, 0.19);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.diagnostic-card--top {
  top: 74px;
  right: -23px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-card__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  animation: pulse 2.1s ease-out infinite;
}

.diagnostic-card--bottom {
  right: 25px;
  bottom: 22px;
  width: min(280px, calc(100% - 40px));
  padding: 17px 19px;
  display: grid;
}

.diagnostic-card--bottom strong {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.diagnostic-card--bottom span {
  color: rgba(255, 253, 247, 0.56);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(215, 255, 66, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(215, 255, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(215, 255, 66, 0); }
}

.hero__ticker {
  min-height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.hero__ticker div {
  min-width: max-content;
  animation: ticker 26s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(88px, 10vw, 148px) 0;
}

.section--paper {
  background: var(--paper);
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  color: var(--paper);
  background: var(--ink);
}

.section-heading {
  margin-bottom: clamp(48px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: 60px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--signal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  margin-right: 11px;
  display: inline-block;
  vertical-align: middle;
  background: currentColor;
}

.kicker--light {
  color: var(--acid);
}

.section-heading h2,
.repair-focus h2,
.process-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  max-width: 830px;
  font-size: clamp(3.1rem, 5.1vw, 5.65rem);
}

.section-heading > p {
  margin: 0 0 6px;
  color: #555d59;
  font-size: 1.02rem;
}

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

.service-card {
  min-height: 430px;
  padding: clamp(25px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  z-index: 2;
  color: var(--paper);
  background: var(--ink-soft);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card--featured {
  color: var(--paper);
  background: var(--signal);
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  color: currentColor;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card__top i {
  font-style: normal;
  opacity: 0.55;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin: 66px 0 27px;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.service-card p {
  margin: 18px 0 0;
  color: #545c58;
  font-size: 0.91rem;
  line-height: 1.62;
}

.service-card:hover p,
.service-card--featured p {
  color: rgba(255, 253, 247, 0.75);
}

.service-card a {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  border-top: 1px solid currentColor;
}

.repair-focus {
  position: relative;
  overflow: hidden;
}

.repair-focus::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -170px;
  width: 580px;
  height: 580px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px var(--ink), inset 0 0 0 71px var(--line-light), inset 0 0 0 140px var(--ink), inset 0 0 0 141px var(--line-light);
}

.repair-focus__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.repair-focus__visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  background: #121816;
}

.circuit-board {
  position: relative;
  width: 74%;
  aspect-ratio: 1;
  border: 2px solid rgba(215, 255, 66, 0.55);
  background:
    radial-gradient(circle at 20% 25%, rgba(215, 255, 66, 0.12), transparent 4%),
    radial-gradient(circle at 78% 68%, rgba(255, 90, 31, 0.16), transparent 4%),
    linear-gradient(rgba(215, 255, 66, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 255, 66, 0.08) 1px, transparent 1px),
    #0a2720;
  background-size: auto, auto, 25px 25px, 25px 25px, auto;
  transform: rotate(-5deg);
  box-shadow: 20px 30px 70px rgba(0, 0, 0, 0.35);
}

.circuit-board__chip {
  position: absolute;
  top: 31%;
  left: 31%;
  width: 38%;
  height: 38%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 850;
  box-shadow: 0 0 60px rgba(215, 255, 66, 0.21);
}

.circuit-board__chip::before,
.circuit-board__chip::after {
  content: "";
  position: absolute;
  background: repeating-linear-gradient(90deg, var(--acid) 0 8px, transparent 8px 16px);
}

.circuit-board__chip::before {
  width: calc(100% + 48px);
  height: 12px;
}

.circuit-board__chip::after {
  width: 12px;
  height: calc(100% + 48px);
  background: repeating-linear-gradient(0deg, var(--acid) 0 8px, transparent 8px 16px);
}

.circuit-board__line {
  position: absolute;
  height: 2px;
  background: var(--signal);
  transform-origin: left;
}

.circuit-board__line--1 { top: 17%; left: 10%; width: 42%; transform: rotate(28deg); }
.circuit-board__line--2 { top: 72%; left: 53%; width: 36%; transform: rotate(-33deg); }
.circuit-board__line--3 { top: 83%; left: 14%; width: 25%; transform: rotate(-55deg); }

.circuit-board__node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.16);
}

.circuit-board__node--1 { top: 15%; left: 9%; }
.circuit-board__node--2 { top: 70%; right: 9%; }
.circuit-board__node--3 { bottom: 10%; left: 12%; }

.repair-focus__stamp {
  position: absolute;
  right: -23px;
  bottom: 28px;
  padding: 15px 19px;
  color: var(--ink);
  background: var(--signal);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.repair-focus__copy {
  padding-block: 30px;
}

.repair-focus__intro {
  max-width: 660px;
  margin: 31px 0 42px;
  color: rgba(255, 253, 247, 0.67);
  font-size: 1.05rem;
}

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

.check-list li {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
}

.check-list li > span {
  color: var(--signal);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
}

.check-list strong {
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.check-list p {
  margin: 3px 0 0;
  color: rgba(255, 253, 247, 0.58);
  font-size: 0.86rem;
}

.process-heading {
  max-width: 900px;
  margin-bottom: 55px;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list li {
  min-height: 310px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list__number {
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 850;
}

.process-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.process-list p {
  margin: 13px 0 0;
  color: #555d59;
  font-size: 0.88rem;
}

.process-cta {
  padding: 27px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--acid);
}

.process-cta p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.about-card {
  position: relative;
  min-height: 570px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 40px 40px;
  box-shadow: var(--shadow);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 21%;
  left: 12%;
  width: 76%;
  aspect-ratio: 1;
  border: 2px solid var(--signal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 26px var(--ink-soft), inset 0 0 0 28px var(--signal), inset 0 0 0 54px var(--ink-soft), inset 0 0 0 56px var(--signal);
  opacity: 0.7;
}

.about-card__monogram {
  position: relative;
  z-index: 1;
  margin: auto;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(7rem, 13vw, 12rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.08em;
}

.about-card__content {
  position: relative;
  z-index: 1;
}

.about-card__content p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.about-card__content span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 253, 247, 0.55);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-card > svg {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 31px;
  width: 90px;
  color: var(--signal);
}

.about-copy > p:not(.kicker) {
  max-width: 720px;
  margin: 31px 0 0;
  color: #4e5652;
  font-size: 1.04rem;
}

.about-copy blockquote {
  margin: 38px 0 0;
  padding: 25px 0 25px 25px;
  color: var(--ink);
  border-left: 4px solid var(--signal);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  font-weight: 650;
  line-height: 1.28;
  text-transform: uppercase;
}

.about-copy__contact {
  margin-top: 39px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-copy__contact a {
  min-width: 0;
  padding: 17px 19px;
  display: grid;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 160ms ease;
}

.about-copy__contact a:hover {
  background: var(--cream);
}

.about-copy__contact small {
  color: #69716d;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-copy__contact strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 0.94rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(70px, 9vw, 140px);
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro > p:not(.kicker) {
  max-width: 420px;
  margin: 25px 0 24px;
  color: #555d59;
}

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

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

.faq-list summary {
  min-height: 88px;
  padding: 22px 58px 22px 0;
  position: relative;
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 750;
  line-height: 1.25;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  right: 4px;
  width: 20px;
  height: 2px;
  background: var(--signal);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  right: 0;
  transform: rotate(90deg);
}

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

.faq-list details p {
  max-width: 750px;
  margin: -4px 0 27px;
  padding-right: 60px;
  color: #555d59;
}

.contact-section {
  position: relative;
  padding: clamp(88px, 10vw, 148px) 0;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 85%, rgba(255, 90, 31, 0.14), transparent 28%),
    var(--ink-soft);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 0.92fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.contact-copy > p:not(.kicker) {
  max-width: 560px;
  margin: 29px 0 0;
  color: rgba(255, 253, 247, 0.64);
  font-size: 1.02rem;
}

.contact-details {
  margin-top: 55px;
  display: grid;
  font-style: normal;
  border-top: 1px solid var(--line-light);
}

.contact-details a {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.contact-details a:hover strong {
  color: var(--acid);
}

.contact-details span {
  color: rgba(255, 253, 247, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 1.04rem;
  font-style: normal;
  line-height: 1.35;
  transition: color 160ms ease;
}

.contact-form {
  padding: clamp(25px, 4vw, 46px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.29);
}

.form-head {
  margin-bottom: 30px;
  padding-bottom: 17px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--ink);
}

.form-head span {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 850;
  text-transform: uppercase;
}

.form-head small {
  color: #68716d;
  font-size: 0.69rem;
}

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

.field {
  margin-bottom: 17px;
}

.field label {
  margin-bottom: 7px;
  display: block;
  color: #505753;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffef9;
  border: 1px solid #b9bdb9;
  border-radius: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input {
  min-height: 48px;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--signal);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.16);
}

.field--trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.consent {
  margin: 4px 0 21px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  color: #555d59;
  font-size: 0.75rem;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--signal);
}

.form-note {
  margin: 13px 0 0;
  color: #6b736f;
  font-size: 0.7rem;
  line-height: 1.4;
}

.form-status {
  min-height: 1.4em;
  margin: 8px 0 0;
  color: #215a39;
  font-size: 0.77rem;
  font-weight: 700;
}

.site-footer {
  color: var(--paper);
  background: #080b0a;
}

.footer-top {
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.8fr;
  align-items: center;
  gap: 55px;
  border-bottom: 1px solid var(--line-light);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 253, 247, 0.5);
  font-size: 0.84rem;
}

.footer-call {
  display: grid;
  justify-self: end;
  text-align: right;
  text-decoration: none;
}

.footer-call small {
  color: rgba(255, 253, 247, 0.45);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-call strong {
  margin-top: 3px;
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.45rem;
}

.footer-bottom {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto auto;
  align-items: center;
  gap: 26px;
  color: rgba(255, 253, 247, 0.43);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 25px;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom > a {
  justify-self: end;
}

.footer-bottom a:hover {
  color: var(--paper);
}

.designer-credit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  color: rgba(255, 253, 247, 0.5);
  white-space: nowrap;
  transition: color 180ms ease;
}

.designer-credit strong {
  color: var(--acid);
  font-weight: 850;
}

.designer-credit:hover,
.designer-credit:focus-visible {
  color: var(--paper);
}

.designer-credit:hover strong,
.designer-credit:focus-visible strong {
  color: #d8ff3f;
}

.mobile-contact {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(.2,.7,.2,1), transform 650ms cubic-bezier(.2,.7,.2,1);
}

[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }

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

/* Legal and utility pages */
.page-shell {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.page-shell .site-header {
  position: relative;
}

.legal-hero {
  padding: 82px 0 74px;
  color: var(--paper);
  background: var(--ink-soft);
}

.legal-hero .kicker {
  color: var(--acid);
}

.legal-hero h1 {
  max-width: 950px;
  font-size: clamp(4rem, 8vw, 8rem);
}

.legal-content {
  padding: 80px 0 120px;
}

.legal-content__inner {
  max-width: 820px;
}

.legal-content h2 {
  margin: 55px 0 15px;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 32px 0 10px;
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #4f5753;
}

.legal-content a {
  color: var(--signal-dark);
}

.legal-content address {
  font-style: normal;
}

.legal-note {
  margin: 40px 0;
  padding: 22px 24px;
  background: var(--cream);
  border-left: 4px solid var(--signal);
}

.error-page {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    var(--ink);
  background-size: 54px 54px;
}

.error-page__content {
  max-width: 780px;
  padding: 70px 0;
  text-align: center;
}

.error-page__code {
  display: block;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(8rem, 24vw, 18rem);
  font-weight: 850;
  line-height: 0.7;
  letter-spacing: -0.08em;
}

.error-page h1 {
  margin: 45px 0 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.error-page p {
  max-width: 540px;
  margin: 22px auto 28px;
  color: rgba(255, 253, 247, 0.62);
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.7fr);
    gap: 45px;
  }

  .visual-frame {
    min-height: 520px;
  }

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

  .repair-focus__grid,
  .about-grid {
    gap: 70px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.68fr) minmax(440px, 1fr);
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .service-bar__inner > span {
    display: none;
  }

  .service-bar__inner {
    justify-content: center;
  }

  .site-header {
    background: var(--ink-soft);
    backdrop-filter: none;
  }

  .menu-toggle {
    min-width: 84px;
    min-height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    width: 24px;
    height: 17px;
    position: relative;
  }

  .menu-toggle__icon i {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-toggle__icon i:first-child { top: 3px; }
  .menu-toggle__icon i:last-child { top: 12px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { top: 8px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { top: 8px; transform: rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: auto 0 auto;
    top: 114px;
    height: calc(100vh - 114px);
    height: calc(100dvh - 114px);
    max-height: none;
    padding: 30px 18px 40px;
    display: grid;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--paper);
    background: var(--ink);
    border-top: 1px solid var(--line-light);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 260ms cubic-bezier(.2,.7,.2,1), visibility 260ms;
  }

  .site-header.is-scrolled .site-nav {
    top: 78px;
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
  }

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

  .site-nav a {
    min-height: 58px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: 1.4rem;
    text-transform: uppercase;
  }

  .site-nav .nav-cta {
    margin-top: 20px;
    justify-content: space-between;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(4rem, 13.4vw, 6.5rem);
  }

  .hero__visual {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .section-heading,
  .repair-focus__grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .repair-focus__visual,
  .about-card {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .faq-intro {
    position: static;
  }

  .contact-copy {
    max-width: 680px;
  }

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

  .footer-top > p {
    display: none;
  }
}

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

  html {
    scroll-padding-top: 102px;
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .service-bar__inner {
    min-height: 32px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__text strong {
    font-size: 0.87rem;
  }

  .brand__text span {
    font-size: 0.55rem;
  }

  .menu-toggle__label {
    display: none;
  }

  .menu-toggle {
    min-width: 48px;
  }

  .site-nav {
    top: 100px;
    height: calc(100vh - 158px);
    height: calc(100dvh - 158px);
  }

  .site-header.is-scrolled .site-nav {
    top: 68px;
    height: calc(100vh - 126px);
    height: calc(100dvh - 126px);
  }

  .hero__inner {
    padding-top: 58px;
    padding-bottom: 65px;
  }

  .eyebrow {
    gap: 8px 11px;
    font-size: 0.65rem;
  }

  .eyebrow span:not(:last-child)::after {
    margin-left: 11px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero__lead {
    margin-top: 25px;
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

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

  .hero__facts div,
  .hero__facts div + div {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    border-left: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero__facts dd {
    max-width: none;
    margin: 0;
  }

  .visual-frame {
    min-height: 420px;
  }

  .diagnostic-card--top {
    right: 8px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .repair-focus h2,
  .process-heading h2,
  .about-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.7rem, 13.2vw, 4.1rem);
  }

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

  .service-card {
    min-height: 350px;
  }

  .service-card__icon {
    margin-top: 42px;
  }

  .repair-focus__visual,
  .about-card {
    min-height: 430px;
  }

  .repair-focus__stamp {
    right: 10px;
  }

  .process-list li {
    min-height: 240px;
  }

  .process-cta {
    padding: 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .about-copy__contact,
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-copy__contact {
    border-left: 0;
  }

  .about-copy__contact a {
    border-left: 1px solid var(--line);
  }

  .faq-list summary {
    padding-right: 45px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .contact-details a {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-call {
    justify-self: start;
    text-align: left;
  }

  .footer-bottom {
    padding: 27px 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-bottom > a {
    justify-self: start;
  }

  .mobile-contact {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    height: calc(58px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
  }

  .mobile-contact a {
    display: grid;
    place-items: center;
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-contact a:first-child {
    color: var(--ink);
    background: var(--acid);
  }

  .legal-hero {
    padding: 60px 0;
  }

  .legal-content {
    padding: 60px 0 90px;
  }
}

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

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

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

/* ==========================================================================
   Automaten-Konsole / Startseite 2026
   ========================================================================== */

.machine-page {
  --vm-ink: #171916;
  --vm-ink-2: #242721;
  --vm-paper: #f0ede3;
  --vm-paper-2: #e2ded1;
  --vm-white: #fffdf5;
  --vm-hot: #ff5a1f;
  --vm-hot-dark: #d94412;
  --vm-acid: #d9ff43;
  --vm-steel: #8c9187;
  --vm-line: rgba(23, 25, 22, 0.2);
  --vm-line-light: rgba(255, 253, 245, 0.19);
  color: var(--vm-ink);
  background: var(--vm-paper);
}

.machine-page [id] {
  scroll-margin-top: 0;
}

.vm-hero__inner > *,
.component-section__grid > *,
.process-section__head > *,
.region-section__grid > *,
.knowledge-section__head > *,
.knowledge-layout > *,
.contact-hatch__grid > * {
  min-width: 0;
}

.machine-page .shell {
  width: min(1320px, calc(100% - 56px));
}

.machine-page .site-header {
  top: 0;
  color: var(--vm-ink);
  background: rgba(240, 237, 227, 0.94);
  border-bottom: 1px solid var(--vm-line);
  backdrop-filter: blur(18px);
}

.machine-page .site-header.is-scrolled {
  border-color: var(--vm-line);
  box-shadow: 0 12px 40px rgba(23, 25, 22, 0.1);
}

.machine-page .header-inner {
  min-height: 76px;
}

.machine-brand {
  gap: 12px;
}

.machine-brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--vm-paper);
  background: var(--vm-ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.machine-page .brand__text strong {
  color: var(--vm-ink);
  font-size: 1.04rem;
  letter-spacing: 0.04em;
}

.machine-page .brand__text span {
  color: rgba(23, 25, 22, 0.62);
  font-size: 0.61rem;
  letter-spacing: 0.13em;
}

.machine-page .site-nav {
  gap: clamp(18px, 2.2vw, 34px);
}

.machine-page .site-nav a {
  color: rgba(23, 25, 22, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.machine-page .site-nav a:hover {
  color: var(--vm-ink);
}

.machine-page .site-nav .nav-cta {
  min-height: 42px;
  padding: 0 18px;
  color: var(--vm-paper);
  background: var(--vm-ink);
  border: 1px solid var(--vm-ink);
  border-radius: 0;
}

.machine-page .site-nav .nav-cta:hover {
  color: var(--vm-ink);
  background: var(--vm-acid);
  border-color: var(--vm-ink);
}

.machine-page .menu-toggle {
  color: var(--vm-ink);
  border-color: var(--vm-line);
}

.machine-page .menu-toggle__icon i {
  background: var(--vm-ink);
}

.fault-ticker {
  overflow: hidden;
  color: var(--vm-paper);
  background: var(--vm-ink);
  border-bottom: 1px solid var(--vm-line-light);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fault-ticker > div {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
}

.fault-ticker b {
  color: var(--vm-hot);
}

.fault-ticker a {
  color: var(--vm-acid);
  text-decoration: none;
}

.machine-kicker {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.machine-kicker > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--vm-hot);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.13);
}

.machine-kicker--light {
  color: rgba(255, 253, 245, 0.72);
}

.vm-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 7%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(120deg, var(--vm-paper) 0 57%, var(--vm-paper-2) 57% 100%);
  border-bottom: 1px solid var(--vm-line);
}

.vm-hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(23, 25, 22, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 22, 0.065) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, #000, transparent 63%);
}

.vm-hero__inner {
  min-height: 760px;
  padding: 74px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 0.86fr);
  align-items: center;
  gap: clamp(48px, 6vw, 104px);
}

.vm-hero__copy {
  max-width: 720px;
  min-width: 0;
}

.vm-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.8rem, 7vw, 7.55rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.83;
  text-transform: uppercase;
}

.vm-hero h1 em {
  display: block;
  color: var(--vm-hot);
  font-style: normal;
}

.vm-hero__lead {
  max-width: 690px;
  margin: 32px 0 0;
  color: rgba(23, 25, 22, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.67;
}

.vm-hero__actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.machine-button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 2px solid var(--vm-ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--vm-ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.machine-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--vm-ink);
}

.machine-button--hot {
  color: var(--vm-white);
  background: var(--vm-hot);
}

.machine-button--hot:hover {
  background: var(--vm-hot-dark);
}

.machine-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vm-ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.machine-link span {
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.machine-link:hover span {
  transform: translateY(4px);
}

.vm-proof {
  max-width: 720px;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--vm-line);
  border-bottom: 1px solid var(--vm-line);
}

.vm-proof div {
  min-height: 90px;
  padding: 17px 18px 17px 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

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

.vm-proof dt {
  color: var(--vm-hot);
  font-family: var(--display);
  font-size: 1.63rem;
  font-weight: 900;
  line-height: 1;
}

.vm-proof dd {
  margin: 0;
  color: rgba(23, 25, 22, 0.65);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-machine {
  position: relative;
  padding: 16px;
  color: var(--vm-paper);
  background: var(--vm-hot);
  border: 2px solid var(--vm-ink);
  box-shadow:
    16px 16px 0 var(--vm-ink),
    0 36px 70px rgba(23, 25, 22, 0.22);
}

.service-machine::before,
.service-machine::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vm-ink);
}

.service-machine::before {
  top: 8px;
  left: 8px;
}

.service-machine::after {
  right: 8px;
  bottom: 8px;
}

.service-machine__top {
  min-height: 58px;
  padding: 8px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--vm-ink);
}

.service-machine__brand {
  display: grid;
}

.service-machine__brand span {
  color: var(--vm-ink);
  font-family: var(--display);
  font-size: 1.17rem;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.service-machine__brand small {
  color: rgba(23, 25, 22, 0.7);
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-machine__status {
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--vm-acid);
  background: var(--vm-ink);
  font-family: var(--display);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-machine__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vm-acid);
  box-shadow: 0 0 12px var(--vm-acid);
  animation: vm-pulse 1.8s ease-in-out infinite;
}

@keyframes vm-pulse {
  50% { opacity: 0.45; }
}

.service-machine__display {
  margin: 14px 0;
  padding: 10px 14px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--vm-acid);
  background:
    repeating-linear-gradient(0deg, rgba(217, 255, 67, 0.025) 0 2px, transparent 2px 4px),
    var(--vm-ink);
  border: 2px solid rgba(23, 25, 22, 0.78);
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.48);
  font-family: ui-monospace, "Cascadia Mono", "Courier New", monospace;
}

.service-machine__display span {
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.service-machine__display strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.service-machine__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.machine-choice {
  position: relative;
  min-height: 142px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  color: var(--vm-ink);
  background: var(--vm-paper);
  border: 2px solid var(--vm-ink);
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.machine-choice:hover {
  color: var(--vm-paper);
  background: var(--vm-ink);
  transform: translateY(-3px);
}

.machine-choice--hot {
  background: var(--vm-acid);
}

.machine-choice__code {
  width: 33px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--vm-paper);
  background: var(--vm-ink);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.69rem;
  font-weight: 800;
}

.machine-choice:hover .machine-choice__code {
  color: var(--vm-ink);
  background: var(--vm-acid);
}

.machine-choice__arrow {
  position: absolute;
  top: 11px;
  right: 13px;
  font-size: 1.15rem;
}

.machine-choice strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: 1.36rem;
  line-height: 1;
  text-transform: uppercase;
}

.machine-choice small {
  margin-top: 7px;
  color: currentColor;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.67;
}

.service-machine__controls {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  gap: 10px;
}

.coin-slot {
  min-height: 76px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: rgba(255, 253, 245, 0.58);
  background: var(--vm-ink);
}

.coin-slot span {
  width: 48px;
  height: 8px;
  display: block;
  background: #050605;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 2px 4px #000;
}

.coin-slot small {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-machine__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--vm-ink);
}

.service-machine__contact a {
  display: grid;
  place-items: center;
  color: var(--vm-paper);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-machine__contact a:first-child {
  color: var(--vm-ink);
  background: var(--vm-acid);
}

.service-machine__contact a:hover {
  color: var(--vm-ink);
  background: var(--vm-white);
}

.service-machine__note {
  margin: 9px 0 0;
  color: rgba(23, 25, 22, 0.77);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-align: center;
  text-transform: uppercase;
}

.service-strip {
  background: var(--vm-acid);
  border-bottom: 2px solid var(--vm-ink);
}

.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-strip article {
  min-height: 250px;
  padding: 42px 38px;
}

.service-strip article + article {
  border-left: 1px solid var(--vm-ink);
}

.service-strip article > span,
.knowledge-answers article > span {
  color: rgba(23, 25, 22, 0.58);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-strip h2 {
  margin: 37px 0 13px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.5vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-strip p {
  max-width: 360px;
  margin: 0;
  color: rgba(23, 25, 22, 0.72);
  font-size: 0.88rem;
  line-height: 1.58;
}

.component-section {
  padding: 118px 0;
  color: var(--vm-paper);
  background:
    radial-gradient(circle at 82% 20%, rgba(217, 255, 67, 0.08), transparent 25%),
    var(--vm-ink);
  border-bottom: 1px solid var(--vm-line-light);
}

.component-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.88fr);
  align-items: center;
  gap: clamp(62px, 8vw, 128px);
}

.component-copy h2,
.process-section__head h2,
.region-copy h2,
.knowledge-section__head h2,
.contact-hatch__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 5.35vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
  text-transform: uppercase;
}

.component-copy h2 {
  max-width: 700px;
}

.component-copy__answer {
  max-width: 720px;
  margin: 31px 0 0;
  color: rgba(255, 253, 245, 0.73);
  font-size: 1.04rem;
  line-height: 1.72;
}

.component-benefits {
  margin: 43px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--vm-line-light);
}

.component-benefits li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--vm-line-light);
}

.component-benefits li > span {
  color: var(--vm-hot);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.7rem;
  font-weight: 850;
}

.component-benefits p {
  margin: 0;
  color: rgba(255, 253, 245, 0.63);
  font-size: 0.83rem;
  line-height: 1.55;
}

.component-benefits strong {
  margin-bottom: 3px;
  display: block;
  color: var(--vm-paper);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.diagnosis-board {
  position: relative;
  padding: 15px;
  color: var(--vm-ink);
  background: #b5b8ae;
  border: 2px solid #050605;
  box-shadow: 14px 14px 0 var(--vm-hot);
}

.diagnosis-board::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(23, 25, 22, 0.28);
}

.diagnosis-board__head {
  min-height: 40px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--vm-ink);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.diagnosis-board__head i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--vm-hot);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.18);
}

.diagnosis-board__case {
  margin-top: 13px;
  padding: 22px;
  display: grid;
  color: var(--vm-acid);
  background: var(--vm-ink);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.45);
}

.diagnosis-board__label,
.diagnosis-board__case code {
  color: rgba(217, 255, 67, 0.64);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.59rem;
  letter-spacing: 0.09em;
}

.diagnosis-board__case strong {
  margin: 9px 0 17px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.diagnosis-board__routes {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.diagnosis-board__routes div {
  min-height: 145px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  background: var(--vm-paper);
  border: 1px solid var(--vm-ink);
}

.diagnosis-board__routes div.is-active {
  background: var(--vm-acid);
  box-shadow: inset 0 -6px 0 var(--vm-hot);
}

.diagnosis-board__routes span {
  color: rgba(23, 25, 22, 0.53);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.55rem;
  font-weight: 800;
}

.diagnosis-board__routes strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.diagnosis-board__routes small {
  margin-top: 7px;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.25;
}

.diagnosis-board__result {
  margin-top: 10px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--vm-paper);
  background: var(--vm-hot);
  border: 1px solid var(--vm-ink);
}

.diagnosis-board__result > span {
  width: 35px;
  height: 35px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--vm-ink);
  background: var(--vm-acid);
  border-radius: 50%;
  font-weight: 900;
}

.diagnosis-board__result p {
  margin: 0;
  display: grid;
}

.diagnosis-board__result small {
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.diagnosis-board__result strong {
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.process-section {
  padding: 112px 0;
  background: var(--vm-paper);
  border-bottom: 1px solid var(--vm-line);
}

.process-section__head {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.process-section__head h2 {
  max-width: 850px;
}

.process-title__accent {
  display: block;
  color: var(--vm-hot);
}

.process-section__head > p {
  margin: 0 0 6px;
  color: rgba(23, 25, 22, 0.68);
  font-size: 0.92rem;
  line-height: 1.7;
}

.machine-process {
  margin: 66px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 2px solid var(--vm-ink);
  border-bottom: 2px solid var(--vm-ink);
}

.machine-process li {
  min-height: 315px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 245, 0.3);
}

.machine-process li + li {
  border-left: 1px solid var(--vm-ink);
}

.machine-process li > span {
  color: var(--vm-hot);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
}

.machine-process li > div {
  margin-top: auto;
}

.machine-process h3 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.machine-process p {
  margin: 0;
  color: rgba(23, 25, 22, 0.67);
  font-size: 0.82rem;
  line-height: 1.6;
}

.region-section {
  padding: 112px 0;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(23, 25, 22, 0.08) 50%, transparent 50.06%),
    var(--vm-paper-2);
  border-bottom: 1px solid var(--vm-line);
}

.region-section__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.technician-card {
  position: relative;
  padding: 18px;
  color: var(--vm-paper);
  background: var(--vm-ink);
  border: 2px solid var(--vm-ink);
  box-shadow: 11px 11px 0 var(--vm-hot);
}

.technician-card__status {
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 245, 0.65);
  border-bottom: 1px solid var(--vm-line-light);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.technician-card__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vm-acid);
  box-shadow: 0 0 9px var(--vm-acid);
}

.technician-card__person {
  padding: 31px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.technician-card__person > span {
  width: 82px;
  height: 82px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--vm-ink);
  background: var(--vm-acid);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 900;
}

.technician-card__person div {
  display: grid;
}

.technician-card__person strong {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.technician-card__person small {
  margin-top: 7px;
  color: rgba(255, 253, 245, 0.6);
  font-size: 0.63rem;
  font-weight: 700;
}

.technician-card > p {
  margin: 0;
  padding: 23px 0;
  color: rgba(255, 253, 245, 0.68);
  border-top: 1px solid var(--vm-line-light);
  font-size: 0.84rem;
  line-height: 1.65;
}

.technician-card > a {
  min-height: 54px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--vm-ink);
  background: var(--vm-hot);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.technician-card > a:hover {
  background: var(--vm-acid);
}

.region-copy h2 {
  max-width: 820px;
}

.region-copy__answer {
  max-width: 820px;
  margin: 29px 0 0;
  color: rgba(23, 25, 22, 0.72);
  font-size: 1rem;
  line-height: 1.73;
}

.region-grid {
  margin-top: 43px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--vm-ink);
  border-left: 1px solid var(--vm-ink);
}

.region-grid span {
  min-height: 78px;
  padding: 14px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--vm-ink);
  border-bottom: 1px solid var(--vm-ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.region-grid b {
  color: var(--vm-hot);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.knowledge-section {
  padding: 116px 0;
  color: var(--vm-paper);
  background: var(--vm-ink-2);
  border-bottom: 1px solid var(--vm-line-light);
}

.knowledge-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.48fr);
  align-items: end;
  gap: 50px 90px;
}

.knowledge-section__head .machine-kicker,
.knowledge-section__head h2 {
  grid-column: 1;
}

.knowledge-section__head h2 {
  max-width: 950px;
}

.knowledge-section__head > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0 0 7px;
  color: rgba(255, 253, 245, 0.58);
  font-size: 0.8rem;
  line-height: 1.6;
}

.knowledge-layout {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(40px, 7vw, 105px);
  border-top: 1px solid var(--vm-line-light);
}

.knowledge-index {
  position: sticky;
  top: 108px;
  height: max-content;
  padding-top: 25px;
  display: grid;
}

.knowledge-index > span {
  margin-bottom: 19px;
  color: var(--vm-hot);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.knowledge-index a {
  padding: 7px 0;
  color: rgba(255, 253, 245, 0.55);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.knowledge-index a:hover {
  color: var(--vm-acid);
}

.knowledge-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.knowledge-answers article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--vm-line-light);
  border-bottom: 1px solid var(--vm-line-light);
}

.knowledge-answers article:nth-child(odd) {
  border-left: 1px solid var(--vm-line-light);
}

.knowledge-answers article > span {
  color: var(--vm-hot);
}

.knowledge-answers h3 {
  margin: 52px 0 16px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.knowledge-answers p {
  margin: 0;
  color: rgba(255, 253, 245, 0.64);
  font-size: 0.85rem;
  line-height: 1.7;
}

.contact-hatch {
  padding: 110px 0;
  color: var(--vm-paper);
  background:
    linear-gradient(rgba(23, 25, 22, 0.9), rgba(23, 25, 22, 0.9)),
    repeating-linear-gradient(90deg, var(--vm-ink) 0 28px, #20231f 28px 29px);
}

.contact-hatch__grid {
  display: grid;
  grid-template-columns: minmax(0, 980px);
  align-items: center;
  justify-content: center;
}

.contact-hatch__copy {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.output-slot {
  min-height: 390px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: #0a0b0a;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 12px #20231f,
    inset 0 0 42px #000,
    12px 12px 0 var(--vm-hot);
}

.output-slot__label {
  position: relative;
  z-index: 1;
  padding: 8px 10px;
  color: rgba(255, 253, 245, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.output-slot__screen {
  position: relative;
  z-index: 1;
  margin: auto 25px;
  padding: 35px 24px;
  display: grid;
  color: var(--vm-acid);
  background:
    repeating-linear-gradient(0deg, rgba(217, 255, 67, 0.025) 0 2px, transparent 2px 4px),
    #10130f;
  border: 1px solid rgba(217, 255, 67, 0.28);
  box-shadow: inset 0 0 30px #000;
  text-align: center;
}

.output-slot__screen small {
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.output-slot__screen strong {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
}

.output-slot__light {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--vm-acid);
  box-shadow: 0 0 16px var(--vm-acid);
}

.contact-hatch__copy h2 {
  max-width: 850px;
}

.contact-hatch__copy > p:not(.machine-kicker) {
  max-width: 760px;
  margin: 27px 0 0;
  color: rgba(255, 253, 245, 0.65);
  line-height: 1.7;
}

.contact-hatch__actions {
  margin-top: 39px;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  border-top: 1px solid var(--vm-line-light);
  border-left: 1px solid var(--vm-line-light);
}

.contact-hatch__actions a {
  min-height: 100px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  color: var(--vm-paper);
  border-right: 1px solid var(--vm-line-light);
  border-bottom: 1px solid var(--vm-line-light);
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.contact-hatch__actions a:hover {
  color: var(--vm-ink);
  background: var(--vm-acid);
}

.contact-hatch__actions small {
  grid-column: 1 / -1;
  color: currentColor;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
}

.contact-hatch__actions strong {
  margin-top: 8px;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  line-height: 1;
}

.contact-hatch__copy address {
  margin-top: 25px;
  color: rgba(255, 253, 245, 0.48);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.machine-footer {
  color: var(--vm-ink);
  background: var(--vm-acid);
}

.machine-footer__top {
  min-height: 170px;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
}

.machine-footer .machine-brand__mark {
  color: var(--vm-acid);
}

.machine-footer .brand__text span {
  color: rgba(23, 25, 22, 0.62);
}

.machine-footer__top > p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-transform: uppercase;
}

.machine-footer__top nav {
  display: flex;
  gap: 24px;
}

.machine-footer__top nav a {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.machine-footer__bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--vm-ink);
}

.machine-footer__bottom p,
.machine-footer__bottom a {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.machine-footer .designer-credit {
  color: rgba(23, 25, 22, 0.76);
}

.machine-footer .designer-credit strong {
  color: var(--vm-ink);
  text-decoration: underline;
  text-decoration-color: var(--vm-hot-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
}

.machine-footer .designer-credit:hover,
.machine-footer .designer-credit:focus-visible {
  color: var(--vm-ink);
}

.machine-footer .designer-credit:hover strong,
.machine-footer .designer-credit:focus-visible strong {
  color: #641b05;
}

@media (max-width: 1120px) {
  .vm-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.85fr);
    gap: 50px;
  }

  .vm-hero h1 {
    font-size: clamp(4.3rem, 7vw, 6.4rem);
  }

  .component-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
    gap: 56px;
  }

  .service-strip article {
    padding-inline: 28px;
  }

  .machine-process li {
    min-height: 335px;
    padding: 22px;
  }

  .knowledge-answers article {
    padding: 28px;
  }
}

@media (max-width: 900px) {
  .machine-page .shell {
    width: min(100% - 40px, 760px);
  }

  .machine-page .site-nav {
    top: 76px;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    color: var(--vm-paper);
    background: var(--vm-ink);
    border-top-color: var(--vm-line-light);
  }

  .machine-page .site-header.is-scrolled .site-nav {
    top: 76px;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
  }

  .machine-page .site-nav a {
    color: var(--vm-paper);
    border-bottom-color: var(--vm-line-light);
  }

  .machine-page .site-nav .nav-cta {
    color: var(--vm-ink);
    background: var(--vm-acid);
  }

  .fault-ticker {
    font-size: 0.66rem;
  }

  .fault-ticker > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-inline: 18px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .fault-ticker span:nth-of-type(n + 2),
  .fault-ticker b:nth-of-type(n + 2) {
    display: none;
  }

  .vm-hero {
    background:
      radial-gradient(circle at 15% 4%, rgba(255, 255, 255, 0.82), transparent 26%),
      var(--vm-paper);
  }

  .vm-hero__inner,
  .component-section__grid,
  .region-section__grid,
  .contact-hatch__grid {
    grid-template-columns: 1fr;
  }

  .vm-hero__inner {
    min-height: auto;
    padding: 72px 0 92px;
    gap: 74px;
  }

  .vm-hero__copy {
    max-width: none;
  }

  .vm-hero h1 {
    max-width: 730px;
    font-size: clamp(4.4rem, 12.2vw, 7rem);
  }

  .service-machine {
    width: min(100% - 10px, 620px);
    margin-inline: auto;
  }

  .service-strip__grid {
    grid-template-columns: 1fr;
  }

  .service-strip article {
    min-height: 210px;
  }

  .service-strip article + article {
    border-top: 1px solid var(--vm-ink);
    border-left: 0;
  }

  .component-section,
  .process-section,
  .region-section,
  .knowledge-section,
  .contact-hatch {
    padding-block: 92px;
  }

  .component-section__grid {
    gap: 70px;
  }

  .diagnosis-board {
    width: min(100% - 12px, 620px);
    margin-inline: auto;
  }

  .process-section__head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-section__head > p {
    max-width: 610px;
  }

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

  .machine-process li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--vm-ink);
  }

  .machine-process li:nth-child(4) {
    border-top: 1px solid var(--vm-ink);
  }

  .region-section {
    background: var(--vm-paper-2);
  }

  .region-section__grid {
    gap: 76px;
  }

  .technician-card {
    width: min(100% - 12px, 560px);
    margin-inline: auto;
  }

  .knowledge-section__head {
    grid-template-columns: 1fr;
  }

  .knowledge-section__head .machine-kicker,
  .knowledge-section__head h2,
  .knowledge-section__head > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

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

  .knowledge-index {
    position: static;
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 18px;
    border-bottom: 1px solid var(--vm-line-light);
  }

  .knowledge-index > span {
    width: 100%;
  }

  .contact-hatch__grid {
    gap: 76px;
  }

  .output-slot {
    width: min(100% - 12px, 560px);
    margin-inline: auto;
  }

  .machine-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .machine-footer__top nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .machine-page .shell {
    width: calc(100% - 28px);
  }

  .machine-page .header-inner {
    min-height: 68px;
  }

  .machine-page .site-nav,
  .machine-page .site-header.is-scrolled .site-nav {
    top: 68px;
    height: calc(100vh - 126px);
    height: calc(100dvh - 126px);
  }

  .machine-brand__mark {
    width: 37px;
    height: 37px;
    font-size: 0.88rem;
  }

  .machine-page .brand__text strong {
    font-size: 0.82rem;
  }

  .machine-page .brand__text span {
    font-size: 0.5rem;
  }

  .fault-ticker > div {
    min-height: 34px;
  }

  .machine-kicker {
    margin-bottom: 20px;
    font-size: 0.64rem;
  }

  .vm-hero__inner {
    padding: 58px 0 76px;
    gap: 63px;
  }

  .vm-hero h1 {
    font-size: clamp(2.3rem, 11.3vw, 4.3rem);
  }

  .vm-hero__lead {
    margin-top: 25px;
    font-size: 0.94rem;
  }

  .vm-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .machine-button {
    width: calc(100% - 5px);
  }

  .machine-link {
    align-self: flex-start;
  }

  .vm-proof {
    grid-template-columns: 1fr;
  }

  .vm-proof div {
    min-height: 66px;
    padding: 13px 0;
  }

  .vm-proof div + div {
    padding-left: 0;
    border-top: 1px solid var(--vm-line);
    border-left: 0;
  }

  .vm-proof dt {
    width: 72px;
  }

  .service-machine {
    width: calc(100% - 7px);
    padding: 11px;
    box-shadow: 8px 8px 0 var(--vm-ink);
  }

  .service-machine__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .service-machine__choices {
    grid-template-columns: 1fr;
  }

  .machine-choice {
    min-height: 116px;
  }

  .service-machine__controls {
    grid-template-columns: 1fr;
  }

  .coin-slot {
    display: none;
  }

  .service-machine__contact {
    min-height: 62px;
  }

  .service-strip article {
    min-height: 215px;
    padding: 33px 20px;
  }

  .service-strip h2 {
    margin-top: 28px;
  }

  .component-section,
  .process-section,
  .region-section,
  .knowledge-section,
  .contact-hatch {
    padding-block: 78px;
  }

  .component-copy h2,
  .process-section__head h2,
  .region-copy h2,
  .knowledge-section__head h2,
  .contact-hatch__copy h2 {
    font-size: clamp(2.8rem, 13.3vw, 4.3rem);
  }

  .process-title__fit {
    display: block;
    font-size: 0.79em;
    letter-spacing: -0.045em;
  }

  .component-copy__answer,
  .region-copy__answer {
    font-size: 0.94rem;
  }

  .component-benefits li {
    grid-template-columns: 34px 1fr;
  }

  .diagnosis-board {
    width: calc(100% - 8px);
    padding: 10px;
    box-shadow: 8px 8px 0 var(--vm-hot);
  }

  .diagnosis-board__case {
    padding: 17px;
  }

  .diagnosis-board__routes {
    grid-template-columns: 1fr;
  }

  .diagnosis-board__routes div {
    min-height: 105px;
  }

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

  .machine-process li,
  .machine-process li:nth-child(3) {
    min-height: 235px;
    border-top: 1px solid var(--vm-ink);
    border-left: 0;
  }

  .machine-process li:first-child {
    border-top: 0;
  }

  .machine-process li + li {
    border-left: 0;
  }

  .technician-card {
    width: calc(100% - 8px);
    padding: 14px;
    box-shadow: 8px 8px 0 var(--vm-hot);
  }

  .technician-card__person > span {
    width: 68px;
    height: 68px;
    font-size: 1.45rem;
  }

  .technician-card__person strong {
    font-size: 1.34rem;
  }

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

  .region-grid span {
    min-height: 69px;
    font-size: 0.84rem;
  }

  .knowledge-layout {
    margin-top: 48px;
  }

  .knowledge-answers {
    grid-template-columns: 1fr;
  }

  .knowledge-answers article,
  .knowledge-answers article:nth-child(odd) {
    min-height: auto;
    padding: 28px 20px 31px;
    border-left: 1px solid var(--vm-line-light);
  }

  .knowledge-answers h3 {
    margin-top: 33px;
    font-size: 1.7rem;
  }

  .output-slot {
    width: calc(100% - 8px);
    min-height: 310px;
    padding: 14px;
    box-shadow:
      inset 0 0 0 8px #20231f,
      inset 0 0 34px #000,
      8px 8px 0 var(--vm-hot);
  }

  .output-slot__screen {
    margin-inline: 14px;
    padding: 28px 14px;
  }

  .output-slot__screen strong {
    font-size: 2rem;
  }

  .contact-hatch__actions {
    grid-template-columns: 1fr;
  }

  .contact-hatch__actions a {
    min-height: 88px;
  }

  .contact-hatch__actions strong {
    font-size: 1.1rem;
  }

  .machine-footer__top {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .machine-footer__top nav {
    grid-column: 1;
  }

  .machine-footer__bottom {
    min-height: 88px;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

/* ========================================================================== 
   Editoriale Werkstatt-Ebene / Bewegung 2026-07
   ========================================================================== */

.vm-hero__grid {
  animation: vm-grid-drift 26s linear infinite;
}

@keyframes vm-grid-drift {
  to { background-position: 42px 42px; }
}

.workshop-story {
  position: relative;
  isolation: isolate;
  min-height: clamp(610px, 68vw, 850px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--vm-paper);
  background: var(--vm-ink);
}

.workshop-story::before {
  content: "SERVICE / VOR ORT / DIAGNOSE / INSTANDSETZUNG";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  padding: 13px 24px;
  color: var(--vm-ink);
  background: var(--vm-acid);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.workshop-story__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #111310;
}

.workshop-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 10, 0.91) 0%, rgba(10, 12, 10, 0.6) 43%, rgba(10, 12, 10, 0.12) 78%),
    linear-gradient(0deg, rgba(10, 12, 10, 0.82) 0%, transparent 46%);
}

.workshop-story__media img,
.diagnosis-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--depth-y, 0px), 0) scale(1.075);
  will-change: transform;
}

.workshop-story__media img {
  object-position: center 48%;
}

.workshop-story__content {
  position: relative;
  z-index: 2;
  padding-block: 90px 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.54fr) auto;
  align-items: end;
  gap: clamp(40px, 6vw, 92px);
}

.workshop-story__statement h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7vw, 7.7rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.83;
  text-transform: uppercase;
}

.workshop-story__statement h2 em {
  color: var(--vm-acid);
  font-style: normal;
}

.workshop-story__note {
  margin: 0 0 8px;
  padding-left: 22px;
  color: rgba(255, 253, 245, 0.76);
  border-left: 3px solid var(--vm-hot);
  font-size: 0.88rem;
  line-height: 1.72;
}

.workshop-story__stamp {
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--vm-ink);
  background: var(--vm-hot);
  border-radius: 50%;
  text-align: center;
  transform: rotate(7deg);
  box-shadow: 0 0 0 8px rgba(255, 90, 31, 0.15);
}

.workshop-story__stamp strong {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 0.8;
}

.workshop-story__stamp span {
  margin-top: 8px;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.js .reveal-mask[data-reveal] {
  opacity: 1;
  clip-path: inset(0 0 100% 0);
  transform: none;
  transition: clip-path 1100ms cubic-bezier(.16, 1, .3, 1);
}

.js .reveal-mask[data-reveal].is-visible {
  clip-path: inset(0 0 0 0);
  transform: none;
}

.component-section {
  position: relative;
  padding-block: 138px 132px;
  overflow: hidden;
}

.component-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 31%;
  height: 8px;
  background: var(--vm-hot);
}

.component-section__grid {
  grid-template-columns: minmax(0, 0.87fr) minmax(500px, 0.95fr);
  gap: clamp(70px, 9vw, 148px);
}

.diagnosis-visual {
  position: relative;
  min-height: 650px;
  margin: 0;
  isolation: isolate;
}

.diagnosis-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 28px -18px -18px 28px;
  background: var(--vm-hot);
}

.diagnosis-visual__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #080a08;
  clip-path: polygon(0 0, 93% 0, 100% 7%, 100% 100%, 8% 100%, 0 92%);
}

.diagnosis-visual__image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  height: 2px;
  opacity: 0.58;
  background: var(--vm-acid);
  box-shadow: 0 0 18px var(--vm-acid);
  animation: diagnosis-scan 5.8s ease-in-out infinite;
}

.diagnosis-visual__image img {
  object-position: 56% center;
  filter: saturate(0.87) contrast(1.04);
}

@keyframes diagnosis-scan {
  0%, 18% { transform: translateY(0); opacity: 0; }
  28% { opacity: 0.55; }
  72% { opacity: 0.42; }
  82%, 100% { transform: translateY(720px); opacity: 0; }
}

.diagnosis-visual figcaption {
  position: absolute;
  z-index: 2;
  right: -1px;
  bottom: -1px;
  width: min(84%, 460px);
  padding: 25px 28px 24px;
  display: grid;
  color: var(--vm-ink);
  background: var(--vm-acid);
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
}

.diagnosis-visual figcaption > span,
.diagnosis-visual figcaption > small,
.diagnosis-visual__signal {
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnosis-visual figcaption > span {
  color: rgba(23, 25, 22, 0.58);
  font-size: 0.56rem;
}

.diagnosis-visual figcaption > strong {
  margin: 11px 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

.diagnosis-visual figcaption > small {
  font-size: 0.52rem;
}

.diagnosis-visual__signal {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vm-acid);
  background: rgba(12, 14, 12, 0.86);
  border: 1px solid rgba(217, 255, 67, 0.26);
  backdrop-filter: blur(7px);
  font-size: 0.53rem;
}

.diagnosis-visual__signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vm-acid);
  box-shadow: 0 0 12px var(--vm-acid);
  animation: vm-pulse 1.8s ease-in-out infinite;
}

.process-section {
  position: relative;
  padding-block: 132px 150px;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  opacity: 0.55;
  background: repeating-linear-gradient(135deg, var(--vm-hot) 0 12px, var(--vm-ink) 12px 24px);
}

.machine-process {
  --process-progress: 0;
  position: relative;
  margin-top: 78px;
  padding-top: 56px;
  gap: clamp(28px, 4.3vw, 70px);
  border: 0;
}

.machine-process::before,
.machine-process::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  height: 2px;
}

.machine-process::before {
  width: 100%;
  background: rgba(23, 25, 22, 0.22);
}

.machine-process::after {
  width: calc(var(--process-progress) * 100%);
  height: 4px;
  top: 16px;
  background: var(--vm-hot);
  transition: width 120ms linear;
}

.machine-process li,
.machine-process li:nth-child(3),
.machine-process li:nth-child(4) {
  position: relative;
  min-height: 275px;
  padding: 42px 0 0;
  display: block;
  background: transparent;
  border: 0;
}

.machine-process li:nth-child(even) {
  padding-top: 94px;
}

.machine-process li::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--vm-paper);
  border: 3px solid var(--vm-ink);
  border-radius: 50%;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.machine-process li.is-passed::before {
  background: var(--vm-acid);
  border-color: var(--vm-hot);
  transform: scale(1.2);
}

.machine-process li > span {
  display: block;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(4.8rem, 7vw, 7.3rem);
  letter-spacing: -0.05em;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(23, 25, 22, 0.26);
}

.machine-process li > div {
  margin-top: 34px;
}

.machine-process h3 {
  font-size: clamp(1.7rem, 2.3vw, 2.45rem);
}

.machine-process p {
  max-width: 290px;
  font-size: 0.86rem;
}

.knowledge-answers {
  display: block;
}

.knowledge-answers article,
.knowledge-answers article:nth-child(odd) {
  min-height: 0;
  padding: 36px 0 39px;
  display: grid;
  grid-template-columns: 72px minmax(250px, 0.82fr) minmax(300px, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 58px);
  border: 0;
  border-bottom: 1px solid var(--vm-line-light);
}

.knowledge-answers h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
}

.knowledge-answers p {
  margin-top: -4px;
}

.knowledge-answers article:hover h3 {
  color: var(--vm-acid);
}

.knowledge-answers article:hover > span {
  color: var(--vm-acid);
}

.knowledge-answers h3,
.knowledge-answers article > span {
  transition: color 180ms ease;
}

.knowledge-section {
  position: relative;
  padding-top: 146px;
}

.knowledge-section::before {
  content: "";
  position: absolute;
  top: -54px;
  left: 0;
  width: 100%;
  height: 55px;
  background: var(--vm-ink-2);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

@media (hover: hover) {
  .workshop-story:hover .workshop-story__media img {
    transform: translate3d(0, var(--depth-y, 0px), 0) scale(1.095);
  }

  .diagnosis-visual:hover .diagnosis-visual__image img {
    transform: translate3d(0, var(--depth-y, 0px), 0) scale(1.095);
  }

  .workshop-story__media img,
  .diagnosis-visual__image img {
    transition: transform 900ms cubic-bezier(.16, 1, .3, 1);
  }
}

@media (max-width: 1120px) {
  .workshop-story__content {
    grid-template-columns: 1fr minmax(250px, 0.52fr);
  }

  .workshop-story__stamp {
    position: absolute;
    top: 72px;
    right: 0;
  }

  .component-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
    gap: 64px;
  }

  .diagnosis-visual {
    min-height: 600px;
  }

  .knowledge-answers article,
  .knowledge-answers article:nth-child(odd) {
    grid-template-columns: 58px minmax(220px, 0.82fr) 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .workshop-story {
    min-height: 790px;
  }

  .workshop-story__media::after {
    background:
      linear-gradient(90deg, rgba(10, 12, 10, 0.78), rgba(10, 12, 10, 0.13)),
      linear-gradient(0deg, rgba(10, 12, 10, 0.94) 0%, rgba(10, 12, 10, 0.25) 72%);
  }

  .workshop-story__content {
    padding-block: 100px 62px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .workshop-story__note {
    max-width: 590px;
  }

  .workshop-story__stamp {
    top: 78px;
    right: 0;
  }

  .component-section {
    padding-block: 105px 112px;
  }

  .component-section__grid {
    grid-template-columns: 1fr;
    gap: 78px;
  }

  .diagnosis-visual {
    width: min(100% - 18px, 690px);
    min-height: 650px;
    margin-inline: auto;
  }

  .process-section {
    padding-block: 108px 120px;
  }

  .machine-process {
    grid-template-columns: 1fr 1fr;
    gap: 28px 54px;
  }

  .machine-process li:nth-child(even) {
    padding-top: 68px;
  }

  .knowledge-section {
    padding-top: 110px;
  }

  .knowledge-answers article,
  .knowledge-answers article:nth-child(odd) {
    grid-template-columns: 60px 1fr;
  }

  .knowledge-answers p {
    grid-column: 2;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .workshop-story {
    min-height: 700px;
  }

  .workshop-story::before {
    left: 0;
    right: auto;
    max-width: 100%;
    padding-inline: 14px;
    overflow: hidden;
    white-space: nowrap;
  }

  .workshop-story__media img {
    object-position: 61% center;
  }

  .workshop-story__content {
    padding-block: 92px 48px;
  }

  .workshop-story__statement h2 {
    font-size: clamp(3.05rem, 15vw, 4.9rem);
  }

  .workshop-story__note {
    max-width: calc(100% - 10px);
    font-size: 0.8rem;
  }

  .workshop-story__stamp {
    width: 88px;
    top: 68px;
    right: 0;
  }

  .workshop-story__stamp strong {
    font-size: 2rem;
  }

  .component-section,
  .process-section {
    padding-block: 88px 98px;
  }

  .diagnosis-visual {
    width: calc(100% - 9px);
    min-height: 520px;
  }

  .diagnosis-visual::before {
    inset: 16px -8px -8px 16px;
  }

  .diagnosis-visual figcaption {
    width: 91%;
    padding: 22px 20px 20px;
  }

  .diagnosis-visual figcaption > strong {
    font-size: 2.05rem;
  }

  .diagnosis-visual__signal {
    top: 12px;
    right: 12px;
  }

  .machine-process {
    margin-top: 56px;
    padding: 0 0 0 42px;
    display: block;
  }

  .machine-process::before,
  .machine-process::after {
    top: 0;
    left: 8px;
    width: 2px;
    height: 100%;
  }

  .machine-process::after {
    left: 7px;
    width: 4px;
    height: calc(var(--process-progress) * 100%);
  }

  .machine-process li,
  .machine-process li:nth-child(3),
  .machine-process li:nth-child(4),
  .machine-process li:nth-child(even) {
    min-height: 0;
    padding: 10px 0 66px;
    border: 0;
  }

  .machine-process li::before {
    top: 13px;
    left: -40px;
  }

  .machine-process li > span {
    font-size: 4.6rem;
  }

  .machine-process li > div {
    margin-top: 25px;
  }

  .knowledge-section {
    padding-top: 92px;
  }

  .knowledge-answers article,
  .knowledge-answers article:nth-child(odd) {
    padding: 29px 0 32px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .knowledge-answers p {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vm-hero__grid,
  .diagnosis-visual__image::after,
  .diagnosis-visual__signal i {
    animation: none;
  }

  .workshop-story__media img,
  .diagnosis-visual__image img {
    transform: scale(1.04);
    will-change: auto;
  }
}
