:root {
  color-scheme: light;
  --paper: #f7f8f4;
  --paper-2: #eef3ee;
  --ink: #0a0d0d;
  --muted: #586160;
  --line: rgba(10, 13, 13, 0.13);
  --line-strong: rgba(10, 13, 13, 0.28);
  --black: #050707;
  --white: #ffffff;
  --cyan: #22d3ee;
  --lime: #b9ff66;
  --blue: #3b5bff;
  --gold: #ffad20;
  --max: 1200px;
  --mx: 72%;
  --my: 34%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --grid-x: 0px;
  --grid-y: 0px;
  --data-x: 0px;
  --data-y: 0px;
  --star-x: 0px;
  --star-y: 0px;
  --cursor-alpha: 0;
  --comet-text-x: 50%;
  --comet-text-y: 50%;
  --comet-text-light: 0;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.is-pointer-active {
  --cursor-alpha: 1;
}

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

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

.site-header {
  align-items: center;
  background: rgba(247, 248, 244, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 48px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 244, 0.94);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand-logo img {
  display: block;
  height: 44px;
  object-fit: contain;
  width: auto;
}

.brand-mark {
  align-items: center;
  background: var(--black);
  border-radius: 50%;
  color: var(--lime);
  display: inline-flex;
  font-size: 0.78rem;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 3vw, 38px);
}

.site-nav a {
  color: rgba(10, 13, 13, 0.68);
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--ink);
}

.home-page .site-header {
  background: rgba(2, 2, 12, 0.68);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.home-page .site-header.is-scrolled {
  background: rgba(2, 2, 12, 0.9);
}

.home-page .site-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .site-nav a:hover {
  color: var(--white);
}

.home-page .menu-toggle span {
  background: var(--white);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 1px;
  margin: 8px auto;
  width: 24px;
}

.hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #02020c;
  background-size: 84px 84px, 84px 84px, auto;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: 132px clamp(18px, 4vw, 48px) 72px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.hero::before,
.hero::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero::before {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 0 17rem, rgba(120, 94, 255, 0.12) 17.5rem 32rem, transparent 43rem),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.18), transparent 0 8rem, rgba(120, 200, 255, 0.08) 8.5rem 23rem, transparent 33rem);
  mix-blend-mode: screen;
  opacity: calc(0.72 + var(--cursor-alpha) * 0.22);
  transition: opacity 220ms ease;
  z-index: 0;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(2, 2, 12, 0.2), transparent 20%, transparent 72%, rgba(2, 2, 12, 0.72)),
    linear-gradient(90deg, rgba(2, 2, 12, 0.86), transparent 32%, transparent 68%, rgba(2, 2, 12, 0.86));
  opacity: 1;
  z-index: 0;
}

