:root {
  --black: #000000;
  --ink: #08070d;
  --storm: #1c0059;
  --storm-dark: #0b0025;
  --bolt: #7c70eb;
  --silver: #d1d0d0;
  --soft: #f1f0ec;
  --white: #ffffff;
  --muted: #7d7a85;
  --line: rgba(255, 255, 255, 0.18);
  --hairline: rgba(8, 7, 13, 0.13);
  --font: "Zalando Sans", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Zalando Sans Expanded", "Zalando Sans", "Inter", "Helvetica Neue", Arial, sans-serif;
  --type-largest: clamp(1.25rem, 1.75vw, 1.8rem);
  --type-body: clamp(1rem, 1.15vw, 1.12rem);
  --page-x: clamp(1.25rem, 5vw, 5.25rem);
  --section-y: clamp(6.25rem, 10vw, 10.5rem);
  --section-y-compact: clamp(4.5rem, 7vw, 7.25rem);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 320ms;
  --motion-medium: 520ms;
  --motion-slow: 820ms;
  --lift-small: translate3d(0, -0.18rem, 0);
  --lift-media: translate3d(0, -0.34rem, 0) scale(1.014);
}

@font-face {
  font-family: "Zalando Sans";
  src: url("assets/fonts/ZalandoSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zalando Sans";
  src: url("assets/fonts/ZalandoSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zalando Sans";
  src: url("assets/fonts/ZalandoSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zalando Sans Expanded";
  src: url("assets/fonts/ZalandoSansExpanded-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zalando Sans Expanded";
  src: url("assets/fonts/ZalandoSansExpanded-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #050505;
  color: var(--white);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

main > section {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 5rem;
}

body::selection {
  background: var(--bolt);
  color: var(--white);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--white);
  color: var(--black);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.page-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--bolt), #ffffff);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  left: var(--page-x);
  right: var(--page-x);
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.05rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 360ms var(--ease-premium), border-color 360ms var(--ease-premium), box-shadow 360ms var(--ease-premium), left 360ms var(--ease-premium), right 360ms var(--ease-premium), padding 360ms var(--ease-premium);
}

.site-header.is-scrolled {
  left: clamp(0.75rem, 2.2vw, 2.25rem);
  right: clamp(0.75rem, 2.2vw, 2.25rem);
  margin-top: 0.65rem;
  padding: 0.62rem clamp(0.8rem, 2vw, 1.35rem);
  background: rgba(5, 5, 7, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  width: clamp(108px, 9vw, 148px);
  height: auto;
  transition: opacity 360ms var(--ease-premium);
}

.brand-mark:hover img {
  opacity: 0.82;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.5vw, 1.15rem);
  padding: 0.34rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
  padding: 0.28rem 0.42rem;
  font-size: clamp(0.64rem, 0.75vw, 0.72rem);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--motion-fast) var(--ease-premium), opacity var(--motion-fast) var(--ease-premium);
}

nav a:hover,
nav a:focus-visible,
nav a.is-active {
  color: var(--white);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.34rem;
  height: 1px;
  background: var(--bolt);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms var(--ease-premium);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  overflow: hidden;
  padding: 7rem var(--page-x) clamp(3.25rem, 6vw, 5.75rem);
  background:
    radial-gradient(circle at 74% 34%, rgba(124, 112, 235, 0.1), transparent 34rem),
    radial-gradient(circle at 22% 78%, rgba(28, 0, 89, 0.32), transparent 30rem),
    linear-gradient(145deg, #000000 0%, #030008 58%, #0a0020 100%);
  perspective: 1200px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.hero-icon {
  position: absolute;
  right: clamp(1rem, 7vw, 7rem);
  top: clamp(7rem, 16vw, 14rem);
  width: clamp(220px, 28vw, 460px);
  opacity: 0.04;
}

.hero-film {
  position: absolute;
  inset: 7.5rem var(--page-x) 7.5rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(circle at 28% 42%, rgba(124, 112, 235, 0.13), transparent 19rem),
    radial-gradient(circle at 72% 56%, rgba(255, 255, 255, 0.045), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  opacity: 0.78;
  box-shadow: inset 0 0 110px rgba(0, 0, 0, 0.42);
  animation: filmBreath 28s ease-in-out infinite;
}

.hero-film::before {
  content: "";
  position: absolute;
  inset: 16% 12%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: skewX(-7deg);
}

.hero-brand-stage {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  opacity: 0.96;
  animation: heroEnter 950ms ease both;
}

.hero-brand-stage img {
  width: clamp(240px, 31vw, 520px);
}

.hero-brand-stage span {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-display);
  font-size: clamp(0.64rem, 0.82vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 520px;
  margin-bottom: 1rem;
  animation: contentRise 1050ms 250ms ease both;
}

.hero-kicker {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.92vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.light-section .eyebrow,
.media-band .eyebrow {
  color: var(--muted);
}

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

h1 {
  max-width: 500px;
  margin-bottom: 1rem;
  font-family: var(--font);
  font-size: var(--type-largest);
  line-height: 1.28;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: var(--type-largest);
  line-height: 1.2;
  font-weight: 500;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

p {
  font-size: var(--type-body);
  line-height: 1.62;
}

.hero-copy {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
}

.light-section {
  background: var(--soft);
  color: var(--ink);
  padding: var(--section-y) var(--page-x);
}

.intro-grid {
  padding-top: clamp(1rem, 3vw, 2.8rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.82fr);
  gap: clamp(2.5rem, 9vw, 9rem);
  position: relative;
}

.section-copy {
  color: #34313a;
  padding-top: 0.45rem;
}

.section-copy p {
  max-width: 610px;
}

.origin-note {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(8, 7, 13, 0.16);
  color: #56515f;
  font-size: 1rem;
  line-height: 1.55;
}

.statement-section {
  padding: var(--section-y-compact) var(--page-x);
  background:
    linear-gradient(90deg, rgba(124, 112, 235, 0.07), transparent 34%),
    #050505;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.statement-section .eyebrow {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  line-height: 1.2;
}

.statement-section p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--type-largest);
  font-weight: 500;
  line-height: 1.22;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
  min-height: clamp(660px, 82svh, 900px);
  background:
    linear-gradient(180deg, #f8f7f3 0%, #f5f4ef 58%, #efeee8 100%);
  color: var(--ink);
  padding: var(--section-y) var(--page-x);
  border-top: 1px solid rgba(8, 7, 13, 0.06);
  border-bottom: 1px solid rgba(8, 7, 13, 0.08);
}

.media-copy h2 {
  font-size: var(--type-largest);
}

.media-copy p:last-child {
  max-width: 520px;
  color: #54515a;
}

.media-controls {
  display: flex;
  gap: 0.6rem;
  margin-top: clamp(1.6rem, 4vw, 3.1rem);
}

.media-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(28, 0, 89, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--storm);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background var(--motion-fast) var(--ease-premium), border-color var(--motion-fast) var(--ease-premium), color var(--motion-fast) var(--ease-premium), transform var(--motion-fast) var(--ease-premium);
}

.media-arrow:hover,
.media-arrow:focus-visible {
  background: var(--storm);
  border-color: var(--storm);
  color: var(--white);
  transform: var(--lift-small);
}

.media-library {
  display: flex;
  gap: clamp(0.45rem, 0.8vw, 0.75rem);
  align-items: center;
  min-width: 0;
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  padding: 2.3rem 0.55rem 2.8rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overflow-anchor: none;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 90%, transparent);
}

.media-library::-webkit-scrollbar {
  display: none;
}

.media-item {
  flex: 0 0 clamp(190px, 19vw, 285px);
  position: relative;
  aspect-ratio: 0.76;
  margin: 0;
  overflow: hidden;
  opacity: 1;
  background: #0b0911;
  border: 1px solid rgba(28, 0, 89, 0.16);
  scroll-snap-align: start;
  transition: flex-basis var(--motion-medium) var(--ease-premium), opacity var(--motion-medium) var(--ease-premium), filter var(--motion-medium) var(--ease-premium), transform var(--motion-medium) var(--ease-premium), border-color var(--motion-medium) var(--ease-premium);
}

.media-item.is-current {
  flex-basis: clamp(260px, 31vw, 455px);
  border-color: rgba(28, 0, 89, 0.28);
}

.media-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 3, 8, 0) 42%, rgba(4, 3, 8, 0.42)),
    linear-gradient(90deg, rgba(248, 247, 243, 0.07), rgba(28, 0, 89, 0.08));
}

.media-item.is-next,
.media-item.is-third {
  filter: saturate(0.82) brightness(0.93);
  opacity: 0.72;
}

.media-item:not(.is-current):not(.is-next):not(.is-third) {
  filter: saturate(0.74) brightness(0.9);
  opacity: 0.52;
}

.media-item:hover,
.media-item:focus-within {
  z-index: 4;
  transform: var(--lift-media);
  opacity: 0.96;
}

.media-item.is-current:hover,
.media-item.is-current:focus-within {
  transform: var(--lift-media);
}

.media-item.has-video-error {
  background: #efeee9;
}

.motion-insert {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.74) contrast(1.04) brightness(0.9);
  opacity: 0.96;
  animation: subtle-media-drift 24s ease-in-out infinite alternate;
}

.media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.74) contrast(1.04) brightness(0.94);
  animation: subtle-media-drift 24s ease-in-out infinite alternate;
}

