:root {
  color-scheme: dark;
  --bg: #04070c;
  --surface: rgba(13, 17, 26, 0.78);
  --surface-strong: rgba(18, 24, 34, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(177, 207, 255, 0.18);
  --line-strong: rgba(121, 232, 175, 0.42);
  --text: #f3f7fb;
  --muted: #aab6c5;
  --subtle: #788596;
  --accent: #8df2a7;
  --accent-2: #5bb5ff;
  --accent-3: #a48cff;
  --danger-soft: rgba(141, 242, 167, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
}

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

#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 10%, rgba(141, 242, 167, 0.11), transparent 32%),
    radial-gradient(circle at 75% 18%, rgba(91, 181, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.12), rgba(4, 7, 12, 0.96) 70%);
  pointer-events: none;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  margin: 14px 0 34px;
  padding: 12px 14px 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(5, 9, 15, 0.82);
  border-color: var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header[data-compact="true"] {
  opacity: 0.88;
  transform: translateY(-4px);
}

.site-header[data-compact="true"]:hover,
.site-header:focus-within {
  opacity: 1;
  transform: translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(141, 242, 167, 0.12), rgba(91, 181, 255, 0.08));
}

.brand-name {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover,
.nav a[aria-current="true"] {
  color: var(--text);
  background: var(--surface-soft);
}

main {
  min-height: 70vh;
}

main:focus {
  outline: none;
}

.page-grid,
.split-section,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.hero {
  min-height: clamp(560px, 78vh, 760px);
  padding: clamp(86px, 9vw, 128px) 0 clamp(44px, 6vw, 82px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.lede,
.page-hero p,
.split-section > p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.subline {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: rgba(141, 242, 167, 0.58);
  background: linear-gradient(135deg, rgba(141, 242, 167, 0.95), rgba(91, 181, 255, 0.8));
  color: #06100d;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.hero-panel {
  position: relative;
  min-height: 470px;
  border: 0;
  border-radius: var(--radius);
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(141, 242, 167, 0.1), transparent 28%),
    linear-gradient(225deg, rgba(91, 181, 255, 0.12), transparent 35%),
    radial-gradient(circle at 72% 32%, rgba(91, 181, 255, 0.14), transparent 42%);
  box-shadow: none;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(141, 242, 167, 0.18);
  border-radius: 50%;
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-panel::after {
  inset: 24% 5% 18% 22%;
  border-color: rgba(91, 181, 255, 0.18);
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

.orbital-card {
  position: absolute;
  inset: auto 26px 26px 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(177, 207, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(3, 7, 12, 0.38);
  backdrop-filter: blur(14px);
}

.map-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(141, 242, 167, 0.22);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: rgba(4, 7, 12, 0.42);
  box-shadow: 0 0 38px rgba(141, 242, 167, 0.08);
}

.node-memory {
  left: 11%;
  top: 20%;
}

.node-context {
  right: 15%;
  top: 17%;
  border-color: rgba(91, 181, 255, 0.24);
  color: var(--accent-2);
}

.node-agent {
  left: 28%;
  bottom: 32%;
  border-color: rgba(164, 140, 255, 0.24);
  color: var(--accent-3);
}

.node-recall {
  right: 28%;
  bottom: 38%;
}

.orbital-card span {
  min-height: 48px;
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.84rem;
}

.section {
  margin: 48px 0;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.split-section {
  align-items: start;
}

.editorial-row {
  position: relative;
  margin: 58px 0;
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(177, 207, 255, 0.1);
}

.editorial-row::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(141, 242, 167, 0.5), transparent 42%);
}

.home-continuity {
  border: 0;
  margin-bottom: 76px;
}

.home-continuity::before,
.home-continuity::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(270deg, rgba(141, 242, 167, 0.62) 0%, rgba(91, 181, 255, 0.24) 70%, transparent 100%);
}

.home-continuity::before {
  top: 0;
}

.home-continuity::after {
  bottom: 0;
}

.cards {
  display: grid;
  gap: 18px;
  margin: 48px 0;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 72px;
  border-top: 0;
  border-bottom: 0;
}

.principle {
  padding: 30px 26px 32px 0;
  border-right: 1px solid rgba(177, 207, 255, 0.12);
}

.principle:last-child {
  border-right: 0;
}

.principle p {
  color: var(--muted);
}

.card,
.work-card,
.bio-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 16, 24, 0.78);
  backdrop-filter: blur(16px);
}

.card p,
.work-card p,
.bio-card p {
  color: var(--muted);
}

.callout {
  background:
    linear-gradient(135deg, rgba(141, 242, 167, 0.1), transparent 38%),
    linear-gradient(225deg, rgba(164, 140, 255, 0.1), transparent 38%),
    var(--surface-strong);
}

.editorial-callout {
  position: relative;
  margin: 58px 0;
  padding: clamp(34px, 5vw, 60px) 0 clamp(34px, 5vw, 60px) clamp(30px, 5vw, 56px);
  border: 0;
  background:
    linear-gradient(90deg, rgba(141, 242, 167, 0.08), transparent 52%),
    transparent;
  box-shadow: none;
}

.editorial-callout::before,
.editorial-callout::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.editorial-callout::before {
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(141, 242, 167, 0.78), rgba(91, 181, 255, 0.24), rgba(141, 242, 167, 0.28));
}

