:root {
  color-scheme: dark;
  --bg: #050607;
  --ink: #f5f7ee;
  --muted: #a1a6a0;
  --line: rgba(245, 247, 238, 0.22);
  --line-soft: rgba(245, 247, 238, 0.1);
  --black: #000;
  --green: #9dff7c;
  --red: #ff6054;
  --pad: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: rgba(245, 247, 238, 0.78);
  font-family: "Azeret Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
input,
a {
  font: inherit;
}

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

.cursor-wake {
  --x: -100px;
  --y: -100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 35;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(245, 247, 238, 0.36);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--x), var(--y), 0) translate(-50%, -50%);
  transition: opacity 160ms ease;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

body.pointer-active .cursor-wake {
  opacity: 1;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 22px var(--pad);
  color: var(--ink);
  mix-blend-mode: difference;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 650;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
}

.nav-links {
  gap: 24px;
  color: rgba(245, 247, 238, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  max-height: 960px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.ascii-stage {
  position: relative;
  overflow: hidden;
  background: #030404;
  border: 1px solid var(--line-soft);
}

.ascii-stage video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
  pointer-events: none;
}

.ascii-stage canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -2;
  border: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.78), rgba(5, 6, 7, 0.08) 34%, rgba(5, 6, 7, 0.92)),
    radial-gradient(circle at 78% 22%, rgba(157, 255, 124, 0.2), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(88, 199, 255, 0.16), transparent 28%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 92svh;
  max-height: 960px;
  align-items: end;
  gap: 32px;
  padding: 120px var(--pad) 72px;
}

.hero-title {
  align-self: end;
  min-width: 0;
}

.kicker,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Chakra Petch", "Azeret Mono", monospace;
  font-weight: 700;
  letter-spacing: 0;
}

.wordmark {
  font-family: "Pixelify Sans", "Azeret Mono", ui-monospace, monospace;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

h1 {
  max-width: 10ch;
  font-size: 88px;
  line-height: 0.92;
}

h2 {
  max-width: 11ch;
  font-size: 62px;
  line-height: 0.98;
}

.hero-copy {
  display: grid;
  justify-items: start;
  gap: 26px;
  width: 100%;
  max-width: 690px;
  min-width: 0;
  padding: 28px 0 4px;
}

.hero-copy p,
.copy-block > p {
  margin: 0;
  color: rgba(245, 247, 238, 0.82);
  font-size: 20px;
  line-height: 1.42;
}

.hero-copy p,
.hero-title {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 0.95);
}

.hero-copy p {
  width: 100%;
  max-width: 690px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-copy p span {
  display: inline;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: rgba(5, 6, 7, 0.46);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

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

.section-block {
  border-bottom: 1px solid var(--line);
}

.section-tight {
  border-top: 1px solid var(--line-soft);
}

.layout-grid {
  display: grid;
  grid-template-columns: minmax(24px, 0.26fr) minmax(0, 1fr) minmax(0, 1fr) minmax(24px, 0.26fr);
  min-height: 760px;
}

.layout-grid.reverse {
  grid-template-columns: minmax(24px, 0.26fr) minmax(0, 1fr) minmax(0, 1fr) minmax(24px, 0.26fr);
}

.grid-gutter,
.copy-block,
.media-column {
  border-right: 1px solid var(--line-soft);
}

.layout-grid > :last-child {
  border-right: 0;
}

.copy-block {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 84px var(--pad);
}

.copy-block h2 {
  max-width: 12ch;
}

.copy-block > p {
  max-width: 620px;
}

.quote-band {
  max-width: 620px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.quote-band p {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

.media-column {
  display: grid;
  min-height: 100%;
  padding: var(--pad);
}

.media-column.tall {
  min-height: 760px;
}

.inset-stage {
  min-height: 560px;
}

.plain-list {
  display: grid;
  gap: 0;
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plain-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  color: rgba(245, 247, 238, 0.82);
  font-size: 18px;
}

.plain-list li::before {
  content: "+ ";
  color: var(--red);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--pad);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  :root {
    --pad: 22px;
  }

  .site-header {
    padding-top: 16px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 90svh;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 26px;
    padding-top: 96px;
    padding-bottom: 92px;
  }

  .hero-title,
  .hero-copy {
    justify-self: stretch;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-copy p,
  .copy-block > p {
    font-size: 17px;
  }

  .hero-copy p span {
    display: block;
  }

  .layout-grid,
  .layout-grid.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .grid-gutter {
    display: none;
  }

  .copy-block,
  .media-column {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .copy-block {
    padding: 62px var(--pad);
  }

  .media-column {
    padding: var(--pad);
  }

  .media-column.tall {
    min-height: auto;
  }

  .inset-stage {
    min-height: 420px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 14px;
  }

  .brand {
    font-size: 13px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .inset-stage {
    min-height: 320px;
  }
}
