:root {
  --black: #050806;
  --ink: #0a0e0b;
  --paper: #f1f4dd;
  --acid: #b7ff2a;
  --green: #36ef67;
  --red: #ff321e;
  --line: 3px;
  --pad: clamp(18px, 3vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  overflow-x: hidden;
}

::selection {
  color: var(--black);
  background: var(--red);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--black);
  background: var(--acid);
  border: var(--line) solid var(--black);
  transform: translateY(-160%);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  border-bottom: var(--line) solid var(--paper);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: 50% calc(48% + var(--parallax, 0px));
  filter: contrast(1.12) saturate(0.9) brightness(0.78);
  transform: scale(1.035);
}

.hero__shade {
  z-index: -2;
  background: rgba(0, 0, 0, 0.22);
  border: clamp(8px, 1vw, 16px) solid var(--black);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-size: 100% 5px;
  background-image: linear-gradient(transparent 0 4px, #d9ffb3 4px 5px);
}

.topbar {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  margin: clamp(8px, 1vw, 16px);
  color: var(--paper);
  background: var(--black);
  border: var(--line) solid var(--paper);
  box-shadow: 8px 8px 0 var(--acid);
}

.brand,
.nav-login,
.topbar__status {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand {
  gap: 12px;
  font-size: 17px;
}

.brand__mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--acid);
}

.topbar__status {
  gap: 9px;
  border-inline: var(--line) solid var(--paper);
}

.topbar__status i {
  width: 9px;
  height: 9px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.nav-login {
  justify-content: flex-end;
  color: var(--acid);
}

.nav-login:hover,
.nav-login:focus-visible {
  color: var(--black);
  background: var(--acid);
  outline: 0;
}

.hero__content {
  align-self: end;
  width: min(1280px, calc(100% - 2 * var(--pad)));
  margin: 0 auto clamp(42px, 8vh, 90px);
}

.kicker,
.section-code,
.direction__number,
.direction__visual figcaption,
.footer {
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kicker {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 10px;
  color: var(--black);
  background: var(--acid);
  border: var(--line) solid var(--black);
  font-size: clamp(11px, 1vw, 14px);
}

.hero__title {
  width: fit-content;
  margin: 0;
  padding: 15px 20px 12px;
  color: var(--paper);
  background: var(--black);
  border: var(--line) solid var(--paper);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(50px, 8.7vw, 142px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero__title span {
  color: var(--acid);
  font-size: 0.56em;
  letter-spacing: -0.025em;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 16px;
}

.hero__bottom > p {
  margin: 0;
  padding: 10px 12px;
  color: var(--black);
  background: var(--paper);
  border: var(--line) solid var(--black);
  font-size: clamp(13px, 1.35vw, 20px);
  line-height: 1.15;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 18px;
  border: var(--line) solid currentColor;
  box-shadow: 7px 7px 0 var(--black);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease, color 150ms ease, background 150ms ease;
}

.button span {
  font-size: 22px;
}

.button:hover,
.button:focus-visible {
  transform: translate(5px, 5px);
  box-shadow: 2px 2px 0 var(--black);
  outline: 0;
}

.button--acid {
  color: var(--black);
  background: var(--acid);
  border-color: var(--black);
}

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

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--black);
  background: var(--paper);
}

.hero__index {
  position: absolute;
  right: 26px;
  bottom: 22px;
  color: var(--acid);
  font: 700 14px/1 "Courier New", monospace;
  writing-mode: vertical-rl;
}

.signal {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  color: var(--black);
  background: var(--paper);
  border-bottom: var(--line) solid var(--black);
  overflow: hidden;
}

.signal > *,
.direction > *,
.access > * {
  min-width: 0;
  max-width: 100%;
}

.signal__visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-right: var(--line) solid var(--black);
}

.signal__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: contrast(1.12) saturate(1.05);
  transition: transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.signal__visual:hover img,
.direction__visual:hover img {
  transform: scale(1.025);
}

.signal__flag {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 13px 18px;
  color: white;
  background: var(--red);
  border: var(--line) solid var(--black);
  font: 900 14px/1 "Courier New", monospace;
  letter-spacing: 0.06em;
}

.signal__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: var(--pad);
}

.section-code {
  margin: 0;
  font-size: 12px;
}

.signal__copy h2,
.directions__header h2,
.access h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.signal__copy h2 {
  font-size: clamp(55px, 6.8vw, 110px);
}

.signal__copy h2 span {
  color: var(--red);
}

.signal__copy > p:last-child {
  max-width: 480px;
  margin: 0;
  padding-top: 18px;
  border-top: var(--line) solid var(--black);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.15;
}

.directions {
  color: var(--paper);
  background: var(--black);
}

.directions__header {
  min-height: 40vh;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: end;
  gap: 30px;
  padding: var(--pad);
  border-bottom: var(--line) solid var(--paper);
  overflow: hidden;
}

.directions__header > * {
  min-width: 0;
  max-width: 100%;
}

.directions__header .section-code {
  grid-column: 1 / -1;
  align-self: start;
}

.directions__header h2 {
  max-width: 1120px;
  color: var(--acid);
  font-size: clamp(67px, 11vw, 180px);
}

.directions__header > span {
  color: var(--paper);
  font: 900 clamp(60px, 9vw, 140px)/0.8 Impact, sans-serif;
}

.direction {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--line) solid var(--paper);
  overflow: hidden;
}

.direction__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: var(--pad);
}

.direction__number {
  margin: 0;
  color: var(--acid);
  font-size: 12px;
}

