@font-face {
  font-family: "Topten Times";
  src: url("./assets/fonts/times-new-roman.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Topten Times";
  src: url("./assets/fonts/times-new-roman-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --dim: rgba(255, 255, 255, 0.52);
  --black: #000000;
  --header-height: 88px;
  --site-small-copy-size: 19px;
  --site-small-copy-line-height: 1.62;
  --site-small-label-size: 17px;
  --site-small-label-line-height: 1.42;
  --site-page-title-size: 58px;
  --site-page-title-line-height: 0.98;
  --site-ui-title-size: 30px;
  --site-ui-title-line-height: 1.08;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Topten Times", "Times New Roman", Times, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
  scrollbar-width: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

site-header,
site-footer {
  display: contents;
}

body.home-preload-pending {
  overflow: hidden;
}

body.home-preload-pending .site-header,
body.home-preload-pending #home,
body.home-preload-pending .site-footer {
  opacity: 0;
  visibility: hidden;
}

.home-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  color: var(--white);
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 480ms ease, visibility 480ms ease;
}

.home-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-loader.is-leaving {
  opacity: 0;
  visibility: visible;
}

.home-loader-brand {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.home-loader-ring {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  animation: home-loader-spin 900ms linear infinite;
}

.home-loader-progress {
  width: min(240px, 52vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.home-loader-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  transition: width 260ms ease;
}

.home-loader-percent {
  min-width: 56px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 182px 1fr 470px;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 60px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0));
  transform: translateY(0);
  transition: transform 260ms ease, background 260ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.investment-body .site-header {
  background: rgba(0, 0, 0, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  display: block;
  width: 152px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 42px;
  font-family: "Topten Times", "Times New Roman", Times, serif;
  padding-left: 42px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a,
.nav-dropdown-trigger {
  color: var(--white);
  background: transparent;
  outline: 0;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a:active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus,
.nav-dropdown-trigger:active {
  color: var(--white);
  background: transparent;
}

.main-nav a:focus-visible,
.nav-dropdown-trigger:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 1em;
  line-height: 1;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 32px;
  content: "";
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  height: 1em;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  text-transform: uppercase;
  appearance: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 16px 12px;
  margin-top: 12px;
  border-radius: 2px;
  background: rgba(30, 30, 30, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.is-scroll-closing .nav-dropdown-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
}

.nav-dropdown-menu a {
  padding: 14px 16px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 150ms ease;
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.launch-widget {
  position: relative;
  width: 292px;
  height: 40px;
}

.launch-widget::after {
  display: none;
}

.launch-toggle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 292px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.launch-panel {
  position: absolute;
  top: 52px;
  right: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  width: 292px;
  min-height: 0;
  padding: 20px 10px 20px 6px;
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.02));
  backdrop-filter: blur(2px);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
  transition:
    transform 1s ease,
    opacity 1s ease,
    visibility 1s ease;
}

.launch-widget:hover .launch-panel,
.launch-widget:focus-within .launch-panel,
.launch-widget.is-open .launch-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(0);
}

.launch-panel .launch-toggle {
  margin-bottom: 20px;
}

.launch-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.launch-item:first-child {
  padding-top: 0;
}

.launch-thumb {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.14);
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.launch-thumb-traffic {
  background-image:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 34%),
    linear-gradient(20deg, rgba(11, 28, 44, 0.94), rgba(67, 117, 158, 0.78) 48%, rgba(10, 14, 18, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 13px, rgba(255, 255, 255, 0.22) 14px 15px);
}

.launch-thumb-factory {
  background-image:
    linear-gradient(155deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 68% 34%, rgba(248, 209, 113, 0.75) 0 7px, transparent 8px),
    linear-gradient(115deg, rgba(23, 26, 30, 0.96), rgba(92, 97, 103, 0.9) 46%, rgba(15, 18, 22, 0.98)),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, 0.16) 10px 11px);
}

.launch-item h3 {
  margin: 0 0 11px;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
}

.launch-copy {
  display: grid;
  gap: 9px;
}

.launch-copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 700;
}

.launch-copy small,
.launch-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
}

.all-launches {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 46px;
  height: 38px;
  padding: 0;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font: inherit;
  transition: background 180ms ease, border-color 180ms ease;
}

.menu-button span {
  width: 22px;
  height: 1px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.22);
}

.menu-button:hover,
.menu-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-mobile-menu-open {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.site-header.is-mobile-menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-mobile-menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: var(--image);
  background-position: center;
  background-size: cover;
}

.panel::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58vh;
  z-index: 1;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 34%,
    rgba(0, 0, 0, 0.36) 68%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.panel-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.panel-video::-webkit-media-controls,
.panel-video::-webkit-media-controls-panel,
.panel-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.video-reel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-reel .panel-video {
  opacity: 0;
  transition: opacity 900ms ease;
}

.video-reel .panel-video.is-active {
  opacity: 1;
}

.panel-airport {
  --image:
    linear-gradient(135deg, rgba(18, 33, 42, 0.92), rgba(81, 117, 139, 0.5) 46%, rgba(8, 10, 12, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.1) 55px 56px);
}

.panel-airport::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.12) 30%,
    rgba(0, 0, 0, 0.58) 68%,
    rgba(0, 0, 0, 1) 100%
  );
}

.panel-factory {
  --image:
    linear-gradient(135deg, rgba(16, 18, 20, 0.96), rgba(73, 80, 88, 0.66) 50%, rgba(7, 8, 10, 1)),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(255, 255, 255, 0.09) 49px 50px);
}

.panel-factory::before {
  z-index: 1;
  height: 33.333%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.panel-environment {
  --image:
    linear-gradient(135deg, rgba(12, 31, 26, 0.95), rgba(51, 101, 84, 0.56) 48%, rgba(5, 8, 7, 0.98)),
    radial-gradient(circle at 70% 35%, rgba(179, 218, 197, 0.2), transparent 32%);
}

.panel-partners-cooperation {
  --image: url("./assets/partner-logo-wall-bg.svg");
  align-items: flex-start;
  background-color: #f6f0e4;
}

.panel-partners-cooperation::before {
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.panel-partners-cooperation::after {
  display: none;
}

.panel-partners-cooperation .panel-copy {
  width: min(980px, calc(100vw - 80px));
  margin: clamp(122px, 15vh, 172px) auto 0;
  text-align: center;
  text-shadow: none;
}

.panel-partners-cooperation .panel-copy h2 {
  color: #111;
}

.panel-partners-cooperation .summary,
.panel-partners-cooperation .cta-button {
  display: none;
}

.panel-partners-investment {
  --image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2400&q=88");
}

.panel-partners-investment::after {
  height: clamp(240px, 34vh, 420px);
  background: linear-gradient(
    180deg,
    rgba(244, 246, 242, 0) 0%,
    rgba(244, 246, 242, 0.18) 34%,
    rgba(244, 246, 242, 0.72) 72%,
    #f4f6f2 100%
  );
}

.partners-contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  min-height: 100vh;
  padding: 120px 9vw 86px;
  color: #111;
  background: #f4f6f2;
}

.partners-contact-copy {
  width: min(640px, 100%);
  text-shadow: none;
}

.partners-contact-copy .summary {
  color: rgba(17, 17, 17, 0.68);
}

.partners-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(620px, 100%);
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 62px rgba(17, 17, 17, 0.1);
}

.partners-contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.partners-contact-form input,
.partners-contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  color: #111;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  resize: vertical;
}

.partners-contact-form input:focus,
.partners-contact-form textarea:focus {
  outline: 2px solid rgba(17, 17, 17, 0.48);
  outline-offset: 2px;
}

.partners-contact-message,
.partners-contact-form .cta-button,
.partners-contact-status {
  grid-column: 1 / -1;
}

.partners-contact-form .cta-button {
  width: fit-content;
  margin-top: 4px;
  border-color: rgba(17, 17, 17, 0.72);
  color: #111;
  cursor: pointer;
  background: transparent;
}

.partners-contact-form .cta-button:disabled {
  cursor: wait;
  opacity: 0.56;
}

.partners-contact-status {
  min-height: 20px;
  margin: -2px 0 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.partners-contact-status[data-state="success"] {
  color: #14743c;
}

.partners-contact-status[data-state="error"] {
  color: #b42318;
}

.partners-jobs-section {
  padding: 96px 9vw 84px;
  background: #f4f6f2;
  color: #111;
}

.partners-jobs-shell {
  display: grid;
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
}

.partners-jobs-header {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.partners-jobs-header .subpage-kicker {
  color: rgba(17, 17, 17, 0.6);
}

.partners-jobs-header h2 {
  color: #111;
}

.partners-jobs-header .summary {
  width: min(640px, 100%);
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
}

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

.partners-job-card,
.partners-jobs-empty {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 62px rgba(17, 17, 17, 0.08);
}

.partners-job-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  cursor: pointer;
}

.partners-job-topline {
  display: grid;
  gap: 10px;
  min-height: 86px;
  align-content: start;
}

.partners-job-topline h3 {
  margin: 0;
  color: #111;
  font-size: 28px;
  line-height: 1.08;
  text-transform: none;
}

.partners-job-salary {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 16px;
  line-height: 1.35;
}

.partners-job-meta,
.partners-job-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.partners-job-meta {
  min-height: 34px;
}

.partners-job-meta span,
.partners-job-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
  line-height: 1.2;
}

.partners-job-summary {
  position: relative;
  overflow: hidden;
  max-height: calc(1.9em * 4.45);
  margin: 0;
  color: rgba(17, 17, 17, 0.82);
}

.partners-job-summary-text {
  display: block;
  font-size: 14px;
  line-height: 1.9;
  white-space: normal;
}

.partners-job-summary.is-truncated .partners-job-summary-text {
  -webkit-mask-image: linear-gradient(180deg, #000 66%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 66%, transparent 100%);
}

.partners-job-benefits {
  margin-top: 2px;
}

html.has-job-preview-open,
body.has-job-preview-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.partners-job-preview[hidden] {
  display: none;
}

.partners-job-preview {
  position: fixed;
  inset: 0;
  z-index: 120;
  overscroll-behavior: none;
}

.partners-job-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 15, 0.54);
  backdrop-filter: blur(10px);
}

