:root {
  --bg: #06101f;
  --bg-soft: #0c1730;
  --panel: rgba(10, 24, 47, 0.76);
  --panel-strong: rgba(5, 14, 31, 0.92);
  --paper: #f5f8fc;
  --paper-strong: #ffffff;
  --ink: #0e1a2f;
  --ink-soft: #4f627d;
  --line: rgba(125, 160, 214, 0.22);
  --line-strong: rgba(91, 187, 255, 0.35);
  --navy: #002e5d;
  --teal: #4fd5ff;
  --teal-soft: rgba(79, 213, 255, 0.16);
  --gold: #f7c44c;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.9);
  --white-muted: rgba(255, 255, 255, 0.8);
  --shadow: 0 30px 60px rgba(3, 10, 22, 0.3);
  --radius: 28px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--white);
  background: #eff4fa;
}

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

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

button,
.button {
  font: inherit;
}

code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92em;
}

.site-shell {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: -1;
  height: clamp(980px, 104vw, 1220px);
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(79, 213, 255, 0.18), transparent 26%),
    radial-gradient(circle at 20% 20%, rgba(0, 71, 186, 0.3), transparent 24%),
    linear-gradient(180deg, #071221 0%, #081426 80%, rgba(8, 20, 38, 0) 100%);
  animation: shellGlowShift 18s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 16, 31, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.45rem 0.6rem 0.45rem 0.5rem;
}

.brand-mark {
  position: relative;
  width: 2.55rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  transform: rotate(-22deg);
  background:
    radial-gradient(circle at 24% 24%, rgba(142, 231, 255, 0.28), transparent 18%),
    linear-gradient(145deg, rgba(10, 42, 84, 0.98), rgba(4, 15, 33, 0.98));
  border: 1px solid rgba(142, 231, 255, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(2, 10, 23, 0.42),
    0 0 24px rgba(79, 213, 255, 0.18);
  will-change: transform;
  animation: capsuleMarkFloat 7s ease-in-out infinite;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
}

.brand-mark::before {
  inset: 20% 14%;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0 45%,
      rgba(79, 213, 255, 0.96) 45% 100%
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 18px rgba(79, 213, 255, 0.26);
  animation: capsuleCoreShift 6s ease-in-out infinite;
}

.brand-mark::after {
  inset: -20%;
  border-radius: 50%;
  background:
    conic-gradient(
      from 220deg,
      transparent 0 18%,
      rgba(79, 213, 255, 0.9) 18% 24%,
      transparent 24% 58%,
      rgba(0, 71, 186, 0.75) 58% 64%,
      transparent 64% 100%
    );
  mask: radial-gradient(circle, transparent 54%, black 55% 64%, transparent 65%);
  transform: rotate(22deg);
  animation: brandSweep 8s linear infinite;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 0.12rem;
  color: var(--white-muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0 1rem;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 7vw, 6rem);
}

.hero-copy,
.hero-visual,
.section-head,
.thesis,
.story-block,
.pillar,
.publication,
.contact-panel {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.hero-copy.is-visible,
.hero-visual.is-visible,
.section-head.is-visible,
.thesis.is-visible,
.story-block.is-visible,
.pillar.is-visible,
.publication.is-visible,
.contact-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 0.22em;
}

.eyebrow a:hover,
.eyebrow a:focus-visible {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.54);
}

.hero h1,
.section h2,
.contact-panel h2 {
  margin: 0;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 13.5ch;
  font-size: clamp(3rem, 6.5vw, 6rem);
}

.hero h1 span {
  color: var(--teal);
}

.hero-intro,
.section-intro,
.contact-panel p,
.signal-copy h2,
.publication p,
.pillar-copy p {
  line-height: 1.65;
}

.hero-intro {
  max-width: 60ch;
  margin: 1.4rem 0 0;
  color: var(--white-soft);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.hero-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-inline-link::before {
  content: "";
  width: 0.94rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 48%, rgba(79, 213, 255, 0.96) 48% 100%);
  box-shadow:
    0 0 0 1px rgba(142, 231, 255, 0.24),
    0 0 14px rgba(79, 213, 255, 0.18);
  transform: rotate(-18deg);
  animation: capsuleTagFloat 6.4s ease-in-out infinite;
}