.media-label {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 3;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity var(--motion-fast) var(--ease-premium), transform var(--motion-fast) var(--ease-premium);
}

.media-item.is-current .media-label,
.media-item:hover .media-label,
.media-item:focus-within .media-label {
  opacity: 1;
  transform: translateY(0);
}

.motion-insert-primary {
  filter: grayscale(1) blur(5px) contrast(0.96) brightness(0.82);
  opacity: 0.9;
  transform: scale(1.04);
}

@keyframes subtle-media-drift {
  from {
    transform: scale(1.012) translate3d(-0.25%, -0.18%, 0);
  }

  to {
    transform: scale(1.034) translate3d(0.3%, 0.22%, 0);
  }
}

.orbit-system {
  position: relative;
  width: min(62%, 340px);
  aspect-ratio: 1;
  animation: orbitTurn 52s linear infinite;
}

.orbit-system,
.orbit-system span {
  border: 1px solid rgba(28, 0, 89, 0.18);
  border-radius: 999px;
}

.orbit-system span {
  position: absolute;
  inset: 16%;
}

.orbit-system span:nth-child(2) {
  inset: 31%;
  border-color: rgba(124, 112, 235, 0.38);
}

.orbit-system span:nth-child(3) {
  inset: 46%;
  background: var(--storm);
  border-color: var(--storm);
}