.partners-job-preview-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  height: min(760px, calc(100vh - 40px));
  margin: 20px auto;
  padding: 28px 18px 18px 18px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.18);
}

.partners-job-preview-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111;
  background: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.partners-job-preview-top {
  display: grid;
  gap: 16px;
  min-height: 0;
  padding: 4px 78px 0 12px;
}

.partners-job-preview-dialog h2 {
  margin: 0 0 12px;
  color: #111;
  font-size: 42px;
  line-height: 1.02;
}

.partners-job-preview-salary {
  margin: 0 0 20px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 18px;
  line-height: 1.35;
}

.partners-job-preview-meta,
.partners-job-preview-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partners-job-preview-meta {
  margin-bottom: 28px;
}

.partners-job-preview-meta span,
.partners-job-preview-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
  line-height: 1.2;
}

.partners-job-preview-main {
  min-height: 0;
  padding: 6px 12px 6px 12px;
  overflow: auto;
  overscroll-behavior: contain;
}

.partners-job-preview-body {
  color: rgba(17, 17, 17, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.partners-job-preview-benefits {
  margin-top: 2px;
}

.partners-job-preview-bottom,
.partners-apply-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.partners-job-preview-bottom {
  min-height: 72px;
  padding: 12px 12px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.partners-job-preview-bottom .cta-button,
.partners-apply-form .cta-button {
  min-width: 180px;
  border-color: rgba(17, 17, 17, 0.18);
  color: #111;
  background: rgba(17, 17, 17, 0.04);
}

.partners-job-preview-bottom .cta-button:hover,
.partners-apply-form .cta-button:hover,
.partners-job-preview-bottom .cta-button:focus-visible,
.partners-apply-form .cta-button:focus-visible {
  background: rgba(17, 17, 17, 0.08);
}

.partners-job-apply[hidden] {
  display: none;
}

.partners-job-apply {
  position: fixed;
  inset: 0;
  z-index: 121;
}

.partners-job-apply-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  padding: 30px 30px 34px;
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.18);
}

.partners-job-apply-header {
  display: grid;
  gap: 10px;
}

.partners-job-apply-header h2 {
  color: #111;
}

.partners-job-apply-position {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 20px;
  line-height: 1.4;
}

.partners-apply-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.partners-apply-form label {
  display: grid;
  gap: 8px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.partners-apply-form input,
.partners-apply-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  color: #111;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  resize: vertical;
}

.partners-apply-form input:focus,
.partners-apply-form textarea:focus {
  outline: 2px solid rgba(17, 17, 17, 0.48);
  outline-offset: 2px;
}

.partners-apply-file,
.partners-apply-note,
.partners-apply-actions {
  grid-column: 1 / -1;
}

.partners-apply-form input[type="file"] {
  padding: 11px 14px;
}

.partners-apply-actions {
  margin-top: 8px;
}

.partners-apply-actions .partners-contact-status {
  margin: 0;
  text-align: left;
}

.partners-jobs-empty {
  padding: 28px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.panel-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 80px));
  margin: 0 0 126px 60px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.eyebrow {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-size: 58px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.summary {
  width: min(480px, 100%);
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

#home .summary {
  font-size: 22px;
  line-height: 1.5;
}

#home .summary {
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 104px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 3px;
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#home .cta-button {
  min-width: 128px;
  min-height: 56px;
  font-size: 15px;
}

.site-footer {
  min-height: 300px;
  padding: 42px 9.5vw 34px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subpage Styles */
.subpage {
  padding-top: var(--header-height);
}

.subpage-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  overflow: hidden;
}

.subpage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0) 50%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.72) 100%);
}

.subpage-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.subpage-content h1 {
  margin-bottom: 16px;
}

.subpage-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.subpage-section {
  padding: 80px 60px;
  background: #0a0a0a;
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.subpage-block {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.subpage-block h2 {
  margin: 0 0 16px;
  font-size: 58px;
  text-transform: none;
}

.subpage-block p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.subpage-cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 60px;
  background: #050505;
}

.cta-button-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.investment-page {
  min-height: 100vh;
  padding-top: 0;
  background: #fff;
}

.investment-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #080808;
}

.investment-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0) 50%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.64));
}

.investment-hero-copy {
  position: absolute;
  left: clamp(34px, 8vw, 104px);
  bottom: clamp(76px, 13vh, 150px);
  z-index: 1;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
}

.investment-hero-copy h1 {
  font-size: 58px;
  line-height: 0.98;
}

.investment-hero-copy p {
  margin: 6px 0 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: none;
}

.investment-intro {
  width: min(760px, calc(100vw - 56px));
  margin: 0 auto;
  padding: 76px 0 56px;
  text-align: center;
  background: #fff;
}

.investment-intro h2 {
  margin: 0;
  color: #111;
  font-size: 58px;
  line-height: 0.98;
  text-transform: none;
}

.investment-intro p {
  margin: 20px auto 0;
  color: rgba(0, 0, 0, 0.64);
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

.investment-gallery-section {
  padding: 0 44px 86px;
  background: #fff;
}

.investment-gallery {
  position: relative;
  width: min(1120px, 100%);
  height: 498px;
  margin: 0 auto;
}

.industrial-page-body .site-header {
  background: rgba(0, 0, 0, 0.32);
}

.industrial-page .investment-hero {
  min-height: 100vh;
}

.industrial-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 20, 44, 0.68) 0%, rgba(16, 33, 70, 0.34) 46%, rgba(26, 35, 72, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 8, 15, 0.14), rgba(5, 8, 15, 0.46));
}

.industrial-hero-copy {
  left: clamp(34px, 8vw, 118px);
  bottom: clamp(62px, 12vh, 132px);
}

.industrial-intro {
  width: min(760px, calc(100vw - 56px));
  padding: 76px 0 56px;
  text-align: center;
}

.industrial-intro h2 {
  width: auto;
  font-size: 58px;
  line-height: 0.98;
}

.industrial-intro p {
  width: min(760px, 100%);
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

.traffic-intro p {
  text-align: justify;
  text-align-last: left;
}

.industrial-gallery {
  height: 618px;
}

.industrial-gallery .investment-card:nth-child(1) {
  top: 0;
  left: 0;
  width: calc((100% - 18px) / 2);
  height: 300px;
}

.industrial-gallery .investment-card:nth-child(2) {
  top: 0;
  left: calc((100% - 18px) / 2 + 18px);
  width: calc((100% - 18px) / 2);
  height: 300px;
}

.industrial-gallery .investment-card:nth-child(3) {
  top: 318px;
  left: 0;
  width: calc((100% - 18px) / 2);
  height: 300px;
}

.industrial-gallery .investment-card:nth-child(4) {
  top: 318px;
  left: calc((100% - 18px) / 2 + 18px);
  width: calc((100% - 18px) / 2);
  height: 300px;
}

.industrial-gallery .investment-card.is-active {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.traffic-gallery {
  height: 618px;
}

.traffic-gallery .investment-card:nth-child(1) {
  top: 0;
  left: 0;
  width: calc((100% - 18px) / 2);
  height: 300px;
}

.traffic-gallery .investment-card:nth-child(2) {
  top: 0;
  left: calc((100% - 18px) / 2 + 18px);
  width: calc((100% - 18px) / 2);
  height: 300px;
}

.traffic-gallery .investment-card:nth-child(3) {
  top: 318px;
  left: 0;
  width: calc((100% - 18px) / 2);
  height: 300px;
}

.traffic-gallery .investment-card:nth-child(4) {
  top: 318px;
  left: calc((100% - 18px) / 2 + 18px);
  width: calc((100% - 18px) / 2);
  height: 300px;
}

.traffic-gallery .investment-card.is-active {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.traffic-gallery .investment-card,
.traffic-gallery .investment-card-button {
  background: #fff;
}

.traffic-gallery .investment-card {
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
}

.traffic-gallery .investment-card.is-active {
  box-shadow: none;
}

.traffic-gallery .investment-card-button img {
  object-fit: contain;
  object-position: 68% center;
  filter: none;
  background: #fff;
}

.traffic-gallery .investment-card:nth-child(4) .investment-card-button img {
  width: 72%;
  height: 72%;
  display: block;
  margin: 0 auto;
  object-position: 68% center;
  transform: translateX(12%);
}

.traffic-gallery .investment-card:nth-child(4) .investment-card-button:hover img,
.traffic-gallery .investment-card:nth-child(4) .investment-card-button:focus-visible img {
  transform: translateX(12%) scale(1.035);
}

.traffic-gallery .investment-card-button:hover img,
.traffic-gallery .investment-card-button:focus-visible img {
  filter: none;
}

.traffic-gallery .investment-card-shade {
  display: none;
}

.traffic-gallery .investment-card-title,
.traffic-gallery .investment-card-kicker {
  color: #111;
}

.traffic-gallery .investment-card-detail {
  background: transparent;
}

.traffic-gallery .investment-card-description p,
.traffic-gallery .investment-card-credit {
  color: #111;
}

.traffic-gallery .investment-card-link {
  color: #111;
  border-color: rgba(17, 17, 17, 0.82);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.14);
}

.traffic-gallery .investment-card-link:hover,
.traffic-gallery .investment-card-link:focus-visible {
  border-color: #111;
  background: rgba(255, 255, 255, 0.94);
}

.traffic-gallery .investment-card-close {
  color: #111;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.16);
}

.investment-gallery.is-animating {
  pointer-events: none;
}

.investment-gallery.is-preparing-open .investment-card:not(.is-opening-card) {
  opacity: 0;
  transform: scale(0.985);
}

.investment-card {
  position: absolute;
  min-height: 0;
  overflow: hidden;
  background: #111;
  transform-origin: top left;
  transition:
    top 620ms cubic-bezier(0.16, 1, 0.3, 1),
    left 620ms cubic-bezier(0.16, 1, 0.3, 1),
    width 620ms cubic-bezier(0.16, 1, 0.3, 1),
    height 620ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 300ms ease,
    transform 300ms ease;
}

.investment-card:nth-child(1) {
  top: 0;
  left: 0;
  width: calc((100% - 36px) / 3);
  height: 240px;
}

.investment-card:nth-child(2) {
  top: 0;
  left: calc((100% - 36px) / 3 + 18px);
  width: calc((100% - 36px) / 3);
  height: 240px;
}

.investment-card:nth-child(3) {
  top: 0;
  left: calc(((100% - 36px) / 3 + 18px) * 2);
  width: calc((100% - 36px) / 3);
  height: 240px;
}

.investment-card:nth-child(4) {
  top: 258px;
  left: 0;
  width: calc((100% - 36px) / 3);
  height: 240px;
}

.investment-card:nth-child(5) {
  top: 258px;
  left: calc((100% - 36px) / 3 + 18px);
  width: calc((100% - 36px) / 3);
  height: 240px;
}

.investment-card:nth-child(6) {
  top: 258px;
  left: calc(((100% - 36px) / 3 + 18px) * 2);
  width: calc((100% - 36px) / 3);
  height: 240px;
}

.investment-card-button {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: var(--white);
  background: #111;
  cursor: pointer;
  text-align: left;
  font-family: "Topten Times", "Times New Roman", Times, serif;
}

.investment-card-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.05);
  transition: transform 700ms ease, filter 700ms ease;
}

