@import url("./fonts/manrope-76eca2803f7f/style.css");
@import url("./fonts/unbounded-4c246c4715de/style.css");

:root {
  --font-body: "Manrope";
  --font-display: "Unbounded";
  --graphite: #06191d;
  --deep: #092429;
  --panel: #0d3036;
  --accent: #31d6c4;
  --accent-deep: #079b8d;
  --accent-soft: #a7f5eb;
  --gold: #f0c86a;
  --gold-bright: #ffe29a;
  --milk: #fff8ed;
  --paper: #f7f2e8;
  --ink: #0a2226;
  --soft: #a5bab8;
  --line: rgba(49, 214, 196, 0.28);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--graphite);
  color: var(--milk);
  font-family: var(--font-body), sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
video {
  font: inherit;
}
main {
  overflow: hidden;
}

.topbar {
  height: 112px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1.25fr auto 0.65fr;
  gap: 26px;
  align-items: center;
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 248, 237, 0.18);
  background: rgba(6, 25, 29, 0.84);
  backdrop-filter: blur(20px);
}
.identity {
  display: flex;
  align-items: center;
  width: max-content;
}
.identity > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.identity b {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.identity small {
  max-width: 385px;
  color: var(--accent-soft);
  font-size: 9.5px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
nav {
  display: flex;
  gap: 18px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}
nav a {
  color: #d0ddda;
  transition: color 0.25s;
}
nav a:hover {
  color: var(--accent);
}
.nav-contact {
  justify-self: end;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  transition: 0.25s;
}
.nav-contact:hover {
  background: var(--accent);
  color: var(--ink);
}
.arrow-icon {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  flex: none;
}
.arrow-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  min-height: 930px;
  position: relative;
  padding: 178px 4.5vw 50px;
  display: grid;
  grid-template-columns: 58% 42%;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(circle at 70% 25%, #12505a 0, transparent 34%),
    linear-gradient(120deg, #06191d, #0a3439 72%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(49, 214, 196, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 214, 196, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-left: 3.5vw;
  max-width: 55vw;
}
.tech-label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #526d68;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.tech-label span {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 9px;
}
.tech-label::after {
  content: "";
  height: 1px;
  width: 48px;
  background: #78958f;
}
.tech-label.inverse {
  color: #bad0cc;
}
.tech-label.inverse span {
  color: var(--accent);
}
.tech-label.inverse::after {
  background: var(--accent);
  opacity: 0.75;
}
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(48px, 3.55vw, 64px);
  line-height: 1.06;
  margin: 34px 0 0;
  max-width: 52vw;
}
h1 span {
  display: block;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--accent);
}
.hero-intro {
  max-width: 590px;
  margin: 38px 0 0 11%;
  color: #d1dfdc;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  margin: 36px 0 0 11%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.btn {
  min-height: 60px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn-accent {
  background: var(--gold);
  color: #182b2b;
  box-shadow: 0 0 46px rgba(240, 200, 106, 0.14);
  transition: 0.25s;
}
.btn-accent:hover {
  transform: translateY(-3px);
  background: var(--gold-bright);
  box-shadow: 0 14px 48px rgba(240, 200, 106, 0.24);
}
.ghost-link {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4dfdc;
}
.ghost-link span {
  margin-left: 11px;
  color: var(--accent);
}
.hero-photo {
  position: absolute;
  z-index: 2;
  right: 4.5vw;
  top: 148px;
  width: 34vw;
  max-width: 560px;
  height: 690px;
  border: 1px solid var(--line);
  background: #102b2f;
  overflow: hidden;
}
.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6, 25, 29, 0.72), transparent 35%),
    linear-gradient(90deg, rgba(6, 25, 29, 0.2), transparent 60%);
}
.hero-photo::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  top: 0;
  width: 9px;
  height: 34%;
  background: var(--gold);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.04);
}
.hero-stats {
  grid-column: 1;
  align-self: end;
  position: relative;
  z-index: 3;
  margin-left: 3.5vw;
  max-width: 650px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 248, 237, 0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-stats div {
  display: flex;
  align-items: end;
  gap: 11px;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--accent);
  line-height: 1;
}
.hero-stats span {
  max-width: 100px;
  color: #afc1bd;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.45;
}
.network {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(49, 214, 196, 0.18);
  border-radius: 50%;
  animation: orbitPulse 8s ease-in-out infinite;
}
.orbit-a {
  width: 620px;
  height: 620px;
  right: 12%;
  top: 170px;
}
.orbit-b {
  width: 380px;
  height: 380px;
  right: 3%;
  top: 340px;
  animation-delay: -3s;
}
.node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(49, 214, 196, 0.75);
}
.node-a {
  right: 44%;
  top: 25%;
}
.node-b {
  right: 8%;
  top: 52%;
}
.node-c {
  right: 38%;
  bottom: 15%;
}
.hero-in {
  opacity: 0;
  transform: translateY(22px);
  animation: heroEnter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.22s;
}
.delay-3 {
  animation-delay: 0.34s;
}
.delay-4 {
  animation-delay: 0.46s;
}

