:root {
  color-scheme: dark;
  --ink: #e9e7df;
  --muted: #96958e;
  --line: #353631;
  --acid: #d8f35b;
  --paper: #151613;
  --serif: Georgia, 'Times New Roman', serif;
  --mono: 'Courier New', Courier, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: '';
  opacity: .16;
  background-image: radial-gradient(#fff 0.45px, transparent 0.45px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wordmark { color: var(--acid); font-weight: 700; text-decoration: none; letter-spacing: .18em; }
.status { color: var(--muted); }
.status i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); }

.hero { padding: clamp(88px, 15vw, 180px) 0 150px; max-width: 850px; }
.eyebrow, .kicker, .project-number, .section-label { color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { margin: 0 0 25px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
h1 { margin-bottom: 32px; font-size: clamp(76px, 12vw, 156px); }
h2 { font-size: clamp(52px, 7vw, 88px); }
em { color: var(--acid); font-style: italic; }
.lede { max-width: 510px; margin-bottom: 34px; color: #bbb9b0; font-size: 17px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; gap: 18px; padding: 12px 15px; border: 1px solid var(--line); text-decoration: none; font-size: 12px; }
.button span, .project-card a span { color: var(--acid); }
.button:hover { border-color: var(--acid); }
.button-primary { background: var(--acid); color: #151613; border-color: var(--acid); }
.button-primary span { color: #151613; }

.manifesto, .now { padding: 32px 0 150px; border-top: 1px solid var(--line); }
.section-label { display: flex; gap: 24px; margin-bottom: 74px; }
.section-label span:first-child { color: var(--acid); }
.manifesto-copy { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10%; }
.manifesto-copy h2 { margin-bottom: 0; }
.manifesto-notes { max-width: 380px; color: var(--muted); }
.manifesto-notes p + p { margin-top: 28px; }

.now-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: end; }
.now h2 { margin: 18px 0 0; }
.project-card { padding: 28px; border: 1px solid var(--line); }
.project-number { margin-bottom: 42px; color: var(--acid); }
.project-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 42px; font-weight: 400; }
.project-card p:not(.project-number) { max-width: 420px; color: var(--muted); }
.project-card a { display: inline-block; margin-top: 28px; color: var(--ink); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; }
.project-card a:hover { color: var(--acid); }

.footer { display: flex; justify-content: space-between; padding: 20px 0 36px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 700px) {
  .shell { width: min(100% - 32px, 560px); }
  .masthead { min-height: 68px; }
  .status { display: none; }
  .hero { padding: 100px 0 110px; }
  .manifesto, .now { padding-bottom: 110px; }
  .manifesto-copy, .now-grid { grid-template-columns: 1fr; gap: 46px; }
  .section-label { margin-bottom: 50px; }
  .footer { display: block; }
  .footer span + span { display: block; margin-top: 8px; }
}