.investment-card-button:hover img,
.investment-card-button:focus-visible img {
  transform: scale(1.035);
  filter: brightness(0.86) contrast(1.08);
}

.investment-card-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.84);
  outline-offset: -2px;
}

.investment-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08));
}

.investment-body .investment-card-shade {
  inset: 0 0 auto;
  height: 33.333%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.industrial-page-body .investment-card-shade {
  inset: 0 0 auto;
  height: 33.333%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.investment-body .investment-card-button img,
.investment-body .investment-card-button:hover img,
.investment-body .investment-card-button:focus-visible img {
  filter: none;
}

.industrial-page-body .investment-card-button img,
.industrial-page-body .investment-card-button:hover img,
.industrial-page-body .investment-card-button:focus-visible img {
  filter: none;
}

.investment-card-title {
  position: absolute;
  left: 24px;
  top: 28px;
  z-index: 3;
  max-width: calc(100% - 48px);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  white-space: pre-line;
}

.investment-card-kicker {
  position: absolute;
  left: 24px;
  top: 64px;
  z-index: 3;
  max-width: calc(100% - 36px);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.investment-gallery.has-active-card .investment-card:not(.is-active) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.investment-card.is-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  overflow: visible;
}

.investment-card.is-active .investment-card-button {
  cursor: default;
}

.investment-card.is-active .investment-card-button img {
  transform: none;
  filter: none;
}

.investment-card.is-active .investment-card-title {
  left: 24px;
  top: 28px;
}

.investment-body .investment-card-title {
  max-width: calc(100% - 56px);
  font-size: 18px;
  line-height: 1.08;
  text-transform: none;
}

.investment-body .investment-card.is-active .investment-card-title {
  max-width: min(520px, calc(100% - 72px));
  font-size: 40px;
  line-height: 1.04;
}

.investment-body .investment-card-kicker {
  font-size: 11px;
  line-height: 1.1;
  text-transform: none;
}

.investment-body .investment-card.is-active .investment-card-kicker {
  font-size: 18px;
  line-height: 1.2;
}

.investment-card.is-active .investment-card-kicker {
  left: 24px;
  top: 64px;
}

.investment-card.is-active .investment-card-shade {
  display: none;
}

.investment-card-detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.22) 30%, rgba(0, 0, 0, 0) 50%);
}

.investment-card-detail.is-leaving {
  animation: investmentDetailLeave 220ms ease both;
}

.investment-card-description {
  width: min(430px, calc(100% - 72px));
  padding: 96px 0 0 24px;
}

.investment-card-description p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  animation: investmentDescriptionReveal 360ms ease 540ms both;
}

.investment-card-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 3;
  width: 30px;
  height: 30px;
  padding: 0 0 2px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(80, 80, 80, 0.92);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  pointer-events: all;
}

.investment-card-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.86);
  outline-offset: 3px;
}

.investment-card-credit {
  position: absolute;
  left: 24px;
  bottom: 18px;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.82;
}

.investment-card-link {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.68);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: all;
  opacity: 0;
  transform: translateY(18px);
  animation: investmentLinkReveal 320ms ease 480ms forwards;
}

.investment-card-link:hover,
.investment-card-link:focus-visible {
  background: rgba(17, 17, 17, 0.86);
  border-color: rgba(255, 255, 255, 1);
}

.investment-card-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

@keyframes investmentDescriptionReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes investmentDetailLeave {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes investmentLinkReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subpage-spacex {
  padding-top: 0;
}

.subpage-spacex .subpage-hero {
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100vh;
}

.subpage-spacex .subpage-content {
  width: min(760px, calc(100vw - 120px));
  margin: 0 0 126px 60px;
  padding: 0;
  text-align: left;
}

.subpage-spacex .subpage-subtitle {
  width: min(520px, 100%);
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.subpage-kicker {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.subpage-visual {
  position: absolute;
  inset: 0;
  background: var(--subpage-image);
  background-position: center;
  background-size: cover;
}

.resources-page {
  --subpage-image:
    linear-gradient(135deg, rgba(13, 20, 28, 0.92), rgba(66, 89, 108, 0.45) 48%, rgba(4, 6, 8, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, 0.1) 71px 72px);
  background: #fff;
  color: #111;
}

.insights-page {
  background: #fff;
  color: #111;
}

.insights-page-body {
  background: #fff;
  color: #111;
}

.insights-page-body .site-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0));
}

.insights-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #090909;
}

.insights-hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: none;
}

.insights-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.insights-hero-slide.is-active {
  z-index: 1;
  pointer-events: auto;
}

.insights-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 860ms ease, transform 6200ms ease;
}

.insights-hero-slide.is-active img {
  opacity: 1;
  transform: scale(1);
}

.insights-hero-copy {
  position: absolute;
  left: 60px;
  bottom: 126px;
  z-index: 3;
  width: min(720px, calc(100vw - 80px));
  color: var(--white);
  opacity: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
  transform: translateY(14px);
  transition: opacity 320ms ease 120ms, transform 320ms ease 120ms;
}

.insights-hero-copy h1,
.insights-hero-copy h2 {
  font-size: 46px;
  line-height: 1.02;
}

.insights-hero-slide.is-active .insights-hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.insights-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.insights-hero-arrow:hover,
.insights-hero-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.34);
}

.insights-hero-arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.84);
  outline-offset: 4px;
}

.insights-hero-arrow-prev {
  left: 28px;
}

.insights-hero-arrow-next {
  right: 28px;
}

.insights-news {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 48px 10px 42px;
  background: #fff;
}

.insights-news-heading {
  width: 100%;
  margin: 0 auto 28px;
}

.insights-news-heading .subpage-kicker {
  margin-bottom: 8px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 14px;
}

.insights-news-heading h2 {
  color: #111;
  font-size: 34px;
  line-height: 1;
}

.insights-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  min-height: clamp(520px, calc(100vh - 248px), 680px);
  margin: 0 auto;
}

.insights-news-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.1);
}

.insights-news-placeholder {
  min-height: 0;
}

.insights-news-card a {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--white);
}

.insights-news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease;
}

.insights-news-card:hover img,
.insights-news-card:focus-within img {
  transform: scale(1.045);
}

.insights-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 33.333%);
}

.insights-news-meta,
.insights-news-card h3,
.insights-news-card p {
  position: absolute;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.insights-news-meta {
  top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.insights-news-card h3 {
  top: 52px;
  margin: 0;
  font-size: 23px;
  line-height: 1.06;
  font-weight: 700;
  text-transform: none;
}

.insights-news-card p {
  bottom: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.36;
}

.insights-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 30px auto 0;
}

.insights-page-button {
  min-width: 42px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  color: #111;
  background: #fff;
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.insights-page-button:hover,
.insights-page-button:focus-visible,
.insights-page-button.is-active {
  color: #fff;
  border-color: #111;
  background: #111;
}

.news-detail-page {
  min-height: 100vh;
  background: #fff;
  color: #111;
}

.news-detail-hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #111;
}

.news-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0) 50%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.68));
}

.news-detail-hero-copy {
  position: absolute;
  left: 60px;
  bottom: 96px;
  z-index: 1;
  width: min(780px, calc(100vw - 120px));
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.news-detail-meta {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.news-detail-hero-copy h1 {
  font-size: 46px;
  line-height: 1.02;
}

.news-detail-article {
  width: min(880px, calc(100vw - 56px));
  margin: 0 auto;
  padding: 70px 0 92px;
}

.news-detail-body {
  display: grid;
  gap: 20px;
}

.news-detail-body p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 18px;
  line-height: 1.72;
  white-space: normal;
}

.news-detail-body p br {
  display: block;
  content: "";
  margin-top: 8px;
}

.news-detail-body h2,
.news-detail-body h3,
.news-detail-body h4 {
  margin: 18px 0 0;
  color: #111;
  line-height: 1.12;
  text-align: left;
  text-transform: none;
}

.news-detail-body h2 {
  font-size: 34px;
}

.news-detail-body h3 {
  font-size: 28px;
}

.news-detail-body h4 {
  font-size: 22px;
}

.news-detail-body ul {
  margin: 0;
  padding-left: 22px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

.news-detail-image {
  width: 100%;
  margin: 18px auto;
}

.news-detail-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  margin-top: 42px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.7);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.partners-page {
  --subpage-image:
    linear-gradient(135deg, rgba(14, 18, 22, 0.94), rgba(74, 86, 96, 0.56) 48%, rgba(4, 6, 8, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.08) 55px 56px);
}

.subpage-band {
  padding: 86px 60px 96px;
  background: #050505;
}

.subpage-band-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.35fr);
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
}

.subpage-band h2 {
  margin: 0;
  font-size: 58px;
  line-height: 0.98;
}

.subpage-list {
  display: grid;
  gap: 24px;
}

.subpage-list article {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.subpage-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1;
  text-transform: none;
}

.subpage-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.mars-reference-page {
  background: #fff;
}

.resources-body {
  background: #fff;
}

.mars-reference-page .subpage-hero {
  min-height: 100svh;
}

.resources-hero .subpage-visual {
  background: var(--resources-hero-image, url("https://images.pexels.com/photos/3862132/pexels-photo-3862132.jpeg?auto=compress&cs=tinysrgb&w=2400"));
  background-position: center;
  background-size: cover;
}

