:root {
  --ink: #0b1720;
  --ink-soft: #25323a;
  --paper: #f4f1e9;
  --paper-warm: #e9e4d8;
  --acid: #dfff52;
  --acid-soft: #ebff93;
  --white: #fffef9;
  --line: rgba(11, 23, 32, 0.18);
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 23, 32, 0.86);
  color: var(--white);
  backdrop-filter: blur(16px);
  transition: height 250ms ease, background 250ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(11, 23, 32, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand em {
  color: #a9b1b5;
  font-size: 0.72em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  grid-template: 1fr 1fr / 1fr 1fr;
  gap: 2px;
  transform: rotate(45deg);
}

.brand-mark span {
  border-radius: 9px 2px 2px;
  background: var(--acid);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.8rem);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 0.5rem 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 1.4rem;
  padding: 0 1rem 0 1.25rem;
  background: var(--acid);
  color: var(--ink);
}

.nav-cta span {
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(980px, 100svh);
  grid-template: auto 1fr auto / minmax(0, 1.06fr) minmax(400px, 0.94fr);
  overflow: hidden;
  padding: 92px var(--pad) 0;
  background: var(--ink);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-position: -1px -1px;
  background-size: 120px 120px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero::before {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(223, 255, 82, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 160px rgba(223, 255, 82, 0.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 840px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 10vh, 9rem) clamp(2rem, 5vw, 6rem) clamp(4rem, 9vh, 8rem) 0;
}

.eyebrow {
  display: flex;
  max-width: 560px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 2.5rem;
  color: #b9c0c4;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span:first-child::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
  content: "";
}

.hero h1,
.section h2,
.research h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(4rem, 7.3vw, 8.4rem);
}

.hero h1 em,
.section h2 em,
.research h2 em {
  color: var(--acid);
  font-style: italic;
  font-weight: 400;
}

.hero-intro {
  max-width: 640px;
  margin: 2.4rem 0 0;
  color: #c7cdd0;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1.4rem 0 1.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--acid);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
  border-bottom: 1px solid #566168;
  padding: 0.55rem 0;
  color: #c7cdd0;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 0 8vh 2vw;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 1.2rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #9da7ac;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-visual svg {
  width: 100%;
  overflow: visible;
}

.chart-grid path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.chart-area {
  fill: url(#area);
}

.chart-line {
  fill: none;
  filter: url(#glow);
  stroke: var(--acid);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 4;
  animation: draw-line 1.8s 0.5s ease forwards;
}

.chart-point {
  fill: var(--acid);
  opacity: 0;
  animation: reveal-point 400ms 2.2s ease forwards, pulse 2.4s 2.6s ease-in-out infinite;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes reveal-point {
  to { opacity: 1; }
}

@keyframes pulse {
  50% { filter: drop-shadow(0 0 14px var(--acid)); }
}

.visual-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: -2.5rem;
  padding-left: 2rem;
}

.visual-note > span {
  color: var(--acid);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: italic;
}

.visual-note p {
  margin: 0.45rem 0 0;
  color: #c7cdd0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-footer {
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3.5rem);
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #a8b0b4;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-footer i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--acid);
}

.section {
  padding: clamp(6rem, 11vw, 11rem) var(--pad);
}

.perspective {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  color: #68737a;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span:first-child {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.perspective-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: end;
  margin-top: 4rem;
}

.perspective h2,
.about h2 {
  font-size: clamp(3.4rem, 6.4vw, 7rem);
}

.perspective h2 em,
.about h2 em {
  color: #687b0b;
}

.perspective-body p {
  color: #59646a;
}

.perspective-body .lead,
.about-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  min-height: 260px;
  padding: 2rem 2rem 2.5rem 0;
}

.principles article + article {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.principle-number {
  display: block;
  margin-bottom: 4rem;
  color: #7b858a;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
}

.principles h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.principles p {
  max-width: 300px;
  margin: 0;
  color: #647077;
  font-size: 0.9rem;
}

.research {
  padding-bottom: 0;
  background: var(--ink);
  color: var(--white);
}

.research-heading {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 1fr 1.25fr 0.65fr;
  gap: 3rem;
  align-items: end;
  margin: 0 auto clamp(5rem, 8vw, 8rem);
}

.section-label-light {
  align-self: start;
  color: #8f999e;
}

.research h2 {
  font-size: clamp(4rem, 7vw, 7.8rem);
}

.research-heading > p {
  max-width: 280px;
  margin: 0;
  color: #aab2b6;
  font-size: 0.92rem;
}

.article-list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.article-row {
  position: relative;
  display: grid;
  min-height: 300px;
  grid-template-columns: 280px minmax(160px, 0.42fr) minmax(320px, 1fr) 60px;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: color 250ms ease;
}

.article-row::before {
  position: absolute;
  z-index: 0;
  inset: 0 calc(-1 * var(--pad));
  background: var(--acid);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 350ms cubic-bezier(0.7, 0, 0.2, 1);
}

.article-row:hover,
.article-row:focus-visible {
  color: var(--ink);
}

.article-row:hover::before,
.article-row:focus-visible::before {
  transform: scaleY(1);
}

.article-row > * {
  position: relative;
  z-index: 1;
}

.article-visual {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #172831;
}

.article-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
}

.axis-label {
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  left: 1rem;
  color: var(--acid);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.visual-macro svg {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.visual-macro path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
}

.visual-macro polyline {
  fill: none;
  stroke: var(--acid);
  stroke-width: 4;
}

.visual-nuclear {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #263b3d 0, #101e27 62%);
}

.orbit {
  position: absolute;
  width: 145px;
  height: 55px;
  border: 1px solid var(--acid);
  border-radius: 50%;
}

.orbit-one { transform: rotate(25deg); }
.orbit-two { transform: rotate(-35deg); }

.nucleus {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 25px var(--acid);
}

.visual-chip {
  display: grid;
  place-items: center;
  background-color: #142630;
  background-image: linear-gradient(rgba(223, 255, 82, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 255, 82, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}

.chip-core {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 1px solid var(--acid);
  background: var(--ink);
  box-shadow: 0 0 0 12px rgba(223, 255, 82, 0.06), 0 0 40px rgba(223, 255, 82, 0.12);
  color: var(--acid);
  font-family: var(--serif);
  letter-spacing: 0.06em;
}

.article-meta {
  align-self: start;
  padding-top: 0.3rem;
}

.article-meta span {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-meta span + span {
  margin-top: 0.65rem;
  color: #89949a;
  transition: color 250ms ease;
}

.article-row:hover .article-meta span + span,
.article-row:focus-visible .article-meta span + span {
  color: #3c494f;
}

.article-copy h3 {
  max-width: 680px;
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.article-copy p {
  max-width: 620px;
  margin: 0;
  color: #9da7ac;
  font-size: 0.9rem;
  transition: color 250ms ease;
}

.article-row:hover .article-copy p,
.article-row:focus-visible .article-copy p {
  color: #3c494f;
}

.article-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: border-color 250ms ease, transform 250ms ease;
}

.article-row:hover .article-arrow,
.article-row:focus-visible .article-arrow {
  border-color: var(--ink);
  transform: rotate(45deg);
}

.about {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(4rem, 10vw, 11rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.about-mark {
  position: relative;
  display: grid;
  width: min(34vw, 480px);
  aspect-ratio: 1;
  grid-template: 1fr 1fr / 1fr 1fr;
  gap: 14px;
  margin: auto;
  transform: rotate(45deg);
}

.about-mark::before {
  position: absolute;
  inset: -12%;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.about-mark span {
  border-radius: 56% 8% 8%;
  background: var(--acid);
}

.about-copy .section-label {
  margin-bottom: 3rem;
}

.about-copy > p:not(.lead) {
  max-width: 650px;
  color: #5b666c;
}

.button-dark {
  margin-top: 1.5rem;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #21313a;
}

.disclaimer {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 3rem;
  padding: 2.5rem var(--pad);
  border-top: 1px solid var(--line);
  color: #677178;
  font-size: 0.72rem;
}

.disclaimer p {
  max-width: 900px;
  margin: 0;
}

.disclaimer strong {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 5rem var(--pad) 1.8rem;
  background: #071118;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  min-height: 180px;
}

.brand-footer {
  font-size: 1.25rem;
}

.footer-top p {
  margin: 0;
  color: #a6afb4;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.footer-up {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid #3d474d;
  border-radius: 50%;
  color: var(--acid);
  font-size: 1.2rem;
  transition: border-color 200ms ease, transform 200ms ease;
}

.footer-up:hover,
.footer-up:focus-visible {
  border-color: var(--acid);
  transform: translateY(-4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #29333a;
  color: #778289;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 900px;
    padding-right: 0;
  }

  .hero-visual {
    display: none;
  }

  .research-heading {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .research-heading > p {
    grid-column: 2;
  }

  .article-row {
    grid-template-columns: 220px 160px minmax(300px, 1fr) 52px;
    gap: 2rem;
  }

  .article-visual {
    height: 160px;
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-icon {
    position: relative;
    width: 22px;
    height: 12px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  .menu-icon::after {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    border-top: 1px solid currentColor;
    content: "";
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100svh - 76px);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: var(--pad);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 1.3rem 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .nav-cta {
    margin-top: 2rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 14vw, 6.2rem);
  }

  .hero-copy {
    padding-top: 5rem;
  }

  .perspective-content,
  .about {
    grid-template-columns: 1fr;
  }

  .perspective-content {
    align-items: start;
  }

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

  .principles article {
    min-height: auto;
    padding: 2rem 0;
  }

  .principles article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .principle-number {
    margin-bottom: 2rem;
  }

  .research-heading {
    grid-template-columns: 1fr;
  }

  .research-heading > p {
    grid-column: 1;
  }

  .article-row {
    grid-template-columns: 0.45fr 1fr 48px;
    min-height: auto;
    gap: 1.5rem;
    padding: 2rem 0 2.5rem;
  }

  .article-visual {
    grid-column: 1 / -1;
    width: 100%;
    height: 220px;
  }

  .article-meta {
    grid-column: 1;
  }

  .article-copy {
    grid-column: 2;
  }

  .article-arrow {
    grid-column: 3;
  }

  .about-mark {
    width: min(70vw, 420px);
  }

  .about-copy {
    order: -1;
  }

  .disclaimer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }

  .footer-top p {
    grid-row: 2;
  }

  .footer-up {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 0.55rem;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .brand em {
    display: none;
  }

  .hero-copy {
    justify-content: flex-start;
    padding-top: 4rem;
  }

  .eyebrow span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-footer {
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.56rem;
  }

  .hero-footer i {
    display: none;
  }

  .perspective h2,
  .about h2,
  .research h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .article-row {
    grid-template-columns: 1fr 44px;
  }

  .article-meta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .article-meta span + span {
    margin-top: 0;
  }

  .article-copy {
    grid-column: 1;
  }

  .article-copy h3 {
    font-size: 2.35rem;
  }

  .article-copy p {
    display: none;
  }

  .article-arrow {
    grid-column: 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.65rem;
  }
}

@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;
  }

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