.nova-canvas {
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-grid {
  background-image:
    linear-gradient(90deg, rgba(10, 13, 13, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(10, 13, 13, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  border-left: 1px solid var(--line);
  inset: 72px 0 0 52%;
  mask-image: linear-gradient(90deg, transparent, #000 22%, transparent 96%);
  opacity: 0.5;
  position: absolute;
  transform: translate(var(--grid-x), var(--grid-y));
  transition: transform 120ms ease-out;
}

.hero-data {
  color: rgba(10, 13, 13, 0.2);
  display: grid;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  gap: 12px;
  position: absolute;
  right: clamp(22px, 5vw, 80px);
  top: 112px;
  transform: translate(var(--data-x), var(--data-y)) rotate(-2deg);
  transition: transform 120ms ease-out;
  user-select: none;
}

.hero-data span {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.hero:hover .hero-data span:nth-child(2n) {
  color: rgba(10, 13, 13, 0.34);
  transform: translateX(8px);
}

.hero:hover .hero-data span:nth-child(2n + 1) {
  color: rgba(59, 91, 255, 0.34);
  transform: translateX(-6px);
}

.hero-content {
  isolation: isolate;
  max-width: 810px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-content::before,
.hero-content::after {
  content: "";
  inset: -2%;
  mix-blend-mode: screen;
  opacity: var(--comet-text-light);
  pointer-events: none;
  position: absolute;
  transition: opacity 120ms linear;
  z-index: 3;
}

.hero-content::before {
  background:
    radial-gradient(
      circle at var(--comet-text-x) var(--comet-text-y),
      transparent 0 7%,
      rgba(154, 190, 255, 0.035) 7.6% 8%,
      transparent 9.8% 18%,
      rgba(154, 190, 255, 0.026) 18.7% 19.1%,
      transparent 21%
    );
  filter: blur(1.4px);
}

.hero-content::after {
  background:
    radial-gradient(
      circle at var(--comet-text-x) var(--comet-text-y),
      rgba(255, 255, 255, 0.075),
      rgba(123, 170, 255, 0.052) 8%,
      rgba(123, 170, 255, 0.018) 18%,
      transparent 29%
    );
  filter: blur(6px);
}

.eyebrow,
.section-index {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0;
}

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

h1 {
  font-size: clamp(3.5rem, 7.2vw, 6.4rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.88;
  margin-top: 22px;
  max-width: 900px;
}

.hero h1 {
  background: linear-gradient(135deg, var(--white), rgba(184, 196, 255, 0.92) 48%, rgba(61, 128, 255, 0.92));
  background-clip: text;
  color: transparent;
  font-size: clamp(3.25rem, 7.4vw, 7rem);
  line-height: 0.88;
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
  text-wrap: balance;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.55;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  max-width: 720px;
}

.prose-block {
  color: rgba(10, 13, 13, 0.68);
  display: grid;
  font-size: 1.06rem;
  gap: 22px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 2px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 760;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-line {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.hero .eyebrow {
  color: rgba(190, 178, 255, 0.9);
}

.hero .button-dark {
  background: var(--white);
  color: #050509;
}

.hero .button-line {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.hero-orbit-field {
  min-height: 0;
  pointer-events: none;
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  top: clamp(150px, 18vw, 230px);
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transition: transform 120ms ease-out;
  width: clamp(390px, 36vw, 560px);
  z-index: 1;
}

.hero-orbit-field::before {
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 173, 32, 0.2), transparent 0 7rem, rgba(34, 211, 238, 0.11) 7.4rem 13rem, transparent 13.4rem),
    radial-gradient(circle at 62% 40%, rgba(255, 255, 255, 0.78), transparent 5rem),
    radial-gradient(circle at 20% 80%, rgba(185, 255, 102, 0.14), transparent 16rem);
  content: "";
  filter: blur(0.2px);
  inset: -10% -16% -12% -18%;
  opacity: 0.92;
  position: absolute;
}

.hero-orbit-field::after {
  background:
    linear-gradient(112deg, transparent 0 37%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 173, 32, 0.44) 45%, transparent 56%),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 68%, rgba(34, 211, 238, 0.78) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 82%, rgba(185, 255, 102, 0.76) 0 2px, transparent 3px);
  content: "";
  inset: -4% -10%;
  opacity: calc(0.44 + var(--cursor-alpha) * 0.38);
  position: absolute;
  transform: translate(calc(var(--star-x) * -0.7), calc(var(--star-y) * -0.55));
  transition:
    opacity 220ms ease,
    transform 120ms ease-out;
}

.nova-system {
  aspect-ratio: 1;
  display: grid;
  margin: 0 auto;
  max-width: 100%;
  place-items: center;
  position: relative;
  z-index: 1;
}

.nova-system::before,
.nova-system::after {
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.nova-system::before {
  background:
    radial-gradient(circle at 16% 30%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 32% 74%, rgba(255, 173, 32, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 42%, rgba(34, 211, 238, 0.78) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 82%, rgba(185, 255, 102, 0.7) 0 2px, transparent 3px);
  inset: -5%;
  opacity: 0.82;
  transform: translate(var(--star-x), var(--star-y));
  transition: transform 120ms ease-out;
}

.nova-system::after {
  border: 1px solid rgba(255, 173, 32, 0.28);
  height: 17%;
  left: 41.5%;
  opacity: calc(0.42 + var(--cursor-alpha) * 0.38);
  top: 41.5%;
  width: 17%;
}

.orbit-ring {
  border: 1px solid rgba(10, 13, 13, 0.22);
  border-radius: 50%;
  position: absolute;
}

.orbit-ring-one {
  height: 100%;
  width: 100%;
}

.hero:hover .orbit-ring-one,
.people-orbit-section:hover .orbit-ring-one {
  animation: orbitPulse 2.4s linear infinite;
}

.orbit-ring-two {
  height: 66%;
  transform: rotate(22deg);
  width: 110%;
}

.hero:hover .orbit-ring-two,
.people-orbit-section:hover .orbit-ring-two {
  animation: orbitSkew 3s linear infinite;
}

.orbit-ring-three {
  border-color: rgba(255, 173, 32, 0.36);
  height: 46%;
  transform: rotate(-18deg);
  width: 128%;
}

.hero:hover .orbit-ring-three,
.people-orbit-section:hover .orbit-ring-three {
  animation: orbitCounter 3.6s linear infinite;
}

.nova-core {
  align-items: center;
  background:
    radial-gradient(circle at 38% 32%, #ffffff 0 7%, var(--gold) 8% 32%, #ff6a00 54%, var(--black) 100%);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgba(255, 173, 32, 0.18),
    0 0 0 28px rgba(34, 211, 238, 0.1),
    0 24px 90px rgba(255, 126, 0, 0.32);
  color: var(--white);
  display: flex;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  height: 72px;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
  width: 72px;
  z-index: 2;
}

.hero:hover .nova-core,
.people-orbit-section:hover .nova-core,
body.is-pointer-active .nova-core {
  animation: novaIgnition 1.9s ease-in-out infinite;
}

.nova-core::before,
.nova-core::after {
  background: linear-gradient(90deg, transparent, rgba(255, 173, 32, 0.8), transparent);
  content: "";
  height: 1px;
  position: absolute;
  width: 230px;
}

.nova-core::before {
  transform: rotate(-16deg);
}

.nova-core::after {
  transform: rotate(22deg);
}

.nova-core span {
  position: relative;
  z-index: 1;
}

.star-node {
  align-items: center;
  background: rgba(5, 7, 7, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  display: inline-flex;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  min-height: 28px;
  padding: 7px 9px;
  position: absolute;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
}

.star-node::before {
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(185, 255, 102, 0.85);
  content: "";
  height: 7px;
  margin-right: 8px;
  width: 7px;
}

.hero:hover .star-node::before,
.people-orbit-section:hover .star-node::before,
body.is-pointer-active .star-node::before {
  animation: starTwinkle 1.35s ease-in-out infinite;
}

.node-council {
  left: 5%;
  top: 22%;
}

.node-council::before {
  background: var(--gold);
  box-shadow: 0 0 20px rgba(255, 173, 32, 0.85);
}

.node-operators {
  right: -8%;
  top: 34%;
}

.node-operators::before {
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.85);
}

.node-alliance {
  bottom: 24%;
  left: -3%;
}

.node-founders {
  bottom: 34%;
  right: 8%;
}

.hero:hover .star-node,
.people-orbit-section:hover .star-node {
  animation: starFloat 2.8s ease-in-out infinite;
}

.hero:hover .node-operators,
.hero:hover .node-founders,
.people-orbit-section:hover .node-operators,
.people-orbit-section:hover .node-founders {
  animation-delay: 220ms;
}

.ticker {
  background: var(--black);
  color: var(--white);
  display: grid;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ticker span {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 74px;
  padding: 28px clamp(12px, 2.5vw, 28px);
}

.galaxy-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 173, 32, 0.14), transparent 16rem),
    radial-gradient(circle at 82% 24%, rgba(34, 211, 238, 0.16), transparent 18rem),
    linear-gradient(rgba(10, 13, 13, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 13, 13, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 126px) clamp(18px, 4vw, 48px);
  position: relative;
  text-align: center;
}

.galaxy-section::before {
  background:
    radial-gradient(circle at 8% 42%, rgba(10, 13, 13, 0.36) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 24%, rgba(59, 91, 255, 0.5) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 68%, rgba(255, 173, 32, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 34%, rgba(34, 211, 238, 0.5) 0 2px, transparent 3px);
  content: "";
  inset: 18% 8%;
  opacity: 0.52;
  pointer-events: none;
  position: absolute;
}

.galaxy-section .section-index,
.galaxy-section h2,
.galaxy-section p,
.logo-constellation {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.galaxy-section h2 {
  font-size: clamp(2.5rem, 6.4vw, 6rem);
  max-width: 1040px;
  margin-top: 22px;
}

.galaxy-section p {
  color: rgba(10, 13, 13, 0.66);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 640px;
}

.logo-constellation {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(38px, 5vw, 66px);
  max-width: 1020px;
}

@media (min-width: 961px) {
  .galaxy-section p {
    max-width: none;
    white-space: nowrap;
  }
}

.network-logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  display: flex;
  justify-content: center;
  min-height: 102px;
  padding: 20px 16px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.network-logo:hover {
  background-color: rgba(255, 255, 255, 0.88);
  border-color: rgba(59, 91, 255, 0.28);
  box-shadow: 0 18px 60px rgba(42, 68, 78, 0.1);
  transform: translateY(-2px);
}

.network-logo img {
  display: block;
  filter: grayscale(1) saturate(0.25) contrast(1.05);
  max-height: 42px;
  max-width: 132px;
  object-fit: contain;
  opacity: 0.82;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
  width: 72%;
}

.network-logo:hover img {
  filter: grayscale(0) saturate(1) contrast(1);
  opacity: 1;
  transform: scale(1.03);
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(86px, 11vw, 150px) clamp(18px, 4vw, 0px);
}

.split-heading {
  align-items: end;
  display: grid;
  gap: clamp(30px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.55fr);
  margin-top: 24px;
}

h2 {
  font-size: clamp(2.8rem, 7vw, 7.4rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.86;
}

.intro-section h2,
.support-section > .split-heading h2,
.cta-section h2 {
  font-size: clamp(2.35rem, 5.2vw, 5.1rem);
  line-height: 0.92;
}

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

.split-heading p,
.conviction-grid p,
.network-copy p {
  color: rgba(10, 13, 13, 0.68);
  font-size: 1.06rem;
  line-height: 1.72;
}

.work-grid,
.portfolio-grid {
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 74px;
}

.work-grid article,
.portfolio-grid article {
  border-right: 1px solid var(--line);
  min-height: 340px;
  padding: 26px 28px 30px 0;
  position: relative;
}

.work-grid article,
.portfolio-grid article,
.aside-card,
.contact-card {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.work-grid article:hover,
.portfolio-grid article:hover,
.aside-card:hover,
.contact-card:hover {
  background-color: rgba(255, 255, 255, 0.56);
  border-color: rgba(10, 13, 13, 0.26);
  transform: translateY(-3px);
}

.work-grid article + article,
.portfolio-grid article + article {
  padding-left: 28px;
}

.work-grid article:last-child,
.portfolio-grid article:last-child {
  border-right: 0;
}

.work-grid span,
.thesis-points span,
.portfolio-grid span {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
}

.work-grid h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1;
  margin-top: 110px;
}

.work-grid h3.balanced-title {
  font-size: clamp(1.45rem, 2.25vw, 2.05rem);
  max-width: 12.5em;
}

.work-grid p {
  color: rgba(10, 13, 13, 0.64);
  line-height: 1.6;
  margin-top: 18px;
}

.support-section {
  background:
    radial-gradient(circle at 74% 16%, rgba(34, 211, 238, 0.13), transparent 22rem),
    radial-gradient(circle at 16% 78%, rgba(255, 173, 32, 0.12), transparent 20rem),
    var(--black);
  color: var(--white);
  max-width: none;
  padding-left: clamp(18px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
}

.support-section > .section-index,
.support-section > .split-heading,
.support-section > .work-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.support-section .section-index {
  color: rgba(255, 255, 255, 0.46);
}

.support-section .split-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.support-section .work-grid {
  border-top-color: rgba(255, 255, 255, 0.26);
}

.support-section .work-grid article {
  border-right-color: rgba(255, 255, 255, 0.14);
}

.support-section .work-grid article:hover {
  background-color: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.28);
}

.support-section .work-grid span {
  color: var(--gold);
}

.support-section .work-grid h3 {
  align-items: flex-end;
  display: flex;
  min-height: 3.05em;
}

.support-section .work-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.support-graphic {
  height: 86px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 28px;
  top: 76px;
}

.work-grid article + article .support-graphic {
  left: 28px;
}

.signal-graphic {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 3px, transparent 4px) 18px 42px / 100% 100% no-repeat,
    linear-gradient(90deg, rgba(255, 173, 32, 0.58), rgba(34, 211, 238, 0.36), transparent 72%);
  mask: linear-gradient(90deg, #000 0 76%, transparent);
}

.signal-graphic i {
  border: 1px solid rgba(255, 173, 32, 0.42);
  border-radius: 999px;
  height: 42px;
  left: 0;
  position: absolute;
  top: 21px;
  width: 42px;
}

.signal-graphic i:nth-child(2) {
  height: 66px;
  left: -12px;
  top: 9px;
  width: 66px;
}

.signal-graphic i:nth-child(3) {
  height: 90px;
  left: -24px;
  top: -3px;
  width: 90px;
}

.network-graphic {
  background:
    linear-gradient(24deg, transparent 20%, rgba(34, 211, 238, 0.28) 20% 21%, transparent 21%),
    linear-gradient(148deg, transparent 30%, rgba(255, 173, 32, 0.28) 30% 31%, transparent 31%),
    linear-gradient(90deg, transparent 8%, rgba(255, 255, 255, 0.2) 8% 9%, transparent 9%);
}

.network-graphic i,
.reach-graphic i {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.2);
  height: 12px;
  position: absolute;
  width: 12px;
}

.network-graphic i:nth-child(1) { left: 8%; top: 48%; }
.network-graphic i:nth-child(2) { left: 26%; top: 18%; }
.network-graphic i:nth-child(3) { left: 44%; top: 62%; }
.network-graphic i:nth-child(4) { left: 62%; top: 24%; }
.network-graphic i:nth-child(5) { left: 78%; top: 52%; }

.reach-graphic {
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 999px 999px 0 0;
  transform: rotate(-10deg);
}

.reach-graphic::after {
  background: linear-gradient(90deg, rgba(255, 173, 32, 0.72), rgba(34, 211, 238, 0.42));
  border-radius: 999px;
  content: "";
  height: 2px;
  left: 6%;
  position: absolute;
  right: 14%;
  top: 62%;
}

.reach-graphic i:first-child {
  left: 7%;
  top: 55%;
}

.reach-graphic i:last-child {
  background: var(--gold);
  border-color: rgba(255, 173, 32, 0.8);
  height: 9px;
  right: 14%;
  top: 58%;
  width: 9px;
}

.portfolio-grid article {
  background:
    linear-gradient(rgba(10, 13, 13, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 13, 13, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  min-height: 260px;
}

.portfolio-grid strong {
  display: block;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.05;
  margin-top: 82px;
  max-width: 340px;
}

.portfolio-categories {
  display: grid;
  gap: clamp(54px, 8vw, 100px);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(72px, 9vw, 124px) clamp(18px, 4vw, 0px);
}

.portfolio-categories article {
  border-top: 1px solid var(--line-strong);
  padding-top: 28px;
}

.orbit-logo-section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(24px, 4vw, 52px) clamp(18px, 4vw, 0px) clamp(64px, 8vw, 112px);
}

.company-logo-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.company-logo-grid a {
  align-items: center;
  background:
    linear-gradient(rgba(10, 13, 13, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 13, 13, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.56);
  background-size: 28px 28px;
  border: 1px solid var(--line);
  display: flex;
  min-height: 180px;
  justify-content: center;
  padding: 34px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.company-logo-grid a:hover {
  background-color: rgba(255, 255, 255, 0.86);
  border-color: rgba(59, 91, 255, 0.34);
  box-shadow: 0 24px 70px rgba(42, 68, 78, 0.12);
  transform: translateY(-2px);
}

.company-logo-grid img {
  display: block;
  filter: drop-shadow(0 0 0.35px rgba(10, 13, 13, 0.85));
  max-height: 82px;
  max-width: 260px;
  object-fit: contain;
  width: 100%;
}

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

.thesis {
  background:
    radial-gradient(circle at 20% 50%, rgba(185, 255, 102, 0.13), transparent 24rem),
    var(--black);
  color: var(--white);
  max-width: none;
  padding-left: clamp(18px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
}

.thesis .section-index {
  color: rgba(255, 255, 255, 0.48);
  margin: 0 auto;
  max-width: var(--max);
}

.thesis-layout {
  display: grid;
  gap: clamp(40px, 8vw, 100px);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.68fr);
  margin: 24px auto 0;
  max-width: var(--max);
  min-width: 0;
  width: 100%;
}

.thesis-points {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.thesis-points article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px 0;
}

.thesis-points p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.66;
  margin-top: 14px;
}

.network {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  min-height: 760px;
}

.network-visual {
  background: var(--black);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.network-visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.86;
  position: absolute;
  width: 100%;
}

.network-copy {
  align-self: center;
  padding: clamp(50px, 8vw, 110px);
}

.network-copy h2 {
  margin-top: 22px;
}

.network-copy p {
  margin-top: 30px;
  max-width: 610px;
}

.network-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
}

.network-list span {
  border-top: 1px solid var(--line);
  color: rgba(10, 13, 13, 0.72);
  min-height: 70px;
  padding: 24px 16px 0 0;
}

.conviction h2 {
  margin-top: 24px;
  max-width: 1040px;
}

.cta-section h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  max-width: none;
  text-wrap: balance;
}

@media (min-width: 961px) {
  .cta-section h2 {
    white-space: nowrap;
  }
}

.conviction-grid {
  align-items: center;
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.65fr) auto;
  margin-top: 56px;
  padding-top: 28px;
}

.site-footer {
  align-items: center;
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
  display: grid;
  font-size: 0.9rem;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 86px;
  padding: 24px clamp(18px, 4vw, 48px);
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
}

.footer-logo img {
  display: block;
  height: 34px;
  object-fit: contain;
  width: auto;
}

.footer-line {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-end;
  text-align: right;
}

.footer-line span:first-child {
  color: var(--white);
  font-weight: 760;
}

.footer-social {
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  font-weight: 760;
  width: fit-content;
}

.page-hero {
  background:
    linear-gradient(rgba(10, 13, 13, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 13, 13, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(34, 211, 238, 0.24), transparent 32rem),
    radial-gradient(circle at 96% 80%, rgba(185, 255, 102, 0.22), transparent 26rem),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  min-height: clamp(330px, 42vh, 460px);
  overflow: hidden;
  padding: 122px clamp(18px, 4vw, 48px) 54px;
  position: relative;
}

.page-hero.compact {
  min-height: auto;
  padding-bottom: 56px;
}

.page-hero h1 {
  font-size: clamp(3.4rem, 6.4vw, 5.7rem);
  max-width: 1180px;
}

.page-copy {
  color: rgba(10, 13, 13, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 620px;
}

.page-data {
  color: rgba(10, 13, 13, 0.18);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  position: absolute;
  right: clamp(20px, 6vw, 92px);
  top: 142px;
  transform: rotate(-2deg);
}

.people-orbit-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(255, 173, 32, 0.14), transparent 0 12rem, rgba(34, 211, 238, 0.1) 12.5rem 26rem, transparent 36rem),
    #02020c;
  background-size: 74px 74px, 74px 74px, auto, auto;
  min-height: clamp(520px, 62vw, 720px);
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 4vw, 48px);
  position: relative;
}

.people-orbit-section .section-index {
  color: rgba(255, 255, 255, 0.52);
  position: relative;
  z-index: 2;
}

.people-orbit-field {
  inset: auto;
  margin: clamp(30px, 5vw, 56px) auto 0;
  min-height: clamp(410px, 46vw, 560px);
  pointer-events: auto;
  position: relative;
  right: auto;
  top: auto;
  width: min(640px, 86vw);
}

.people-orbit-field .orbit-ring {
  border-color: rgba(255, 255, 255, 0.28);
}

.people-orbit-field .orbit-ring-three {
  border-color: rgba(255, 173, 32, 0.46);
}

.content-shell {
  display: grid;
  gap: clamp(36px, 6vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(72px, 9vw, 124px) clamp(18px, 4vw, 0px);
}

.content-article {
  border-top: 1px solid var(--line-strong);
}

.content-article .article-section {
  border-bottom: 1px solid var(--line);
  padding: clamp(34px, 5vw, 56px) 0;
}

.article-section > span,
.person-card span,
.contact-card span,
.aside-card span {
  color: var(--blue);
  display: block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.article-section p,
.article-section li,
.person-card p,
.contact-card p {
  color: rgba(10, 13, 13, 0.69);
  font-size: 1.04rem;
  line-height: 1.76;
  max-width: 820px;
}

.article-section p + p,
.person-card p + p {
  margin-top: 18px;
}

.article-section ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  max-width: 820px;
  padding-left: 20px;
}

.article-section h2 {
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 26px;
  max-width: 960px;
}

.article-section h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  margin: 32px 0 14px;
}

.logo-rail {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
  padding: 0 0 34px;
}

.logo-rail img {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  display: block;
  height: 92px;
  object-fit: contain;
  padding: 24px;
  width: 100%;
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  margin-top: 22px;
}

.text-link.inline {
  display: inline;
  margin-top: 0;
}

.updates-hero {
  text-align: center;
}

.updates-hero .page-data {
  text-align: left;
}

.updates-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.updates-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 34px auto 0;
  max-width: 760px;
}

.updates-filter a {
  border: 1px solid transparent;
  color: rgba(10, 13, 13, 0.66);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 9px 12px;
}

.updates-filter a:hover,
.updates-filter a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.52);
  border-color: var(--line);
  color: var(--ink);
}

.updates-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 0px);
}

.updates-grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.updates-pagination {
  align-items: center;
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr);
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 24px;
}

.updates-pagination div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.updates-pagination a,
.updates-pagination span {
  align-items: center;
  border: 1px solid var(--line);
  color: rgba(10, 13, 13, 0.68);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 760;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0 13px;
}

.updates-pagination a:hover,
.updates-pagination a[aria-current="page"] {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.updates-pagination .pagination-next {
  justify-self: end;
}

.updates-pagination .is-disabled {
  opacity: 0.36;
}

.update-card {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  display: grid;
  min-width: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.update-card:hover {
  border-color: rgba(10, 13, 13, 0.24);
  box-shadow: 0 24px 80px rgba(42, 68, 78, 0.12);
  transform: translateY(-3px);
}

.update-card-media {
  align-items: center;
  aspect-ratio: 1.75;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 173, 32, 0.18), transparent 12rem),
    radial-gradient(circle at 78% 50%, rgba(34, 211, 238, 0.2), transparent 14rem),
    var(--black);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  justify-content: center;
  overflow: hidden;
}

.update-card-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.update-card-body {
  padding: 26px;
}

.update-meta {
  color: rgba(10, 13, 13, 0.52);
  display: flex;
  flex-wrap: wrap;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  gap: 10px;
}

.update-meta span + span::before {
  content: "/";
  margin-right: 10px;
}

.update-card h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  margin-top: 16px;
}

.update-card p {
  color: rgba(10, 13, 13, 0.66);
  line-height: 1.66;
  margin-top: 16px;
}

.updates-empty {
  border-top: 1px solid var(--line-strong);
  padding-top: 30px;
}

.updates-empty span {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.updates-empty h2 {
  font-size: clamp(2rem, 5vw, 5rem);
  margin-top: 20px;
  max-width: 900px;
}

.updates-empty p {
  color: rgba(10, 13, 13, 0.66);
  font-size: 1.06rem;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 680px;
}

.post-meta {
  margin-top: 24px;
}

.post-author {
  color: rgba(10, 13, 13, 0.66);
  margin-top: 12px;
}

.post-shell {
  display: grid;
  gap: clamp(36px, 6vw, 78px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 0px);
}

.post-content {
  border-top: 1px solid var(--line-strong);
  color: rgba(10, 13, 13, 0.74);
  font-size: 1.06rem;
  line-height: 1.78;
  min-width: 0;
  padding-top: 30px;
}

.post-cover,
.post-content figure img {
  border: 1px solid var(--line);
  display: block;
  height: auto;
  width: 100%;
}

.post-cover {
  margin-bottom: 34px;
}

.post-content p,
.post-content h2,
.post-content h3,
.post-content blockquote,
.post-content figure {
  max-width: 820px;
}

.post-content p + p,
.post-content p + h2,
.post-content p + h3,
.post-content figure + p,
.post-content blockquote + p {
  margin-top: 22px;
}

.post-content h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  margin-top: 46px;
}

.post-content h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  margin-top: 34px;
}

.post-content blockquote {
  border-left: 3px solid var(--blue);
  color: rgba(10, 13, 13, 0.86);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.45;
  margin-left: 0;
  padding-left: 24px;
}

.post-content figure {
  margin: 34px 0;
}

.post-content figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 10px;
}