.resources-hero .subpage-content,
.resources-hero .subpage-content h1 {
  color: var(--white);
}

.resources-hero .subpage-content h1 {
  font-size: 58px;
  line-height: 0.98;
}

.resources-hero .subpage-content {
  margin-bottom: 260px;
}

.resources-hero .subpage-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.resources-hero .subpage-subtitle {
  color: var(--muted);
}

.resources-hero .subpage-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0) 50%);
}

.mars-intro {
  display: grid;
  place-items: center;
  min-height: 64vh;
  padding: 90px 60px;
  background: #fff;
}

.mars-intro-copy {
  width: min(820px, 100%);
  text-align: center;
}

.mars-intro-copy h2,
.mars-feature-copy h2,
.mars-specs-heading h2,
.mars-closing h2 {
  margin: 0;
  font-size: 58px;
  line-height: 0.98;
  text-transform: none;
}

.mars-intro-copy p {
  margin: 24px auto 0;
  width: min(700px, 100%);
  color: rgba(17, 17, 17, 0.68);
  font-size: 20px;
  line-height: 1.68;
}

.mars-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 40px;
  background: #fff;
}

.mars-metrics div {
  border-top: 1px solid rgba(17, 17, 17, 0.24);
  padding-top: 22px;
}

.mars-metrics strong {
  display: block;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.resources-hero .mars-metrics {
  position: absolute;
  z-index: 2;
  right: 60px;
  bottom: 58px;
  left: 60px;
  max-width: 1040px;
  margin: 0 auto;
  background: transparent;
}

.resources-hero .mars-metrics div {
  border-top: 0;
  padding-top: 0;
  text-align: center;
}

.resources-hero .mars-metrics strong,
.resources-hero .mars-metrics span {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

.mars-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 13px;
  line-height: 1.2;
  text-transform: none;
}

.mars-feature {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  background: var(--feature-image);
  background-position: center;
  background-size: cover;
}

.mars-feature-reverse {
  justify-content: flex-start;
}

.mars-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0) 50%);
}

.mars-feature-media {
  display: none;
}

.resources-page .mars-feature {
  min-height: auto;
  height: auto;
  max-height: none;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.resources-page .mars-feature-media {
  min-height: 0;
}

.resources-lab-feature {
  --feature-image: var(--resources-feature-one-image, url("https://images.pexels.com/photos/3912981/pexels-photo-3912981.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=2400&h=1350"));
}

.resources-platform-feature {
  --feature-image: var(--resources-feature-two-image, url("https://images.pexels.com/photos/3862632/pexels-photo-3862632.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=2400&h=1350"));
}

.resources-platform-feature::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 50%;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.resources-platform-feature .mars-feature-copy {
  max-width: 520px;
}

.resources-page .mars-feature::after,
.resources-page .mars-full-image::after {
  display: none;
}

.resources-page .mars-feature-copy,
.resources-page .mars-full-image div {
  color: var(--black);
  text-shadow: none;
}

.resources-page .mars-feature-copy span,
.resources-page .mars-full-image .subpage-kicker {
  color: rgba(0, 0, 0, 0.72);
}

.resources-page .mars-feature-copy h2,
.resources-page .mars-full-image h2 {
  color: var(--black);
}

.resources-page .mars-feature-copy p,
.resources-page .mars-full-image p {
  color: rgba(0, 0, 0, 0.82);
}

.resources-page .formatted-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.resources-page .formatted-text p + p {
  margin-top: 0.95em;
}

.resources-page .mars-intro-copy .formatted-text,
.resources-page .mars-feature-copy .formatted-text,
.resources-page .mars-full-image .formatted-text,
.resources-page .mars-closing .formatted-text {
  margin-top: 20px;
}

.resources-page .subpage-subtitle.formatted-text {
  margin: 0;
}

.resources-page .mars-intro-copy .formatted-text {
  width: min(700px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.resources-page .mars-intro-copy .formatted-text p {
  text-align: justify;
  text-align-last: left;
}

.resources-page .mars-feature-copy .formatted-text {
  width: min(520px, 100%);
  margin-right: auto;
}

.resources-page .mars-full-image .formatted-text {
  width: min(520px, 100%);
}

.resources-network-full .formatted-text,
.resources-service-full .formatted-text {
  margin-left: 0;
  margin-right: 0;
}

.resources-certificates {
  position: absolute;
  top: clamp(128px, 10.5vw, 188px);
  right: clamp(170px, 12vw, 260px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 1.55vw, 26px);
  width: min(430px, 25vw);
  pointer-events: none;
}

.resources-certificate-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 0.34fr);
  align-items: center;
  min-height: clamp(168px, 10.9vw, 210px);
  padding: clamp(22px, 2vw, 30px) clamp(18px, 1.8vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.28) 46%, rgba(255, 255, 255, 0.16) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.34),
    0 18px 52px rgba(0, 0, 0, 0.16),
    0 2px 10px rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(34px) saturate(180%) contrast(1.04);
  -webkit-backdrop-filter: blur(34px) saturate(180%) contrast(1.04);
  outline: 0;
  overflow: visible;
  pointer-events: auto;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.resources-certificate-card:nth-child(3) {
  width: 100%;
}

.resources-certificate-card:hover,
.resources-certificate-card:focus-visible {
  z-index: 5;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.36) 50%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.42),
    0 30px 78px rgba(0, 0, 0, 0.24),
    0 3px 14px rgba(255, 255, 255, 0.42);
  transform: translateY(-18px);
}

.resources-certificate-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.resources-certificate-copy span {
  color: rgba(17, 17, 17, 0.56);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.resources-certificate-stack {
  position: relative;
  height: clamp(132px, 9.4vw, 180px);
  min-width: 0;
  overflow: visible;
}

.resources-certificate-image {
  position: absolute;
  top: 50%;
  right: clamp(-18px, -1vw, -10px);
  display: block;
  width: clamp(112px, 7.8vw, 150px);
  height: clamp(154px, 10.7vw, 206px);
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: #fff;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.2);
  opacity: 0;
  transform: translateY(-50%) translateX(calc(var(--i, 0) * -4px)) scale(calc(1 - var(--i, 0) * 0.04)) rotate(calc(var(--i, 0) * -0.8deg));
  transform-origin: top center;
  transition:
    opacity 220ms ease,
    transform 280ms ease,
    box-shadow 280ms ease;
}

.resources-certificate-image:nth-child(1) {
  --i: 0;
  z-index: 5;
  opacity: 1;
}

.resources-certificate-image:nth-child(2) {
  --i: 1;
  z-index: 4;
}

.resources-certificate-image:nth-child(3) {
  --i: 2;
  z-index: 3;
}

.resources-certificate-image:nth-child(4) {
  --i: 3;
  z-index: 2;
}

.resources-certificate-image:nth-child(5) {
  --i: 4;
  z-index: 1;
}

.resources-certificate-card:hover .resources-certificate-image,
.resources-certificate-card:focus-visible .resources-certificate-image {
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.2);
}

.resources-certificate-card:hover .resources-certificate-image:nth-child(1),
.resources-certificate-card:focus-visible .resources-certificate-image:nth-child(1) {
  opacity: 1;
  transform: translateY(-50%) translateX(-190px) scale(1) rotate(-4deg);
}

.resources-certificate-card:hover .resources-certificate-image:nth-child(2),
.resources-certificate-card:focus-visible .resources-certificate-image:nth-child(2) {
  opacity: 1;
  transform: translateY(-50%) translateX(-122px) scale(0.92) rotate(2deg);
}

.resources-certificate-card:hover .resources-certificate-image:nth-child(3),
.resources-certificate-card:focus-visible .resources-certificate-image:nth-child(3) {
  opacity: 1;
  transform: translateY(-50%) translateX(-58px) scale(0.84) rotate(4deg);
}

.resources-certificate-card:hover .resources-certificate-image:nth-child(4),
.resources-certificate-card:focus-visible .resources-certificate-image:nth-child(4) {
  opacity: 1;
  transform: translateY(-50%) translateX(2px) scale(0.76) rotate(6deg);
}

.resources-certificate-card:hover .resources-certificate-image:nth-child(5),
.resources-certificate-card:focus-visible .resources-certificate-image:nth-child(5) {
  opacity: 1;
  transform: translateY(-50%) translateX(58px) scale(0.68) rotate(8deg);
}

.resources-certificate-card h3 {
  margin: 0;
  color: #111;
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.resources-certificate-card:nth-child(3) .resources-certificate-stack {
  height: clamp(132px, 9.2vw, 176px);
}

.resources-certificate-card:nth-child(3) .resources-certificate-image {
  top: 50%;
  right: clamp(-22px, -1.2vw, -12px);
  width: clamp(190px, 12.8vw, 250px);
  height: auto;
  aspect-ratio: 720 / 523;
  object-fit: contain;
  padding: 6px;
  transform: translateY(-50%) translateX(calc(var(--i, 0) * -4px)) scale(calc(1 - var(--i, 0) * 0.04)) rotate(calc(var(--i, 0) * -0.8deg));
}

.resources-certificate-card:nth-child(3):hover .resources-certificate-image:nth-child(1),
.resources-certificate-card:nth-child(3):focus-visible .resources-certificate-image:nth-child(1) {
  transform: translateY(-50%) translateX(-188px) scale(1) rotate(-4deg);
}

.resources-certificate-card:nth-child(3):hover .resources-certificate-image:nth-child(2),
.resources-certificate-card:nth-child(3):focus-visible .resources-certificate-image:nth-child(2) {
  transform: translateY(-50%) translateX(-108px) scale(0.92) rotate(2deg);
}

.resources-certificate-card:nth-child(3):hover .resources-certificate-image:nth-child(3),
.resources-certificate-card:nth-child(3):focus-visible .resources-certificate-image:nth-child(3) {
  transform: translateY(-50%) translateX(-36px) scale(0.84) rotate(4deg);
}

.resources-certificate-card:nth-child(3):hover .resources-certificate-image:nth-child(4),
.resources-certificate-card:nth-child(3):focus-visible .resources-certificate-image:nth-child(4) {
  transform: translateY(-50%) translateX(28px) scale(0.76) rotate(6deg);
}

.resources-certificate-card:nth-child(3):hover .resources-certificate-image:nth-child(5),
.resources-certificate-card:nth-child(3):focus-visible .resources-certificate-image:nth-child(5) {
  transform: translateY(-50%) translateX(82px) scale(0.68) rotate(8deg);
}

.resources-clients-section {
  padding: clamp(52px, 8vw, 108px) 0;
  background: #fff;
  overflow: hidden;
}

.resources-clients-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(36px, 4vw, 72px);
  align-items: center;
  width: 100%;
  min-height: clamp(720px, 78vh, 980px);
  margin: 0;
}