.hero-inline-link::after {
  content: "↗";
  color: var(--teal);
}

.hero-inline-link:hover,
.hero-inline-link:focus-visible {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #03111d;
  background: linear-gradient(135deg, #ffffff, #8ee7ff);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.2rem 0 0;
}

.stats div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stats dt {
  color: var(--teal);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.stats dd {
  margin: 0.35rem 0 0;
  color: var(--white-muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.2rem;
  justify-items: end;
}

.hero-portrait-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 27rem);
  aspect-ratio: 1;
}

.hero-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(79, 213, 255, 0.28), transparent 42%),
    linear-gradient(160deg, rgba(0, 71, 186, 0.28), transparent 60%);
  filter: blur(20px);
  will-change: transform, opacity;
  animation: haloPulse 8s ease-in-out infinite;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  width: 54%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(79, 213, 255, 0.18);
  border-radius: 50%;
  will-change: transform;
  animation: spin 22s linear infinite;
}

.orbit-one {
  inset: 6%;
}

.orbit-two {
  inset: 17%;
  animation-direction: reverse;
  animation-duration: 17s;
}

.orbit-three {
  inset: 28%;
  animation-duration: 14s;
}

.signal-panel {
  position: relative;
  width: min(100%, 30rem);
  min-height: 17rem;
  padding: 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(79, 213, 255, 0.14), transparent 26%),
    linear-gradient(160deg, rgba(13, 29, 56, 0.95), rgba(5, 14, 31, 0.97));
  box-shadow: var(--shadow);
  overflow: hidden;
  will-change: transform;
  animation: panelFloat 10.5s ease-in-out infinite;
}

.signal-grid,
.signal-panel::after {
  position: absolute;
  inset: 0;
  content: "";
}

.signal-grid {
  background:
    linear-gradient(rgba(79, 213, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 213, 255, 0.08) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 92%);
  animation: gridDrift 12s linear infinite;
}

.signal-panel::after {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(79, 213, 255, 0.08) 46%,
    transparent 58%
  );
  animation: sweep 5s linear infinite;
}

.signal-copy,
.signal-path {
  position: relative;
  z-index: 1;
}

