@font-face {
  font-family: "ABC Normal";
  src: url("./ABCNormal-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Normal";
  src: url("./ABCNormal-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Normal";
  src: url("./ABCNormal-Medium.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000;
  --ink: #101010;
  --graphite: #4f4f4f;
  --gray: #868686;
  --line: #d9d9d6;
  --soft-line: #eeeeeb;
  --paper: #f4f3ee;
  --white: #fff;
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.74);
  --glass-faint: rgba(255, 255, 255, 0.32);
  --glass-line: rgba(255, 255, 255, 0.62);
  --smoke: #e6e6e3;
  --accent: #ff9300;
  --accent-soft: #ffd394;
  --font: "ABC Normal", "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "SF Mono", "IBM Plex Mono", Consolas, monospace;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(180deg, #f7f6f1 0%, var(--paper) 38%, #efeee9 100%);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

::selection {
  background: var(--accent);
  color: var(--black);
}

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

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

p,
li,
blockquote {
  font-size: 17px;
  line-height: 1.55;
}

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

h1 {
  max-width: 990px;
  margin-bottom: 28px;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: 0.91;
  font-weight: 520;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 520;
  text-wrap: balance;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 560;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  padding: 0 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.36)),
    rgba(244, 243, 238, 0.68);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(28px) saturate(1.55);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.66) inset;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: 136px;
  white-space: nowrap;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.nav-links a,
.nav-cta,
.inline-link {
  font-size: 14px;
  color: var(--graphite);
}

.nav-links a:hover,
.nav-cta:hover,
.inline-link:hover {
  color: var(--black);
}

.nav-cta {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 16px 40px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px) saturate(1.6);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  border-color: rgba(255, 147, 0, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 190, 96, 0.96), rgba(255, 147, 0, 0.92));
}

.button.secondary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px) saturate(1.45);
}

.light-button {
  width: max-content;
  border-color: var(--white);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(96vh - 64px);
  overflow: hidden;
  padding: 86px 28px 46px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 83% 22%, rgba(255, 255, 255, 0.86), transparent 25%),
    radial-gradient(circle at 52% 70%, rgba(255, 147, 0, 0.08), transparent 30%),
    var(--paper);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.66;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.13) 1px, transparent 1.5px);
  background-position: 26px 26px;
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 70%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.52fr);
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy {
  max-width: 820px;
  animation: rise-in 760ms cubic-bezier(0.2, 0.7, 0.15, 1) both;
}

.eyebrow,
.section-label {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1;
  color: var(--graphite);
}

.section-label {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.08;
  font-weight: 500;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.82);
}

.hero-body {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--graphite);
  font-size: 19px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: rise-in 820ms 90ms cubic-bezier(0.2, 0.7, 0.15, 1) both;
}

.hero-signal {
  position: relative;
  align-self: end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(34px) saturate(1.8);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 30px 90px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  animation: glass-arrive 880ms 160ms cubic-bezier(0.2, 0.7, 0.15, 1) both;
}

.hero-signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.52) 34%, transparent 48%),
    radial-gradient(circle at 88% 12%, rgba(255, 147, 0, 0.22), transparent 30%);
  opacity: 0.75;
  pointer-events: none;
  transform: translateX(-18%);
  animation: glass-shimmer 7s ease-in-out infinite;
}

.hero-signal > * {
  position: relative;
  z-index: 1;
}

.signal-topline,
.manifesto-lines span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.signal-topline {
  padding-bottom: 12px;
  color: var(--graphite);
  font-family: var(--mono);
  font-size: 12px;
}

.hero-signal p {
  margin: 18px 0 24px;
  color: var(--graphite);
}

.manifesto-lines {
  display: grid;
}

.manifesto-lines span {
  padding: 13px 0;
  color: var(--black);
  font-size: 19px;
  line-height: 1.18;
}

.state-visual {
  position: absolute;
  right: max(-160px, calc((100vw - var(--max)) / 2 - 230px));
  bottom: -96px;
  z-index: 1;
  width: min(58vw, 840px);
  min-width: 620px;
  opacity: 0.58;
  pointer-events: none;
  animation: slow-float 10s ease-in-out infinite;
}

.outer {
  fill: none;
  stroke: var(--black);
  stroke-width: 1.5;
}

.dash {
  fill: none;
  stroke: #b9b9b5;
  stroke-width: 1.2;
  stroke-dasharray: 8 12;
}