.ticker {
  height: 78px;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker > div {
  display: flex;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.ticker span {
  flex: none;
  padding-right: 18px;
  font-family: var(--font-display);
  font-size: 12px;
  white-space: nowrap;
  word-spacing: 14px;
}
.ticker i {
  font-style: normal;
  color: var(--deep);
  font-size: 8px;
}

.light-section {
  background: var(--paper);
  color: var(--ink);
  padding: 125px 7vw;
}
.section-head {
  display: grid;
  grid-template-columns: 0.7fr 2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.section-head h2 {
  font-size: clamp(44px, 4.35vw, 72px);
  line-height: 1.08;
  margin: 0;
}
.section-head > p {
  color: #536763;
  font-size: 17px;
  line-height: 1.65;
  margin: 4px 0 0;
}
.expertise-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10, 34, 38, 0.18);
  border-bottom: 1px solid rgba(10, 34, 38, 0.18);
}
.expertise-grid article {
  min-height: 450px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(10, 34, 38, 0.18);
  transition: 0.3s;
}
.expertise-grid article:last-child {
  border-right: 0;
}
.expertise-grid article:hover {
  background: var(--accent-soft);
  transform: translateY(-7px);
}
.card-number {
  font-family: var(--font-display);
  font-size: 10px;
  color: #657a75;
}
.card-icon {
  margin: 42px 0 34px;
  width: 72px;
  height: 72px;
  padding: 14px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 155, 141, 0.35);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(49, 214, 196, 0.16), rgba(240, 200, 106, 0.18));
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.36);
  transform: rotate(-3deg);
}
.card-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px var(--paper);
}
.card-icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(3deg);
}
.expertise-grid article:nth-child(even) .card-icon {
  transform: rotate(3deg);
}
.expertise-grid article:nth-child(even) .card-icon svg {
  transform: rotate(-3deg);
}
.expertise-grid h3 {
  font-family: var(--font-display);
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
}
.expertise-grid p {
  font-size: 16px;
  line-height: 1.65;
  color: #536863;
  margin: 0;
}
.expertise-grid a {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 34, 38, 0.18);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.expertise-grid a span {
  font-size: 17px;
}

.about {
  position: relative;
  min-height: 760px;
  padding: 125px 7vw;
  background: var(--deep);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(49, 214, 196, 0.16) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, black 38%, transparent 90%);
}
.about::after {
  content: "03";
  position: absolute;
  right: 2%;
  bottom: -5%;
  color: rgba(49, 214, 196, 0.06);
  font: 500 240px/1 var(--font-display);
}
.about-title,
.profile-facts {
  position: relative;
  z-index: 2;
}
.about-title h2 {
  font-size: clamp(44px, 4.5vw, 74px);
  line-height: 1.1;
  margin: 44px 0 0;
}
.about-summary {
  max-width: 620px;
  color: #c2d4d0;
  font-size: 19px;
  line-height: 1.7;
  margin: 42px 0 0;
}
.profile-facts {
  align-self: center;
  border-top: 1px solid var(--line);
}
.profile-facts article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.profile-facts span {
  color: var(--gold);
  font: 500 10px var(--font-display);
}
.profile-facts p {
  color: var(--milk);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.career-section {
  background: var(--paper);
  color: var(--ink);
  padding: 125px 7vw;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
}
.career-head {
  position: sticky;
  top: 40px;
  align-self: start;
}
.career-head h2 {
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.1;
  margin: 42px 0 0;
}
.career-head h2 em {
  color: var(--gold);
}
.career-list {
  border-top: 2px solid var(--ink);
}
.career-list article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(10, 34, 38, 0.18);
}
.career-list strong {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 15px;
}
.career-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #3e5551;
}