.signal-label {
  margin: 0;
  color: var(--white-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-copy h2 {
  max-width: 16ch;
  margin-top: 0.9rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.signal-path {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.signal-path::before {
  content: "";
  position: absolute;
  left: 16%;
  top: 54%;
  width: 66%;
  height: 20%;
  border-top: 2px solid rgba(79, 213, 255, 0.55);
  border-right: 2px solid rgba(79, 213, 255, 0.55);
  border-bottom: 2px solid rgba(79, 213, 255, 0.55);
  border-radius: 999px;
  transform: translateY(-50%) rotate(-6deg);
  transform-origin: center;
  animation: signalArcBreathe 9s ease-in-out infinite;
}

.path-dot {
  position: absolute;
  width: 0.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 12px rgba(79, 213, 255, 0.08);
}

.dot-a {
  left: 15%;
  top: 55%;
  animation: pulse 2.5s ease-in-out infinite;
}

.dot-b {
  left: 48%;
  top: 47%;
  animation: pulse 2.5s ease-in-out 0.8s infinite;
}

.dot-c {
  right: 17%;
  top: 57%;
  animation: pulse 2.5s ease-in-out 1.6s infinite;
}

.article-figure {
  display: grid;
  gap: 0.7rem;
  width: min(100%, 28rem);
  margin: 0;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  will-change: transform;
  animation: figureDrift 9s ease-in-out infinite;
}

.article-figure img {
  border-radius: 18px;
  background: #fff;
}

.article-figure figcaption {
  display: grid;
  gap: 0.35rem;
  color: var(--white-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.article-figure figcaption a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 0.2em;
}

.article-figure figcaption span {
  color: #8ee7ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-figure figcaption strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white-soft);
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--ink);
}

.section-head {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.section-head .eyebrow {
  color: #45617f;
}

.section h2,
.contact-panel h2 {
  max-width: 14ch;
  font-size: clamp(2.15rem, 4vw, 4rem);
  color: var(--ink);
}

.section-intro,
.contact-panel p,
.thesis p,
.publication-meta,
.person-meta,
.empty-state,
.footer-note {
  color: var(--ink-soft);
}

.intro-band {
  margin-top: 1rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(245, 248, 252, 0.88), rgba(236, 243, 251, 0.95));
  border: 1px solid rgba(0, 46, 93, 0.08);
  box-shadow: 0 28px 60px rgba(9, 23, 43, 0.08);
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.thesis {
  position: relative;
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 46, 93, 0.08);
  box-shadow: 0 18px 40px rgba(9, 23, 43, 0.07);
}

.thesis::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 1.25rem;
  width: 2.8rem;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform-origin: left;
  animation: accentLineShift 6.8s ease-in-out infinite;
}

.thesis h3,
.story-copy h3,
.pillar-copy h3,
.person-card h3 {
  margin: 1.35rem 0 0.6rem;
  font-size: 1.45rem;
  color: var(--ink);
}

.visual-section {
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(245, 248, 252, 0.88), rgba(236, 243, 251, 0.95));
  border: 1px solid rgba(0, 46, 93, 0.08);
  box-shadow: 0 28px 60px rgba(9, 23, 43, 0.08);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.story-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 46, 93, 0.08);
  box-shadow: 0 18px 40px rgba(9, 23, 43, 0.08);
}

.story-block::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--navy), var(--teal));
  animation: storyRailGlow 7.6s ease-in-out infinite;
}

.story-block.is-reverse .story-copy {
  order: 2;
}

.story-block.is-reverse .story-media-grid {
  order: 1;
}

.story-copy {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding-left: 1rem;
}

.story-phase {
  margin: 0;
  color: #345a87;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-copy h3 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  letter-spacing: -0.035em;
}

.story-copy > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.story-points {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0.1rem 0 0;
  list-style: none;
}

.story-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
}

.story-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.story-media-grid.is-single {
  grid-template-columns: 1fr;
}

.story-media {
  display: grid;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(239, 245, 252, 0.96), rgba(229, 239, 250, 0.9));
  border: 1px solid rgba(0, 46, 93, 0.08);
  box-shadow: 0 14px 30px rgba(9, 23, 43, 0.08);
}

.story-media img {
  width: 100%;
  max-height: 20rem;
  object-fit: contain;
  background: #fff;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 46, 93, 0.08);
  transition: transform 220ms ease;
}

.story-media:hover img,
.story-media:focus-within img {
  transform: scale(1.025);
}

.story-media figcaption {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1rem 1.1rem;
}

.story-media strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.45;
}

.story-link::after {
  content: "↗";
}

.story-source {
  color: #56779f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pillar-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.pillar {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 1rem 2rem;
  align-items: start;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(0, 46, 93, 0.12);
}

.pillar:last-child {
  border-bottom: 1px solid rgba(0, 46, 93, 0.12);
}

.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #3d628e;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pillar-tag::before {
  content: "";
  width: 0.85rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal), rgba(79, 213, 255, 0.3));
}

.pillar-copy p {
  max-width: 62ch;
  margin: 0.75rem 0 0;
}

.pillar-side {
  display: grid;
  gap: 1rem;
}

.pillar-highlights {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pillar-highlights li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pillar-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
}

.pillar-visual {
  position: relative;
  min-height: 13rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 46, 93, 0.08);
  background:
    radial-gradient(circle at 24% 28%, rgba(79, 213, 255, 0.45), transparent 22%),
    radial-gradient(circle at 75% 74%, rgba(0, 71, 186, 0.3), transparent 20%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(232, 240, 250, 0.92));
  background-size: 108% 108%, 112% 112%, 100% 100%;
  will-change: transform, background-position;
  animation: panelFloat 10.5s ease-in-out infinite;
}

