@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@700&display=swap");

:root {
  --paper: #f7f1e4;
  --paper-deep: #ede4d1;
  --ink: #161616;
  --muted: #68645b;
  --line: #d4cdbd;
  --yellow: #ffe342;
  --orange: #ff5b18;
  --pink: #ff4f9a;
  --cyan: #31c4eb;
  --lime: #b8e86c;
  --white: #fffdf8;
  --shadow: 5px 5px 0 var(--ink);
  --display: "Space Grotesk", "Arial Black", Arial, sans-serif;
  --mono: "DM Mono", "Courier New", monospace;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.26;
  background-image: radial-gradient(
    rgba(22, 22, 22, 0.14) 0.65px,
    transparent 0.65px
  );
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: linear-gradient(
    115deg,
    transparent 0 48%,
    rgba(255, 255, 255, 0.25) 48.2% 49%,
    transparent 49.2%
  );
  z-index: -1;
}

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

.wrap {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 16px var(--mono);
  letter-spacing: -0.06em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font:
    700 20px/1 Arial,
    sans-serif;
  transform: rotate(-12deg);
}
.brand-domain {
  color: var(--orange);
  margin-left: -5px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font: 500 12px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.site-nav a {
  position: relative;
}
.site-nav a:not(.nav-signal)::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.site-nav a:not(.nav-signal):hover::after {
  width: 100%;
}
.nav-signal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1.5px solid var(--ink);
  background: var(--white);
  font-size: 10px;
  box-shadow: 2px 2px 0 var(--ink);
}
.nav-signal i,
.launch-note-signal i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #49bd46;
  box-shadow: 0 0 0 3px rgba(73, 189, 70, 0.17);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(36px, 8vw, 128px);
  align-items: center;
  min-height: 680px;
  padding-block: 78px 96px;
}
.eyebrow {
  margin: 0 0 21px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font: 500 11px var(--mono);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.eyebrow > span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: currentColor;
}
.hero h1,
.section-heading h2,
.manifesto-copy h2,
.contact-main h2 {
  margin: 0;
  font-size: clamp(70px, 9.4vw, 140px);
  line-height: 0.8;
  letter-spacing: -0.085em;
  font-weight: 700;
}
.hero h1 em,
.section-heading h2 em,
.manifesto-copy h2 em,
.contact-main h2 em {
  color: var(--orange);
  font-style: normal;
}
.hero h1 strong {
  font-weight: 700;
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.hero-intro {
  max-width: 440px;
  margin: 34px 0 28px;
  color: #4f4a42;
  font-size: 16px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  min-height: 48px;
  padding: 0 17px;
  border: 2px solid var(--ink);
  font: 700 12px var(--mono);
  letter-spacing: 0.015em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.button b {
  font-size: 17px;
  line-height: 1;
}
.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}
.button-primary {
  background: var(--orange);
}
.button-ghost {
  background: var(--white);
}
.hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 35px;
  color: var(--muted);
  font: 11px var(--mono);
  text-transform: uppercase;
}
.hero-meta span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.hero-meta b {
  color: var(--ink);
  font-size: 15px;
}

