:root {
  --ink: #101114;
  --night: #0b0c0f;
  --night-soft: #13151a;
  --paper: #f5f3ed;
  --paper-deep: #e9e5dc;
  --muted: #6c6d69;
  --line: #d2cec4;
  --lime: #c8ff3d;
  --coral: #ff6b4a;
  --lavender: #a9a4ff;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 64px, 1376px);
  height: 88px;
  color: white;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
  transform: translateX(-50%);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 600;
}

.wordmark > span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

nav {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 100px;
  background: rgb(255 255 255 / 5%);
  backdrop-filter: blur(10px);
}

nav a {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  transition: background 180ms ease;
}

nav a:hover {
  background: rgb(255 255 255 / 12%);
}

.header-link {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.header-link:hover {
  color: var(--night);
  background: var(--lime);
}

.header-link span {
  margin-left: 6px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  grid-template-rows: 1fr auto;
  gap: 35px 6vw;
  min-height: 100svh;
  padding: 156px max(32px, calc((100vw - 1376px) / 2)) 30px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 35%, rgb(92 83 255 / 13%), transparent 26%),
    radial-gradient(circle at 12% 88%, rgb(200 255 61 / 7%), transparent 24%),
    var(--night);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 2.2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.2%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  content: "";
}

.hero-copy,
.hero-visual,
.hero-foot {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 810px;
  min-width: 0;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #b8bab5;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgb(200 255 61 / 10%);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(58px, 6.1vw, 96px);
  font-weight: 500;
  letter-spacing: -0.064em;
  line-height: 0.92;
}

.hero-emphasis {
  display: block;
  color: var(--lime);
}

.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

h1 .serif {
  display: block;
  color: #f4f1e8;
  letter-spacing: -0.045em;
}

.hero-intro {
  max-width: 625px;
  margin: 30px 0 0;
  color: #a8aaa7;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button-primary {
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 0 0 0 rgb(200 255 61 / 20%);
}

.button-primary:hover {
  box-shadow: 0 0 0 7px rgb(200 255 61 / 10%);
  transform: translateY(-2px);
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid #777973;
  font-size: 12px;
}

.hero-proof {
  display: flex;
  gap: clamp(25px, 4vw, 55px);
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.hero-proof div {
  display: grid;
  gap: 4px;
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.hero-proof span {
  color: #7d7f7a;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  align-self: center;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  justify-self: end;
  border: 1px solid rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 3.5%);
  box-shadow: 0 40px 100px rgb(0 0 0 / 35%);
  backdrop-filter: blur(8px);
  transform: rotate(1.5deg);
}

.visual-topbar,
.visual-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-topbar {
  height: 47px;
  padding: 0 17px;
  border-bottom: 1px solid rgb(255 255 255 / 11%);
  color: #7c7f78;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.live-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a6a9a2;
}

.live-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px var(--lime);
}

.signal-map {
  position: relative;
  aspect-ratio: 1.14;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 34px 34px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  border: 1px solid rgb(169 164 255 / 25%);
  border-radius: 50%;
}

.orbit-one {
  transform: translate(-50%, -50%) rotate(30deg) scaleX(0.52);
}

.orbit-two {
  transform: translate(-50%, -50%) rotate(-30deg) scaleX(0.52);
}

.orbit-three {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.52);
}

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border: 1px solid rgb(200 255 61 / 55%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgb(200 255 61 / 14%), transparent 66%),
    #101318;
  box-shadow:
    0 0 0 18px rgb(200 255 61 / 3%),
    0 0 55px rgb(200 255 61 / 11%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.core span {
  color: #8d9089;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.core strong {
  margin: 0;
  color: var(--lime);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 2px;
  color: #aaaca6;
  background: #15171b;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.node i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lavender);
}

.node-a {
  top: 12%;
  left: 43%;
}

.node-b {
  top: 43%;
  right: 5%;
}

.node-b i {
  background: var(--lime);
}

.node-c {
  right: 17%;
  bottom: 10%;
}

.node-c i {
  background: var(--coral);
}

.node-d {
  bottom: 22%;
  left: 5%;
}

.visual-readout {
  border-top: 1px solid rgb(255 255 255 / 11%);
  border-bottom: 1px solid rgb(255 255 255 / 11%);
}

.visual-readout div {
  display: grid;
  width: 50%;
  gap: 5px;
  padding: 15px 17px;
}

.visual-readout div + div {
  border-left: 1px solid rgb(255 255 255 / 11%);
}

.visual-readout span {
  color: #696c66;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.visual-readout strong {
  font-size: 10px;
  font-weight: 500;
}

.visual-command {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 17px;
  color: #aeb0aa;
  font-family: var(--mono);
  font-size: 9px;
}

.visual-command > span {
  color: var(--lime);
}

.visual-command p {
  margin: 0;
}

.hero-foot {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 13%);
}