.approach-section {
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(28, 0, 89, 0.86)),
    var(--storm-dark);
  padding: var(--section-y) var(--page-x);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-heading p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
}

.light-section .section-heading p {
  color: #423f47;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.pillar {
  min-height: 300px;
  padding: clamp(1.35rem, 2.8vw, 2.8rem);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background var(--motion-fast) var(--ease-premium), transform var(--motion-fast) var(--ease-premium), border-color var(--motion-fast) var(--ease-premium);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(124, 112, 235, 0.38);
  transform: var(--lift-small);
}

.pillar-number {
  display: block;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  color: rgba(124, 112, 235, 0.82);
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.pillar p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
}

.science-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 112, 235, 0.12), transparent 24rem),
    linear-gradient(180deg, #f6f5f0 0%, #fbfaf7 44%, #f1f0ec 100%);
  color: var(--ink);
}

.science-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(320px, 0.9fr);
  gap: clamp(2.5rem, 8vw, 8.5rem);
  align-items: center;
  border-top: 1px solid rgba(8, 7, 13, 0.11);
  padding-top: clamp(2.4rem, 5vw, 4.5rem);
}

.science-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.science-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 520px;
  margin-top: clamp(2.5rem, 5vw, 4.6rem);
  background: rgba(8, 7, 13, 0.12);
  border: 1px solid rgba(8, 7, 13, 0.12);
}

.science-metric {
  min-height: clamp(118px, 14vw, 165px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  background: rgba(255, 255, 255, 0.7);
  border-top: 0;
}

.science-metric strong {
  display: block;
  color: var(--storm);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1;
}

.science-metric span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.paper-visual {
  justify-self: end;
  width: min(100%, 650px);
  max-height: 640px;
  display: flex;
  gap: clamp(0.75rem, 1.4vw, 1.15rem);
  align-items: flex-start;
  padding: clamp(0.75rem, 1.4vw, 1.05rem) 0 clamp(1.8rem, 2.6vw, 2.4rem);
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overflow-anchor: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 92%, transparent);
}

.paper-visual::-webkit-scrollbar {
  display: none;
}