.science-section {
  position: relative;
  padding: 125px 7vw 130px;
  overflow: hidden;
  background: linear-gradient(145deg, #eaf4ef 0%, #f4efe3 58%, #e4eee9 100%);
  color: var(--ink);
}
.science-section::before {
  content: "SCIENCE";
  position: absolute;
  right: -2%;
  top: 1%;
  color: rgba(7, 155, 141, 0.045);
  font: 500 clamp(90px, 13vw, 230px) / 1 var(--font-display);
  letter-spacing: -0.08em;
  pointer-events: none;
}
.science-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.7fr 2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.science-head h2 {
  font-size: clamp(44px, 4.35vw, 72px);
  line-height: 1.08;
  margin: 0;
}
.science-head h2 em {
  color: var(--accent-deep);
}
.science-head > p {
  margin: 4px 0 0;
  color: #4d6660;
  font-size: 17px;
  line-height: 1.65;
}
.science-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 74px;
  border-top: 1px solid rgba(10, 34, 38, 0.22);
  border-bottom: 1px solid rgba(10, 34, 38, 0.22);
}
.science-metric-card {
  position: relative;
  min-height: 330px;
  padding: 25px 22px 62px;
  border-right: 1px solid rgba(10, 34, 38, 0.18);
  transition:
    background 0.3s,
    transform 0.3s;
}
.science-metric-card:last-child {
  border-right: 0;
}
.science-metric-card:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-5px);
}
.science-metric-card > span {
  display: block;
  color: #6d827c;
  font: 500 9px var(--font-display);
}
.science-metric-card > i {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
  border-top: 1px solid rgba(10, 34, 38, 0.18);
  color: var(--accent-deep);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.science-metric-card > i .arrow-icon {
  width: 18px;
  height: 18px;
}
.science-metrics strong {
  display: block;
  margin-top: 36px;
  color: var(--accent-deep);
  font: 500 clamp(28px, 2.2vw, 40px) / 1.05 var(--font-display);
  letter-spacing: -0.06em;
}
.science-metrics h3 {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}
.science-metrics p {
  margin: 17px 0 0;
  color: #526963;
  font-size: 14px;
  line-height: 1.6;
}
.science-editorial {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 26px;
  margin-top: 72px;
}
.science-subhead {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid currentColor;
}
.science-subhead span {
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
}
.science-subhead small {
  color: #60746f;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.science-publications {
  padding: 32px 34px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(10, 34, 38, 0.13);
}
.science-publications article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(10, 34, 38, 0.16);
}
.science-publications article:last-child {
  border-bottom: 0;
}
.science-publications article > strong {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 13px;
}
.science-publications small,
.science-books small {
  color: #60746f;
  font-size: 9px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.science-publications h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.45;
  text-transform: uppercase;
}
.science-books {
  padding: 32px 34px 18px;
  background: var(--deep);
  color: var(--milk);
}
.science-books .science-subhead small {
  color: #a6bbb6;
}
.science-books article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.science-books article:last-child {
  border-bottom: 0;
}
.book-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font: 500 9px var(--font-display);
}
.science-books h3 {
  margin: 11px 0 0;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.45;
  text-transform: uppercase;
}
.science-books p {
  margin: 15px 0 0;
  color: #a9bdb8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.science-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 50px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 34, 38, 0.2);
}
.science-footer p {
  max-width: 760px;
  margin: 0;
  color: #50665f;
  font-size: 15px;
  line-height: 1.65;
}
.science-link {
  padding: 18px 0;
  border-top: 1px solid rgba(10, 34, 38, 0.28);
  border-bottom: 1px solid rgba(10, 34, 38, 0.28);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.events-section {
  background: var(--panel);
  padding: 125px 7vw;
  position: relative;
}
.events-head {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: end;
  gap: 60px;
}
.events-head h2 {
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.1;
  margin: 42px 0 0;
}
.events-head .line-link {
  margin: 0;
}
.line-link {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.line-link span {
  font-size: 18px;
}
.events-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 20px;
}
.event-card {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.event-image {
  position: relative;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: #102a2e;
}
.event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(6, 25, 29, 0.18));
  pointer-events: none;
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.event-image span {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: #182b2b;
  display: grid;
  place-items: center;
  font: 500 9px var(--font-display);
}
.event-card:hover img {
  transform: scale(1.045);
}
.event-copy {
  position: relative;
  padding: 20px 34px 0 0;
}
.event-copy small {
  color: var(--accent);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.event-copy h3 {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.45;
  text-transform: uppercase;
  margin: 12px 0 0;
}
.event-copy i {
  position: absolute;
  right: 0;
  top: 19px;
  color: var(--gold);
  font-style: normal;
}
.event-copy i .arrow-icon {
  width: 22px;
  height: 22px;
}

.dark-section {
  background: var(--graphite);
  padding: 130px 7vw;
}
.dark-head {
  color: var(--milk);
}
.dark-head > p {
  color: #b2c5c1;
}
.video-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 26px;
}
.video-card {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #10282d;
  overflow: hidden;
}
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  filter: none;
}
.video-index {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 9px;
  pointer-events: none;
}
.video-meta {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 22px;
  align-items: start;
  gap: 18px;
  margin-top: 20px;
}
.video-meta > span {
  color: #a1b8b3;
  font-size: 10px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.video-meta h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0;
  text-align: right;
}
.video-meta a {
  color: var(--gold);
}
.video-meta a .arrow-icon {
  width: 22px;
  height: 22px;
}

.docs-section {
  padding-bottom: 130px;
}
.docs-strip {
  display: flex;
  gap: 22px;
  width: calc(100% + 14vw);
  margin: 75px -7vw 0;
  padding: 8px 7vw 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(10, 34, 38, 0.1);
}
.doc-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}
.doc-preview {
  height: 395px;
  position: relative;
  overflow: hidden;
  background: #d8d4c9;
  box-shadow: 0 10px 30px rgba(10, 34, 38, 0.1);
}
.doc-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.doc-preview > span {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--ink);
  color: var(--accent);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 9px;
}
.doc-open {
  position: absolute;
  inset: auto 0 0;
  background: var(--gold);
  color: #182b2b;
  padding: 17px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: translateY(100%);
  transition: 0.35s;
}
.doc-open span {
  font-size: 17px;
}
.doc-card:hover .doc-preview img {
  transform: scale(1.04);
}
.doc-card:hover .doc-open {
  transform: none;
}
.doc-info {
  padding-top: 18px;
}
.doc-info small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #60746f;
}
.doc-info h3 {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  margin: 10px 0 0;
}