.hero-foot > span:first-child,
.scroll-cue {
  color: #6f716c;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
  color: #bec0bb;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.section-pad {
  padding: 130px max(32px, calc((100vw - 1376px) / 2));
}

.eyebrow,
.section-index,
.project-type,
.article > p,
.about-facts span {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.statement {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 6vw;
  color: var(--paper);
  background: #17181b;
}

.statement-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 410px;
  padding-right: 35px;
  border-right: 1px solid #333438;
}

.statement-label .section-index {
  color: #777973;
}

.statement-label > span {
  color: #777973;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.statement-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

blockquote {
  max-width: 1050px;
  margin: 0 0 95px;
  font-family: var(--sans);
  font-size: clamp(45px, 5.4vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

blockquote em {
  display: block;
  margin-top: 8px;
  color: var(--lime);
  font-family: var(--serif);
  font-weight: 400;
}

.statement-note {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 450px);
  gap: 40px;
}

.rule {
  height: 1px;
  margin-top: 9px;
  background: #3c3d40;
}

.statement-note p {
  margin: 0;
  color: #a6a8a2;
  font-size: 13px;
  line-height: 1.75;
}

.work {
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  padding-top: 72px;
  padding-bottom: 50px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 60px;
  align-items: end;
  padding-bottom: 65px;
}

.work .section-heading {
  padding-bottom: 35px;
}

.section-heading h2,
.writing-intro h2,
.about-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.section-heading > p,
.writing-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 14px;
}

.project {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #efebe2;
  transition:
    color 250ms ease,
    background 250ms ease,
    transform 250ms ease;
}

.project::before {
  position: absolute;
  top: -90px;
  right: -75px;
  width: 230px;
  height: 230px;
  border: 1px solid rgb(16 17 20 / 11%);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgb(16 17 20 / 3%),
    0 0 0 70px rgb(16 17 20 / 2%);
  content: "";
  transition: transform 450ms ease;
}

.project:nth-child(2) {
  color: white;
  background: #25245e;
}

.project:nth-child(3) {
  background: #d6ff67;
}

.project:nth-child(4) {
  color: white;
  background: #25272a;
}

.project:hover {
  transform: translateY(-5px);
}

.project:hover::before {
  transform: scale(1.18);
}

.project-number {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.project-main {
  position: relative;
  z-index: 1;
  max-width: 550px;
}

.project-type {
  color: inherit;
  opacity: 0.55;
}

.project-main h3 {
  margin: 10px 0 12px;
  font-size: clamp(29px, 2.7vw, 43px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.project-main > p:not(.project-type) {
  max-width: 580px;
  margin: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.68;
}

.project-main ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.project-main li {
  padding: 6px 9px;
  border: 1px solid currentcolor;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
}

.project-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentcolor;
  border-radius: 50%;
  font-size: 17px;
  opacity: 0.5;
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.project:hover .project-arrow {
  opacity: 1;
  transform: rotate(8deg);
}

.all-work {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.all-work span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  text-transform: uppercase;
}

.all-work b {
  margin-left: 16px;
  color: var(--ink);
  font-size: 13px;
}

.writing {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) 1.32fr;
  gap: 9vw;
  background: var(--paper-deep);
}

.writing-intro {
  position: sticky;
  top: 50px;
  align-self: start;
}

.writing-intro > p:last-child {
  max-width: 340px;
  margin-top: 28px;
}

.article {
  position: relative;
  display: grid;
  grid-template-columns: 115px 1fr 25px;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid #c5c0b5;
  transition: padding 200ms ease;
}

.article:hover {
  padding-right: 8px;
  padding-left: 8px;
}

.article h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 39px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.article > span {
  grid-column: 2;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.article > b {
  grid-column: 3;
  grid-row: 1;
  font-size: 18px;
  font-weight: 400;
  transition: transform 200ms ease;
}

.article:hover > b {
  transform: translate(4px, -4px);
}

.article-cta {
  margin-top: 30px;
  padding: 30px;
  border: 0;
  background: var(--lime);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) 1.24fr;
  gap: 9vw;
  align-items: center;
}

.photo-frame {
  position: relative;
  max-width: 410px;
  padding: 12px;
  border: 1px solid var(--line);
  background: white;
  transform: rotate(-2deg);
}

.photo-frame::before {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 95px;
  height: 25px;
  background: rgb(200 255 61 / 72%);
  content: "";
  transform: translateX(-50%) rotate(2deg);
}

.photo-frame::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 58%;
  height: 58%;
  background: var(--lavender);
  content: "";
}

.photo-frame img {
  display: block;
  width: 100%;
  filter: grayscale(100%) contrast(1.05);
}

.about-photo > p {
  margin: 38px 0 0;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.8;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 38px;
}

.about-copy > p:not(.section-index) {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.35;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.about-facts p {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.5;
}

.contact {
  position: relative;
  padding: 115px max(32px, calc((100vw - 1376px) / 2)) 65px;
  overflow: hidden;
  color: white;
  background: #29265f;
}

.contact::after {
  position: absolute;
  top: -230px;
  right: -150px;
  width: 620px;
  height: 620px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgb(255 255 255 / 3%),
    0 0 0 160px rgb(255 255 255 / 2%);
  content: "";
}

.contact .section-index {
  color: #aaa6d0;
}

.contact h2 {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 75px 0 95px;
  font-size: clamp(60px, 7.5vw, 112px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.contact-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-top: 30px;
  border-top: 1px solid rgb(255 255 255 / 25%);
}

.contact-bottom > p {
  max-width: 440px;
  margin: 0;
  color: #b7b4d2;
  font-size: 13px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.contact-links a {
  padding: 11px 15px;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 100px;
  font-size: 10px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.contact-links a:hover {
  color: var(--night);
  background: var(--lime);
}

.contact-links span {
  margin-left: 5px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 25px max(32px, calc((100vw - 1376px) / 2));
  color: #747670;
  background: var(--night);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer a {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 40px, 1376px);
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 135px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-visual {
    width: min(100%, 600px);
    margin: 45px auto;
    justify-self: center;
  }

  .statement {
    grid-template-columns: 1fr;
  }

  .statement-label {
    min-height: 0;
    flex-direction: row;
    padding: 0 0 25px;
    border-right: 0;
    border-bottom: 1px solid #333438;
  }

  .statement-label > span {
    writing-mode: initial;
  }

  .section-heading,
  .writing,
  .about {
    grid-template-columns: 1fr;
  }

  .work {
    display: block;
    min-height: 0;
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .writing {
    gap: 55px;
  }

  .writing-intro {
    position: static;
  }

  .about-photo {
    max-width: 420px;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
  }

  .contact-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 72px;
  }

  .wordmark-name {
    display: none;
  }

  .hero {
    padding: 120px 20px 25px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(49px, 13.2vw, 64px);
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-proof {
    gap: 22px;
  }

  .hero-proof strong {
    font-size: 19px;
  }

  .hero-visual {
    margin: 35px auto 20px;
  }

  .signal-map {
    height: 340px;
    aspect-ratio: auto;
  }

  .node {
    font-size: 6px;
  }

  .core {
    width: 105px;
    height: 105px;
  }

  .hero-foot {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding: 88px 20px;
  }

  .work {
    padding: 88px 20px;
  }

  blockquote {
    margin: 0 0 60px;
    font-size: 40px;
  }

  .statement-note {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 25px;
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .project {
    min-height: 380px;
    padding: 25px;
  }

  .all-work span {
    display: none;
  }

  .article {
    grid-template-columns: 1fr 20px;
    gap: 12px;
  }

  .article > p {
    grid-column: 1 / -1;
  }

  .article h3 {
    grid-column: 1;
  }

  .article > span {
    grid-column: 1;
  }

  .article > b {
    grid-column: 2;
    grid-row: 2;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 85px 20px 55px;
  }

  .contact h2 {
    margin: 55px 0 75px;
  }

  .contact-links {
    flex-wrap: wrap;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
    padding: 24px 20px;
  }
}