.resources-clients-visual {
  min-width: 0;
  width: calc(100% - 60px);
  margin-left: 60px;
  align-self: stretch;
}

.resources-clients-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 1fr);
  gap: 0;
  width: 100%;
  height: min(100%, 84vh);
  background: #fff;
}

.resources-clients-base-grid,
.resources-clients-extra-column {
  display: grid;
  min-width: 0;
  min-height: 0;
}

.resources-clients-base-grid {
  grid-template-columns: repeat(var(--clients-grid-columns, 4), minmax(0, 1fr));
  grid-template-rows: repeat(var(--clients-grid-rows, 4), minmax(0, 1fr));
}

.resources-clients-extra-column {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.resources-client-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  background: #fff;
}

.resources-client-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.resources-clients-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  width: min(620px, calc(100vw - 120px));
  min-height: min(100%, 84vh);
  padding: 0 60px 0 0;
  margin-left: auto;
  color: #111;
  text-align: left;
}

.resources-clients-copy .subpage-kicker {
  color: rgba(0, 0, 0, 0.62);
}

.resources-clients-copy h2 {
  color: #111;
  font-size: 58px;
  line-height: 0.98;
  text-transform: none;
}

.resources-clients-copy .formatted-text {
  width: min(460px, 100%);
  margin-left: 0;
}

.resources-clients-copy .formatted-text p {
  color: rgba(17, 17, 17, 0.82);
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

.mars-feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(680px, calc(100vw - 120px));
  padding: 0 0 0 60px;
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.mars-feature-copy span,
.mars-specs-heading span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.mars-feature-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.mars-closing p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.mars-full-image {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 0 60px;
  overflow: hidden;
  background: var(--full-image);
  background-position: center;
  background-size: cover;
}

.mars-full-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0) 50%);
}

.mars-full-image div {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.mars-full-image h2 {
  margin: 0;
  color: var(--white);
  font-size: 58px;
  line-height: 0.98;
  text-transform: none;
}

.mars-full-image p {
  width: min(520px, 100%);
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.resources-network-full {
  --full-image: var(--resources-full-one-image, url("https://images.pexels.com/photos/257700/pexels-photo-257700.jpeg?auto=compress&cs=tinysrgb&w=2200"));
}

.resources-service-full {
  --full-image: var(--resources-full-two-image, url("https://images.pexels.com/photos/3862130/pexels-photo-3862130.jpeg?auto=compress&cs=tinysrgb&w=2200"));
}

.resources-network-full,
.resources-service-full {
  justify-content: flex-end;
  min-height: auto;
  height: auto;
  max-height: none;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.resources-network-full::after,
.resources-service-full::after {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0) 50%);
}

.resources-lab-feature {
  align-items: flex-start;
}

.resources-lab-feature .mars-feature-copy {
  justify-content: flex-start;
  padding: clamp(36px, 5vw, 72px) 0 0 clamp(28px, 5vw, 76px);
}

.resources-network-full,
.resources-service-full {
  padding-right: clamp(22px, 3vw, 48px);
}

.resources-network-full div,
.resources-service-full div {
  margin-left: auto;
  text-align: left;
}

.mars-gallery-heading {
  padding: 108px 60px 24px;
  background: #fff;
}

.mars-gallery-heading-inner {
  max-width: 1800px;
  margin: 0 auto;
}

.mars-gallery-heading h2 {
  margin: 0;
  color: #111;
  font-size: 58px;
  line-height: 0.98;
}

.mars-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 60px 30px;
  background: #fff;
}

.mars-gallery figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #111;
  transform: scale(1);
  transform-origin: center;
  transition: transform 320ms ease, box-shadow 320ms ease;
  will-change: transform;
}

.mars-gallery img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
  filter: brightness(0.72) contrast(1.08);
  transition: transform 700ms ease, filter 700ms ease;
}

.mars-gallery figure:hover,
.mars-gallery figure:focus-within {
  z-index: 2;
  transform: none;
  box-shadow: none;
}

.mars-gallery figure:hover img,
.mars-gallery figure:focus-within img {
  transform: none;
  filter: brightness(0.72) contrast(1.08);
}

.mars-gallery figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
}

.mars-gallery-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(9, 21, 34, 0.24);
  backdrop-filter: blur(6px);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.mars-gallery-title {
  max-width: calc(100% - 120px);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.mars-gallery-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  color: var(--white);
  background: rgba(9, 21, 34, 0.4);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 260ms ease, background 180ms ease, border-color 180ms ease;
}

.mars-gallery-link:hover,
.mars-gallery-link:focus-visible {
  background: rgba(9, 21, 34, 0.62);
  border-color: rgba(255, 255, 255, 1);
}

.mars-gallery figure:hover .mars-gallery-link,
.mars-gallery figure:focus-within .mars-gallery-link {
    opacity: 1;
    transform: translateY(0);
  }

  .mars-gallery-error {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 10px;
    padding: 28px 24px 24px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.78));
    color: #fff;
  }

  .mars-gallery-error strong {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
  }

  .mars-gallery-error span {
    max-width: 28ch;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    text-align: left;
    word-break: break-word;
  }

  .mars-gallery-card.is-error img {
    display: none;
  }

.mars-gallery-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.resources-jobs-section {
  padding: 84px 60px 112px;
  background: #fff;
  color: #111;
}

.resources-jobs-shell {
  max-width: 1800px;
  margin: 0 auto;
}

.resources-jobs-header {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 36px;
}

.resources-jobs-header .subpage-kicker {
  color: rgba(17, 17, 17, 0.6);
}

.resources-jobs-header h2 {
  margin: 0;
  color: #111;
  font-size: 58px;
  line-height: 0.98;
  text-transform: none;
}

.resources-jobs-header .formatted-text p {
  color: rgba(17, 17, 17, 0.76);
}

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

.resources-job-card {
  display: grid;
  gap: 18px;
  min-height: 320px;
  padding: 28px 28px 30px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
}

.resources-job-topline {
  display: grid;
  gap: 10px;
}

.resources-job-topline h3 {
  margin: 0;
  color: #111;
  font-size: 28px;
  line-height: 1.08;
  text-transform: none;
}

.resources-job-salary {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 16px;
  line-height: 1.35;
}

.resources-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resources-job-meta span,
.resources-job-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
  line-height: 1.2;
}

.resources-job-summary {
  margin: 0;
  color: rgba(17, 17, 17, 0.82);
  font-size: 17px;
  line-height: 1.68;
}

.resources-job-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.resources-jobs-empty {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.mars-gallery-corner-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  border-radius: 2px;
  pointer-events: none;
}

.mars-specs {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  padding: 110px 60px;
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
}

.mars-specs-table {
  display: grid;
  gap: 0;
}

.mars-specs-heading span {
  color: rgba(17, 17, 17, 0.58);
}

.mars-specs-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.mars-specs-table span,
.mars-specs-table strong {
  font-size: 14px;
  line-height: 1.35;
}

.mars-specs-table span {
  color: rgba(17, 17, 17, 0.58);
  text-transform: uppercase;
}

.mars-specs-table strong {
  color: #111;
  font-weight: 400;
}

.mars-closing {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding: 90px 60px;
  background: #fff;
  text-align: center;
}

.mars-closing div {
  width: min(720px, 100%);
}

.mars-closing .cta-button {
  margin-top: 30px;
}

.mars-closing p {
  color: rgba(17, 17, 17, 0.68);
}

.mars-closing .subpage-kicker {
  color: rgba(17, 17, 17, 0.66);
}

.mars-closing .cta-button {
  border-color: rgba(17, 17, 17, 0.72);
  color: #111;
}

.resources-body .site-footer {
  background: #fff;
  border-top-color: rgba(17, 17, 17, 0.12);
  color: #111;
}

.resources-body .footer-grid a,
.resources-body .footer-contact p,
.resources-body .copyright {
  color: rgba(17, 17, 17, 0.58);
}

.resources-body .footer-grid a:hover {
  color: #111;
}

html:has(.content-admin-body) {
  overflow-y: scroll;
}

.content-admin-body {
  margin: 0;
  background: #f5f5f2;
  color: #111;
  font-family: "Topten Times", "Times New Roman", Times, serif;
  /* ── Custom draggable scrollbar ── */
  scrollbar-color: #b0b0a8 #f5f5f2;
  scrollbar-width: thin;
}

/* WebKit custom scrollbar — wider & draggable */
.content-admin-body::-webkit-scrollbar {
  width: 10px;
}
.content-admin-body::-webkit-scrollbar-track {
  background: #f5f5f2;
}
.content-admin-body::-webkit-scrollbar-thumb {
  background: #b0b0a8;
  border-radius: 5px;
  min-height: 48px;
}
.content-admin-body::-webkit-scrollbar-thumb:hover {
  background: #888880;
}
.content-admin-body::-webkit-scrollbar-thumb:active {
  background: #666660;
  cursor: grabbing;
}

.content-admin-page-scrollbar {
  position: fixed;
  top: 12px;
  right: 8px;
  bottom: 12px;
  z-index: 220;
  width: 18px;
  padding: 3px;
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.16);
  cursor: pointer;
}

.content-admin-page-scrollbar[hidden] {
  display: none;
}

.content-admin-page-scrollbar-thumb {
  width: 100%;
  min-height: 56px;
  background: rgba(17, 17, 17, 0.58);
  cursor: grab;
  transition: background 0.15s ease;
  will-change: transform;
}

.content-admin-page-scrollbar-thumb:hover,
.is-page-scrollbar-dragging .content-admin-page-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.86);
}

.is-page-scrollbar-dragging,
.is-page-scrollbar-dragging * {
  cursor: grabbing !important;
  user-select: none;
}

