:root {
  --paper: #f2f0e9;
  --ink: #10110f;
  --panel: #d9d7cf;
  --acid: #d8ff36;
  --signal: #ff4f2e;
  --blue: #2746ff;
  --line: 1px solid var(--ink);
  --max: 1440px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
a:hover {
  text-decoration-thickness: 3px;
}
a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}
.skip {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: var(--acid);
  padding: 0.8rem 1rem;
  z-index: 20;
}
.skip:focus {
  top: 1rem;
}
.shell {
  max-width: var(--max);
  margin: auto;
  border-inline: var(--line);
  min-height: 100vh;
}
.nav {
  min-height: 88px;
  border-bottom: var(--line);
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto;
  align-items: stretch;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.brand img {
  width: 78px;
  height: auto;
}
.brand small {
  display: block;
  font:
    600 10px/1.2 ui-monospace,
    monospace;
  letter-spacing: 0.18em;
  margin-top: 6px;
}
.links {
  display: flex;
}
.links a {
  display: grid;
  place-items: center;
  min-width: 118px;
  padding: 20px;
  border-left: var(--line);
  font:
    700 12px/1 ui-monospace,
    monospace;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.links a[aria-current="page"],
.links a:hover {
  background: var(--acid);
}
main {
  overflow: hidden;
}
.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: var(--line);
}
.hero-main {
  padding: clamp(36px, 6vw, 92px) 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eyebrow {
  font:
    700 11px/1.3 ui-monospace,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero-identity {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 0;
  transform: translateX(clamp(18px, 3.5vw, 54px));
}
.hero-identity h1 {
  margin: 0;
  font-size: clamp(92px, 17vw, 245px);
}
.hero h1,
.page-head h1 {
  font-size: clamp(52px, 10.7vw, 164px);
  line-height: 0.78;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  margin: 0.5em 0;
}
.hero .hero-identity h1 {
  margin: 0;
  font-size: clamp(92px, 17vw, 245px);
}
.hero h1 span {
  display: block;
  transform: translateX(clamp(16px, 7vw, 110px));
  -webkit-text-stroke: 1px var(--ink);
  color: transparent;
}
.lede {
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  max-width: 780px;
}
.hero-rail {
  border-left: var(--line);
  display: flex;
  flex-direction: column;
}
.rail-block {
  padding: 24px;
  min-height: 33.33%;
  border-bottom: var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rail-block:last-child {
  border: 0;
  background: var(--acid);
}
.rail-block b {
  font-size: clamp(26px, 3vw, 48px);
  letter-spacing: -0.05em;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.service-actions {
  padding: 24px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 12px 18px;
  border: var(--line);
  background: var(--ink);
  color: var(--paper);
  font:
    700 12px/1 ui-monospace,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.button.alt {
  background: transparent;
  color: var(--ink);
}
.button:hover {
  background: var(--acid);
  color: var(--ink);
}
.section {
  border-bottom: var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: var(--line);
}
.section-head > * {
  padding: 24px;
}
.section-head h2 {
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  margin: 0;
  border-left: var(--line);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.card {
  position: relative;
  padding: 28px;
  min-height: 360px;
  border-right: var(--line);
  border-bottom: var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:nth-child(2n) {
  border-right: 0;
}
.card::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 14px;
  right: 0;
  top: 0;
  background: var(--acid);
}
.card.building::before {
  background: var(--signal);
}
.card h3 {
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0.6em 0;
}
.meta {
  font:
    700 11px/1.4 ui-monospace,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proof {
  max-width: 48ch;
}
.service-list {
  counter-reset: s;
  display: grid;
}
.service {
  counter-increment: s;
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  border-bottom: var(--line);
  min-height: 180px;
}
.service:last-child {
  border: 0;
}
.service > * {
  padding: 24px;
}
.service::before {
  content: "0" counter(s);
  padding: 24px;
  font:
    700 12px ui-monospace,
    monospace;
}
.service h3 {
  border-left: var(--line);
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.service p {
  border-left: var(--line);
  margin: 0;
}
.cta {
  background: var(--acid);
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 420px;
}
.cta > * {
  padding: 32px;
}
.cta h2 {
  font-size: clamp(54px, 9vw, 140px);
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  margin: 0;
}
.cta aside {
  border-left: var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 24px;
  gap: 24px;
  font:
    600 11px/1.5 ui-monospace,
    monospace;
  text-transform: uppercase;
}
.footer nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.page-head {
  padding: clamp(40px, 8vw, 110px) 24px;
  border-bottom: var(--line);
}
.page-head h1 {
  margin: 0.35em 0;
}
.legal {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.legal > aside,
.legal > article {
  padding: clamp(24px, 5vw, 72px);
}
.legal article {
  border-left: var(--line);
  max-width: 900px;
}
.legal h2 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 2em 0 0.5em;
}
.legal h2:first-child {
  margin-top: 0;
}
.note {
  padding: 16px;
  background: var(--acid);
  border: var(--line);
  font:
    650 14px/1.4 ui-monospace,
    monospace;
}
.inverse {
  background: var(--ink);
  color: var(--paper);
}
@media (max-width: 850px) {
  .shell {
    border: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .nav {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .links {
    border-top: var(--line);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-width: 0;
    width: 100%;
  }
  .links a {
    min-width: 0;
    border-left: 0;
    border-right: var(--line);
    padding: 16px 5px;
    font-size: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-main {
    min-height: 72vh;
  }
  .hero-rail {
    border-left: 0;
    border-top: var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .rail-block {
    border-bottom: 0;
    border-right: var(--line);
    min-height: 160px;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .section-head h2 {
    border-left: 0;
    border-top: var(--line);
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .grid > .building {
    order: 1;
  }
  .card,
  .card:nth-child(2n) {
    border-right: 0;
  }
  .service {
    grid-template-columns: 64px 1fr;
  }
  .service p {
    grid-column: 2;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .cta aside {
    border-left: 0;
    border-top: var(--line);
  }
  .legal {
    grid-template-columns: 1fr;
  }
  .legal article {
    border-left: 0;
    border-top: var(--line);
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  body {
    font-size: 16px;
  }
  .brand {
    padding: 14px 16px;
  }
  .links a {
    font-size: 8.5px;
    letter-spacing: 0.03em;
  }
  .hero-main,
  .section-head > *,
  .card,
  .service > *,
  .cta > *,
  .page-head,
  .legal > aside,
  .legal > article {
    padding: 20px;
  }
  .hero-main {
    min-height: auto;
    gap: 48px;
  }
  .hero .hero-identity h1 {
    font-size: 18vw;
  }
  .hero-identity {
    width: auto;
    transform: translateX(0);
  }
  .hero h1 span {
    transform: translateX(5vw);
  }
  .hero-rail {
    grid-template-columns: 1fr;
  }
  .rail-block {
    min-height: 120px;
    border-right: 0;
    border-bottom: var(--line);
  }
  .service {
    grid-template-columns: 48px 1fr;
  }
  .footer {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero h1 span {
    transform: none;
  }
}