.pillar-visual::before,
.pillar-visual::after {
  content: "";
  position: absolute;
}

.pillar-visual.layers::before {
  inset: 18% 10%;
  background:
    linear-gradient(180deg, rgba(0, 46, 93, 0.15), rgba(0, 46, 93, 0.15)) 0 10% / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(79, 213, 255, 0.45), rgba(79, 213, 255, 0.45)) 0 38% / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(0, 71, 186, 0.4), rgba(0, 71, 186, 0.4)) 0 66% / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(14, 26, 47, 0.7), rgba(14, 26, 47, 0.7)) 0 92% / 100% 2px no-repeat;
  will-change: transform, opacity;
  animation: tissueLineDrift 9.2s ease-in-out infinite;
}

.pillar-visual.layers::after {
  left: 8%;
  right: 8%;
  top: 22%;
  bottom: 22%;
  border-radius: 999px;
  border: 2px solid rgba(14, 26, 47, 0.12);
  transform: rotate(-10deg);
  transform-origin: center;
  will-change: transform, opacity;
  animation: capsuleOutlineTilt 9.2s ease-in-out infinite;
}

.pillar-visual.localization::before {
  inset: 14%;
  border: 2px dashed rgba(0, 46, 93, 0.22);
  border-radius: 999px;
  will-change: transform, opacity;
  animation: capsuleBeacon 10s ease-in-out infinite;
}

.pillar-visual.localization::after {
  left: 18%;
  right: 18%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--navy), var(--teal), transparent);
  box-shadow:
    0 -34px 0 -1px rgba(79, 213, 255, 0.18),
    0 34px 0 -1px rgba(0, 46, 93, 0.15);
  will-change: transform, opacity;
  animation: capsuleSignalSweep 8.2s ease-in-out infinite;
}

.pillar-visual.delivery::before {
  left: 18%;
  right: 18%;
  top: 28%;
  bottom: 28%;
  border-radius: 999px;
  border: 2px solid rgba(14, 26, 47, 0.18);
  will-change: opacity, box-shadow;
  animation: capsuleRailPulse 7s ease-in-out infinite;
}

.pillar-visual.delivery::after {
  width: 24%;
  height: 38%;
  left: 38%;
  top: 31%;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(0, 46, 93, 0.9) 50%, rgba(79, 213, 255, 0.95) 50%);
  box-shadow:
    -88px 42px 0 -32px rgba(79, 213, 255, 0.28),
    88px -24px 0 -32px rgba(0, 71, 186, 0.24);
  will-change: transform;
  animation: capsuleGlide 6.8s ease-in-out infinite;
}

.publication-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.publication {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 1.25rem 2rem;
  padding: 1.5rem 1.4rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 46, 93, 0.08);
  box-shadow: 0 18px 40px rgba(9, 23, 43, 0.08);
}

.publication-year {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  color: #345a87;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.publication-year::before {
  content: "";
  width: 1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.publication h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  color: var(--ink);
  letter-spacing: -0.03em;
}

.publication p {
  margin: 0.85rem 0 0;
}

.publication-meta {
  align-self: end;
  display: grid;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 46, 93, 0.09);
}

.publication-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 600;
}

.publication-link::after {
  content: "↗";
}

.people-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.filter-chip {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 46, 93, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

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

.people-groups {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.people-group {
  display: grid;
  gap: 1rem;
}

.people-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.person-card {
  display: grid;
  gap: 0.85rem;
}

.person-portrait,
.person-fallback {
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(79, 213, 255, 0.28), transparent 36%),
    linear-gradient(160deg, rgba(0, 46, 93, 0.85), rgba(6, 16, 31, 0.95));
  border: 1px solid rgba(0, 46, 93, 0.12);
  box-shadow: 0 18px 38px rgba(9, 23, 43, 0.1);
}

.person-portrait {
  object-fit: cover;
}

.person-fallback {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.6rem;
  font-weight: 600;
}

.person-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.person-meta {
  display: grid;
  gap: 0.18rem;
  font-size: 0.96rem;
}

.empty-state {
  padding: 1.3rem 1.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 46, 93, 0.08);
}