.clients-section {
  position: relative;
  background: #c9f0e8;
  color: var(--ink);
  padding: 115px 7vw 104px;
}
.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 55%);
}
.clients-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.7fr 2.8fr;
  gap: 48px;
}
.clients-head .tech-label.inverse {
  color: #41625c;
}
.clients-head .tech-label.inverse span {
  color: var(--gold);
}
.clients-head h2 {
  font-size: clamp(42px, 4.3vw, 70px);
  line-height: 1.1;
  margin: 0;
}
.clients-head h2 em {
  color: var(--accent-deep);
}
.clients-grid {
  position: relative;
  z-index: 2;
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}
.client-logo {
  min-width: 0;
  aspect-ratio: 1.12;
  padding: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 34, 38, 0.12);
  overflow: hidden;
  box-shadow: 0 9px 24px rgba(10, 34, 38, 0.07);
}
.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 1;
  transition: 0.35s;
}
.client-logo:hover img {
  transform: scale(1.035);
}

.media-section {
  background: var(--panel);
  padding: 120px 7vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  position: relative;
}
.media-section::before {
  content: "СМИ";
  position: absolute;
  left: 3%;
  bottom: -5%;
  font-family: var(--font-display);
  font-size: 180px;
  color: rgba(49, 214, 196, 0.06);
  line-height: 1;
}
.media-intro,
.media-list {
  position: relative;
  z-index: 2;
}
.media-intro h2 {
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.12;
  margin: 42px 0 0;
}
.media-list {
  border-top: 1px solid var(--line);
}
.media-list > a {
  display: grid;
  grid-template-columns: 48px 1fr 30px;
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: 0.25s;
}
.media-list > a:hover {
  padding-left: 14px;
  background: rgba(49, 214, 196, 0.06);
}
.media-num {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
}
.media-list small {
  color: #a0b7b2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.media-list h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 10px 0 0;
}
.media-list i {
  font-style: normal;
  color: var(--accent);
}
.media-list i .arrow-icon {
  width: 22px;
  height: 22px;
}

.contact {
  position: relative;
  background: var(--graphite);
  padding: 130px 7vw 38px;
  min-height: 740px;
}
.contact h2 {
  font-size: clamp(52px, 6.2vw, 100px);
  line-height: 1.06;
  margin: 42px 0 0;
  position: relative;
  z-index: 2;
}
.contact-actions {
  position: relative;
  z-index: 2;
  margin-top: 62px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 36px;
}
.contact-actions > a:not(.btn) {
  font-family: var(--font-display);
  font-size: 14px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 8px;
}
.contact-bottom {
  z-index: 2;
  bottom: 35px;
  left: 7vw;
  right: 7vw;
  padding: 24px;
  border-top: 1px solid rgba(255, 248, 237, 0.17);
  color: #91a8a3;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: right;
}
.contact-network {
  position: absolute;
  right: 8%;
  top: 12%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(49, 214, 196, 0.16);
  border-radius: 50%;
  animation: slowSpin 35s linear infinite;
}
.contact-network::before,
.contact-network::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(49, 214, 196, 0.16);
  border-radius: 50%;
}
.contact-network::before {
  inset: 70px;
}
.contact-network::after {
  inset: 150px;
}
.contact-network span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(240, 200, 106, 0.7);
}
.contact-network span:nth-child(1) {
  left: 12%;
  top: 18%;
}
.contact-network span:nth-child(2) {
  right: 4%;
  top: 53%;
}
.contact-network span:nth-child(3) {
  left: 39%;
  bottom: 1%;
}