.updates-sidebar {
  align-self: start;
  display: grid;
  gap: 20px;
  position: sticky;
  top: 96px;
}

.sidebar-links,
.recent-posts {
  display: grid;
  gap: 12px;
}

.sidebar-links a {
  color: rgba(10, 13, 13, 0.72);
  font-weight: 700;
}

.recent-posts a {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.recent-posts img {
  aspect-ratio: 1.6;
  border: 1px solid var(--line);
  display: block;
  object-fit: cover;
  width: 100%;
}

.recent-posts strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

.recent-posts small {
  color: var(--muted);
}

.content-aside {
  align-self: start;
  position: sticky;
  top: 96px;
}

.aside-card,
.contact-card {
  background:
    linear-gradient(rgba(10, 13, 13, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 13, 13, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.5);
  background-size: 28px 28px;
  border: 1px solid var(--line);
  padding: 28px;
}

.aside-card strong,
.contact-card strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.1;
}

.people-shell {
  display: grid;
  gap: 1px;
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(40px, 7vw, 96px) clamp(18px, 4vw, 0px);
}

.person-card {
  background: rgba(255, 255, 255, 0.46);
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: 260px minmax(0, 1fr);
  padding: clamp(30px, 5vw, 62px) 0;
}

.person-card h2 {
  font-size: clamp(2.4rem, 6vw, 6rem);
  margin-bottom: 28px;
}

.portrait-placeholder {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 35% 35%, rgba(185, 255, 102, 0.48), transparent 34%),
    radial-gradient(circle at 70% 70%, rgba(34, 211, 238, 0.28), transparent 36%),
    var(--black);
  color: var(--white);
  display: flex;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 3rem;
  justify-content: center;
  max-width: 260px;
}

