:root {
  --black: #080b09;
  --black-soft: #111713;
  --bone: #ece8dd;
  --bone-light: #f8f5ec;
  --ink-muted: #5d655e;
  --light-muted: #a8afa8;
  --volt: #dfff00;
  --heat: #ff5429;
  --line-dark: rgba(8, 11, 9, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --pointer-x: 70%;
  --pointer-y: 35%;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-visible,
body.request-visible {
  overflow: hidden;
}

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

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.page-shell {
  width: calc(100% - 48px);
  max-width: 1380px;
  margin-inline: auto;
}

.microcopy {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--volt);
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: absolute;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.header-grid {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 176px;
}

.site-logo img {
  width: 176px;
  height: auto;
}

.header-principles {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
}

.header-principles i {
  width: 4px;
  height: 4px;
  background: var(--volt);
  border-radius: 50%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}

.header-phone {
  margin-right: 10px;
  font-size: 0.8rem;
  font-weight: 900;
}

.pill-action {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  color: var(--black);
  background: var(--volt);
  border: 1px solid var(--volt);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.pill-action::after {
  content: "↗";
  font-size: 1rem;
}

.pill-action:hover {
  color: #fff;
  background: transparent;
  transform: translateY(-2px);
}

.menu-button {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 18px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button span {
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button span::before { top: -5px; }
.menu-button span::after { top: 5px; }

.menu-button[aria-expanded="true"] span {
  background: transparent;
}

.menu-button[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-layer {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8, 11, 9, 0.985);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.menu-layer.is-visible {
  opacity: 1;
  visibility: visible;
}

.menu-layer nav {
  display: grid;
  text-align: center;
}

.menu-layer nav a {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.menu-layer nav a:hover {
  color: var(--volt);
}

.menu-contact {
  position: absolute;
  left: 24px;
  bottom: 20px;
  display: grid;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
}

.menu-hint {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.38);
}

.lp-hero {
  --pointer-x: 70%;
  --pointer-y: 35%;
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 145px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle 520px at var(--pointer-x) var(--pointer-y), rgba(223, 255, 0, 0.15), transparent 72%),
    var(--black);
  overflow: hidden;
  isolation: isolate;
}

.lp-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.lp-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18vw;
  right: -18vw;
  width: 58vw;
  height: 58vw;
  min-width: 660px;
  min-height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 95px rgba(255, 255, 255, 0.018), inset 0 0 0 190px rgba(255, 255, 255, 0.018);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(390px, 0.77fr);
  align-items: end;
  gap: clamp(48px, 7vw, 105px);
}

.hero-content,
.project-machine,
.statement-content,
.section-head > *,
.path-head > *,
.roles-grid > *,
.project-check-grid > *,
.faq-grid > * {
  min-width: 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--volt);
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 9px;
  background: var(--heat);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.lp-hero h1 {
  max-width: 920px;
  margin-bottom: 31px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.35rem, 6.7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.lp-hero h1.is-long {
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  line-height: 0.92;
}

.hero-intro {
  max-width: 730px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-intro strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 32px;
}

.hero-start {
  width: 120px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 15px;
  color: var(--black);
  background: var(--volt);
  border: 1px solid var(--volt);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
  animation: pulse-ring 2.8s ease-in-out infinite;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-start strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.hero-start:hover {
  color: #fff;
  background: var(--heat);
  transform: rotate(5deg) scale(1.04);
}

@keyframes pulse-ring {
  50% { box-shadow: 0 0 0 18px rgba(223, 255, 0, 0.08); }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
  font-weight: 850;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.hero-points li {
  position: relative;
  padding: 16px 16px 0 22px;
  color: rgba(255, 255, 255, 0.6);
  border-right: 1px solid var(--line-light);
  font-size: 0.73rem;
  line-height: 1.45;
}

.hero-points li:last-child {
  border-right: 0;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--volt);
  border-radius: 50%;
}

.project-machine {
  position: relative;
  min-height: 650px;
  display: grid;
  align-content: end;
}

.machine-label {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  padding: 7px 10px;
  color: var(--black);
  background: var(--volt);
}

.house-model {
  position: absolute;
  top: 35px;
  right: 0;
  left: 0;
  height: 390px;
  perspective: 850px;
}

.house-axis {
  position: absolute;
  inset: 34px 28px 35px 40px;
  transform: rotateX(63deg) rotateZ(-31deg);
  transform-style: preserve-3d;
}

.house-floor {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 0 45px rgba(223, 255, 0, 0.03);
  transform-style: preserve-3d;
}

.house-floor::before,
.house-floor::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.23);
}

.house-floor::before {
  top: 42%;
  right: 0;
  left: 0;
  height: 1px;
}

.house-floor::after {
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
}

.room {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 7px;
  color: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: color 300ms ease, background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.room-1 { inset: 0 42% 58% 0; }
.room-2 { inset: 0 0 58% 58%; }
.room-3 { inset: 42% 42% 0 0; }
.room-4 { inset: 42% 0 0 58%; }

.house-model[data-focus="1"] .room-1,
.house-model[data-focus="2"] .room-2,
.house-model[data-focus="3"] .room-3,
.house-model[data-focus="4"] .room-4 {
  color: var(--black);
  background: var(--volt);
  transform: translateZ(35px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.5);
}

.measure {
  position: absolute;
  color: rgba(255, 255, 255, 0.38);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.06em;
}

.measure-x { right: 13%; bottom: 4px; }
.measure-y { top: 46%; left: -24px; transform: rotate(-90deg); }

.machine-controls {
  position: relative;
  z-index: 4;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.machine-controls > .microcopy {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.46);
}

.machine-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.machine-mode {
  min-height: 66px;
  padding: 11px 12px;
  color: #fff;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  transition: color 160ms ease, background 160ms ease;
}

.machine-mode span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.36);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.56rem;
}

.machine-mode:hover,
.machine-mode[aria-pressed="true"] {
  color: var(--black);
  background: var(--volt);
}

.machine-mode:hover span,
.machine-mode[aria-pressed="true"] span {
  color: rgba(8, 11, 9, 0.5);
}

.machine-output {
  min-height: 61px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero-scroll {
  position: absolute;
  right: 20px;
  bottom: 43px;
  display: grid;
  justify-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 55px;
  background: linear-gradient(var(--volt), transparent);
}

.orientation {
  position: relative;
  padding: clamp(100px, 12vw, 175px) 0;
  background: var(--bone);
  overflow: hidden;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.38fr 1.62fr;
  gap: clamp(42px, 9vw, 145px);
}

.statement-index {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
  padding-right: 24px;
  border-right: 1px solid var(--line-dark);
}

.statement-index strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.05em;
}

.statement-index span:last-child {
  color: var(--ink-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.statement-content h2 {
  max-width: 1020px;
  margin-bottom: 50px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.1rem, 6.4vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.statement-answer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.statement-answer > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
}

.statement-answer aside {
  padding: 22px;
  color: var(--black);
  background: var(--volt);
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transform: rotate(1.5deg);
}

.statement-answer aside strong {
  display: block;
  margin-bottom: 9px;
}

.statement-answer aside p {
  margin: 0;
  color: rgba(8, 11, 9, 0.67);
  font-size: 0.84rem;
}

.project-file {
  position: relative;
  padding: clamp(95px, 11vw, 160px) 0;
  color: #fff;
  background: var(--black);
}

.section-head,
.path-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 55px;
  margin-bottom: 65px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--volt);
}

.process-path .page-shell .path-head.enter.is-visible .section-tag.microcopy {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: black;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
}

.section-head h2,
.path-head h2,
.roles-copy h2,
.check-copy h2,
.faq-head h2,
.final-call h2 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(3.35rem, 7vw, 4.9rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}


.section-head > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
}

.order-lab {
  --order: 54%;
  position: relative;
  min-height: 670px;
  border: 1px solid var(--line-light);
  overflow: hidden;
  isolation: isolate;
}

.chaos-side,
.order-side {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 4vw, 55px);
}

.chaos-side {
  background:
    linear-gradient(25deg, transparent 49.7%, rgba(255, 255, 255, 0.07) 49.9%, rgba(255, 255, 255, 0.07) 50.2%, transparent 50.4%),
    #151917;
  background-size: 95px 95px;
}

.order-side {
  z-index: 2;
  width: var(--order);
  min-width: 55px;
  color: var(--black);
  background: var(--volt);
  border-right: 3px solid #fff;
  overflow: hidden;
}

.order-side::after {
  content: "↔";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: #fff;
  border-radius: 50%;
  font-weight: 950;
  transform: translateY(-50%);
}

.lab-label {
  position: absolute;
  top: 23px;
  left: 26px;
  font-weight: 900;
}

.chaos-word {
  position: absolute;
  max-width: 250px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.7rem, 1vw, 0.88rem);
  font-weight: 800;
  line-height: 1.3;
}