.hero-art {
  min-height: 440px;
  position: relative;
  transform: rotate(1.4deg);
}
.console-card {
  position: absolute;
  z-index: 2;
  top: 46px;
  left: 10%;
  width: 78%;
  background: var(--ink);
  color: var(--white);
  padding: 22px 24px 24px;
  border: 2px solid var(--ink);
  box-shadow: 10px 11px 0 var(--pink);
}
.console-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #474747;
  pointer-events: none;
}
.console-topline {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #4b4b4b;
  color: #b0aaa0;
  font: 10px var(--mono);
  letter-spacing: 0.02em;
}
.console-topline span:last-child {
  color: var(--yellow);
}
.console-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 16px 25px;
}
.console-title {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.82;
  letter-spacing: -0.085em;
  font-weight: 700;
}
.console-title span {
  color: var(--yellow);
}
.console-orbit {
  width: 134px;
  height: 134px;
  position: relative;
  border: 1px solid #5f5f5f;
  border-radius: 50%;
  animation: spin 14s linear infinite;
}
.console-orbit::before,
.console-orbit::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed #666;
  border-radius: 50%;
}
.console-orbit::after {
  inset: 34px;
  border-style: solid;
  border-color: var(--pink);
}
.orbit-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font:
    32px Arial,
    sans-serif;
  animation: spin 14s linear infinite reverse;
}
.orbit-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}
.orbit-dot-one {
  top: 9px;
  right: 28px;
}
.orbit-dot-two {
  bottom: 18px;
  left: 4px;
  background: var(--orange);
}
.console-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 13px 16px;
  border-block: 1px solid #4b4b4b;
  color: var(--yellow);
  font: 12px var(--mono);
}
.console-data small {
  display: block;
  color: #8c8984;
  font-size: 8px;
  margin-bottom: 4px;
}
.console-terminal {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 20px 16px 5px;
  color: #a9a39a;
  font: 11px var(--mono);
  white-space: nowrap;
  overflow: hidden;
}
.console-terminal > span:first-child {
  color: var(--lime);
}
.terminal-text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.console-terminal i {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--pink);
  animation: blink 1s steps(2) infinite;
}
.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font: 700 14px/1.05 var(--mono);
}
.sticker-yellow {
  top: 4px;
  right: 3%;
  width: 112px;
  height: 86px;
  background: var(--yellow);
  transform: rotate(9deg);
}
.sticker-pink {
  bottom: 16px;
  left: 0;
  width: 105px;
  height: 71px;
  padding-top: 4px;
  background: var(--pink);
  transform: rotate(-11deg);
}
.sticker-pink small {
  font-size: 8px;
}
.doodle {
  position: absolute;
  z-index: 1;
  color: var(--ink);
  font:
    700 58px Arial,
    sans-serif;
}
.doodle-burst {
  top: 0;
  left: 3%;
  color: var(--orange);
  transform: rotate(-16deg);
}
.doodle-arrow {
  bottom: 20px;
  right: 1%;
  font-size: 84px;
  transform: rotate(6deg);
}
.art-caption {
  position: absolute;
  right: 5%;
  bottom: 0;
  margin: 0;
  font: 10px var(--mono);
  text-transform: uppercase;
  color: var(--muted);
  transform: rotate(-4deg);
}

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--yellow);
  border-block: 2px solid var(--ink);
  padding: 14px 0;
  font: 700 12px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 33px;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.ticker b {
  color: var(--pink);
  font-size: 16px;
}

.section {
  padding-block: 124px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}
.section-heading h2 {
  font-size: clamp(56px, 7.3vw, 106px);
}
.section-heading h2 em {
  color: var(--pink);
}
.surprise-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  padding: 0 0 7px;
  border-bottom: 2px solid var(--ink);
  background: none;
  cursor: pointer;
  font: 700 12px var(--mono);
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.surprise-button span {
  color: var(--orange);
  font-size: 20px;
}
.surprise-button:hover {
  color: var(--orange);
  transform: translateY(-3px) rotate(-2deg);
}
.surprise-button:active {
  transform: translateY(0);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}
