:root {
  --bg: #060b10;
  --text: #f2f5f8;
  --muted: #b4bec9;
  --border: rgba(184, 198, 214, 0.15);
  --radius-xl: 10px;
  --radius-lg: 8px;
  --radius-sm: 4px;
  --font-sans: "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "DIN Condensed", "Avenir Next Condensed", "Arial Narrow", sans-serif;
  --header-bg: rgba(5, 10, 14, 0.5);
  --header-border: rgba(184, 198, 214, 0.1);
  --header-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  --button-bg: rgba(7, 11, 16, 0.4);
  --button-border: rgba(184, 198, 214, 0.14);
  --button-hover-border: rgba(184, 198, 214, 0.28);
  --button-accent-border: rgba(211, 162, 87, 0.32);
  --button-accent-text: #e8bc78;
  --surface-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  --panel-surface: linear-gradient(180deg, rgba(10, 16, 22, 0.48), rgba(6, 10, 15, 0.72));
  --scene-footer-surface: linear-gradient(180deg, rgba(8, 12, 17, 0.72), rgba(7, 11, 15, 0.84));
  --partner-surface: linear-gradient(180deg, rgba(10, 16, 22, 0.34), rgba(6, 10, 15, 0.54));
  --section-surface:
    radial-gradient(circle at top center, rgba(145, 160, 180, 0.06), transparent 24%),
    linear-gradient(180deg, #05090d 0%, #080d12 100%);
  --content-width: min(1360px, calc(100vw - 32px));
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  overflow-x: hidden;
}

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

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

button,
a.button {
  font: inherit;
}

/* Header */

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 10;
  width: var(--content-width);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px;
  background: var(--header-bg);
  border: 1px solid var(--header-border);
  border-radius: 0;
  backdrop-filter: blur(16px);
  box-shadow: var(--header-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand__logo {
  width: auto;
  height: 40px;
  padding-left: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.site-nav a,
.site-nav__dropdown-trigger {
  color: rgba(231, 237, 243, 0.74);
}

.site-nav a:hover,
.site-nav__dropdown:hover .site-nav__dropdown-trigger,
.site-nav__dropdown:focus-within .site-nav__dropdown-trigger {
  color: white;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.site-nav__chevron {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  min-width: 320px;
  padding: 18px 12px 12px;
  display: grid;
  gap: 8px;
  background: rgba(8, 12, 18, 0.96);
  border: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown:focus-within .site-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav__dropdown-link {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
  border-color: rgba(231, 237, 243, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav__dropdown-title {
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.site-nav__dropdown-copy {
  color: rgba(231, 237, 243, 0.72);
  font-size: 0.8rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav__separator {
  color: rgba(231, 237, 243, 0.28);
  user-select: none;
}

.site-nav__link--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav__icon {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.mobile-nav-toggle,
.mobile-nav {
  display: none;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--button-border);
  border-radius: 6px;
  background: var(--button-bg);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button--primary,
.button--ghost {
  border-color: var(--button-accent-border);
  color: var(--button-accent-text);
}

.site-header__cta {
  min-height: 28px;
  padding: 0 8px;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
}

.button--primary {
  background: linear-gradient(180deg, rgba(211, 162, 87, 0.12), rgba(211, 162, 87, 0.03));
}

.button--secondary {
  background: rgba(7, 11, 16, 0.58);
}

/* Scene layout */

.scene {
  --scene-side-shade-left: rgba(4, 7, 10, 0.74);
  --scene-side-shade-mid: rgba(4, 7, 10, 0.1);
  --scene-side-shade-right: rgba(4, 7, 10, 0.18);
  --scene-top-shade: rgba(6, 9, 12, 0.05);
  --scene-bottom-shade: rgba(6, 9, 12, 0.22);
  --scene-vignette-bottom: rgba(0, 0, 0, 0.28);
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 118px max(24px, calc((100vw - 1320px) / 2 + 24px)) 28px;
  isolation: isolate;
}

.scene::before,
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.scene::before {
  background:
    linear-gradient(90deg, var(--scene-side-shade-left) 0%, var(--scene-side-shade-mid) 42%, var(--scene-side-shade-right) 100%),
    linear-gradient(180deg, var(--scene-top-shade), var(--scene-bottom-shade)),
    var(--scene-image) center center / cover no-repeat;
}

.scene::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, transparent 58%, var(--scene-vignette-bottom) 100%);
}

.scene__video,
.scene__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.scene--has-video::before {
  background:
    linear-gradient(90deg, var(--scene-side-shade-left) 0%, var(--scene-side-shade-mid) 42%, var(--scene-side-shade-right) 100%),
    linear-gradient(180deg, var(--scene-top-shade), var(--scene-bottom-shade));
}

.scene--orbital {
  --scene-image: url("assets/scene-orbital.jpg");
}

.scene--desert {
  --scene-image: url("assets/scene-desert-3.jpg");
}

.scene--desert-remote {
  --scene-image: url("assets/products/tess_ugv_forest_6.jpg");
}

.scene--mineral {
  --scene-image: url("assets/scene-mining-pit.jpg");
}

.scene--woodland {
  --scene-image: url("assets/scene-woodland-1.jpg");
}

.scene--forest {
  --scene-image: url("assets/scene-forest.jpg");
}

.scene--arctic {
  --scene-image: url("assets/fox-detection-check.png");
}

.scene--biodiversity-field {
  --scene-image: url("assets/scene-forest.jpg");
}

.scene__content {
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - 220px);
}

.scene__panel,
.prompt-card {
  background: var(--panel-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(18px);
}

.scene__panel {
  width: min(620px, 100%);
  max-width: 620px;
  padding: 24px;
}

.scene__panel--hero {
  width: min(700px, 100%);
  max-width: 700px;
}

.eyebrow,
.prompt-card__label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow {
  color: #9eb3c8;
}

.prompt-card__label {
  color: var(--button-accent-text);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 20ch;
  text-wrap: balance;
}

.scene__panel--hero h1 {
  max-width: 24ch;
}

.scene h2 {
  font-size: clamp(1.95rem, 3.4vw, 3rem);
  max-width: 16ch;
  text-wrap: balance;
}

.scene__panel h2 {
  width: 100%;
  max-width: none;
  text-wrap: pretty;
}

.section h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  max-width: 40ch;
}

.scene__summary,
.prompt-card > p:not(.prompt-card__label) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.00rem;
  max-width: 38rem;
}

.scene__summary--domains a {
  color: var(--button-accent-text);
  text-decoration: underline;
  text-decoration-color: rgba(232, 188, 120, 0.4);
  text-underline-offset: 0.18em;
}

.scene__summary--domains a:hover {
  color: var(--text);
  text-decoration-color: rgba(242, 245, 248, 0.58);
}

.scene__panel h1,
.scene__panel h2,
.section h2,
.prompt-card h3 {
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.scene__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.scene__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
  padding: 16px;
  background: var(--scene-footer-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.scene__footer span {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(231, 237, 243, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.section {
  position: relative;
  margin: 0;
  padding: 88px 0 88px;
  background: var(--section-surface);
}

.section.section--partners .partners-block {
  margin-top: 0;
}

.section--has-video {
  overflow: hidden;
  isolation: isolate;
}

.section--has-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 9, 13, 0.86) 0%, rgba(5, 9, 13, 0.54) 42%, rgba(5, 9, 13, 0.82) 100%),
    linear-gradient(180deg, rgba(5, 9, 13, 0.48), rgba(5, 9, 13, 0.74)),
    radial-gradient(circle at top center, rgba(145, 160, 180, 0.08), transparent 24%);
}

.section__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  filter: saturate(0.9) brightness(0.68);
  pointer-events: none;
}

.section--has-video .section__content {
  position: relative;
  z-index: 1;
}

.section__content {
  width: var(--content-width);
  margin: 0 auto;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section__heading--wide {
  max-width: min(1080px, 100%);
}

.section__heading--wide h2 {
  max-width: none;
}

.section__heading--wide .section__copy {
  max-width: 760px;
}

.section__heading--wide > .newsroom-block__intro,
.section__heading--wide > .team-block__intro {
  max-width: 760px;
}

.section__title--nowrap {
  max-width: none;
  white-space: nowrap;
}

.section__copy {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.section__copy p {
  margin: 0;
  color: rgba(231, 237, 243, 0.7);
  line-height: 1.6;
  font-size: 1.00rem;
}

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.prompt-card {
  padding: 24px;
}

.prompt-card--with-media {
  display: flex;
  flex-direction: column;
}

.prompt-card h3 {
  font-size: 1.5rem;
}

.prompt-card__sensor-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.prompt-card__sensor-list li {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 198, 214, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(10, 16, 22, 0.5);
}

.prompt-card__sensor-list strong {
  color: rgba(238, 245, 251, 0.96);
  font-size: 0.98rem;
}

.prompt-card__sensor-list span {
  color: rgba(231, 237, 243, 0.72);
  line-height: 1.45;
  font-size: 0.92rem;
}

.prompt-card__actions {
  margin-top: 18px;
}

.prompt-card--with-media > .prompt-card__media {
  margin-top: 18px;
}

.section-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.section-points span {
  display: block;
  padding: 14px 16px;
  background: var(--partner-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--surface-shadow);
  color: rgba(231, 237, 243, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.product-placeholder-card {
  margin-bottom: 16px;
}

.prompt-card__media-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.prompt-card__media-gallery--trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prompt-card__media {
  overflow: hidden;
  border: 1px solid rgba(184, 198, 214, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.24);
}

.prompt-card__media-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.prompt-card__media-button--product {
  display: grid;
  place-items: center;
}

.prompt-card__media--product {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 20px;
  background:
    radial-gradient(circle at 80% 18%, rgba(211, 162, 87, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(11, 16, 22, 0.88), rgba(7, 11, 15, 0.96));
}

.prompt-card__image,
.prompt-card__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.prompt-card__image--contain {
  width: 100%;
  max-width: 560px;
  height: 240px;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 auto;
}

.prompt-card__image--product-preview {
  width: 100%;
  height: 240px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.prompt-card__image--gallery {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 1px solid rgba(184, 198, 214, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(7, 11, 15, 0.72);
}

.prompt-card__media-button .prompt-card__image {
  transition: transform 160ms ease, filter 160ms ease;
}

.prompt-card__media-button:hover .prompt-card__image,
.prompt-card__media-button:focus-visible .prompt-card__image {
  transform: scale(1.02);
  filter: brightness(1.04);
}

.prompt-card__media-button:focus-visible {
  outline: 1px solid rgba(184, 198, 214, 0.36);
  outline-offset: -1px;
}

.prompt-card__video {
  cursor: zoom-in;
  transition: transform 160ms ease, filter 160ms ease;
}

.prompt-card__video:hover,
.prompt-card__video:focus-visible {
  transform: scale(1.02);
  filter: brightness(1.04);
  outline: none;
}

.prompt-card__video--inline {
  cursor: default;
}

.prompt-card__video--inline:hover,
.prompt-card__video--inline:focus-visible {
  transform: none;
  filter: none;
}

body.has-video-modal,
body.has-image-modal {
  overflow: hidden;
}

.video-modal,
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal[hidden],
.image-modal[hidden] {
  display: none;
}

.video-modal__backdrop,
.image-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 6, 8, 0.82);
  cursor: pointer;
}

.video-modal__dialog,
.image-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 32px));
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.video-modal__close,
.image-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(184, 198, 214, 0.18);
  border-radius: 999px;
  background: rgba(5, 9, 13, 0.78);
  color: rgba(242, 245, 248, 0.88);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  cursor: pointer;
}

.video-modal__title,
.image-modal__title {
  margin: 0 0 12px;
  color: rgba(242, 245, 248, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.video-modal__video {
  display: block;
  width: 100%;
  max-height: min(74vh, 760px);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--surface-shadow);
}

.image-modal__image {
  display: block;
  width: 100%;
  max-height: min(78vh, 860px);
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: rgba(7, 11, 15, 0.96);
  box-shadow: var(--surface-shadow);
}

.section__heading--compact {
  max-width: none;
  margin: 40px 0 18px;
}

.section__heading--compact h3 {
  font-size: 1.3rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.newsroom-block,
.team-block {
  margin-top: 42px;
}

.newsroom-block__intro,
.team-block__intro {
  margin: 12px 0 0;
  color: rgba(231, 237, 243, 0.7);
  line-height: 1.6;
  font-size: 1.00rem;
}

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

.newsroom-carousel {
  display: grid;
  gap: 14px;
}

.newsroom-carousel:focus-visible {
  outline: 1px solid rgba(184, 198, 214, 0.24);
  outline-offset: 8px;
}

.newsroom-carousel__viewport {
  overflow: hidden;
}

.newsroom-carousel__track {
  display: flex;
  transition: transform 260ms ease;
  will-change: transform;
}

.newsroom-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.newsroom-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.newsroom-carousel__status {
  margin: 0;
  color: rgba(231, 237, 243, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

.newsroom-carousel__nav {
  display: flex;
  gap: 10px;
}

.newsroom-carousel__button {
  min-width: 110px;
}

.newsroom-carousel__button:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--partner-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--surface-shadow);
  overflow: hidden;
}

.news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 16%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(4, 7, 10, 0.04) 0%, rgba(4, 7, 10, 0.12) 40%, rgba(4, 7, 10, 0.56) 100%);
  pointer-events: none;
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.news-card__label {
  margin: 0;
  color: var(--button-accent-text);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
}

.news-card__date {
  margin: -6px 0 0;
  color: rgba(231, 237, 243, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
}

.news-card__body h4,
.news-card__body p {
  margin: 0;
}

.news-card__body h4 {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.2;
}

.news-card__body p:not(.news-card__label):not(.news-card__date) {
  color: rgba(231, 237, 243, 0.74);
  line-height: 1.55;
  font-size: 1.00rem;
  max-width: none;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: rgba(242, 245, 248, 0.86);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.news-card__link:hover {
  color: var(--text);
}

.news-card__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(184, 198, 214, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--button-accent-text);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.news-card:hover .news-card__image,
.news-card:focus-within .news-card__image {
  transform: scale(1.03);
  filter: saturate(1.04);
}

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

.team-card {
  background: var(--partner-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--surface-shadow);
  overflow: hidden;
}

.team-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
}

.team-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(4, 7, 10, 0.02) 0%, rgba(4, 7, 10, 0.18) 46%, rgba(4, 7, 10, 0.82) 100%);
  transition: background 220ms ease;
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.team-card__image--portrait {
  object-position: center 22%;
}

.team-card__media--placeholder {
  background:
    radial-gradient(circle at 26% 22%, rgba(211, 162, 87, 0.18), transparent 24%),
    linear-gradient(150deg, rgba(34, 48, 62, 0.92), rgba(8, 12, 17, 0.98));
}

.team-card__media--placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 198, 214, 0.12);
  border-radius: calc(var(--radius-lg) - 4px);
  z-index: 1;
}

.team-card__initials {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  color: rgba(242, 245, 248, 0.24);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.team-card__meta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(8, 12, 17, 0.14), rgba(8, 12, 17, 0.72));
  border: 1px solid rgba(184, 198, 214, 0.18);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.team-card__meta h4,
.team-card__meta p {
  margin: 0;
}

.team-card__meta h4 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.team-card__meta p {
  margin-top: 4px;
  color: rgba(231, 237, 243, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.team-card:hover .team-card__image,
.team-card:focus-within .team-card__image {
  transform: scale(1.05);
  filter: saturate(1.06);
}

.team-card:hover .team-card__media::before,
.team-card:focus-within .team-card__media::before {
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(4, 7, 10, 0.02) 0%, rgba(4, 7, 10, 0.14) 40%, rgba(4, 7, 10, 0.74) 100%);
}

.team-card:hover .team-card__meta,
.team-card:focus-within .team-card__meta {
  transform: translateY(-4px);
  border-color: rgba(184, 198, 214, 0.24);
}

.partners-block {
  margin-top: 34px;
}

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

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 20px 18px;
  background: var(--partner-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--surface-shadow);
}

.partner-logo img {
  width: auto;
  max-width: calc(100% - 28px);
  max-height: 40px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  margin-top: 42px;
  padding-top: 18px;
  width: 100%;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 14px;
  text-align: center;
}

.site-footer__message {
  margin: 0;
  color: rgba(231, 237, 243, 0.66);
  font-size: 1.00rem;
  line-height: 1.55;
  max-width: 920px;
}

.site-footer__email {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-footer__button {
  min-width: 176px;
}

.site-copyright {
  margin: 0;
  align-self: flex-end;
  color: var(--text);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

/* Responsive */

@media (max-width: 980px) {
  .section__title--nowrap {
    white-space: normal;
  }

  .site-header {
    gap: 12px;
    justify-content: flex-start;
    padding-right: 64px;
  }

  .brand__logo {
    height: 34px;
  }

  .site-nav {
    display: none;
  }

  .site-header__cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid var(--button-accent-border);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(211, 162, 87, 0.12), rgba(211, 162, 87, 0.03));
    color: var(--button-accent-text);
    box-shadow: var(--header-shadow);
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.64rem;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav-toggle__label {
    display: none;
  }

  .mobile-nav-toggle__icon {
    display: grid;
    gap: 4px;
  }

  .mobile-nav-toggle__icon span {
    display: block;
    width: 14px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
  }

  body.has-mobile-nav {
    overflow: hidden;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 25;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 6, 8, 0.74);
  }

  .mobile-nav__panel {
    position: absolute;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, calc(100vw - 20px));
    max-height: calc(100svh - 100px);
    overflow-y: auto;
    padding: 16px;
    background: rgba(8, 12, 18, 0.96);
    border: 1px solid var(--header-border);
    border-radius: 18px;
    box-shadow: var(--header-shadow);
    backdrop-filter: blur(18px);
  }

  .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
  }

  .mobile-nav__title {
    margin: 0;
    color: rgba(231, 237, 243, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.64rem;
    font-weight: 700;
  }

  .mobile-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid rgba(184, 198, 214, 0.18);
    border-radius: 999px;
    background: rgba(5, 9, 13, 0.78);
    color: rgba(242, 245, 248, 0.88);
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.64rem;
    cursor: pointer;
  }

  .mobile-nav .site-nav {
    display: grid;
    gap: 14px;
    margin: 0;
    font-size: 0.78rem;
  }

  .mobile-nav .site-nav__separator {
    display: none;
  }

  .mobile-nav .site-nav > a,
  .mobile-nav .site-nav__link--with-icon,
  .mobile-nav .site-nav__dropdown-trigger--static {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    color: rgba(242, 245, 248, 0.88);
  }

  .mobile-nav .site-nav__dropdown {
    display: grid;
    gap: 10px;
  }

  .mobile-nav .site-nav__dropdown-trigger--static {
    color: var(--button-accent-text);
  }

  .mobile-nav .site-nav__chevron {
    display: none;
  }

  .mobile-nav .site-nav__dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .mobile-nav .site-nav__dropdown-menu::before {
    display: none;
  }

  .mobile-nav .site-nav__dropdown-link {
    border-radius: 12px;
  }

  .mobile-nav__cta {
    width: 100%;
    margin-top: 14px;
  }

  .scene__footer,
  .newsroom-grid,
  .prompt-grid,
  .partners-grid,
  .section-points {
    grid-template-columns: 1fr;
  }

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

  .newsroom-carousel__slide {
    grid-template-columns: 1fr;
  }

  .newsroom-carousel__controls {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .prompt-card__media-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --content-width: min(100vw - 24px, 100%);
  }

  .site-header {
    top: 10px;
    padding: 10px 12px;
    padding-right: 58px;
  }

  .mobile-nav__panel {
    top: 70px;
    width: min(calc(100vw - 16px), 100%);
    max-height: calc(100svh - 82px);
    padding: 14px;
  }

  .mobile-nav-toggle {
    right: 8px;
  }

  .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .brand__logo {
    height: 32px;
  }

  .scene {
    padding-top: 96px;
    padding-inline: 14px;
  }

  .scene__content {
    min-height: auto;
    align-items: center;
  }

  .scene__panel {
    padding: 20px;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 3.5rem);
  }

  .scene h2,
  .section h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .scene__summary,
  .prompt-card > p:not(.prompt-card__label) {
    font-size: 1.00rem;
  }

  .scene__actions {
    flex-direction: column;
  }

  .scene__actions .button {
    width: 100%;
  }

  .newsroom-grid {
    grid-template-columns: 1fr;
  }

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

  .video-modal,
  .image-modal {
    padding: 16px;
  }

  .video-modal__dialog,
  .image-modal__dialog {
    width: min(100vw - 24px, 100%);
    padding: 14px;
  }

  .section {
    padding-top: 76px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .scene__video,
  .section__video {
    display: none;
  }

  .scene--has-video::before {
    background:
      linear-gradient(90deg, var(--scene-side-shade-left) 0%, var(--scene-side-shade-mid) 42%, var(--scene-side-shade-right) 100%),
      linear-gradient(180deg, var(--scene-top-shade), var(--scene-bottom-shade)),
      var(--scene-image) center center / cover no-repeat;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