.chaos-word:nth-of-type(2) { top: 24%; left: 10%; transform: rotate(-7deg); }
.chaos-word:nth-of-type(3) { top: 31%; right: 12%; transform: rotate(5deg); }
.chaos-word:nth-of-type(4) { bottom: 22%; left: 28%; transform: rotate(10deg); }
.chaos-word:nth-of-type(5) { bottom: 9%; right: 8%; transform: rotate(-5deg); }

.order-content {
  width: min(850px, calc(100vw - 90px));
  min-height: 100%;
  display: grid;
  align-content: center;
  padding-top: 35px;
}

.order-point {
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(8, 11, 9, 0.26);
}

.order-point:last-child {
  border-bottom: 1px solid rgba(8, 11, 9, 0.26);
}

.order-point > span {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.68rem;
  font-weight: 900;
}

.order-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(0.94rem, 1.55vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.order-point p {
  margin: 0;
  color: rgba(8, 11, 9, 0.65);
  font-size: 0.77rem;
  line-height: 1.42;
}

.order-point i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--volt);
  background: var(--black);
  border-radius: 50%;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 950;
}

.order-control {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.order-control input {
  width: 100%;
  height: 26px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.order-control input::-webkit-slider-runnable-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.order-control input::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  margin-top: -12px;
  appearance: none;
  background: var(--volt);
  border: 3px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--volt);
}

