:root {
  color-scheme: light;
  --page: #f3efe7;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #12131a;
  --muted: #686b73;
  --line: rgba(18, 19, 26, 0.14);
  --line-strong: rgba(18, 19, 26, 0.28);
  --blue: #5357ff;
  --blue-dark: #383ddd;
  --blue-soft: #dfe0ff;
  --lime: #c9ff5b;
  --coral: #ff715b;
  --yellow: #ffd45c;
  --mint: #8be3c4;
  --shadow: 0 30px 90px rgba(32, 31, 45, 0.11);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #12131a;
  --surface: #191a22;
  --surface-strong: #22232d;
  --ink: #f7f5ee;
  --muted: #a8a8b0;
  --line: rgba(247, 245, 238, 0.12);
  --line-strong: rgba(247, 245, 238, 0.26);
  --blue: #777aff;
  --blue-dark: #6569ff;
  --blue-soft: #2c2d54;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 96% 2%, rgba(201, 255, 91, 0.2), transparent 25rem),
    radial-gradient(circle at 4% 30%, rgba(83, 87, 255, 0.09), transparent 28rem),
    var(--page);
  transition: color 180ms ease, background-color 180ms ease;
}

button,
input {
  font: inherit;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: 0.022;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, rgba(0, 0, 0, 0.9) 1px, transparent 2px);
  background-size: 6px 6px;
  mix-blend-mode: multiply;
}

.site-header,
.hero,
.lab-manifest,
.featured-section,
.catalog,
.closing-statement,
.site-footer {
  width: min(1480px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 96px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(83, 87, 255, 0.2);
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__copy strong {
  font-size: 15px;
}

.brand__copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.icon-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--surface);
  border-color: var(--line-strong);
  outline: none;
}

.theme-icon {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.theme-icon::after {
  position: absolute;
  width: 8px;
  height: 14px;
  right: -3px;
  top: -1px;
  content: "";
  background: var(--page);
  border-radius: 0 999px 999px 0;
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

:root[data-theme="dark"] .header-cta {
  color: #12131a;
  background: var(--lime);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--blue);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
  min-height: 760px;
  align-items: center;
  gap: 50px;
  padding: clamp(58px, 8vw, 112px) 0;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: 46px;
  padding: 10px 13px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.status-pill__pulse {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 255, 91, 0.28);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(201, 255, 91, 0);
  }
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 920;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(66px, 9vw, 138px);
  font-weight: 820;
  line-height: 0.8;
  letter-spacing: -0.078em;
}

.hero h1 span {
  display: block;
}