.content-admin-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: #f5f5f2;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.content-admin-sticky-spacer {
  height: 0;
}

.content-admin-sticky-header-inner {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 22px 104px 16px 24px;
}

.content-admin-collapse-toggle {
  position: absolute;
  top: 22px;
  right: 24px;
  min-width: 66px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  color: #111;
  background: #fff;
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.content-admin-page {
  min-height: 100vh;
  padding: 0 24px 56px;
  overflow-x: hidden;
}

.content-admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  max-width: 1480px;
  margin: 0 auto;
}

.content-admin-hero-compact {
  display: flex;
  justify-content: center;
}

.content-admin-hero-compact .content-admin-actions {
  justify-content: center;
}

.content-admin-hero > div:first-child {
  text-align: center;
  justify-self: center;
}

.content-admin-kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.content-admin-hero h1 {
  color: #111;
  font-size: 46px;
  line-height: 1;
}

.content-admin-hero p,
.content-admin-note p {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

.content-admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.content-admin-button {
  min-width: 164px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #111;
  color: #fff;
  background: #111;
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.content-admin-button-secondary {
  color: #111;
  background: transparent;
}

.content-admin-button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.content-admin-save-status {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  max-width: 280px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.content-admin-save-status[data-state="saved"] {
  color: #14743c;
}

.content-admin-save-status[data-state="error"] {
  color: #b42318;
}

.content-admin-note,
.content-admin-toolbar,
.content-admin-grid {
  max-width: 1480px;
  margin: 0 auto;
}

.content-admin-note {
  margin-top: 18px;
}

.content-admin-note p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.content-admin-group-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1480px;
  margin: 18px auto 0;
}

.content-admin-group-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.04);
  cursor: pointer;
  font-family: "Topten Times", "Times New Roman", Times, serif;
}

.content-admin-group-chip strong,
.content-admin-group-chip span {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.content-admin-group-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  min-height: 22px;
  padding: 0 6px;
  background: rgba(17, 17, 17, 0.08);
}

.content-admin-group-chip.is-active {
  color: #fff;
  background: #111;
  border-color: #111;
}

.content-admin-group-chip.is-active span {
  color: #111;
  background: rgba(255, 255, 255, 0.86);
}

.content-admin-toolbar {
  margin-top: 18px;
}

.is-admin-toolbar-collapsed .content-admin-group-nav,
.is-admin-toolbar-collapsed .content-admin-toolbar {
  display: none;
}

.is-admin-toolbar-collapsed .content-admin-sticky-header-inner {
  padding-bottom: 22px;
}

.content-admin-search {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}

.content-admin-search span {
  color: rgba(17, 17, 17, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.content-admin-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  color: #111;
  background: #fff;
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 15px;
}

.content-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  margin-top: 22px;
  align-items: start;
}

.content-admin-list {
  display: grid;
  gap: 18px;
}

.content-admin-group {
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.content-admin-group-header {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  text-align: center;
}

.content-admin-group-eyebrow {
  color: rgba(17, 17, 17, 0.48);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.content-admin-group-header h2 {
  color: #111;
  font-size: 28px;
  line-height: 1;
}

.content-admin-group-header span {
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-admin-section-list {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.content-admin-page-group {
  padding: 22px;
}

.content-admin-section-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fbfbfa;
}

.content-admin-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.content-admin-section-kicker {
  display: block;
  margin-bottom: 8px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.content-admin-section-header h3 {
  margin: 0;
  color: #111;
  font-size: 24px;
  line-height: 1.05;
  text-transform: none;
}

.content-admin-section-count {
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.content-admin-section-zones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.content-admin-zone,
.content-admin-media-zone {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.content-admin-zone-head {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.content-admin-zone-head span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.content-admin-zone-head strong {
  font-size: 16px;
  line-height: 1.2;
}

.content-admin-zone-body {
  display: grid;
  gap: 12px;
}

.content-admin-field-item {
  display: grid;
  gap: 8px;
}

.content-admin-toggle-item {
  display: grid;
  gap: 8px;
}

.content-admin-toggle-button {
  width: fit-content;
  min-width: 128px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  color: #111;
  background: rgba(17, 17, 17, 0.04);
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.content-admin-toggle-button.is-active {
  border-color: #111;
  color: #fff;
  background: #111;
}

.content-admin-field-label {
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.content-admin-field-path {
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  line-height: 1.4;
  word-break: break-all;
}

.content-admin-empty {
  margin: 0;
  color: rgba(17, 17, 17, 0.5);
  font-size: 13px;
  line-height: 1.55;
}

.content-admin-card-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

.content-admin-type {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  color: #111;
  background: rgba(17, 17, 17, 0.06);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.content-admin-card-meta strong {
  font-size: 18px;
  line-height: 1.15;
}

.content-admin-card-meta p,
.content-admin-card-meta code {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
  line-height: 1.45;
}

.content-admin-card-input {
  display: grid;
  gap: 12px;
}

.content-admin-card-input input,
.content-admin-card-input textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111;
  background: #fff;
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
}

.content-admin-media-preview {
  min-height: 0;
}

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

.content-admin-media-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fbfbfa;
  min-width: 0;
  overflow: hidden;
}

.content-admin-media-head {
  display: grid;
  gap: 8px;
}

.content-admin-media-head strong {
  font-size: 15px;
  line-height: 1.3;
}

.content-admin-media-preview-button {
  display: grid;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  padding: 12px;
  border: 1px dashed rgba(17, 17, 17, 0.18);
  color: #111;
  background: #f1f1ed;
  text-align: center;
  cursor: pointer;
  place-items: center;
}

.content-admin-media-preview-button > span:last-child {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.content-admin-media-placeholder {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: rgba(17, 17, 17, 0.62);
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.content-admin-media-preview-button img {
  display: block;
  width: 100%;
  height: 160px;
  max-height: 160px;
  object-fit: cover;
  background: #e8e8e4;
}

.content-admin-media-preview a {
  color: #111;
  word-break: break-all;
}

.content-admin-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
}

.content-admin-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.content-admin-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1120px);
  max-height: calc(100vh - 64px);
  margin: 32px auto;
  padding: 18px;
  background: #fff;
  overflow: auto;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.content-admin-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  color: #111;
  background: rgba(17, 17, 17, 0.08);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.content-admin-lightbox-meta {
  display: grid;
  gap: 6px;
  padding-right: 54px;
  margin-bottom: 14px;
}

.content-admin-lightbox-meta strong {
  font-size: 18px;
  line-height: 1.3;
}

.content-admin-lightbox-meta span {
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.content-admin-lightbox-media {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.content-admin-lightbox-media img,
.content-admin-lightbox-media video {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  background: #f2f2ee;
}

.content-admin-lightbox-media video {
  height: auto;
}

.content-admin-preview {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  max-height: calc(100vh - var(--content-admin-sticky-height, 0px) - 48px);
  overflow-y: scroll;
  overflow-x: auto;
  scrollbar-color: #b0b0a8 #fff;
  scrollbar-width: thin;
  border-left: 1px solid rgba(17, 17, 17, 0.06);
}

.content-admin-preview::-webkit-scrollbar {
  width: 10px;
}

.content-admin-preview::-webkit-scrollbar-track {
  background: #fff;
}

.content-admin-preview::-webkit-scrollbar-thumb {
  background: #b0b0a8;
  border-radius: 5px;
}

.content-admin-preview h2 {
  color: #111;
  font-size: 28px;
  line-height: 1;
}

.content-admin-preview textarea {
  min-height: 720px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111;
  background: #fbfbfa;
  font-family: Consolas, Monaco, monospace;
  font-size: 12px;
  line-height: 1.55;
  resize: vertical;
}

/* ── Gallery detail subpage ── */

.gallery-detail-body {
  background: #fff;
}

.gallery-detail-page {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  min-height: 100vh;
}

.gallery-detail-head {
  text-align: center;
  padding: 0 28px 48px;
}

.gallery-detail-head h1 {
  font-size: 58px;
  line-height: 0.98;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: #111;
}

.gallery-detail-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  width: min(1460px, calc(100vw - 72px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.gallery-detail-card {
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}

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

.gallery-detail-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px 60px;
}

.gallery-detail-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 3px;
  background: transparent;
  color: #111;
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.gallery-detail-page-btn:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.64);
}

.gallery-detail-page-btn.is-active {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.78);
}

.gallery-detail-page-btn:disabled {
    opacity: 0.24;
    cursor: default;
  }

  .gallery-detail-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: #fafafa;
    color: #111;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }

  .gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
  }

  .gallery-lightbox[hidden] {
    display: none !important;
  }

  .gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
  }

  .gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1400px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);
    padding: 20px 20px 16px;
    background: rgba(8, 8, 8, 0.94);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  }

  .gallery-lightbox-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 40px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: transparent;
    color: #fff;
    font-family: "Neue Montreal", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    cursor: pointer;
  }

  .gallery-lightbox-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: min(78vh, 900px);
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.03);
  }

  .gallery-lightbox-stage img {
    max-width: 100%;
    max-height: min(74vh, 860px);
    object-fit: contain;
  }

  .gallery-lightbox-status {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.56);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.4;
  }

  body.gallery-lightbox-open {
    overflow: hidden;
  }

/* ── Certificate subpage ── */

.certificates-body {
  background: #fff;
}

.certificates-page {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  min-height: 100vh;
}

.certificates-page-head {
  text-align: center;
  padding: 0 28px 48px;
}

.certificates-page-head h1 {
  font-size: 58px;
  line-height: 0.98;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: #111;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: min(1300px, calc(100vw - 80px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.certificates-card {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.certificates-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}

.certificates-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
  padding: 12px;
}

.certificates-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px 60px;
}

.certificates-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 3px;
  background: transparent;
  color: #111;
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.certificates-page-btn:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.64);
}

.certificates-page-btn.is-active {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.78);
}

.certificates-page-btn:disabled {
  opacity: 0.24;
  cursor: default;
}