.editorial-callout::after {
  inset: 0 0 0 0;
  background:
    linear-gradient(90deg, rgba(141, 242, 167, 0.5), rgba(91, 181, 255, 0.16) 42%, transparent 70%) top left / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(141, 242, 167, 0.32), rgba(91, 181, 255, 0.12) 42%, transparent 70%) bottom left / 100% 1px no-repeat;
}

.editorial-callout h2,
.editorial-callout p {
  max-width: 780px;
}

.page-hero {
  max-width: 900px;
  padding: clamp(104px, 10vw, 142px) 0 28px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 74px);
  max-width: none;
  align-items: start;
}

.about-hero-copy {
  max-width: 900px;
}

.about-contact {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}

.work-hero {
  max-width: none;
}

.work-hero p {
  max-width: 880px;
}

.work-hero h1 {
  max-width: 1160px;
}

.page-hero h1 {
  font-size: clamp(3rem, 5.7vw, 5.8rem);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 48px;
  align-items: start;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: grid;
  gap: 22px;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.work-card:nth-child(2)::before {
  background: transparent;
}

.work-card > * {
  position: relative;
}

.work-card-featured {
  grid-column: 1 / span 6;
  grid-row: 1;
  justify-self: start;
  width: 100%;
  border: 0;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 24, 0.9) 0%, rgba(12, 16, 24, 0.7) 25%, rgba(12, 16, 24, 0) 50%),
    linear-gradient(90deg, rgba(141, 242, 167, 0.13) 0%, rgba(91, 181, 255, 0.06) 25%, transparent 50%);
  backdrop-filter: none;
}

.work-card-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(141, 242, 167, 0.62), rgba(91, 181, 255, 0.18) 25%, transparent 50%) top left / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(141, 242, 167, 0.38), rgba(91, 181, 255, 0.12) 25%, transparent 50%) bottom left / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(141, 242, 167, 0.5), rgba(91, 181, 255, 0.1), rgba(141, 242, 167, 0.18)) top left / 1px 100% no-repeat;
}

.work-card-research {
  grid-column: 7 / span 6;
  grid-row: 1;
  justify-self: end;
  width: 100%;
  margin-top: clamp(360px, 38vw, 500px);
  padding: 28px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(270deg, rgba(12, 16, 24, 0.86) 0%, rgba(12, 16, 24, 0.62) 25%, rgba(12, 16, 24, 0) 50%),
    linear-gradient(270deg, rgba(91, 181, 255, 0.12) 0%, rgba(141, 242, 167, 0.05) 25%, transparent 50%);
  backdrop-filter: none;
}

.work-card-research::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(270deg, rgba(91, 181, 255, 0.44), rgba(141, 242, 167, 0.14) 25%, transparent 50%) top right / 100% 1px no-repeat,
    linear-gradient(270deg, rgba(91, 181, 255, 0.26), rgba(141, 242, 167, 0.1) 25%, transparent 50%) bottom right / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(91, 181, 255, 0.34), rgba(141, 242, 167, 0.08), rgba(91, 181, 255, 0.16)) top right / 1px 100% no-repeat;
}

.work-card-featured h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.work-card-research h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.work-card-details {
  display: grid;
  gap: 18px;
}

.intent {
  color: var(--text) !important;
}

.alpha-note {
  margin: 22px 0 26px;
  padding: 16px;
  border: 1px solid rgba(141, 242, 167, 0.22);
  border-radius: 7px;
  background: rgba(141, 242, 167, 0.075);
  color: var(--muted) !important;
}

.work-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.work-card li {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.text-link {
  display: inline-flex;
  color: var(--accent);
  font-weight: 700;
}

.text-link::after {
  content: " ->";
}

.layered {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
}

.stacked-copy p {
  color: var(--muted);
}

.memory-section {
  margin: 64px 0;
  padding: clamp(26px, 4.5vw, 52px) 0;
  border-top: 1px solid rgba(177, 207, 255, 0.18);
  border-bottom: 1px solid rgba(177, 207, 255, 0.1);
}

.memory-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.memory-metrics span {
  padding: 9px 11px;
  border: 1px solid rgba(177, 207, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.03);
}

.about-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  margin: 28px 0 38px;
}