.contact-section {
  padding-bottom: 5rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.6rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(79, 213, 255, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 243, 251, 0.96));
  border: 1px solid rgba(0, 46, 93, 0.08);
  box-shadow: 0 28px 60px rgba(9, 23, 43, 0.1);
}

.contact-guidance {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 46, 93, 0.08);
}

.contact-guidance h3,
.contact-guidance p {
  margin: 0;
}

.contact-guidance h3 {
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-guidance p,
.contact-guidance li {
  color: var(--ink-soft);
  line-height: 1.6;
}

.contact-guidance ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.contact-guidance-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: 0.1rem;
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(0, 46, 93, 0.24);
  text-underline-offset: 0.2em;
}

.contact-guidance-link::after {
  content: "↗";
}

.contact-guidance-link:hover,
.contact-guidance-link:focus-visible {
  color: #0a4d93;
  text-decoration-color: rgba(10, 77, 147, 0.48);
}

.detail-main {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0 5rem;
}

.detail-page {
  display: grid;
  gap: 1.8rem;
  color: var(--ink);
}

.detail-head {
  display: grid;
  gap: 0.9rem;
}

.detail-head .eyebrow {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0;
}

.detail-head h1 {
  margin: 0;
  max-width: 14ch;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.detail-intro {
  max-width: 62ch;
  margin: 0;
  color: var(--white-soft);
  line-height: 1.7;
}

.detail-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 46, 93, 0.08);
  box-shadow: 0 24px 54px rgba(9, 23, 43, 0.1);
}

.detail-card p,
.detail-card li {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.detail-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.2rem;
}

.detail-card strong {
  color: var(--ink);
}

.detail-card a {
  color: var(--navy);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.35rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(7, 18, 33, 0.98), rgba(0, 46, 93, 0.95));
  color: var(--white);
}

.contact-card h3,
.contact-card p {
  margin: 0;
  color: var(--white);
}

.contact-detail {
  display: grid;
  gap: 0.18rem;
}

.contact-detail span {
  color: rgba(255, 255, 255, 0.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-card a {
  color: #8ee7ff;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 0 0 2rem;
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 46, 93, 0.12);
}

.site-footer a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(0, 46, 93, 0.26);
  text-underline-offset: 0.22em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #0a4d93;
  text-decoration-color: rgba(10, 77, 147, 0.5);
}

.footer-separator {
  color: rgba(79, 98, 125, 0.72);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sweep {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(220%);
  }
}

@keyframes shellGlowShift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50% {
    transform: translate3d(0, -10px, 0);
    opacity: 0.94;
  }
}

@keyframes brandSweep {
  to {
    transform: rotate(382deg);
  }
}

@keyframes capsuleMarkFloat {
  0%,
  100% {
    transform: rotate(-22deg) translateY(0);
  }
  50% {
    transform: rotate(-18deg) translateY(-2px);
  }
}

@keyframes capsuleCoreShift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(1px);
  }
}

@keyframes capsuleTagFloat {
  0%,
  100% {
    transform: rotate(-18deg) translateY(0);
    opacity: 0.92;
  }
  50% {
    transform: rotate(-14deg) translateY(-1px);
    opacity: 1;
  }
}

@keyframes haloPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes figureDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(0.35deg);
  }
}

@keyframes accentLineShift {
  0%,
  100% {
    transform: scaleX(0.92);
    opacity: 0.88;
  }
  50% {
    transform: scaleX(1.06);
    opacity: 1;
  }
}