.portrait-img {
  aspect-ratio: 1;
  border: 1px solid rgba(10, 13, 13, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(42, 68, 78, 0.13);
  display: block;
  filter: saturate(0.84) contrast(1.08) brightness(0.98) hue-rotate(3deg);
  max-width: 260px;
  object-fit: cover;
  width: 100%;
}

.contact-layout {
  display: grid;
  gap: clamp(36px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(72px, 9vw, 124px) clamp(18px, 4vw, 0px);
}

.contact-direct {
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 24px;
  padding-top: 28px;
}

.contact-direct span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-direct strong {
  display: block;
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
  letter-spacing: 0;
  line-height: 0.92;
}

.contact-direct p {
  color: rgba(10, 13, 13, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  max-width: 620px;
}

.contact-form {
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 22px;
  padding-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.hidden-field {
  display: none;
}

.contact-form label span,
.form-note {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  min-height: 52px;
  padding: 14px;
  resize: vertical;
}

.contact-form textarea {
  min-height: 180px;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  width: fit-content;
}

.contact-card {
  align-self: start;
  display: grid;
  gap: 24px;
}

.contact-card div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

@keyframes orbitPulse {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

@keyframes orbitSkew {
  from {
    transform: rotate(22deg);
  }
  to {
    transform: rotate(382deg);
  }
}

@keyframes orbitCounter {
  from {
    transform: rotate(-18deg);
  }
  to {
    transform: rotate(-378deg);
  }
}

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

@keyframes novaIgnition {
  0%,
  100% {
    box-shadow:
      0 0 0 12px rgba(255, 173, 32, 0.18),
      0 0 0 28px rgba(34, 211, 238, 0.1),
      0 24px 90px rgba(255, 126, 0, 0.32);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(255, 173, 32, 0.28),
      0 0 0 40px rgba(34, 211, 238, 0.16),
      0 28px 120px rgba(255, 126, 0, 0.52);
    transform: scale(1.045);
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.42);
  }
}

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

  .hero-orbit-field {
    transform: none;
  }
}

@media (min-width: 961px) and (max-width: 1320px) {
  .hero-orbit-field {
    right: clamp(22px, 4vw, 52px);
    width: 340px;
  }

  .star-node {
    font-size: 0.62rem;
    padding: 6px 7px;
  }

  .node-operators {
    right: 0;
  }

  .node-alliance {
    left: 0;
  }
}

@media (max-width: 960px) {
  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 32px 80px rgba(10, 13, 13, 0.12);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 18px 18px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 18px 0;
    width: 100%;
  }

  .home-page .site-nav {
    background: rgba(2, 2, 12, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  .home-page .site-nav a {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .split-heading,
  .thesis-layout,
  .network,
  .content-shell,
  .post-shell,
  .person-card,
  .contact-layout,
  .conviction-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .home-page .hero {
    min-height: 92svh;
  }

  .contact-direct strong {
    font-size: clamp(2.2rem, 10vw, 4.2rem);
  }

  .hero h1 {
    font-size: clamp(3.15rem, 10vw, 5.3rem);
  }

  .hero-data {
    display: none;
  }

  .hero-orbit-field {
    margin-top: 46px;
    min-height: 360px;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .nova-system {
    max-width: min(320px, 76vw);
  }

  .people-orbit-section {
    min-height: auto;
  }

  .node-operators {
    right: 0;
  }

  .node-alliance {
    left: 0;
  }

  .content-aside {
    position: static;
  }

  .updates-sidebar {
    position: static;
  }

  .logo-rail {
    grid-template-columns: 1fr;
  }

  .page-data {
    display: none;
  }

  .work-grid,
  .portfolio-grid,
  .updates-grid,
  .company-logo-grid,
  .ticker {
    grid-template-columns: 1fr;
  }

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

  .ticker span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    min-height: 58px;
    padding: 20px 18px;
  }

  .work-grid article,
  .portfolio-grid article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 250px;
    padding: 26px 0;
  }

  .work-grid article + article,
  .portfolio-grid article + article {
    padding-left: 0;
  }

  .work-grid h3 {
    margin-top: 72px;
  }

  .support-section .work-grid h3 {
    min-height: auto;
  }

  .support-section .work-grid article {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .portfolio-grid strong {
    margin-top: 62px;
  }
}

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

  .site-nav {
    top: 64px;
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .updates-pagination {
    grid-template-columns: 1fr 1fr;
  }

  .updates-pagination div {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .updates-pagination .pagination-prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .updates-pagination .pagination-next {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .page-hero {
    min-height: auto;
    padding-bottom: 42px;
    padding-top: 110px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 12.5vw, 4.8rem);
    max-width: 100%;
  }

  .brand-logo img {
    height: 34px;
    max-width: 190px;
  }

  .company-logo-grid a {
    min-height: 132px;
  }

  .hero-orbit-field {
    min-height: 340px;
  }

  .nova-system {
    margin-top: 30px;
    max-width: min(286px, 82vw);
  }

  .star-node {
    font-size: 0.62rem;
    padding: 6px 7px;
  }

  .node-council {
    left: 0;
  }

  .node-operators {
    right: 0;
    top: 30%;
  }

  .node-founders {
    bottom: 30%;
    right: 7%;
  }

  .thesis-layout,
  .thesis .section-index {
    max-width: calc(100vw - 36px);
  }

  .network-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
    padding-bottom: 28px;
    padding-top: 28px;
  }

  .footer-line {
    justify-content: flex-start;
    text-align: left;
  }
}