.path {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

.path.current {
  stroke: var(--black);
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: draw-path 1.8s 280ms cubic-bezier(0.2, 0.7, 0.15, 1) forwards;
}

.path.projected {
  stroke: #9a9a96;
  stroke-dasharray: 10 12;
}

.path.orange {
  stroke: var(--accent);
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: draw-path 1.6s 680ms cubic-bezier(0.2, 0.7, 0.15, 1) forwards;
}

.path.gray {
  stroke: #777;
}

.node {
  fill: var(--black);
}

.node.accent {
  fill: var(--accent);
  animation: pulse-node 3.6s ease-in-out infinite;
}

.node.warm {
  fill: var(--accent);
}

.node.gray {
  fill: #777;
}

.section {
  padding: 104px 28px;
  border-bottom: 1px solid var(--line);
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.editorial-two {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: start;
}

.body-stack {
  display: grid;
  gap: 22px;
}

.body-stack p,
.editorial-two p,
.science-head p,
.platform-layout p,
.elite-layout p,
.collaborate-copy p {
  color: var(--graphite);
}

.work {
  background: var(--white);
}

.platform,
.xprize {
  background:
    radial-gradient(circle at 72% 4%, rgba(255, 147, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #020202 0%, var(--black) 100%);
  color: var(--white);
}

.platform p,
.xprize p {
  color: #c8c8c8;
}

.platform-layout,
.xprize-layout,
.elite-layout,
.collaborate {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  gap: 64px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.platform-layout h2,
.xprize-layout h2 {
  color: var(--white);
}

.glass-stack {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.2), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.1), transparent 30%),
    radial-gradient(circle at 74% 90%, rgba(255, 147, 0, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(30px) saturate(1.45);
  -webkit-backdrop-filter: blur(30px) saturate(1.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 22px 64px rgba(0, 0, 0, 0.24);
}

.glass-stack::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at 58% 48%, rgba(255, 255, 255, 0.08), transparent 26%);
  opacity: 0.8;
  pointer-events: none;
}

.glass-stack > * {
  position: relative;
  z-index: 1;
}

.glass-chip {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.075)),
    rgba(255, 255, 255, 0.09);
  color: var(--white);
  backdrop-filter: blur(24px) saturate(1.7);
  -webkit-backdrop-filter: blur(24px) saturate(1.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 30px rgba(0, 0, 0, 0.18);
  animation: chip-drift 7s ease-in-out infinite;
}

.glass-chip:nth-child(2) {
  margin-left: 56px;
  animation-delay: -0.7s;
}

.glass-chip:nth-child(3) {
  margin-left: 112px;
  animation-delay: -1.4s;
}

.glass-chip:nth-child(4) {
  margin-left: 42px;
  animation-delay: -2.2s;
}

.glass-chip:nth-child(5) {
  margin-left: 150px;
  background:
    linear-gradient(180deg, rgba(255, 193, 105, 0.96), rgba(255, 147, 0, 0.9));
  border-color: rgba(255, 190, 104, 0.62);
  color: var(--black);
  animation-delay: -3.1s;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  background: #2f2f2f;
  border: 1px solid #2f2f2f;
}

.output-grid article {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 44%),
    #070707;
  transition: background 180ms ease, transform 180ms ease;
}

.output-grid article:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%),
    #0c0c0c;
  transform: translateY(-2px);
}

.output-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
}

.output-grid p {
  margin-bottom: 0;
}

.platform-note {
  max-width: var(--max);
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid #2f2f2f;
}

.science-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.58fr);
  gap: 62px;
  align-items: end;
}

.science-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
}

.science-tab {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.5);
  color: var(--graphite);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(16px) saturate(1.45);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.science-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.32);
}

.science-tab.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.science-panel {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(24px) saturate(1.6);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 24px 70px rgba(0, 0, 0, 0.08);
}

.science-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.science-panel p {
  max-width: 900px;
  color: var(--graphite);
  font-size: 19px;
  line-height: 1.55;
}

.inline-link {
  display: inline-flex;
  margin-top: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
}

.elite {
  background: var(--white);
}

.response-ladder {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.response-ladder span {
  display: flex;
  min-height: 92px;
  align-items: center;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    var(--paper);
  border-left: 8px solid var(--black);
  font-size: 21px;
  backdrop-filter: blur(16px) saturate(1.4);
}

.response-ladder span:nth-child(2) {
  border-left-color: #777;
}

.response-ladder span:nth-child(3) {
  border-left-color: var(--accent-soft);
}

.response-ladder span:nth-child(4) {
  border-left-color: var(--accent);
}

.agebiotics {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 147, 0, 0.16), transparent 26%),
    var(--paper);
}