.order-control input::-moz-range-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.order-control input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--volt);
  border: 3px solid var(--black);
  border-radius: 50%;
}

.process-path {
  padding: clamp(100px, 13vw, 185px) 0;
  background: var(--bone-light);
}

.path-head > p {
  margin: 0;
  color: var(--ink-muted);
}

.path-list {
  border-top: 2px solid var(--black);
}

.path-item {
  position: relative;
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: start;
  gap: 32px;
  min-height: 225px;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  isolation: isolate;
  padding: 37px 15px 37px 15px;
}

.path-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--black);
  transform: translateY(101%);
  transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.path-item:hover::before {
  transform: translateY(0);
}

.path-number {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 4rem;
  line-height: 0.82;
  transition: color 180ms ease;
}

.path-item h3 {
  max-width: 680px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.path-item p {
  margin: 0;
  color: var(--ink-muted);
  transition: color 180ms ease;
}

.path-item:hover .path-number,
.path-item:hover h3 {
  color: var(--volt);
}

.path-item:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.roles-section {
  position: relative;
  padding: clamp(100px, 12vw, 170px) 0;
  color: var(--black);
  background: var(--heat);
  overflow: hidden;
}

.roles-section::before {
  content: "VERMITTLUNG";
  position: absolute;
  top: 34px;
  right: -0.04em;
  color: rgba(8, 11, 9, 0.09);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 15vw;
  line-height: 1;
  writing-mode: vertical-rl;
}

.roles-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(55px, 10vw, 150px);
}

.roles-copy .section-tag {
  color: var(--black);
}

.roles-copy h2 {
  margin-bottom: 33px;
}

.roles-copy > p {
  max-width: 570px;
  color: rgba(8, 11, 9, 0.72);
  font-size: 1.04rem;
}

.role-badge {
  width: 180px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-top: 48px;
  padding: 20px;
  color: var(--black);
  background: var(--volt);
  border: 2px solid var(--black);
  border-radius: 50%;
  box-shadow: 10px 10px 0 var(--black);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.roles-table {
  color: #fff;
  background: var(--black);
  border: 2px solid var(--black);
}

.role-row {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 30px;
  padding: 31px;
  border-bottom: 1px solid var(--line-light);
}

.role-row:last-child {
  border-bottom: 0;
}

.role-row h3 {
  margin: 0;
  color: var(--volt);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.project-check {
  padding: clamp(100px, 13vw, 185px) 0;
  background: var(--bone);
}

.project-check-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(45px, 9vw, 145px);
}

.check-number {
  min-height: 510px;
  display: grid;
  place-items: start center;
  padding-top: 15px;
  border-right: 1px solid var(--line-dark);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(10rem, 20vw, 21rem);
  line-height: 0.75;
}

.check-copy {
  align-self: center;
}

.check-copy .section-tag {
  color: var(--heat);
}

.check-copy h2 {
  max-width: 980px;
  margin-bottom: 34px;
}

.check-copy > p {
  max-width: 820px;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.check-copy a {
  color: var(--black);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--heat);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.check-copy a:hover {
  color: #a6290c;
}

.inline-action {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 20px;
  color: var(--black);
  background: var(--volt);
  border: 2px solid var(--black);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--black);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.inline-action:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--black);
}