.about-proof {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(520px, 54vw, 680px);
  padding: clamp(34px, 5vw, 68px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(141, 242, 167, 0.1), transparent 48%),
    linear-gradient(225deg, rgba(91, 181, 255, 0.11), transparent 44%),
    radial-gradient(circle at 22% 18%, rgba(141, 242, 167, 0.12), transparent 34%);
  border-left: 1px solid rgba(141, 242, 167, 0.22);
}

.proof-kicker {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-proof h2 {
  max-width: 520px;
  margin: 16px 0 30px;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.proof-list span {
  padding: 12px;
  border-bottom: 1px solid rgba(177, 207, 255, 0.12);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.bio-card {
  grid-column: span 4;
  align-content: center;
  padding: clamp(24px, 3vw, 36px);
  border-color: rgba(177, 207, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(141, 242, 167, 0.045)),
    rgba(18, 25, 34, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.2);
}

.bio-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(20px, 3vw, 34px);
  row-gap: 0;
  margin: 26px 0 48px;
  align-items: start;
  grid-auto-flow: row dense;
}

.about-focus-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: clamp(24px, 3vw, 36px);
  border: 0;
  border-radius: 6px;
  background: transparent;
}

.about-focus-card + .about-focus-card {
  margin-top: clamp(-34px, -3vw, -18px);
}

.about-focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-focus-card p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.about-focus-card-primary {
  grid-column: 1 / span 6;
  background:
    linear-gradient(90deg, rgba(12, 16, 24, 0.9) 0%, rgba(12, 16, 24, 0.66) 16%, rgba(12, 16, 24, 0) 30%),
    linear-gradient(90deg, rgba(141, 242, 167, 0.14) 0%, rgba(91, 181, 255, 0.06) 16%, transparent 30%);
}

.about-focus-card-primary::after {
  background:
    linear-gradient(90deg, rgba(141, 242, 167, 0.58), rgba(91, 181, 255, 0.17) 16%, transparent 30%) top left / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(141, 242, 167, 0.34), rgba(91, 181, 255, 0.1) 16%, transparent 30%) bottom left / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(141, 242, 167, 0.44), rgba(91, 181, 255, 0.1), rgba(141, 242, 167, 0.16)) top left / 1px 100% no-repeat;
}

.about-focus-card-secondary {
  grid-column: 3 / span 6;
  background:
    linear-gradient(270deg, rgba(12, 16, 24, 0.86) 0%, rgba(12, 16, 24, 0.62) 16%, rgba(12, 16, 24, 0) 30%),
    linear-gradient(270deg, rgba(91, 181, 255, 0.13) 0%, rgba(141, 242, 167, 0.05) 16%, transparent 30%);
}

.about-focus-card-secondary .eyebrow {
  text-align: right;
}

.about-focus-card-secondary::after {
  background:
    linear-gradient(270deg, rgba(91, 181, 255, 0.44), rgba(141, 242, 167, 0.13) 16%, transparent 30%) top right / 100% 1px no-repeat,
    linear-gradient(270deg, rgba(91, 181, 255, 0.26), rgba(141, 242, 167, 0.09) 16%, transparent 30%) bottom right / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(91, 181, 255, 0.32), rgba(141, 242, 167, 0.08), rgba(91, 181, 255, 0.14)) top right / 1px 100% no-repeat;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
  margin-top: 54px;
  padding: 28px 0;
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer a {
  color: var(--accent);
}

@keyframes drift {
  from {
    transform: translate3d(-12px, 10px, 0) rotate(-6deg) scale(0.98);
  }
  to {
    transform: translate3d(14px, -18px, 0) rotate(8deg) scale(1.04);
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .page-grid,
  .split-section,
  .about-grid,
  .about-focus-grid,
  .layered,
  .work-grid,
  .cards.three,
  .cards.two,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(177, 207, 255, 0.12);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .page-hero {
    padding-top: 78px;
  }

  .about-hero {
    gap: 20px;
  }

  .hero-panel,
  .about-proof {
    min-height: 360px;
  }

  .about-proof,
  .bio-card,
  .about-contact {
    grid-column: auto;
  }

  .about-contact {
    justify-content: flex-start;
    padding-top: 0;
  }

  .about-focus-card-primary,
  .about-focus-card-secondary {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .about-focus-card + .about-focus-card {
    margin-top: 0;
  }

  .work-card {
    min-height: auto;
  }

  .work-card-featured h2,
  .work-card-research h2 {
    font-size: clamp(2.4rem, 10vw, 3.7rem);
  }

  .work-card-featured,
  .work-card-research {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    width: 100%;
  }

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

  h1 {
    font-size: clamp(2.8rem, 14vw, 5.5rem);
  }

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

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

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