.direction h3 {
  margin: auto 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(48px, 6.6vw, 110px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.direction__text {
  max-width: 590px;
  margin: 0;
  padding-top: 18px;
  border-top: var(--line) solid currentColor;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.16;
}

.direction__visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.direction__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.92);
  transition: transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.direction__visual--production img {
  object-position: 38% center;
}

.direction__visual--automation img {
  object-position: 35% center;
}

.direction__visual--editorial img {
  object-position: 48% center;
}

.direction__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  color: var(--black);
  background: var(--acid);
  border: var(--line) solid var(--black);
  font-size: 11px;
}

.direction--image-right .direction__visual {
  border-left: var(--line) solid var(--paper);
}

.direction--image-left .direction__visual {
  border-right: var(--line) solid var(--paper);
}

.direction--image-left .direction__visual figcaption {
  right: auto;
  left: 0;
}

.direction--acid {
  position: relative;
  grid-template-columns: 1.12fr 0.88fr;
  color: var(--black);
  background: var(--acid);
  border-color: var(--black);
  overflow: hidden;
}

.direction--acid .direction__number {
  color: var(--black);
}

.direction--acid.direction--image-left .direction__visual {
  border-color: var(--black);
}

.direction__manifesto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  color: var(--acid);
  background: var(--black);
  border-left: var(--line) solid var(--black);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(58px, 8vw, 126px);
  line-height: 0.78;
  text-align: center;
}

.direction__manifesto b {
  color: var(--red);
  font-size: 0.65em;
  transform: rotate(90deg);
}

.access {
  min-height: 86vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 28px;
  padding: clamp(60px, 9vw, 140px) var(--pad);
  color: var(--paper);
  background: var(--red);
  border-bottom: var(--line) solid var(--black);
}

.access h2 {
  font-size: clamp(79px, 14vw, 225px);
  overflow-wrap: anywhere;
}

.access h2 span {
  color: var(--black);
}

.access__note {
  max-width: 640px;
  margin: 0;
  padding: 12px 15px;
  color: var(--paper);
  background: var(--black);
  font-size: clamp(16px, 1.6vw, 23px);
  text-transform: uppercase;
}

.actions--large {
  width: 100%;
  margin-top: 20px;
}

.actions--large .button {
  min-width: min(390px, 100%);
  min-height: 74px;
  font-size: 16px;
}

.button--light {
  color: var(--black);
  background: var(--paper);
  border-color: var(--black);
}

.button--red {
  color: var(--paper);
  background: var(--black);
  border-color: var(--black);
}

.footer {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad);
  color: var(--acid);
  background: var(--black);
  font-size: 11px;
}

.footer a {
  justify-self: end;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--red);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.16, 1, .3, 1);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}

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

.reveal-clip {
  clip-path: inset(0);
  transition: clip-path 900ms cubic-bezier(.16, 1, .3, 1);
}

.motion-ready .reveal-clip {
  clip-path: inset(0 0 100% 0);
}

.motion-ready .reveal-clip.is-visible {
  clip-path: inset(0);
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar__status {
    display: none;
  }

  .nav-login {
    border-left: var(--line) solid var(--paper);
  }

  .hero__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal,
  .direction,
  .direction--acid {
    grid-template-columns: 1fr;
  }

  .signal__visual {
    min-height: 64vh;
    border-right: 0;
    border-bottom: var(--line) solid var(--black);
  }

  .signal__copy {
    min-height: 68vh;
  }

  .direction__visual {
    min-height: 60vh;
  }

  .direction--image-right .direction__visual {
    border-left: 0;
    border-top: var(--line) solid var(--paper);
  }

  .direction--image-left .direction__visual {
    grid-row: 2;
    border-top: var(--line) solid var(--paper);
    border-right: 0;
  }

  .direction__copy {
    min-height: 62vh;
  }

  .direction__manifesto {
    min-height: 55vh;
    border-top: var(--line) solid var(--black);
    border-left: 0;
  }

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

  .footer span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --line: 2px;
  }

  .hero {
    min-height: 860px;
  }

  .hero__image {
    object-position: 58% center;
  }

  .topbar {
    box-shadow: 5px 5px 0 var(--acid);
  }

  .brand,
  .nav-login {
    min-height: 48px;
    padding: 8px 10px;
    font-size: 12px;
  }

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

  .hero__content {
    margin-bottom: 45px;
  }

  .hero__title {
    padding: 12px 11px 10px;
    font-size: clamp(41px, 13.5vw, 70px);
    line-height: 0.83;
  }

  .hero__title span {
    font-size: 0.49em;
  }

  .actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 56px;
    box-shadow: 5px 5px 0 var(--black);
  }

  .signal__visual {
    min-height: 500px;
  }

  .signal__copy h2 {
    font-size: 12vw;
    overflow-wrap: anywhere;
  }

  .signal__copy,
  .direction__copy {
    min-height: 540px;
  }

  .directions__header {
    min-height: 330px;
  }

  .directions__header h2 {
    font-size: 16vw;
    overflow-wrap: anywhere;
  }

  .directions__header > span {
    display: none;
  }

  .direction h3 {
    font-size: 14vw;
    overflow-wrap: anywhere;
  }

  .direction--acid h3 {
    font-size: 11vw;
    overflow-wrap: normal;
  }

  .direction__visual {
    min-height: 500px;
  }

  .access {
    min-height: 760px;
  }

  .access h2 {
    font-size: 21vw;
  }

  .actions--large .button {
    min-width: 100%;
  }
}

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

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

  .reveal,
  .reveal-clip {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