.faq-section {
  padding: clamp(100px, 12vw, 170px) 0;
  background: var(--bone-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(55px, 9vw, 135px);
}

.faq-head .section-tag {
  color: var(--heat);
}

.faq-head h2 {
  margin-bottom: 26px;
}

.faq-head > p:last-child {
  max-width: 430px;
  color: var(--ink-muted);
}

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

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

.faq-item summary {
  position: relative;
  display: block;
  padding: 28px 64px 28px 0;
  cursor: pointer;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--volt);
  border: 1px solid var(--black);
  border-radius: 50%;
  font-size: 1.25rem;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  max-width: 790px;
  margin: 0;
  padding: 0 64px 27px 0;
  color: var(--ink-muted);
}

.final-call {
  min-height: 88svh;
  display: grid;
  place-items: center;
  padding: 100px 0;
  color: #fff;
  background: var(--black);
  text-align: center;
}

.final-inner {
  display: grid;
  justify-items: center;
}

.final-call h2 {
  max-width: 1160px;
  font-size: clamp(3.8rem, 8.5vw, 8.2rem);
}

.final-call > .page-shell > p:not(.section-tag) {
  max-width: 720px;
  margin: 34px auto;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1.02rem;
}

.final-button {
  min-width: 270px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 17px 26px;
  color: var(--black);
  background: var(--volt);
  border: 2px solid var(--volt);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.final-button:hover {
  color: #fff;
  background: var(--heat);
  border-color: var(--heat);
  transform: scale(1.04);
}

.site-footer {
  padding: 52px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--black);
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.55fr;
  gap: 60px;
  padding-bottom: 42px;
}

.footer-brand p {
  max-width: 500px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.79rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 0.82rem;
}

.footer-links .microcopy {
  margin-bottom: 8px;
  color: var(--volt);
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--volt);
}

.footer-links button {
  width: fit-content;
  margin: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid var(--line-light);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.request-dialog {
  position: fixed;
  z-index: 400;
  inset: 0;
  color: #fff;
  background: rgba(8, 11, 9, 0.99);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

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

.request-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 23px 0;
}

.request-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line-light);
}

.request-name {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.request-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--volt);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 950;
}

.request-progress {
  display: flex;
  align-items: center;
  gap: 9px;
}

.request-progress i {
  width: 46px;
  height: 4px;
  display: block;
  background: rgba(255, 255, 255, 0.16);
  transition: background 180ms ease;
}

.request-progress i.is-active,
.request-progress i.is-complete {
  background: var(--volt);
}

.request-close {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  justify-self: end;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
}

.request-body {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 40px 0 25px;
  overflow-y: auto;
}

.request-step {
  width: min(100%, 1020px);
  display: none;
  animation: request-in 280ms ease both;
}

.request-step.is-active {
  display: block;
}

@keyframes request-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.request-count {
  display: block;
  margin-bottom: 19px;
  color: var(--volt);
}

.request-step h2 {
  max-width: 980px;
  margin-bottom: 28px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 7.2vw, 6.7rem);
  line-height: 0.89;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.request-intro {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.57);
}

.request-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.request-options label {
  position: relative;
  display: block;
}

.request-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.request-options span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 20px;
  color: #fff;
  background: transparent;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  cursor: pointer;
  font-size: clamp(0.94rem, 1.6vw, 1.2rem);
  font-weight: 900;
  transition: color 160ms ease, background 160ms ease;
}

.request-options span::after {
  content: "→";
}

.request-options input:checked + span {
  color: var(--black);
  background: var(--volt);
}

.request-options input:focus-visible + span {
  outline: 3px solid var(--heat);
  outline-offset: -3px;
}