.team {
  background: var(--white);
}

.team h2 {
  max-width: var(--max);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.team-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 318px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px) saturate(1.45);
  transition: transform 180ms ease, background 180ms ease;
}

.team-grid article:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.74);
}

.team-grid h3,
.team-grid p,
.team-grid blockquote {
  margin-bottom: 0;
}

.role {
  color: var(--graphite);
  font-size: 14px;
}

.team-grid article > p:not(.role) {
  max-width: 520px;
  color: var(--graphite);
}

blockquote {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--black);
  font-size: 18px;
  line-height: 1.48;
}

.collaborate {
  align-items: start;
}

.collaborate-copy p {
  max-width: 640px;
  font-size: 19px;
}

.research-form,
.waitlist-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.96), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(28px) saturate(1.65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.84) inset,
    0 28px 80px rgba(0, 0, 0, 0.1);
}

.research-form {
  padding: 24px;
}

.research-form h3 {
  margin-bottom: 6px;
}

.waitlist {
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.88), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(255, 147, 0, 0.08), transparent 28%),
    var(--paper);
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(440px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 32px 36px;
}

.waitlist-copy .section-label {
  margin-bottom: 12px;
}

.waitlist-copy h2 {
  max-width: 520px;
  font-size: clamp(40px, 4vw, 62px);
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.waitlist-form label {
  margin-top: 0;
}

.waitlist-button {
  min-width: 150px;
  width: auto;
}

.waitlist-form .form-status {
  grid-column: 1 / -1;
  margin-top: 0;
}

label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--graphite);
  font-size: 13px;
}

label.has-error {
  color: #8a2d0f;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    #fbfbf8;
  color: var(--black);
  font: inherit;
  font-size: 15px;
  backdrop-filter: blur(10px);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(255, 147, 0, 0.15);
  outline: none;
}

label.has-error input,
label.has-error select,
label.has-error textarea {
  border-color: #b43c12;
  box-shadow: 0 0 0 3px rgba(255, 82, 28, 0.12);
}

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

.form-button {
  width: 100%;
  margin-top: 20px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--graphite);
  font-size: 13px;
}

.form-status.error {
  color: #8a2d0f;
}

.form-status.success {
  color: #245c34;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 34px 28px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 96% 0%, rgba(255, 255, 255, 0.76), transparent 26%),
    var(--paper);
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--graphite);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  color: var(--graphite);
  font-size: 14px;
}

.footer-links p {
  width: 100%;
  margin: 0;
  text-align: right;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glass-arrive {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glass-shimmer {
  0%,
  58%,
  100% {
    transform: translateX(-34%);
    opacity: 0.18;
  }
  72% {
    transform: translateX(36%);
    opacity: 0.72;
  }
}

@keyframes slow-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, -8px, 0);
  }
}

@keyframes chip-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

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

@keyframes pulse-node {
  0%,
  100% {
    r: 18;
    opacity: 1;
  }
  50% {
    r: 21;
    opacity: 0.86;
  }
}

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .editorial-two,
  .platform-layout,
  .xprize-layout,
  .elite-layout,
  .collaborate,
  .waitlist-panel,
  .science-head {
    grid-template-columns: 1fr;
  }

  .hero-signal {
    max-width: 680px;
    align-self: start;
  }

  .state-visual {
    right: -280px;
    bottom: 60px;
    opacity: 0.18;
  }

  .output-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  p,
  li,
  blockquote {
    font-size: 16px;
  }

  h1 {
    font-size: 43px;
    line-height: 0.98;
  }

  h2 {
    font-size: 34px;
  }

  .site-header {
    min-height: 62px;
    padding: 0 16px;
  }

  .wordmark {
    font-size: 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 64px 18px 34px;
  }

  .hero-body {
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-signal {
    padding: 18px;
  }

  .manifesto-lines span {
    font-size: 17px;
  }

  .state-visual {
    display: none;
  }

  .section {
    padding: 74px 18px;
  }

  .glass-stack {
    min-height: auto;
  }

  .glass-chip,
  .glass-chip:nth-child(2),
  .glass-chip:nth-child(3),
  .glass-chip:nth-child(4),
  .glass-chip:nth-child(5) {
    width: 100%;
    margin-left: 0;
  }

  .output-grid,
  .team-grid,
  .form-pair,
  .waitlist-panel,
  .waitlist-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .science-panel {
    padding: 22px;
  }

  .science-panel p {
    font-size: 16px;
  }

  .team-grid article {
    min-height: auto;
  }

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

  .footer-links p {
    text-align: left;
  }
}