.paper-card {
  flex: 0 0 min(58vw, 220px);
  margin: 0;
  scroll-snap-align: start;
  opacity: 0.55;
  filter: saturate(0.82) brightness(0.96);
  cursor: pointer;
  transition: flex-basis var(--motion-medium) var(--ease-premium), transform var(--motion-medium) var(--ease-premium), filter var(--motion-medium) var(--ease-premium), opacity var(--motion-medium) var(--ease-premium);
}

.paper-card.is-current {
  flex-basis: min(72vw, 365px);
  opacity: 1;
  filter: none;
}

.paper-card.is-adjacent {
  opacity: 0.72;
  filter: saturate(0.9) brightness(0.98);
}

.paper-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(8, 7, 13, 0.13);
  background: var(--white);
}

.paper-card:hover,
.paper-card:focus-within {
  z-index: 3;
  opacity: 1;
  transform: var(--lift-media);
}

.partner-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: var(--section-y-compact) var(--page-x);
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid rgba(8, 7, 13, 0.08);
  border-bottom: 1px solid rgba(8, 7, 13, 0.08);
}

.partner-band .eyebrow {
  color: var(--muted);
}

.partner-band h2 {
  max-width: 850px;
}

.partner-band > p {
  align-self: end;
  max-width: 560px;
  color: #46424d;
}

.team-section {
  background:
    radial-gradient(circle at 62% 14%, rgba(124, 112, 235, 0.12), transparent 30rem),
    #050505;
  color: var(--white);
  padding-top: var(--section-y);
  padding-bottom: 0;
}

.team-section .eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

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

.team-photo {
  margin: 0 0 1px;
  min-height: clamp(300px, 44vw, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(124, 112, 235, 0.18), transparent 30rem),
    #000000;
  transform: translateZ(0);
}

.team-photo img {
  width: min(100%, 1040px);
  margin: 0 auto;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.01);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.team-card {
  min-height: 230px;
  background: #0b0b0d;
  padding: clamp(1.2rem, 2.8vw, 2.15rem);
  transition: background var(--motion-fast) var(--ease-premium), transform var(--motion-fast) var(--ease-premium);
}

.team-card:hover {
  background: #101015;
  transform: var(--lift-small);
}

.portrait-slot {
  display: none;
}

.team-card .role {
  margin-bottom: 0.9rem;
  color: var(--bolt);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.team-card p:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--motion-fast) var(--ease-premium), opacity var(--motion-fast) var(--ease-premium), transform var(--motion-fast) var(--ease-premium);
}

.linkedin-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.8);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.linkedin-link:hover,
.linkedin-link:focus-visible {
  color: var(--white);
  transform: translate3d(0.18rem, 0, 0);
}

.contact-section {
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(circle at 70% 10%, rgba(124, 112, 235, 0.18), transparent 28rem),
    linear-gradient(145deg, #000000, #0b0025),
    var(--black);
}

.contact-panel {
  max-width: 980px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.email-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--type-largest);
  font-weight: 700;
  line-height: 1.12;
  text-decoration-color: var(--bolt);
  text-underline-offset: 0.16em;
  transition: color var(--motion-fast) var(--ease-premium), text-decoration-color var(--motion-fast) var(--ease-premium);
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--bolt);
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 0.78fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  padding: clamp(2rem, 4vw, 3.25rem) var(--page-x);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030303;
  color: rgba(255, 255, 255, 0.38);
}

.site-footer img {
  width: 92px;
  opacity: 0.72;
}

.footer-brand p {
  max-width: 8rem;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  line-height: 1.45;
  text-transform: none;
}

.footer-legal {
  display: grid;
  gap: 0.45rem;
  max-width: 1100px;
  padding-left: clamp(0rem, 2vw, 2rem);
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: clamp(0.66rem, 0.68vw, 0.74rem);
  line-height: 1.5;
  text-transform: none;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-170px, -170px, 0);
  }
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  to {
    opacity: 0.96;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes filmBreath {
  0%,
  100% {
    opacity: 0.72;
    filter: brightness(0.94);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.01);
  }
}

@keyframes contentRise {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.22;
    transform: scale(1.08);
  }
}

@keyframes orbitTurn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity var(--motion-slow) var(--ease-premium), transform var(--motion-slow) var(--ease-premium);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-group .pillar:nth-child(2),
.reveal-group .team-card:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-group .pillar:nth-child(3),
.reveal-group .team-card:nth-child(3) {
  transition-delay: 180ms;
}

.reveal-group .pillar:nth-child(4) {
  transition-delay: 270ms;
}