.request-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 35px;
}

.request-field {
  display: grid;
  gap: 8px;
}

.request-field-wide {
  grid-column: 1 / -1;
}

.request-field label {
  color: rgba(255, 255, 255, 0.48);
}

.request-field input,
.request-field select,
.request-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 13px 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: 0;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 780;
  transition: border-color 160ms ease;
}

.request-field select {
  color-scheme: dark;
}

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

.request-field input:focus,
.request-field select:focus,
.request-field textarea:focus {
  border-color: var(--volt);
}

.file-field input {
  padding-top: 16px;
  font-size: 0.83rem;
  font-weight: 600;
}

.request-optin {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 12px;
  max-width: 850px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  cursor: pointer;
}

.request-optin input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--volt);
}

.request-optin a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.request-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.request-summary > div {
  padding: 17px;
  color: var(--black);
  background: var(--volt);
}

.request-summary span {
  display: block;
  margin-bottom: 5px;
  color: rgba(8, 11, 9, 0.55);
}

.request-summary strong {
  font-size: 1rem;
}

.form-message {
  display: none;
  margin: 20px 0 0;
  padding: 14px 16px;
  font-weight: 800;
}

.form-message.is-success,
.form-message.is-error {
  display: block;
}

.form-message.is-success {
  color: var(--black);
  background: var(--volt);
}

.form-message.is-error {
  color: #fff;
  background: #b92c11;
}

.request-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.request-foot > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.request-nav {
  display: flex;
  gap: 9px;
}