/* Internal science page */
.science-page {
  overflow: clip;
  background: #edf3ed;
  color: var(--ink);
}
.science-topbar {
  position: absolute;
}
.science-page-hero {
  position: relative;
  min-height: 700px;
  padding: 186px 7vw 76px;
  overflow: hidden;
  color: var(--milk);
  background:
    radial-gradient(circle at 82% 44%, rgba(49, 214, 196, 0.22), transparent 26%),
    linear-gradient(122deg, #06191d 0%, #0b3439 75%, #0d4145 100%);
}
.science-page-hero::before {
  content: "RESEARCH";
  position: absolute;
  right: -2vw;
  bottom: -0.13em;
  color: rgba(167, 245, 235, 0.035);
  font: 500 clamp(110px, 16vw, 270px) / 0.8 var(--font-display);
  letter-spacing: -0.09em;
  pointer-events: none;
}
.science-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(49, 214, 196, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 214, 196, 0.065) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, transparent 24%, black, transparent 94%);
  pointer-events: none;
}
.science-back,
.science-page-lead,
.science-page-facts {
  position: relative;
  z-index: 2;
}
.science-back {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: #afc5c0;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.science-back span {
  color: var(--gold);
  font-size: 18px;
}
.science-page-lead {
  display: grid;
  grid-template-columns: 0.68fr 1.75fr 0.72fr;
  gap: 48px;
  align-items: start;
  margin-top: 66px;
}
.science-page-lead h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: 1.04;
}
.science-page-lead h1 em {
  color: var(--accent);
}
.science-page-lead > p {
  margin: 3px 0 0;
  color: #b7cac6;
  font-size: 16px;
  line-height: 1.7;
}
.science-page-facts {
  display: flex;
  gap: 54px;
  margin: 74px 0 0 24%;
}
.science-page-facts div {
  min-width: 135px;
  padding-top: 17px;
  border-top: 1px solid rgba(167, 245, 235, 0.28);
}
.science-page-facts strong {
  display: block;
  color: var(--gold);
  font: 500 26px var(--font-display);
}
.science-page-facts span {
  display: block;
  margin-top: 8px;
  color: #9eb4b0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.science-page-orbit {
  position: absolute;
  z-index: 1;
  right: 6%;
  top: 21%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(49, 214, 196, 0.14);
  border-radius: 50%;
  animation: slowSpin 32s linear infinite;
}
.science-page-orbit span {
  position: absolute;
  border: 1px solid rgba(49, 214, 196, 0.14);
  border-radius: 50%;
}
.science-page-orbit span:first-child {
  inset: 55px;
}
.science-page-orbit span:nth-child(2) {
  inset: 115px;
}
.science-page-orbit i {
  position: absolute;
  top: 15%;
  left: 12%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(240, 200, 106, 0.7);
}
.science-library {
  padding: 0 7vw 125px;
  background: linear-gradient(145deg, #eef4ef, #f7f2e8 60%, #e6efea);
}
.science-tab-shell {
  position: relative;
  z-index: 5;
  transform: translateY(-34px);
  box-shadow: 0 24px 70px rgba(6, 25, 29, 0.12);
}
.science-tablist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(252, 250, 244, 0.96);
  border: 1px solid rgba(10, 34, 38, 0.18);
}
.science-tablist button {
  position: relative;
  min-height: 154px;
  padding: 24px 25px 22px;
  border: 0;
  border-right: 1px solid rgba(10, 34, 38, 0.16);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: 0.3s ease;
}
.science-tablist button:last-child {
  border-right: 0;
}
.science-tablist button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: var(--accent-deep);
  transition: right 0.3s ease;
}
.science-tablist button:hover,
.science-tablist button.is-active {
  background: #fff;
}
.science-tablist button.is-active::after {
  right: 0;
}
.science-tablist button > span {
  display: block;
  color: #70827e;
  font: 500 9px var(--font-display);
}
.science-tablist button > strong {
  display: block;
  margin-top: 27px;
  font: 500 13px/1.35 var(--font-display);
  text-transform: uppercase;
}
.science-tablist button > i {
  display: block;
  margin-top: 13px;
  color: var(--accent-deep);
  font: 500 11px var(--font-display);
  font-style: normal;
}
.science-tab-content {
  padding-top: 56px;
  animation: sciencePanelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.science-content-head {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 9vw;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(10, 34, 38, 0.22);
}
.science-content-head > div > span {
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.science-content-head h2 {
  margin: 26px 0 0;
  font-size: clamp(42px, 4.8vw, 76px);
  line-height: 1.06;
}
.science-content-head h2 em {
  color: var(--accent-deep);
}
.science-content-head > p {
  margin: 0 0 7px;
  color: #526963;
  font-size: 16px;
  line-height: 1.7;
}
.science-search label {
  display: block;
  margin-bottom: 12px;
  color: #60746f;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.science-search input {
  width: 100%;
  padding: 17px 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
}
.science-search input:focus {
  border-color: var(--accent-deep);
}
.publication-summary {
  display: grid;
  grid-template-columns: 90px 115px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 38px;
  padding: 22px 26px;
  color: var(--milk);
  background: var(--deep);
}
.publication-summary > span {
  color: #9eb4b0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.publication-summary > strong {
  color: var(--gold);
  font: 500 28px var(--font-display);
}
.publication-summary > p {
  margin: 0;
  color: #b4c7c2;
  font-size: 13px;
  line-height: 1.55;
}
.publication-list {
  margin-top: 24px;
  border-top: 1px solid rgba(10, 34, 38, 0.24);
}
.publication-list article {
  display: grid;
  grid-template-columns: 48px 86px minmax(0, 1fr) 120px;
  gap: 25px;
  align-items: start;
  padding: 27px 12px 27px 0;
  border-bottom: 1px solid rgba(10, 34, 38, 0.18);
  transition: 0.25s ease;
}
.publication-list article:hover {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.58);
}
.publication-number,
.publication-year {
  font-family: var(--font-display);
  font-size: 10px;
}
.publication-number {
  color: #71847f;
}
.publication-year {
  color: var(--accent-deep);
}
.publication-list p {
  margin: 0;
  color: #314a46;
  font-size: 15px;
  line-height: 1.65;
}
.publication-list small {
  justify-self: end;
  padding: 7px 9px;
  border: 1px solid rgba(7, 155, 141, 0.35);
  color: var(--accent-deep);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.monograph-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 55px;
}
.monograph-grid article {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) 1.2fr;
  min-height: 530px;
  background: #fff;
  border: 1px solid rgba(10, 34, 38, 0.14);
  box-shadow: 0 20px 50px rgba(10, 34, 38, 0.08);
}
.monograph-cover {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: var(--deep);
}
.monograph-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.monograph-grid article:hover img {
  transform: scale(1.035);
}
.monograph-cover > span {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  font: 500 9px var(--font-display);
}
.monograph-copy {
  padding: 38px 32px;
}
.monograph-copy > small {
  color: var(--accent-deep);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.monograph-copy h3 {
  margin: 26px 0 0;
  font: 500 18px/1.48 var(--font-display);
  text-transform: uppercase;
}
.monograph-copy > strong {
  display: block;
  margin-top: 30px;
  color: var(--accent-deep);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.monograph-copy p {
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 34, 38, 0.16);
  color: #526963;
  font-size: 13px;
  line-height: 1.65;
}
.conference-list {
  margin-top: 55px;
  border-top: 1px solid rgba(10, 34, 38, 0.24);
}
.conference-list article {
  display: grid;
  grid-template-columns: 105px 1fr 45px;
  gap: 35px;
  align-items: start;
  padding: 34px 14px 34px 0;
  border-bottom: 1px solid rgba(10, 34, 38, 0.18);
  transition: 0.25s ease;
}
.conference-list article:hover {
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.58);
}
.conference-list article > span {
  color: var(--accent-deep);
  font: 500 18px var(--font-display);
}
.conference-list small {
  color: #72857f;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.conference-list h3 {
  max-width: 950px;
  margin: 10px 0 0;
  font: 500 16px/1.5 var(--font-display);
  text-transform: uppercase;
}
.conference-list p {
  margin: 16px 0 0;
  color: #526963;
  font-size: 15px;
  line-height: 1.6;
}
.conference-list article > i {
  color: #81928e;
  font: 500 9px var(--font-display);
  font-style: normal;
}
.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 55px;
}
.qualification-grid article {
  position: relative;
  min-height: 260px;
  padding: 28px 30px 32px;
  overflow: hidden;
  color: var(--milk);
  background: var(--deep);
  border: 1px solid rgba(49, 214, 196, 0.22);
  transition: 0.3s ease;
}
.qualification-grid article:nth-child(3n + 2) {
  background: #0d3036;
}
.qualification-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.qualification-grid article > span {
  color: var(--accent);
  font: 500 9px var(--font-display);
}
.qualification-grid p {
  position: relative;
  z-index: 2;
  max-width: 82%;
  margin: 68px 0 0;
  font: 500 15px/1.55 var(--font-display);
}
.qualification-mark {
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(49, 214, 196, 0.18);
  font-size: 76px;
  line-height: 1;
}
.science-page-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding: 105px 7vw 110px;
  color: var(--milk);
  background:
    radial-gradient(circle at 80% 50%, rgba(49, 214, 196, 0.18), transparent 30%), var(--graphite);
}
.science-page-contact > div > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.science-page-contact h2 {
  margin: 28px 0 0;
  font-size: clamp(38px, 4.3vw, 70px);
  line-height: 1.08;
}
.science-page-contact .btn {
  min-width: 350px;
}