@media (max-width: 980px) {
  .investment-hero {
    width: 100%;
    min-height: 100vh;
  }

  .investment-gallery-section {
    padding: 0 28px 68px;
  }

  .investment-gallery {
    height: 708px;
  }

  .industrial-gallery {
    height: 478px;
  }

  .traffic-gallery {
    height: 478px;
  }

  .industrial-gallery .investment-card:nth-child(1) {
    top: 0;
    left: 0;
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .industrial-gallery .investment-card:nth-child(2) {
    top: 0;
    left: calc((100% - 18px) / 2 + 18px);
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .industrial-gallery .investment-card:nth-child(3) {
    top: 248px;
    left: 0;
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .industrial-gallery .investment-card:nth-child(4) {
    top: 248px;
    left: calc((100% - 18px) / 2 + 18px);
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .industrial-gallery .investment-card.is-active {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .traffic-gallery .investment-card:nth-child(1) {
    top: 0;
    left: 0;
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .traffic-gallery .investment-card:nth-child(2) {
    top: 0;
    left: calc((100% - 18px) / 2 + 18px);
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .traffic-gallery .investment-card:nth-child(3) {
    top: 248px;
    left: 0;
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .traffic-gallery .investment-card:nth-child(4) {
    top: 248px;
    left: calc((100% - 18px) / 2 + 18px);
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .traffic-gallery .investment-card.is-active {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .investment-card:nth-child(1) {
    top: 0;
    left: 0;
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .investment-card:nth-child(2) {
    top: 0;
    left: calc((100% - 18px) / 2 + 18px);
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .investment-card:nth-child(3) {
    top: 248px;
    left: 0;
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .investment-card:nth-child(4) {
    top: 248px;
    left: calc((100% - 18px) / 2 + 18px);
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .investment-card:nth-child(5) {
    top: 496px;
    left: 0;
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .investment-card:nth-child(6) {
    top: 496px;
    left: calc((100% - 18px) / 2 + 18px);
    width: calc((100% - 18px) / 2);
    height: 230px;
  }

  .investment-card.is-active .investment-card-title {
    left: 24px;
    top: 28px;
  }

  .investment-card.is-active .investment-card-kicker {
    left: 24px;
    top: 64px;
  }

  .investment-card-description {
    width: min(420px, calc(100% - 56px));
    padding: 96px 0 0 24px;
  }

  .subpage-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .subpage-section {
    padding: 50px 30px;
  }

  .subpage-cta {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .subpage-spacex .subpage-content {
    width: calc(100vw - 56px);
    margin: 0 28px 12vh;
  }

  .subpage-band {
    padding: 58px 28px 68px;
  }

  .subpage-band-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .insights-hero-copy {
    left: 28px;
    bottom: 12vh;
    width: calc(100vw - 112px);
  }

  .insights-hero-arrow {
    width: 40px;
    height: 60px;
    font-size: 40px;
  }

  .insights-hero-arrow-prev {
    left: 18px;
  }

  .insights-hero-arrow-next {
    right: 18px;
  }

  .insights-news {
    padding: 44px 10px 42px;
  }

  .insights-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 10px;
    min-height: 980px;
  }

  .insights-news-card {
    min-height: 0;
  }

  .mars-intro,
  .mars-closing {
    padding: 70px 28px;
  }

  .mars-metrics,
  .mars-feature,
  .mars-feature-reverse,
  .mars-gallery,
  .mars-specs {
    grid-template-columns: 1fr;
  }

  .mars-metrics {
    padding: 20px 28px 64px;
  }

  .resources-hero .mars-metrics {
    right: 28px;
    bottom: 28px;
    left: 28px;
    padding: 0;
    gap: 18px;
  }

  .mars-feature-reverse .mars-feature-media {
    order: 0;
  }

  .mars-feature-copy,
  .mars-specs {
    padding: 58px 28px;
  }

  .mars-feature-copy {
    width: calc(100vw - 56px);
    padding: 0 0 0 28px;
  }

  .mars-gallery {
    padding: 58px 28px 20px;
  }

  .mars-gallery figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .mars-gallery-link {
    right: 18px;
    bottom: 18px;
  }

  .mars-full-image {
    min-height: 100svh;
    padding: 0 28px;
  }

  .resources-page .mars-feature,
  .resources-page .resources-network-full,
  .resources-page .resources-service-full {
    aspect-ratio: 16 / 9;
    min-height: auto;
    height: auto;
  }

  .resources-lab-feature .mars-feature-copy {
    padding: 32px 0 0 28px;
  }

  .resources-clients-section {
    padding: 56px 28px 64px;
  }

  .resources-clients-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
  }

  .resources-clients-visual {
    width: 100%;
    margin-left: 0;
  }

  .resources-clients-grid {
    grid-template-columns: 1fr;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .resources-clients-extra-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .resources-clients-copy {
    width: calc(100vw - 56px);
    padding: 0;
    margin-left: 0;
    text-align: left;
  }

  .resources-clients-copy .formatted-text {
    width: min(560px, 100%);
    margin-left: 0;
  }

  .resources-clients-copy .formatted-text p {
    text-align: justify;
    text-align-last: left;
  }

  .resources-network-full,
  .resources-service-full {
    padding-right: 28px;
  }

  .resources-jobs-section {
    padding: 58px 28px 72px;
  }

  .resources-jobs-grid {
    grid-template-columns: 1fr;
  }

  .resources-job-card {
    min-height: 0;
  }

  .mars-full-image h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .mars-intro-copy h2,
  .mars-feature-copy h2,
  .mars-specs-heading h2,
  .mars-closing h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .mars-specs-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .content-admin-sticky-header {
    padding-top: 28px;
  }

  .content-admin-page {
    padding: 0 18px 44px;
  }

  .content-admin-hero,
  .content-admin-grid,
  .content-admin-section-zones {
    grid-template-columns: 1fr;
  }

  .content-admin-actions {
    justify-content: flex-start;
  }

  .content-admin-preview {
    position: static;
  }

  .content-admin-hero > div:first-child {
    justify-self: stretch;
  }

  .content-admin-section-header,
  .content-admin-media-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 56px;
    max-width: 1420px;
  }

  .footer-grid-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 56px;
  }

.footer-grid section {
    display: grid;
  align-content: start;
  gap: 11px;
}

.footer-grid h3 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-grid a {
  color: var(--dim);
  font-size: 17px;
  line-height: 1.15;
  font-weight: 400;
}

.footer-contact p {
  margin: 0;
  color: var(--dim);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
  white-space: pre-line;
}

.footer-contact-gap {
  margin-top: 12px;
}

.footer-grid a:hover {
  color: var(--white);
}

.copyright {
  margin: 88px 0 0;
  color: var(--dim);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.summary,
.subpage-subtitle,
.subpage-block p,
.investment-hero-copy p,
.investment-intro p,
.industrial-intro p,
.investment-card-description p,
.investment-card-credit,
.insights-news-card p,
.news-detail-body p,
.subpage-list p,
.mars-intro-copy p,
.mars-feature-copy p,
.mars-closing p,
.mars-full-image p,
.footer-grid a,
.footer-contact p,
.copyright,
.launch-copy small,
.launch-item p,
.content-admin-note p,
.content-admin-card-meta p,
.content-admin-field-path,
.content-admin-empty {
  font-family: "Topten Times", "Times New Roman", Times, serif;
  font-weight: 400;
}

.summary,
.subpage-subtitle,
.subpage-block p,
.investment-hero-copy p,
.investment-intro p,
.traffic-intro p,
.industrial-intro p,
.investment-card-description p,
.investment-card-credit,
.insights-news-card p,
.news-detail-body p,
.subpage-list p,
.mars-intro-copy p,
.mars-feature-copy p,
.mars-closing p,
.mars-full-image p,
.resources-page .formatted-text p,
.resources-clients-copy .formatted-text p,
.resources-page .subpage-subtitle,
.resources-page .subpage-subtitle.formatted-text,
.partners-job-summary-text,
.partners-job-preview-body,
.partners-jobs-empty,
.resources-jobs-header .formatted-text p {
  font-size: var(--site-small-copy-size);
  line-height: var(--site-small-copy-line-height);
}

.summary,
.subpage-subtitle,
.subpage-block p,
.investment-hero-copy p,
.investment-intro p,
.traffic-intro p,
.industrial-intro p,
.investment-card-description p,
.insights-news-card p,
.news-detail-body p,
.subpage-list p,
.mars-intro-copy p,
.mars-feature-copy p,
.mars-closing p,
.mars-full-image p,
.resources-page .formatted-text p,
.resources-clients-copy .formatted-text p,
.resources-page .subpage-subtitle,
.resources-page .subpage-subtitle.formatted-text,
.partners-job-summary-text,
.partners-job-preview-body,
.partners-jobs-empty,
.resources-jobs-header .formatted-text p {
  text-align: justify;
  text-align-last: left;
}

.eyebrow,
.subpage-kicker,
.investment-card-kicker,
.insights-news-heading .subpage-kicker,
.footer-grid h3,
.content-admin-kicker,
.content-admin-group-eyebrow,
.content-admin-section-kicker,
.content-admin-card-meta strong {
  font-size: var(--site-small-label-size);
  line-height: var(--site-small-label-line-height);
}

h1,
h2,
.certificates-page-head h1 {
  font-size: var(--site-page-title-size);
  line-height: var(--site-page-title-line-height);
  letter-spacing: 0;
  text-transform: none;
}

.investment-card-title,
.insights-news-card h3,
.resources-certificate-card h3 {
  font-size: var(--site-ui-title-size);
  line-height: var(--site-ui-title-line-height);
  letter-spacing: 0;
  text-transform: none;
}

.main-nav,
.main-nav a,
.nav-dropdown-trigger,
.nav-dropdown-menu a,
.launch-toggle,
.all-launches,
.subpage-kicker,
.investment-card-kicker,
.investment-card-title,
.news-detail-meta,
.insights-news-meta,
.resources-certificate-card h3 {
  text-transform: none;
}

@media (max-width: 980px) {
  :root {
    --site-small-copy-size: 17px;
    --site-small-copy-line-height: 1.58;
    --site-small-label-size: 15px;
    --site-small-label-line-height: 1.38;
    --site-page-title-size: 38px;
    --site-page-title-line-height: 38px;
    --site-ui-title-size: 24px;
    --site-ui-title-line-height: 1.12;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 26px;
  }

  .partners-contact-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 110px 28px 72px;
  }

  .partners-jobs-section {
    padding: 72px 28px 72px;
  }

  .partners-jobs-grid {
    grid-template-columns: 1fr;
  }

  .partners-job-card {
    min-height: 0;
  }

  .partners-job-topline,
  .partners-job-meta {
    min-height: 0;
  }

  .partners-contact-form {
    grid-template-columns: 1fr;
  }

  .partners-job-preview-dialog,
  .partners-job-apply-dialog {
    width: calc(100vw - 24px);
    margin: 12px auto;
  }

  .partners-job-preview-dialog {
    height: min(680px, calc(100vh - 24px));
    padding: 24px 14px 14px;
  }

  .partners-job-preview-top {
    padding: 2px 56px 0 8px;
  }

  .partners-job-preview-main {
    padding: 0 8px;
  }

  .partners-job-preview-bottom {
    min-height: 64px;
    padding: 10px 8px 0;
  }

  .partners-apply-form {
    grid-template-columns: 1fr;
  }

  .partners-job-preview-bottom,
  .partners-apply-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .partners-job-preview-bottom .cta-button,
  .partners-apply-form .cta-button {
    width: 100%;
  }

  .main-nav {
    display: none;
  }

  .launch-widget {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 18px;
    right: 18px;
    z-index: 19;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .has-mobile-menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-panel {
    display: grid;
    gap: 18px;
    padding: 22px 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 4px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
      rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(34px) saturate(170%) contrast(1.04);
    -webkit-backdrop-filter: blur(34px) saturate(170%) contrast(1.04);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      inset 0 -1px 0 rgba(255, 255, 255, 0.08),
      0 24px 80px rgba(0, 0, 0, 0.24);
  }

  .mobile-menu-group {
    display: grid;
    gap: 14px;
  }

  .mobile-menu-group + .mobile-menu-group {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-menu-group span,
  .mobile-menu-group a {
    color: var(--white);
    font-family: "Topten Times", "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-menu-group span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
  }

  .menu-button {
    display: inline-flex;
  }

  .panel-copy {
    margin: 0 28px 12vh;
  }

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

  .footer-grid-columns {
      grid-template-columns: repeat(2, minmax(140px, 1fr));
      gap: 34px;
    }

  .certificates-grid {
    grid-template-columns: repeat(4, 1fr);
    width: calc(100vw - 56px);
  }

  .gallery-detail-grid {
    grid-template-columns: repeat(3, 1fr);
    width: calc(100vw - 56px);
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand-logo {
    width: 126px;
    max-height: 28px;
  }

  .language-button {
    display: none;
  }

  .investment-page {
    padding-top: 0;
  }

  .investment-hero {
    width: 100%;
    min-height: 100vh;
  }

  .investment-hero-copy {
    left: 28px;
    bottom: 82px;
  }

  .investment-hero-copy h1 {
    font-size: 38px;
    line-height: 38px;
  }

  .investment-hero-copy p {
    font-size: 18px;
  }

  .investment-intro {
    width: calc(100vw - 36px);
    padding: 56px 0 42px;
  }

  .investment-intro h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .industrial-intro h2,
  .subpage-block h2,
  .subpage-band h2,
  .mars-full-image h2,
  .mars-intro-copy h2,
  .mars-feature-copy h2,
  .mars-specs-heading h2,
  .mars-closing h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .investment-gallery-section {
    padding: 0 18px 56px;
  }

  .insights-hero-copy {
    left: 28px;
    bottom: 82px;
    width: calc(100vw - 56px);
  }

  .insights-hero-copy h1,
  .insights-hero-copy h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .insights-hero-arrow {
    top: auto;
    bottom: 22px;
    width: 42px;
    height: 42px;
    font-size: 34px;
    transform: none;
  }

  .insights-hero-arrow-prev {
    left: 28px;
  }

  .insights-hero-arrow-next {
    left: 78px;
    right: auto;
  }

  .insights-news {
    padding: 42px 10px 38px;
  }

  .insights-news-heading {
    margin-bottom: 18px;
  }

  .insights-news-heading h2 {
    font-size: 28px;
  }

  .insights-news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, minmax(0, 1fr));
    gap: 10px;
    min-height: 1500px;
  }

  .insights-news-card {
    min-height: 0;
  }

  .insights-news-meta,
  .insights-news-card h3,
  .insights-news-card p {
    left: 18px;
    right: 18px;
  }

  .news-detail-hero {
    min-height: 78vh;
  }

  .news-detail-hero-copy {
    left: 28px;
    bottom: 76px;
    width: calc(100vw - 56px);
  }

  .news-detail-hero-copy h1 {
    font-size: 34px;
    line-height: 36px;
  }

  .news-detail-article {
    width: calc(100vw - 36px);
    padding: 50px 0 68px;
  }

  .news-detail-body p {
    font-size: 16px;
  }

  .insights-pagination {
    margin-top: 24px;
  }

  .investment-gallery {
    height: 1450px;
  }

  .industrial-gallery {
    height: 962px;
  }

  .traffic-gallery {
    height: 962px;
  }

  .industrial-gallery .investment-card:nth-child(1),
  .industrial-gallery .investment-card:nth-child(2),
  .industrial-gallery .investment-card:nth-child(3),
  .industrial-gallery .investment-card:nth-child(4) {
    left: 0;
    width: 100%;
    height: 230px;
  }

  .industrial-gallery .investment-card:nth-child(1) {
    top: 0;
  }

  .industrial-gallery .investment-card:nth-child(2) {
    top: 244px;
  }

  .industrial-gallery .investment-card:nth-child(3) {
    top: 488px;
  }

  .industrial-gallery .investment-card:nth-child(4) {
    top: 732px;
  }

  .industrial-gallery .investment-card.is-active {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .traffic-gallery .investment-card:nth-child(1),
  .traffic-gallery .investment-card:nth-child(2),
  .traffic-gallery .investment-card:nth-child(3),
  .traffic-gallery .investment-card:nth-child(4) {
    left: 0;
    width: 100%;
    height: 230px;
  }

  .traffic-gallery .investment-card:nth-child(1) {
    top: 0;
  }

  .traffic-gallery .investment-card:nth-child(2) {
    top: 244px;
  }

  .traffic-gallery .investment-card:nth-child(3) {
    top: 488px;
  }

  .traffic-gallery .investment-card:nth-child(4) {
    top: 732px;
  }

  .traffic-gallery .investment-card.is-active {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .investment-card:nth-child(1),
  .investment-card:nth-child(2),
  .investment-card:nth-child(3),
  .investment-card:nth-child(4),
  .investment-card:nth-child(5),
  .investment-card:nth-child(6) {
    left: 0;
    width: 100%;
    height: 230px;
  }

  .investment-card:nth-child(1) {
    top: 0;
  }

  .investment-card:nth-child(2) {
    top: 244px;
  }

  .investment-card:nth-child(3) {
    top: 488px;
  }

  .investment-card:nth-child(4) {
    top: 732px;
  }

  .investment-card:nth-child(5) {
    top: 976px;
  }

  .investment-card:nth-child(6) {
    top: 1220px;
  }

  .investment-card-title {
    left: 18px;
    top: 24px;
    font-size: 22px;
  }

  .investment-card-kicker {
    left: 18px;
    top: 58px;
    font-size: 12px;
  }

  .investment-card-description {
    width: calc(100% - 40px);
    padding: 34px 0 0 22px;
  }

  .investment-card.is-active .investment-card-title {
    left: 18px;
    top: 24px;
  }

  .investment-card.is-active .investment-card-kicker {
    left: 18px;
    top: 58px;
  }

  .investment-card-description {
    padding: 88px 0 0 18px;
  }

  .investment-card-description p {
    font-size: 15px;
  }

  .investment-card-link {
    right: 18px;
    bottom: 18px;
    min-height: 48px;
    padding: 0 16px;
  }

  .investment-card-credit {
    left: 18px;
    bottom: 16px;
  }

  .panel {
    min-height: 760px;
  }

  .panel-copy {
    width: calc(100vw - 36px);
    margin: 0 18px 76px;
  }

  .eyebrow {
    font-size: 16px;
  }

  h1,
  h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .summary {
    font-size: 16px;
  }

  #home .summary {
    font-size: 19px;
    line-height: 1.45;
  }

  .subpage-subtitle,
  .subpage-spacex .subpage-subtitle,
  .investment-intro p,
  .industrial-intro p,
  .mars-intro-copy p,
  .mars-feature-copy p,
  .mars-closing p,
  .mars-full-image p,
  .resources-page .formatted-text p,
  .resources-clients-copy .formatted-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  #home .cta-button {
    min-height: 52px;
    font-size: 14px;
  }

  .site-footer {
    padding: 34px 26px 32px;
  }

  .footer-grid {
      gap: 25px;
    }

  .footer-grid-columns {
      grid-template-columns: 1fr;
      gap: 25px;
    }

  .copyright {
    margin-top: 54px;
    font-size: 13px;
    line-height: 1.6;
  }

  .content-admin-hero h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  .content-admin-group-header h2,
  .content-admin-preview h2 {
    font-size: 22px;
  }

  .content-admin-button {
    width: 100%;
  }

  .content-admin-preview textarea {
    min-height: 420px;
  }

  .content-admin-lightbox-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    padding: 14px;
  }

  .content-admin-lightbox img {
    max-height: calc(100vh - 132px);
  }

  .resources-clients-section {
    padding: 48px 18px 54px;
  }

  .resources-clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    aspect-ratio: auto;
    height: auto;
  }

  .resources-client-cell {
    min-height: 120px;
    padding: 18px;
  }

  .resources-client-logo {
    max-width: none;
    max-height: none;
  }

  .resources-clients-copy h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .resources-clients-copy {
    width: calc(100vw - 36px);
  }

  .mars-gallery-heading {
    padding: 48px 18px 20px;
  }

  .mars-gallery-heading h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .resources-jobs-header h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: calc(100vw - 36px);
  }

  .certificates-page-head h1 {
    font-size: 38px;
    line-height: 38px;
  }

  .certificates-page-btn {
    min-width: 36px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .gallery-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: calc(100vw - 36px);
  }

  .gallery-detail-head h1 {
    font-size: 38px;
    line-height: 38px;
  }

  .gallery-detail-page-btn {
    min-width: 36px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }
}