.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.project-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 7px 13px 0 var(--ink);
}
.card-jobs:hover {
  box-shadow: 7px 13px 0 var(--orange);
}
.card-xkcd:hover {
  box-shadow: 7px 13px 0 var(--pink);
}
.card-buddies:hover {
  box-shadow: 7px 13px 0 var(--lime);
}
.card-shelf:hover {
  box-shadow: 7px 13px 0 var(--cyan);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 15px;
  border-bottom: 2px solid var(--ink);
  font: 10px var(--mono);
  letter-spacing: 0.03em;
}
.card-arrow {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  transition: transform 0.25s ease;
}
.project-card:hover .card-arrow {
  transform: rotate(45deg);
}
.project-preview {
  min-height: 231px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.jobs-preview {
  background: #efeee7;
  font-family: Arial, sans-serif;
}
.preview-browserbar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 30px;
  padding: 0 10px;
  background: var(--orange);
  border-bottom: 1px solid #bd3e0b;
  font:
    8px Arial,
    sans-serif;
  font-weight: 700;
}
.preview-browserbar i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff1df;
}
.preview-browserbar span {
  margin-left: 7px;
  opacity: 0.7;
}
.jobs-preview-body {
  display: grid;
  grid-template-columns: 31% 69%;
  height: 201px;
  font-size: 8px;
  color: #4e4e49;
}
.jobs-preview aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 10px;
  border-right: 1px solid #d1d1c8;
}
.jobs-preview aside b {
  color: var(--ink);
  font-size: 10px;
}
.jobs-preview aside span {
  padding-bottom: 5px;
  border-bottom: 1px solid #d8d8ce;
}
.job-list {
  padding: 11px 10px;
}
.job-list > b {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
}
.job-list mark {
  float: right;
  background: var(--yellow);
  font-size: 7px;
}
.job-list > div {
  margin-bottom: 9px;
  padding: 8px;
  background: #fbfbf6;
  border: 1px solid #dddcd4;
}
.job-list strong,
.job-list small {
  display: block;
}
.job-list strong {
  margin-bottom: 4px;
  color: #1e1e1c;
  font-size: 9px;
}
.job-list small {
  color: #82817a;
}
.xkcd-preview {
  background: #fff5cd;
  padding: 22px 20px;
  font-family: var(--mono);
}
.xkcd-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(#d7c68c 0.7px, transparent 0.7px);
  background-size: 8px 8px;
}
.xkcd-zap {
  position: absolute;
  right: 11px;
  top: 9px;
  z-index: 1;
  color: var(--pink);
  font: 700 25px var(--display);
  transform: rotate(11deg);
}
.xkcd-wordmark {
  position: relative;
  z-index: 1;
}
.xkcd-wordmark small {
  display: block;
  width: max-content;
  padding: 5px 9px;
  background: var(--cyan);
  border: 2px solid var(--ink);
  font-size: 7px;
  letter-spacing: 0.08em;
}
.xkcd-wordmark strong {
  display: block;
  margin-top: 13px;
  font: 700 clamp(28px, 3.5vw, 44px)/0.78 var(--display);
  letter-spacing: -0.11em;
  text-shadow: 3px 3px 0 var(--pink);
}
.xkcd-wordmark em {
  color: var(--yellow);
  font-style: normal;
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 3px 3px 0 var(--pink);
}
.xkcd-searchbar {
  position: absolute;
  z-index: 1;
  bottom: 17px;
  left: 20px;
  right: 20px;
  padding: 10px;
  border: 2px solid var(--ink);
  background: var(--white);
  font:
    8px Arial,
    sans-serif;
  box-shadow: 3px 3px 0 var(--ink);
}
.xkcd-searchbar b {
  float: right;
  margin: -5px;
  padding: 7px 8px;
  background: var(--yellow);
  font: 700 8px var(--mono);
}
.xkcd-comics {
  position: absolute;
  z-index: 0;
  left: 32px;
  bottom: 57px;
  display: flex;
  gap: 4px;
  opacity: 0.85;
}
.xkcd-comics span {
  padding: 11px 4px 3px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font: 6px var(--mono);
}
.buddies-preview {
  background: #f4f4ee;
  font-family: Arial, sans-serif;
}
.buddies-top {
  display: flex;
  align-items: center;
  height: 31px;
  padding: 0 10px;
  gap: 6px;
  background: var(--orange);
  border-bottom: 1px solid #c64b15;
  color: var(--ink);
  font-size: 10px;
}
.buddies-top > span {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--orange);
  background: white;
  font-weight: 700;
}
.buddies-top small {
  margin-left: auto;
  font-size: 7px;
  opacity: 0.65;
}
.buddies-layout {
  display: grid;
  grid-template-columns: 34% 66%;
  height: 200px;
  color: #717168;
  font-size: 8px;
}
.buddy-sidebar {
  padding: 14px 10px;
  border-right: 1px solid #d5d5ca;
}
.buddy-sidebar b,
.buddy-sidebar span,
.buddy-sidebar i {
  display: block;
}
.buddy-sidebar b {
  margin-bottom: 17px;
  color: var(--ink);
  font-size: 10px;
}
.buddy-sidebar span {
  margin-bottom: 4px;
}
.buddy-sidebar i {
  padding: 6px;
  border: 1px solid #aaa99f;
  background: white;
  font-style: normal;
}
.buddy-sidebar button {
  margin-top: 16px;
  padding: 6px 9px;
  border: 0;
  background: var(--orange);
  font-size: 8px;
  font-weight: 700;
}
.buddy-results {
  padding: 14px 10px;
}
.buddy-results b {
  display: block;
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 10px;
}
.buddy-results strong,
.buddy-results span {
  display: block;
  padding: 7px;
  border-bottom: 1px solid #d5d5ca;
}
.buddy-results strong {
  color: var(--ink);
  background: #e8e8de;
}
.shelf-preview {
  background: #f3eee6;
  color: #26221e;
  font-family: Arial, sans-serif;
}
.shelf-preview-bar {
  height: 31px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #d8cfc3;
  background: #faf7f1;
}
.shelf-preview-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #df8a74;
}
.shelf-preview-bar i:nth-child(2) { background: #d8ae5d; }
.shelf-preview-bar i:nth-child(3) { background: #84a278; }
.shelf-preview-bar span {
  margin-left: auto;
  color: #9a9187;
  font: 7px var(--mono);
}
.shelf-preview-layout {
  height: 200px;
  display: grid;
  grid-template-columns: 31% 69%;
}
.shelf-preview-layout aside {
  padding: 13px 9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid #d8cfc3;
  background: #faf7f1;
  font-size: 7px;
}
.shelf-preview-layout aside b {
  margin-bottom: 9px;
  font: 600 11px Georgia, serif;
}
.shelf-preview-layout aside span {
  padding: 5px 6px;
  border-radius: 5px;
  color: #716a62;
}
.shelf-preview-layout aside span.active {
  background: #eee7dd;
  color: #26221e;
  font-weight: 700;
}
.shelf-preview-layout aside small {
  margin: 8px 6px 0;
  color: #a0988e;
  font-size: 5px;
  letter-spacing: .12em;
}
.shelf-preview-main { padding: 12px; }
.shelf-preview-search {
  margin-bottom: 15px;
  padding: 8px;
  border-radius: 7px;
  background: #e8e1d8;
  color: #948a80;
  font-size: 7px;
}
.shelf-preview-main > strong {
  display: block;
  margin-bottom: 8px;
  font: 600 13px Georgia, serif;
}
.shelf-preview-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.shelf-preview-cards i {
  height: 49px;
  border: 1px solid #ded5c9;
  border-radius: 7px;
  background: linear-gradient(135deg, #dfe8da 0 46%, #fffdf9 46%);
}
.shelf-preview-cards i:nth-child(2) { background: linear-gradient(135deg, #f1d3c7 0 46%, #fffdf9 46%); }
.shelf-preview-cards i:nth-child(3) { background: linear-gradient(135deg, #dfd8eb 0 46%, #fffdf9 46%); }
.shelf-preview-cards i:nth-child(4) { background: linear-gradient(135deg, #eadfbf 0 46%, #fffdf9 46%); }
.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px 20px 20px;
}
.card-kicker {
  margin: 0 0 10px;
  font: 10px var(--mono);
  line-height: 1.25;
  color: var(--muted);
}
.card-content h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.07em;
}
.card-description {
  margin: 10px 0 24px;
  color: #58544c;
  font-size: 14px;
  line-height: 1.45;
}
.card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  min-height: 27px;
  margin-top: auto;
}
.card-url {
  overflow: hidden;
  color: var(--muted);
  font: 9px var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-link {
  flex-shrink: 0;
  color: var(--ink);
  font: 700 10px var(--mono);
  text-transform: uppercase;
}
.card-link b {
  color: var(--orange);
  font-size: 15px;
}
.card-link:hover {
  color: var(--orange);
}
.launch-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 39px;
  padding: 15px 17px;
  border-block: 1px solid var(--line);
  color: var(--muted);
}
.launch-note-signal {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.launch-note p {
  margin: 0;
  font-size: 12px;
}
.launch-note p strong {
  color: var(--ink);
}
.launch-note-code {
  margin-left: auto;
  color: var(--orange);
  font: 10px var(--mono);
  white-space: nowrap;
}

.manifesto-section {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12%;
  align-items: center;
}
.eyebrow-light {
  color: var(--yellow);
}
.manifesto-copy h2 {
  font-size: clamp(54px, 7vw, 100px);
}
.manifesto-copy h2 em {
  color: var(--pink);
}
.manifesto-copy h2 strong {
  color: var(--yellow);
  font-weight: 700;
}
.manifesto-body {
  max-width: 450px;
}
.manifesto-lede {
  margin: 0 0 43px;
  color: #e1dccc;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.manifesto-lines {
  border-top: 1px solid #504d46;
}
.manifesto-lines > div {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #504d46;
}
.manifesto-lines span {
  color: var(--orange);
  font: 11px var(--mono);
}
.manifesto-lines p {
  margin: 0;
  font: 700 19px var(--display);
}
.manifesto-signoff {
  margin: 31px 0 0;
  color: #a9a49b;
  font: 11px/1.5 var(--mono);
}

.contact-section {
  padding-top: 110px;
  padding-bottom: 108px;
}
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 15%;
  padding: 57px 63px 58px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
  overflow: hidden;
}
.contact-main,
.contact-side {
  position: relative;
  z-index: 1;
}
.contact-main h2 {
  font-size: clamp(55px, 7.2vw, 98px);
}
.contact-main h2 em {
  color: var(--pink);
}
.contact-side {
  align-self: end;
  padding-bottom: 5px;
}
.contact-side > p {
  max-width: 335px;
  margin: 0 0 29px;
  font-size: 15px;
  line-height: 1.4;
}
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--ink);
  font: 700 clamp(18px, 2.1vw, 27px) var(--mono);
  letter-spacing: -0.08em;
}
.email-link span {
  color: var(--orange);
  font-size: 20px;
}
.email-link:hover {
  color: var(--pink);
}
.copy-email {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font: 10px var(--mono);
  text-transform: uppercase;
}
.copy-email span {
  padding: 4px 6px;
  border: 1px solid #a69d62;
  font-size: 8px;
}
.copy-email:hover {
  color: var(--ink);
}
.contact-spark {
  position: absolute;
  right: -20px;
  bottom: -76px;
  color: var(--pink);
  font:
    220px Arial,
    sans-serif;
  line-height: 1;
  transform: rotate(15deg);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0 31px;
  border-top: 2px solid var(--ink);
  color: var(--muted);
}
.footer-brand {
  flex-shrink: 0;
  color: var(--ink);
  font-size: 12px;
}
.footer-brand .brand-mark {
  width: 24px;
  height: 24px;
  font-size: 16px;
}
.site-footer p {
  margin: 0;
  font: 10px var(--mono);
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  max-width: min(390px, calc(100% - 48px));
  padding: 14px 17px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font: 11px/1.35 var(--mono);
  transform: translateY(140%);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.is-surprise {
  animation: surprise 0.8s ease;
}
.reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: transform 0.7s ease;
}
.reveal-delay {
  transition-delay: 0.13s;
}
.reveal-delay-short {
  transition-delay: 0.1s;
}
.reveal-delay-long {
  transition-delay: 0.2s;
}
.reveal.is-visible {
  transform: translateY(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes surprise {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(-12px) rotate(-2deg);
  }
  60% {
    transform: translateY(4px) rotate(1deg);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 64px;
  }
  .hero-copy {
    max-width: 590px;
  }
  .hero-art {
    width: min(100%, 680px);
    margin-inline: auto;
  }
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .manifesto-grid {
    gap: 7%;
  }
  .contact-card {
    gap: 7%;
    padding-inline: 42px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(calc(100% - 36px), var(--max-width));
  }
  .site-header {
    min-height: 75px;
  }
  .brand {
    font-size: 13px;
  }
  .brand-mark {
    width: 25px;
    height: 25px;
    font-size: 17px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }
  .site-header.menu-open .menu-toggle > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-header.menu-open .menu-toggle > span:nth-child(2) {
    opacity: 0;
  }
  .site-header.menu-open .menu-toggle > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 18px;
    border: 2px solid var(--ink);
    border-top: 0;
    background: var(--paper);
    box-shadow: 4px 4px 0 var(--ink);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  .site-header.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:not(.nav-signal)::after {
    display: none;
  }
  .nav-signal {
    align-self: flex-start;
    margin-top: 13px;
  }
  .hero {
    min-height: unset;
    padding-block: 60px 83px;
  }
  .hero h1 {
    font-size: clamp(62px, 18vw, 100px);
  }
  .hero-intro {
    margin-top: 28px;
    font-size: 15px;
  }
  .hero-meta {
    flex-direction: column;
    gap: 9px;
    margin-top: 27px;
  }
  .hero-art {
    min-height: 345px;
    transform: rotate(0);
    margin-top: 10px;
  }
  .console-card {
    top: 38px;
    left: 4%;
    width: 88%;
    padding: 15px 15px 17px;
    box-shadow: 7px 8px 0 var(--pink);
  }
  .console-main {
    padding: 25px 8px 19px;
  }
  .console-title {
    font-size: clamp(34px, 12vw, 58px);
  }
  .console-orbit {
    width: 95px;
    height: 95px;
  }
  .console-data {
    padding-inline: 8px;
    font-size: 10px;
  }
  .console-terminal {
    padding-inline: 8px;
    font-size: 9px;
    gap: 6px;
  }
  .sticker-yellow {
    right: 0;
    width: 88px;
    height: 68px;
    font-size: 10px;
  }
  .sticker-pink {
    left: -6px;
    bottom: 13px;
    width: 88px;
    height: 59px;
    font-size: 11px;
  }
  .doodle-burst {
    left: 0;
    font-size: 40px;
  }
  .doodle-arrow {
    right: 0;
    bottom: 3px;
    font-size: 62px;
  }
  .art-caption {
    right: 0;
    font-size: 8px;
  }
  .section {
    padding-block: 83px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 37px;
  }
  .section-heading h2 {
    font-size: clamp(51px, 15vw, 80px);
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-preview {
    min-height: 240px;
  }
  .jobs-preview-body,
  .buddies-layout {
    height: 210px;
  }
  .xkcd-wordmark strong {
    font-size: 46px;
  }
  .launch-note {
    align-items: start;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .launch-note-code {
    width: 100%;
    margin-left: 38px;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .manifesto-copy h2 {
    font-size: clamp(52px, 15vw, 80px);
  }
  .manifesto-lede {
    font-size: 22px;
  }
  .contact-section {
    padding-top: 83px;
    padding-bottom: 78px;
  }
  .contact-card {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 40px 27px 43px;
    box-shadow: 6px 6px 0 var(--ink);
  }
  .contact-main h2 {
    font-size: clamp(51px, 15vw, 80px);
  }
  .contact-side {
    padding-bottom: 0;
  }
  .email-link {
    font-size: 19px;
  }
  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }
  .site-footer p {
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