@keyframes sciencePanelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.expertise-grid [data-reveal]:nth-child(2),
.science-metrics [data-reveal]:nth-child(2),
.events-grid [data-reveal]:nth-child(2),
.video-grid [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.expertise-grid [data-reveal]:nth-child(3),
.science-metrics [data-reveal]:nth-child(3),
.events-grid [data-reveal]:nth-child(3),
.video-grid [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1350px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }
  .topbar nav {
    display: none;
  }
  .hero {
    grid-template-columns: 55% 45%;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .hero-copy {
    padding-left: 1vw;
  }
  .hero-photo {
    right: 3vw;
    width: 39vw;
  }
  .hero-intro,
  .hero-actions {
    margin-left: 0;
  }
  .hero-stats {
    margin-left: 1vw;
  }
  .section-head {
    grid-template-columns: 0.65fr 2fr;
  }
  .section-head > p {
    grid-column: 2;
  }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .expertise-grid article:nth-child(2) {
    border-right: 0;
  }
  .expertise-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(10, 34, 38, 0.18);
  }
  .about {
    grid-template-columns: 1fr;
  }
  .profile-facts {
    margin-left: 26%;
  }
  .career-section {
    grid-template-columns: 0.65fr 1.35fr;
  }
  .science-head {
    grid-template-columns: 0.65fr 2fr;
  }
  .science-head > p {
    grid-column: 2;
  }
  .science-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .science-metric-card:nth-child(2) {
    border-right: 0;
  }
  .science-metric-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(10, 34, 38, 0.18);
  }
  .media-section {
    grid-template-columns: 1fr;
  }
  .media-intro h2 {
    max-width: 720px;
  }
  .media-list {
    margin-left: 18%;
  }
  .science-page-lead {
    grid-template-columns: 0.62fr 1.9fr;
  }
  .science-page-lead > p {
    grid-column: 2;
    max-width: 700px;
  }
  .science-page-facts {
    margin-left: 32%;
  }
  .monograph-grid article {
    grid-template-columns: minmax(180px, 0.7fr) 1.2fr;
  }
}