.request-button {
  min-height: 49px;
  padding: 11px 19px;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.request-button.is-primary {
  color: var(--black);
  background: var(--volt);
  border-color: var(--volt);
}

.request-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.request-button[hidden] {
  display: none;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.enter {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.internal-index {
  min-height: 100svh;
  padding: 55px 0;
  background: var(--bone-light);
}

.internal-index h1 {
  margin-bottom: 15px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.internal-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 35px;
  background: var(--black);
  border: 1px solid var(--black);
}

.internal-index-card {
  min-height: 135px;
  padding: 19px;
  background: var(--bone-light);
}

.internal-index-card a {
  font-weight: 850;
}

.internal-index-slug {
  margin-top: 8px;
  color: var(--ink-muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.7rem;
}

@media (max-width: 1120px) {
  .header-principles,
  .header-phone {
    display: none;
  }

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

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

  .hero-content {
    max-width: 980px;
  }

  .project-machine {
    width: min(100%, 700px);
    min-height: 570px;
    margin-left: auto;
  }

  .path-item {
    grid-template-columns: 85px minmax(0, 1fr) minmax(230px, 0.52fr);
  }

  .internal-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .page-shell {
    width: calc(100% - 30px);
  }

  .pill-action {
    display: none;
  }

  .lp-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .statement-grid,
  .statement-answer,
  .section-head,
  .path-head,
  .roles-grid,
  .project-check-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .statement-index {
    min-height: auto;
    flex-direction: row;
    align-items: end;
    padding: 0 0 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .statement-index span:last-child {
    writing-mode: initial;
    transform: none;
  }

  .order-lab {
    min-height: 620px;
  }

  .path-item {
    grid-template-columns: 64px 1fr;
  }

  .path-item p {
    grid-column: 2;
  }

  .check-number {
    min-height: auto;
    justify-content: start;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 9rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .request-head {
    grid-template-columns: 1fr auto auto;
  }
}

@media (max-width: 580px) {
  html {
    scroll-padding-top: 76px;
  }

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

  .orientation,
  .project-file,
  .process-path,
  .roles-section,
  .project-check,
  .faq-section {
    padding-block: 76px;
  }

  .header-grid {
    min-height: 76px;
  }

  .site-logo,
  .site-logo img {
    width: 132px;
  }

  .menu-button {
    width: 43px;
    height: 43px;
  }

  .menu-contact {
    left: 15px;
  }

  .menu-hint {
    display: none;
  }

  .lp-hero {
    padding: 112px 0 38px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .hero-kicker {
    margin-bottom: 19px;
  }

  .lp-hero h1,
  .lp-hero h1.is-long {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-intro {
    margin-bottom: 24px;
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: center;
    gap: 18px;
  }

  .hero-start {
    width: 120px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    padding-bottom: 11px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .project-machine {
    width: 100%;
    min-height: 505px;
    margin: 0;
  }

  .house-model {
    height: 250px;
  }

  .house-axis {
    inset: 30px 15px 30px 25px;
  }

  .machine-modes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .machine-mode {
    min-height: 76px;
    overflow-wrap: break-word;
  }

  .machine-output {
    min-height: 70px;
  }

  .hero-scroll {
    display: none;
  }

  .statement-content h2,
  .section-head h2,
  .path-head h2,
  .roles-copy h2,
  .check-copy h2,
  .faq-head h2,
  .final-call h2 {
    font-size: clamp(2.6rem, 12vw, 3.75rem);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .statement-grid {
    gap: 38px;
  }

  .statement-index strong {
    font-size: 5rem;
  }

  .statement-content h2 {
    margin-bottom: 32px;
  }

  .statement-answer aside {
    padding: 18px;
    box-shadow: 6px 6px 0 var(--black);
  }

  .section-head,
  .path-head {
    gap: 25px;
    margin-bottom: 38px;
  }

  .order-lab {
    min-height: 0;
    border: 0;
    overflow: visible;
  }

  .chaos-side {
    display: none;
  }

  .order-side {
    position: relative;
    inset: auto;
    width: 100% !important;
    min-width: 0;
    padding: 22px 18px;
    border-right: 0;
    overflow: visible;
  }

  .order-side::after {
    display: none;
  }

  .order-content {
    width: 100%;
    min-height: 0;
    padding-top: 34px;
  }

  .order-point {
    grid-template-columns: 27px minmax(0, 1fr) 24px;
    gap: 10px;
    padding: 16px 0;
  }

  .order-point p {
    display: block;
    margin-top: 7px;
  }

  .order-control {
    display: none;
  }

  .path-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 29px 0;
  }

  .path-number {
    font-size: 2.8rem;
  }

  .path-item h3 {
    font-size: clamp(2rem, 10.5vw, 2.7rem);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .path-item p {
    grid-column: 1 / -1;
    padding-left: 60px;
  }

  .roles-section::before {
    font-size: 30vw;
  }

  .role-badge {
    width: 145px;
    margin: 35px 0 8px;
    box-shadow: 7px 7px 0 var(--black);
    font-size: 0.64rem;
  }

  .role-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
  }

  .check-number {
    min-height: 0;
    padding: 0 0 15px;
    font-size: 6.5rem;
  }

  .project-check-grid {
    gap: 36px;
  }

  .inline-action,
  .final-button {
    width: 100%;
  }

  .faq-item summary {
    padding: 23px 50px 23px 0;
  }

  .faq-item summary::after {
    width: 34px;
    height: 34px;
  }

  .faq-item p {
    padding-right: 0;
  }

  .final-call {
    min-height: auto;
    padding: 84px 0;
  }

  .final-call > .page-shell > p:not(.section-tag) {
    margin: 25px auto 30px;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-grid,
  .footer-bottom,
  .request-fields,
  .request-summary {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-brand {
    grid-column: auto;
  }

  .request-shell {
    height: 100dvh;
    min-height: 100svh;
    padding: 12px 0;
    overflow: hidden;
  }

  .request-head {
    grid-template-columns: 1fr auto;
  }

  .request-progress {
    display: none;
  }

  .request-body {
    align-items: start;
    padding: 26px 0 22px;
  }

  .request-step h2 {
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .request-intro {
    margin-bottom: 20px;
  }

  .request-options {
    grid-template-columns: 1fr;
  }

  .request-options span {
    min-height: 56px;
    padding: 14px 15px;
  }

  .request-field-wide {
    grid-column: auto;
  }

  .request-foot > p {
    display: none;
  }

  .request-nav {
    width: 100%;
  }

  .request-button {
    min-width: 0;
    flex: 1;
    padding-inline: 12px;
  }

  .internal-index-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .page-shell {
    width: calc(100% - 24px);
  }

  .lp-hero h1,
  .lp-hero h1.is-long {
    font-size: clamp(2.45rem, 12.5vw, 3.1rem);
  }

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

  .project-machine {
    min-height: 650px;
  }

  .request-name > span:last-child {
    display: none;
  }
}

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

  .enter {
    opacity: 1;
    transform: none;
  }
}