@media (max-width: 980px) {
  :root {
    --page-x: clamp(1.1rem, 4.8vw, 2.25rem);
    --section-y: clamp(4.75rem, 10vw, 7rem);
    --section-y-compact: clamp(3.6rem, 8vw, 5.4rem);
  }

  .site-header {
    left: var(--page-x);
    right: var(--page-x);
    gap: 1rem;
  }

  nav {
    gap: 0.35rem;
  }

  nav a {
    padding-inline: 0.28rem;
    font-size: 0.62rem;
  }

  .intro-grid,
  .science-showcase,
  .media-band,
  .partner-band {
    grid-template-columns: 1fr;
  }

  .paper-visual {
    justify-self: start;
    width: min(100%, 620px);
  }

  .media-library {
    gap: 0.85rem;
    margin-inline: calc(var(--page-x) * -1);
    padding-inline: var(--page-x);
    scroll-padding-inline: var(--page-x);
    mask-image: none;
  }

  .media-item,
  .media-item.is-current {
    flex-basis: min(38vw, 300px);
  }

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

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

@media (max-width: 640px) {
  :root {
    --type-largest: clamp(1.18rem, 5.2vw, 1.48rem);
    --type-body: clamp(1rem, 4.1vw, 1.08rem);
    --page-x: clamp(1rem, 5.4vw, 1.45rem);
    --section-y: clamp(4rem, 13vw, 5.8rem);
    --section-y-compact: clamp(3.1rem, 10vw, 4.4rem);
  }

  body {
    min-width: 320px;
  }

  nav {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    left: var(--page-x);
    right: var(--page-x);
    margin-top: 0;
    padding: 1rem 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand-mark img {
    width: clamp(104px, 36vw, 132px);
  }

  .hero {
    min-height: 92svh;
    padding-top: 6.25rem;
    padding-bottom: 3.25rem;
  }

  .hero-film {
    inset: 6.8rem var(--page-x) 5.6rem;
  }

  .hero-brand-stage {
    gap: 0.8rem;
  }

  .hero-brand-stage img {
    width: clamp(72px, 24vw, 108px);
  }

  .hero-brand-stage span {
    font-size: clamp(0.95rem, 4.9vw, 1.25rem);
    line-height: 1.18;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-kicker,
  h1 {
    max-width: 18rem;
  }

  .light-section,
  .statement-section,
  .media-band,
  .approach-section,
  .partner-band,
  .team-section,
  .contact-section {
    padding-inline: var(--page-x);
  }

  .intro-grid,
  .media-band,
  .partner-band {
    gap: 2rem;
  }

  .statement-section p {
    line-height: 1.28;
  }

  .media-library {
    overflow-x: auto;
    padding-top: 1.1rem;
    padding-bottom: 1.8rem;
  }

  .media-item {
    flex-basis: 64vw;
    max-width: 245px;
  }

  .media-item.is-current {
    flex-basis: 76vw;
    max-width: 305px;
  }

  .media-label {
    left: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.62rem;
  }

  .media-item:nth-child(3n),
  .media-item:nth-child(3n + 2) {
    transform: none;
  }

  .paper-visual {
    width: auto;
    max-width: none;
    margin-inline: calc(var(--page-x) * -1);
    padding-inline: var(--page-x);
    scroll-padding-inline: var(--page-x);
    mask-image: none;
  }

  .paper-card {
    flex-basis: min(68vw, 235px);
  }

  .paper-card.is-current {
    flex-basis: min(78vw, 285px);
  }

  .science-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: transparent;
    border: 0;
  }

  .science-metric {
    min-height: 105px;
    border: 1px solid rgba(8, 7, 13, 0.12);
  }

  .science-metric strong {
    font-size: clamp(1.55rem, 10vw, 2.35rem);
  }

  .team-photo {
    min-height: clamp(250px, 76vw, 390px);
  }

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

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

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-legal {
    padding-left: 0;
  }

  .email-link {
    overflow-wrap: anywhere;
  }
}

@media (hover: none) {
  .media-arrow:hover,
  .media-item:hover,
  .media-item.is-current:hover,
  .paper-card:hover,
  .pillar:hover,
  .team-card:hover,
  .linkedin-link:hover {
    transform: none;
  }

  .media-item:focus-within,
  .paper-card:focus-within,
  .media-arrow:focus-visible,
  .linkedin-link:focus-visible {
    transform: var(--lift-small);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