@media (max-width: 820px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .career-section {
    grid-template-columns: 1fr;
  }
  .career-head {
    position: relative;
    top: auto;
  }
  .career-list {
    margin-top: 55px;
  }
  .science-editorial {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .science-page-lead {
    grid-template-columns: 1fr;
  }
  .science-page-lead > p {
    grid-column: auto;
  }
  .science-page-facts {
    margin-left: 0;
  }
  .science-tablist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .science-tablist button:nth-child(2) {
    border-right: 0;
  }
  .science-tablist button:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(10, 34, 38, 0.16);
  }
  .science-content-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .monograph-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    height: 96px;
    padding: 0 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .identity {
    min-width: 0;
    width: auto;
  }
  .identity > span:last-child {
    min-width: 0;
  }
  .identity b {
    font-size: 18px;
  }
  .identity small {
    display: block;
    max-width: 190px;
    font-size: 8px;
    line-height: 1.35;
    letter-spacing: 0.09em;
  }
  .nav-contact {
    min-height: 48px;
    padding: 0 15px;
    gap: 10px;
    font-size: 8px;
  }
  .nav-contact .arrow-icon {
    width: 18px;
    height: 18px;
  }
  .hero {
    display: block;
    min-height: 0;
    padding: 96px 20px 0;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
    min-height: calc(100dvh - 96px);
    padding: 28px 0 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tech-label {
    font-size: 9px;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(27px, 7.5vw, 39px);
    line-height: 1.08;
    margin-top: 30px;
  }
  .hero-intro {
    font-size: 16px;
    margin-top: 28px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .hero-photo {
    position: relative;
    inset: auto;
    width: calc(100% + 40px);
    height: 550px;
    margin: 0 -20px;
  }
  .hero-stats {
    margin: 0;
    padding: 28px 0 36px;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats div {
    display: block;
  }
  .hero-stats strong {
    display: block;
    font-size: 23px;
    margin-bottom: 8px;
  }
  .hero-stats span {
    font-size: 7px;
  }
  .network {
    display: none;
  }
  .ticker {
    height: 64px;
  }
  .ticker span {
    font-size: 10px;
  }
  .light-section,
  .dark-section,
  .about,
  .career-section,
  .science-section,
  .events-section,
  .media-section {
    padding: 88px 20px;
  }
  .section-head,
  .clients-head,
  .events-head,
  .science-head {
    display: block;
  }
  .section-head h2,
  .events-head h2,
  .science-head h2 {
    font-size: 35px;
    margin-top: 32px;
  }
  .clients-head h2 {
    max-width: 100%;
    font-size: clamp(26px, 7.4vw, 31px);
    line-height: 1.12;
    letter-spacing: -0.07em;
    margin-top: 32px;
  }
  .section-head > p,
  .science-head > p {
    margin-top: 25px;
    max-width: 440px;
    font-size: 16px;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }
  .expertise-grid article {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 34, 38, 0.18);
  }
  .expertise-grid article:last-child {
    border-bottom: 0;
  }
  .expertise-grid h3 {
    font-size: 25px;
  }
  .expertise-grid p {
    font-size: 16px;
  }
  .about {
    min-height: 0;
  }
  .about-title h2 {
    font-size: 35px;
  }
  .about-summary {
    font-size: 17px;
  }
  .profile-facts {
    margin: 55px 0 0;
  }
  .profile-facts p {
    font-size: 16px;
  }
  .about::after {
    font-size: 120px;
  }
  .career-head h2 {
    font-size: 35px;
  }
  .career-list article {
    grid-template-columns: 86px 1fr;
    gap: 18px;
  }
  .career-list strong {
    font-size: 12px;
  }
  .career-list p {
    font-size: 15px;
  }
  .science-section::before {
    top: 4%;
    font-size: 80px;
  }
  .science-metrics {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }
  .science-metric-card {
    min-height: 0;
    padding: 24px 4px 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 34, 38, 0.18);
  }
  .science-metric-card:last-child {
    border-bottom: 0;
  }
  .science-metrics strong {
    margin-top: 25px;
    font-size: 32px;
  }
  .science-editorial {
    margin-top: 55px;
    gap: 18px;
  }
  .science-publications,
  .science-books {
    padding: 26px 20px 12px;
  }
  .science-subhead {
    display: block;
  }
  .science-subhead small {
    display: block;
    margin-top: 10px;
  }
  .science-publications article {
    grid-template-columns: 62px 1fr;
    gap: 14px;
  }
  .science-publications h3,
  .science-books h3 {
    font-size: 14px;
  }
  .science-books article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
  .science-footer {
    display: block;
    margin-top: 28px;
  }
  .science-link {
    margin-top: 26px;
  }
  .events-head .line-link {
    margin-top: 34px;
  }
  .events-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }
  .event-copy h3 {
    font-size: 16px;
  }
  .video-grid {
    margin-top: 55px;
    gap: 40px;
  }
  .video-meta {
    grid-template-columns: 1fr 24px;
  }
  .video-meta > span {
    grid-column: 1 / -1;
  }
  .video-meta h3 {
    text-align: left;
    font-size: 17px;
  }
  .docs-strip {
    width: calc(100% + 40px);
    margin: 55px -20px 0;
    padding: 8px 20px 24px;
    gap: 14px;
    scroll-behavior: smooth;
  }
  .doc-card {
    flex-basis: 82vw;
  }
  .doc-preview {
    height: 430px;
  }
  .doc-open {
    transform: none;
  }
  .clients-section {
    padding: 88px 20px 72px;
  }
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 50px;
    gap: 10px;
  }
  .client-logo {
    padding: 12px;
  }
  .media-section {
    display: block;
  }
  .media-intro h2 {
    font-size: 35px;
  }
  .media-list {
    margin: 60px 0 0;
  }
  .media-list > a {
    grid-template-columns: 35px 1fr 24px;
    gap: 12px;
  }
  .media-list h3 {
    font-size: 15px;
  }
  .contact {
    padding: 88px 20px 30px;
    min-height: 820px;
  }
  .contact h2 {
    font-size: 40px;
  }
  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .contact-network {
    width: 360px;
    height: 360px;
    right: -170px;
    top: 42%;
  }
  .contact-bottom {
    left: 20px;
    right: 20px;
    text-align: left;
  }
  .science-page-hero {
    min-height: 660px;
    padding: 136px 20px 70px;
  }
  .science-back {
    margin-top: 20px;
  }
  .science-page-lead {
    gap: 28px;
    margin-top: 44px;
  }
  .science-page-lead h1 {
    font-size: clamp(36px, 10.5vw, 52px);
  }
  .science-page-lead > p {
    font-size: 15px;
  }
  .science-page-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 48px;
  }
  .science-page-facts div {
    min-width: 0;
  }
  .science-page-facts strong {
    font-size: 20px;
  }
  .science-page-orbit {
    right: -170px;
    top: 36%;
  }
  .science-library {
    padding: 0 20px 88px;
  }
  .science-tab-shell {
    width: calc(100% + 40px);
    margin-left: -20px;
    transform: none;
    box-shadow: none;
  }
  .science-tablist button {
    min-height: 128px;
    padding: 18px 16px;
  }
  .science-tablist button > strong {
    margin-top: 21px;
    font-size: 10px;
  }
  .science-tablist button > i {
    font-size: 9px;
  }
  .science-tab-content {
    padding-top: 72px;
  }
  .science-content-head h2 {
    font-size: 35px;
  }
  .publication-summary {
    grid-template-columns: 70px 1fr;
    padding: 20px;
  }
  .publication-summary > p {
    grid-column: 1 / -1;
  }
  .publication-list article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  .publication-year {
    text-align: right;
  }
  .publication-list p {
    grid-column: 1 / -1;
    font-size: 14px;
  }
  .publication-list small {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .monograph-grid article {
    display: block;
    min-height: 0;
  }
  .monograph-cover {
    min-height: 0;
    height: 500px;
  }
  .monograph-copy {
    padding: 30px 22px;
  }
  .conference-list article {
    grid-template-columns: 68px 1fr;
    gap: 18px;
    padding: 27px 0;
  }
  .conference-list article > i {
    display: none;
  }
  .conference-list h3 {
    font-size: 13px;
  }
  .qualification-grid {
    grid-template-columns: 1fr;
  }
  .qualification-grid article {
    min-height: 235px;
  }
  .qualification-grid p {
    max-width: 92%;
    font-size: 13px;
  }
  .science-page-contact {
    grid-template-columns: 1fr;
    padding: 88px 20px;
  }
  .science-page-contact .btn {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .identity b {
    font-size: 16px;
  }
  .identity small {
    max-width: 165px;
    font-size: 7.2px;
    line-height: 1.3;
    letter-spacing: 0.075em;
  }
  .nav-contact {
    min-height: 46px;
    padding: 0 12px;
    font-size: 7px;
  }
  .nav-contact .arrow-icon {
    display: inline-grid;
    width: 17px;
    height: 17px;
  }
  h1 {
    font-size: clamp(26px, 7.4vw, 34px);
  }
  .hero-photo {
    height: 500px;
  }
  .doc-preview {
    height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal],
  .hero-in {
    opacity: 1 !important;
    transform: none !important;
  }
}