.hero-title-accent {
  width: fit-content;
  margin: 0.08em 0 0.1em 0.42em;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.hero__lead {
  max-width: 720px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.primary-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 850;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 18px 44px rgba(83, 87, 255, 0.24);
  outline: none;
  transform: translateY(-3px);
}

.text-button {
  padding: 12px 4px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  outline: none;
}

.hero-lab {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(83, 87, 255, 0.18), transparent 24rem),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-lab__grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.lab-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.lab-orbit--outer {
  width: 82%;
  aspect-ratio: 1;
  animation: orbit-turn 34s linear infinite;
}

.lab-orbit--middle {
  width: 60%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit-turn-reverse 26s linear infinite;
}

.lab-orbit--inner {
  width: 38%;
  aspect-ratio: 1;
  border-color: rgba(83, 87, 255, 0.45);
  animation: orbit-breathe 5s ease-in-out infinite;
}

@keyframes orbit-turn {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-turn-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes orbit-breathe {
  50% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.lab-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  display: grid;
  width: 220px;
  height: 220px;
  place-content: center;
  text-align: center;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 24px 80px rgba(18, 19, 26, 0.24);
  transform: translate(-50%, -50%);
}

.lab-core__label {
  max-width: 130px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lab-core strong {
  color: white;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.lab-core small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.lab-node {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 8px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(18, 19, 26, 0.14);
}

.lab-node span {
  font-size: 12px;
  font-weight: 900;
}

.lab-node--one {
  left: 16%;
  top: 19%;
  color: #12131a;
  background: var(--lime);
  transform: rotate(-9deg);
}

.lab-node--two {
  right: 12%;
  top: 29%;
  color: white;
  background: var(--coral);
  transform: rotate(8deg);
}

.lab-node--three {
  left: 24%;
  bottom: 12%;
  color: #12131a;
  background: var(--yellow);
  transform: rotate(6deg);
}

.lab-note {
  position: absolute;
  z-index: 6;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.lab-note span {
  font-size: 8px;
  font-weight: 920;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lab-note strong {
  font-size: 13px;
}

.lab-note--top {
  right: 8%;
  top: 8%;
  color: #12131a;
  background: var(--yellow);
  transform: rotate(4deg);
}

.lab-note--bottom {
  right: 7%;
  bottom: 8%;
  color: white;
  background: var(--blue);
  transform: rotate(-4deg);
}

.lab-manifest {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  padding: 54px 0 90px;
  border-top: 1px solid var(--line);
}

.lab-manifest__intro {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 20px;
}

.section-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.lab-manifest__intro p {
  max-width: 610px;
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.principles article {
  min-height: 210px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}

.principles article:last-child {
  border-right: 0;
}

.principles span {
  display: block;
  margin-bottom: 46px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.principles strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.featured-section {
  padding: clamp(34px, 5vw, 72px);
  background: var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.section-kicker {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  min-height: 560px;
  overflow: hidden;
  color: white;
  background: var(--blue);
  border-radius: var(--radius-lg);
}

.featured-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 5vw, 64px);
}

.featured-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.featured-card__meta span {
  padding: 8px 11px;
  color: #12131a;
  background: var(--lime);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-card__meta span:last-child {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.featured-card h3 {
  max-width: 700px;
  margin: auto 0 22px;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.featured-card__description {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.58;
}

.featured-card__action {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 850;
}

.featured-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(201, 255, 91, 0.22), transparent 17rem),
    #2f33b8;
}

.featured-visual__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 34px 34px;
}

.featured-visual__disc {
  position: absolute;
  width: 310px;
  height: 310px;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  border: 26px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.08), 0 0 0 84px rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%);
}

.featured-visual__disc span {
  color: #12131a;
  font-size: clamp(66px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.featured-visual__label {
  position: absolute;
  right: 30px;
  top: 30px;
  padding: 13px 16px;
  color: #12131a;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 900;
  transform: rotate(5deg);
}

.featured-visual__status {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(18, 19, 26, 0.78);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

.featured-visual__status::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
}

.featured-skeleton {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.featured-skeleton div {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.08) 80%);
  background-size: 200% 100%;
  animation: skeleton 1.4s linear infinite;
}

@keyframes skeleton {
  to {
    background-position: -200% 0;
  }
}

.catalog {
  padding: clamp(72px, 9vw, 130px) 0 90px;
}

.catalog__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 48px;
}

.catalog__heading h2,
.closing-statement h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 760;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.catalog__heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 15px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 780;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  outline: none;
}

.filter-chip.is-active {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.search-box {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(100%, 390px);
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.search-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(83, 87, 255, 0.1);
}

.search-box__icon {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1.8px solid var(--muted);
  border-radius: 50%;
}

.search-box__icon::after {
  position: absolute;
  width: 6px;
  height: 1.8px;
  right: -4px;
  bottom: -2px;
  content: "";
  background: var(--muted);
  border-radius: 999px;
  transform: rotate(45deg);
}

.search-box input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
  font-size: 12px;
}

.search-box kbd {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: var(--muted);
  background: rgba(18, 19, 26, 0.05);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 10px;
  font-family: inherit;
}

.catalog-meta {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
}

.catalog-meta p {
  margin: 0;
}

.catalog-meta__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.catalog-meta__hint::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  overflow: hidden;
  padding: 26px;
  color: #12131a;
  border-radius: var(--radius-lg);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:nth-child(5n + 1) {
  grid-column: span 7;
}

.project-card:nth-child(5n + 2) {
  grid-column: span 5;
}

.project-card:nth-child(5n + 4) {
  grid-column: span 5;
}

.project-card:nth-child(5n + 5) {
  grid-column: span 7;
}

.project-card:hover,
.project-card:focus-visible {
  box-shadow: 0 26px 64px rgba(18, 19, 26, 0.16);
  outline: none;
  transform: translateY(-7px);
}

.project-card--theme-0 { background: var(--lime); }
.project-card--theme-1 { background: var(--blue-soft); }
.project-card--theme-2 { background: var(--coral); }
.project-card--theme-3 { background: var(--yellow); }
.project-card--theme-4 { background: var(--mint); }

.project-card__pattern {
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  right: -86px;
  top: -92px;
  border: 1px solid rgba(18, 19, 26, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(18, 19, 26, 0.06), 0 0 0 68px rgba(18, 19, 26, 0.035);
  transition: transform 380ms ease;
}

.project-card:hover .project-card__pattern {
  transform: scale(1.08) rotate(12deg);
}

.project-card__pattern::after {
  position: absolute;
  width: 52px;
  height: 52px;
  left: 26px;
  bottom: 26px;
  content: "";
  background: var(--surface);
  border: 10px solid rgba(18, 19, 26, 0.13);
  border-radius: 50%;
}

.project-card__topline,
.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.project-card__number,
.project-card__category {
  font-size: 9px;
  font-weight: 920;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card__category {
  max-width: 60%;
  text-align: right;
}

.project-card__body {
  position: relative;
  z-index: 2;
}

.project-card h3 {
  max-width: 620px;
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.project-card p {
  max-width: 540px;
  margin: 0;
  color: rgba(18, 19, 26, 0.67);
  line-height: 1.56;
}

.project-card__footer {
  align-items: end;
  margin-top: 34px;
}

.project-card__date {
  display: grid;
  gap: 3px;
  color: rgba(18, 19, 26, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__action {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: white;
  background: #12131a;
  border-radius: 50%;
  font-size: 20px;
  transition: transform 180ms ease;
}

.project-card:hover .project-card__action {
  transform: rotate(-8deg) scale(1.05);
}

.empty-state,
.error-state {
  grid-column: 1 / -1;
  display: grid;
  min-height: 330px;
  place-content: center;
  padding: 40px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.empty-state__icon,
.error-state__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 20px;
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 24px;
}

.empty-state h3,
.error-state h3 {
  margin: 0 0 10px;
  font-size: 30px;
}

.empty-state p,
.error-state p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.closing-statement {
  position: relative;
  margin-bottom: 80px;
  padding: clamp(50px, 8vw, 110px);
  overflow: hidden;
  color: white;
  background: var(--blue);
  border-radius: var(--radius-xl);
}

.closing-statement::after {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -220px;
  content: "";
  border: 80px solid rgba(201, 255, 91, 0.2);
  border-radius: 50%;
}

.closing-statement .eyebrow {
  color: var(--lime);
}

.closing-statement h2 span {
  display: block;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.closing-statement > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 40px 0 56px;
  border-top: 1px solid var(--line);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.site-footer__brand strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.site-footer__brand p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.site-footer__meta {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
}

.noscript-message {
  margin: 20px;
  padding: 18px;
  color: white;
  text-align: center;
  background: var(--ink);
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .hero,
  .lab-manifest,
  .featured-card {
    grid-template-columns: 1fr;
  }

  .hero-lab {
    min-height: 660px;
  }

  .featured-visual {
    min-height: 460px;
  }

  .catalog__heading,
  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .project-card,
  .project-card:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .lab-manifest,
  .featured-section,
  .catalog,
  .closing-statement,
  .site-footer {
    width: min(100% - 28px, 1480px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .hero h1 {
    font-size: clamp(62px, 18vw, 96px);
  }

  .hero-title-accent {
    margin-left: 0.18em;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-button {
    width: fit-content;
    align-self: center;
  }

  .hero-lab {
    min-height: 520px;
    border-radius: 26px;
  }

  .lab-core {
    width: 172px;
    height: 172px;
  }

  .lab-core strong {
    font-size: 56px;
  }

  .lab-node {
    width: 54px;
    height: 54px;
    border-width: 6px;
  }

  .lab-note {
    min-width: 145px;
    padding: 13px 14px;
  }

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

  .principles article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .featured-section {
    padding: 18px;
    border-radius: 26px;
  }

  .featured-card__copy {
    min-height: 500px;
  }

  .featured-card h3 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .featured-visual {
    min-height: 400px;
  }

  .featured-visual__disc {
    width: 230px;
    height: 230px;
  }

  .catalog__heading h2,
  .closing-statement h2 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .category-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .catalog-meta,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .project-card,
  .project-card:nth-child(n) {
    min-height: 390px;
    grid-column: 1 / -1;
  }

  .closing-statement {
    padding: 42px 24px;
    border-radius: 26px;
  }
}

@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-item {
    opacity: 1;
    transform: none;
  }
}