@keyframes storyRailGlow {
  0%,
  100% {
    opacity: 0.82;
    box-shadow: 0 0 0 rgba(79, 213, 255, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(79, 213, 255, 0.22);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }
  50% {
    transform: translateY(-2px);
    background-position: 4% 2%, 96% 98%, 50% 50%;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 2.8rem, 2.8rem 0;
  }
}

@keyframes signalArcBreathe {
  0%,
  100% {
    transform: translateY(-50%) rotate(-6deg) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translateY(-50%) rotate(-5deg) scale(1.015);
    opacity: 1;
  }
}

@keyframes tissueLineDrift {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.92;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes capsuleOutlineTilt {
  0%,
  100% {
    transform: rotate(-10deg) translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: rotate(-8deg) translateX(5px);
    opacity: 1;
  }
}

@keyframes capsuleBeacon {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

@keyframes capsuleSignalSweep {
  0%,
  100% {
    transform: translateX(-2%) scaleX(0.98);
    opacity: 0.78;
  }
  50% {
    transform: translateX(2%) scaleX(1.02);
    opacity: 1;
  }
}

@keyframes capsuleRailPulse {
  0%,
  100% {
    opacity: 0.9;
    box-shadow: inset 0 0 0 0 rgba(79, 213, 255, 0);
  }
  50% {
    opacity: 1;
    box-shadow: inset 0 0 22px rgba(79, 213, 255, 0.08);
  }
}

@keyframes capsuleGlide {
  0%,
  100% {
    transform: translateX(-4px) rotate(-0.6deg);
  }
  50% {
    transform: translateX(7px) rotate(1deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.8;
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
  }

  .hero,
  .story-block,
  .contact-panel,
  .publication,
  .pillar {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-items: stretch;
  }

  .stats,
  .thesis-grid,
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-media-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section h2,
  .contact-panel h2,
  .detail-head h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.9rem;
  }

  .brand {
    padding: 0.2rem 0.1rem;
  }

  .brand-mark {
    width: 2.25rem;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 0.55rem 0.9rem;
    padding: 0;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero {
    gap: 1.5rem;
    padding-top: 2.2rem;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.8rem, 15vw, 4.5rem);
    line-height: 0.92;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero-links {
    margin-top: 0.75rem;
  }

  .button {
    width: 100%;
  }

  .stats,
  .thesis-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 0.75rem;
  }

  .story-block {
    gap: 1rem;
    padding: 1rem;
  }

  .story-block::before {
    left: 1rem;
    right: 1rem;
    top: 0.8rem;
    bottom: auto;
    width: auto;
    height: 3px;
  }

  .story-copy {
    padding-top: 0.65rem;
    padding-left: 0;
  }

  .story-copy h3 {
    max-width: none;
    font-size: 1.7rem;
  }

  .story-media img {
    max-height: 15rem;
  }

  .publication {
    padding: 1.2rem 1rem;
  }

  .publication h3 {
    font-size: 1.45rem;
  }

  .people-controls {
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }

  .filter-chip {
    flex: 0 0 auto;
    padding: 0.68rem 0.9rem;
  }

  .people-groups {
    gap: 1.5rem;
  }

  .person-card {
    gap: 0.7rem;
  }

  .contact-panel {
    gap: 1.1rem;
    padding: 1.1rem;
  }

  .contact-guidance {
    padding: 1rem;
  }

  .detail-main {
    width: min(calc(100% - 1.25rem), var(--max));
    padding-top: 2.2rem;
  }

  .detail-head h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .detail-actions {
    flex-direction: column;
  }

  .signal-panel,
  .article-figure,
  .hero-portrait-wrap {
    width: 100%;
  }

  .hero-portrait {
    width: min(58%, 15rem);
  }

  .section,
  .hero,
  .site-header,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--max));
  }
}

@media (max-width: 560px) {
  .site-header {
    margin-top: 0.75rem;
    padding: 0.8rem;
    border-radius: 24px;
  }

  .hero {
    padding: 1.8rem 0 3rem;
  }

  .eyebrow {
    font-size: 0.77rem;
    letter-spacing: 0.06em;
  }

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

  .section {
    padding: 2.4rem 0;
  }

  .intro-band,
  .visual-section,
  .contact-panel {
    border-radius: 26px;
  }

  .thesis,
  .story-block,
  .publication,
  .person-portrait,
  .person-fallback,
  .contact-guidance,
  .contact-card {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
