:root {
  --bg: #080817;
  --fg: #fffef2;
  --blue: #f2e71f;
  --orange: #f2e71f;
  --sans: "IBM Plex Mono", monospace;
}
body {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero {
  position: relative;
  min-height: calc(100svh - 34px);
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(9, 11, 14, 0.84) 4%,
    rgba(9, 11, 14, 0.12) 66%
  );
}
.scan {
  position: absolute;
  z-index: 2;
  left: 62%;
  top: -20%;
  width: 2px;
  height: 140%;
  transform: rotate(12deg);
  background: var(--blue);
}
header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 27px var(--page-pad);
  font-size: 12px;
}
.wordmark {
  font: 24px "Archivo Black";
}
.wordmark span {
  color: var(--orange);
}
.hero-copy {
  position: absolute;
  z-index: 4;
  left: var(--page-pad);
  bottom: 10%;
}
.hero-copy p {
  font-size: 14px;
}
.hero h1 {
  margin: 12px 0;
  font: clamp(74px, 12vw, 188px) / 0.78 "Archivo Black";
  letter-spacing: -0.075em;
}
.hero h1 em {
  color: var(--blue);
  font-style: normal;
}
.readout {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: 7%;
  width: 150px;
  display: grid;
  gap: 4px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}
.readout span {
  font-size: 10px;
}
.readout strong {
  font: 70px/1 "Archivo Black";
}
.statement {
  padding: 150px var(--page-pad);
  position: relative;
}
.axis {
  font-size: 10px;
  color: var(--orange);
  margin-bottom: 35px;
}
.statement h2 {
  max-width: 1100px;
  margin: 0;
  font: clamp(50px, 7vw, 110px) / 0.92 "Archivo Black";
  letter-spacing: -0.055em;
}
.statement h2 span {
  -webkit-text-stroke: 1px var(--blue);
  color: transparent;
}
.statement p {
  margin: 55px 0 0 auto;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(243, 246, 250, 0.7);
}
.machine {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  background: #151a20;
}
.machine figure {
  margin: 0;
  min-height: 720px;
}
.machine img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.machine figcaption {
  padding: 9px;
  font-size: 9px;
}
.spec {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spec span {
  font-size: 10px;
  color: rgba(243, 246, 250, 0.55);
}
.spec strong {
  margin: 12px 0;
  font: clamp(25px, 3vw, 48px) / 1.05 "Archivo Black";
}
.spec hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #49515b;
  margin: 56px 0;
}
.contact {
  padding: 80px var(--page-pad);
  background: var(--blue);
  color: #090916;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 24px 5vw;
}
.contact > span {
  font-size: 11px;
}
.contact > .phone-cta {
  justify-self: end;
  font: clamp(42px, 7vw, 96px) / 1 "Archivo Black";
  letter-spacing: -0.04em;
}
.contact b {
  color: #090916;
}
.contact .contact-actions {
  grid-column: 2;
  justify-self: end;
  margin-top: 0;
}
.contact .map-link:hover {
  background: #090916;
  color: var(--blue);
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 24px var(--page-pad);
}
@media (max-width: 780px) {
  .readout {
    right: auto;
    left: var(--page-pad);
    bottom: 4%;
  }
  .hero-copy {
    bottom: 27%;
  }
  .machine {
    grid-template-columns: 1fr;
  }
  .machine figure {
    min-height: 500px;
  }
  .spec {
    padding: 70px var(--page-pad);
  }
  .contact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
  .contact > .phone-cta {
    font-size: clamp(38px, 13vw, 70px);
  }
  .contact .contact-actions {
    justify-content: flex-start;
  }
  footer {
    flex-direction: column;
    gap: 15px;
  }
}
