:root {
  color-scheme: only light;
  --page-edge: clamp(18px, 4vw, 58px);
  --black: #070707;
  --carbon: #111311;
  --graphite: #232522;
  --metal: #b9bab4;
  --silver: #e4e4dc;
  --paper: #d6d3ca;
  --paper-deep: #bbb7ad;
  --ink: #171817;
  --muted: #5d5f59;
  --red: #9f2729;
  --line-light: rgba(235, 235, 226, 0.22);
  --line-dark: rgba(18, 18, 16, 0.18);
  --milky-petrol-gradient: linear-gradient(135deg, #d7dee1 0%, #b5c0c5 42%, #526874 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--silver);
  font-family: Calibri, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  forced-color-adjust: none;
}

body,
button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
a,
label,
button,
input,
textarea {
  font-family: Calibri, "Helvetica Neue", Arial, sans-serif;
}

.brand-term {
  font-style: italic;
  font-weight: 700;
}

.profile-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  transition: opacity 180ms ease;
}

.profile-link:hover,
.profile-link:focus-visible {
  opacity: 0.72;
}

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

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

section {
  scroll-margin-top: 84px;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px var(--page-edge);
  color: #ededdf;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.header-logo {
  display: inline-flex;
  width: clamp(44px, 4.6vw, 74px);
  opacity: 1;
  text-shadow: none;
}

.header-logo img {
  width: 100%;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 34px);
  margin-left: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(26px, 4vw, 60px);
  color: #ededdf;
  font-size: clamp(0.84rem, 1.08vw, 1rem);
  text-transform: lowercase;
  white-space: nowrap;
}

.main-nav a {
  cursor: pointer;
}

.main-nav a,
.language-current,
.language-menu button {
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.language-current:hover,
.language-current:focus-visible,
.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button[data-active="true"] {
  opacity: 1;
}

.language-switcher {
  position: relative;
  min-width: 34px;
  color: #ededdf;
  font-size: clamp(0.84rem, 1.08vw, 1rem);
  line-height: 1;
  text-transform: uppercase;
}

.language-switcher button {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.language-current {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-section {
  position: relative;
  top: 0;
  z-index: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

.hero-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.11), transparent 38%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1100px);
  min-height: 44svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 96px 0 60px;
  text-align: center;
  color: rgba(242, 242, 232, 0.92);
  transform: translateY(calc(-1.8svh + var(--hero-shift, 0px)));
  will-change: transform;
}

.hero-logo {
  width: min(82vw, 760px);
  min-width: 320px;
  height: auto;
  opacity: 0.64;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.3));
  margin-bottom: clamp(18px, 2.8vw, 42px);
}

.partners-section {
  position: relative;
  z-index: 2;
  background: #d9d9d9;
  color: var(--ink);
  padding: clamp(28px, 4vw, 52px) clamp(20px, 4vw, 58px);
  border-top: 1px solid var(--line-dark);
}

.partners-heading {
  margin: 0 0 clamp(14px, 2.2vw, 28px);
  text-align: center;
  color: #080908;
}

.logo-carousel {
  --logo-gap: clamp(32px, 4vw, 62px);
  overflow: hidden;
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
}

.logo-track {
  --logo-size: 144px;
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  width: max-content;
  opacity: 0;
  transform: translateX(0);
  transition: transform 780ms cubic-bezier(0.55, 0, 0.2, 1);
  will-change: transform;
}

.logo-track.is-ready {
  opacity: 1;
}

.partner-logo {
  flex: 0 0 var(--logo-size);
  width: var(--logo-size);
  height: var(--logo-size);
  display: grid;
  place-items: center;
  color: rgba(8, 9, 8, 0.78);
  text-transform: uppercase;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 400;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.hero-content h1 {
  margin: 0 0 clamp(22px, 2.8vw, 42px);
  font-size: clamp(1.1rem, 1.8vw, 1.72rem);
  font-weight: 300;
  text-transform: uppercase;
  color: rgba(246, 246, 238, 0.88);
  white-space: break-spaces;
}

.hero-content p {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(1.55rem, 4vw, 4.1rem);
  line-height: 1.02;
  font-weight: 300;
}

main > section:not(.hero-section) {
  position: relative;
  z-index: 4;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.promise-section,
.ambition-section {
  position: relative;
  z-index: 2;
  color: var(--ink);
}

.promise-section {
  background: var(--milky-petrol-gradient);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.promise-section .section-kicker {
  color: #526268;
}

.promise-section h2,
.promise-section .copy-block p:not(.section-kicker) {
  color: #162024;
}

.copy-block {
  width: auto;
  max-width: 1120px;
  margin-left: var(--page-edge);
  margin-right: var(--page-edge);
  padding: clamp(54px, 7vw, 104px) 0;
}

.section-kicker {
  margin: 0 0 clamp(24px, 3vw, 42px);
  color: var(--muted);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  font-weight: 600;
  text-transform: uppercase;
}

.copy-block h2,
.section-heading h2,
.tech-copy h2 {
  margin: 0;
  font-size: clamp(1.82rem, 3.72vw, 4.45rem);
  line-height: 0.98;
  font-weight: 300;
  white-space: pre-line;
}

.form-heading h2 {
  margin: 0;
  font-size: clamp(1.72rem, 3.34vw, 4rem);
  line-height: 0.98;
  font-weight: 300;
  white-space: pre-line;
}

.copy-block p:not(.section-kicker),
.section-copy p,
.tech-copy p {
  margin: clamp(22px, 2.8vw, 36px) 0 0;
  max-width: 930px;
  font-size: clamp(1.22rem, 1.8vw, 2rem);
  line-height: 1.27;
  font-weight: 300;
}

.dark-section,
.light-section,
.tech-section,
.contact-section {
  position: relative;
  z-index: 2;
}

.dark-section {
  background: #20262a;
  color: #d8ddd9;
}

.light-section {
  background: var(--milky-petrol-gradient);
  color: var(--ink);
}

.section-grid {
  width: auto;
  max-width: 1120px;
  margin-left: var(--page-edge);
  margin-right: var(--page-edge);
  padding: clamp(58px, 8vw, 124px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 96px);
}

.dark-section .section-kicker {
  color: #6faed2;
}

.dark-section .section-heading h2 {
  color: #afd9ed;
}

.dark-section .section-copy p {
  color: #afd9ed;
}

.light-section .section-kicker {
  color: #526268;
}

.light-section .section-heading h2 {
  color: #162024;
}

.light-section .section-copy p {
  color: #172226;
}

.image-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: clamp(156px, 24.55vw, 440px);
  overflow: hidden;
  background: #090909;
}

.image-band img {
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.02) brightness(0.88);
}

.media-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #090909;
}

.media-split figure {
  margin: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.media-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-split figure:first-child img {
  object-position: 54% center;
}

.media-split figure:last-child img {
  object-position: 36% center;
}

.tech-section {
  background:
    linear-gradient(125deg, rgba(11, 47, 88, 0.88), rgba(6, 22, 44, 0.64) 38%, transparent 68%),
    linear-gradient(180deg, #071426 0%, #030608 100%);
  color: var(--silver);
  padding: clamp(72px, 9vw, 140px) 0 clamp(60px, 8vw, 124px);
}

.tech-copy {
  width: auto;
  max-width: 1160px;
  margin: 0 var(--page-edge) clamp(42px, 6vw, 86px);
}

.tech-copy .section-kicker {
  margin-bottom: clamp(30px, 4vw, 56px);
  color: rgba(228, 228, 220, 0.62);
}

.tech-copy p {
  color: rgba(232, 232, 224, 0.78);
}

.tech-points {
  width: auto;
  max-width: 1160px;
  margin: 0 var(--page-edge);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.tech-points article {
  min-height: 260px;
  display: grid;
  grid-template-rows: clamp(72px, 8.8vw, 112px) auto minmax(0, 1fr) auto;
  align-content: start;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(22px, 3vw, 38px);
  background: rgba(8, 9, 8, 0.72);
}

.tech-number {
  width: clamp(62px, 6.9vw, 98px);
  height: auto;
  align-self: start;
  opacity: 0.92;
}

.tech-points h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.7rem);
  line-height: 1;
  font-weight: 300;
}

.tech-points p {
  margin: 0;
  color: rgba(232, 232, 224, 0.72);
  font-size: clamp(1rem, 1.26vw, 1.18rem);
  line-height: 1.36;
}

.tech-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  background: rgba(232, 232, 224, 0.06);
}

.ambition-section {
  background: linear-gradient(135deg, #2c454e 0%, #22363d 48%, #19272d 100%);
  color: #afd9ed;
}

.ambition-section .section-kicker {
  color: #6faed2;
}

.ambition-section h2 {
  color: #afd9ed;
}

.ambition-section .copy-block p:not(.section-kicker) {
  color: rgba(175, 217, 237, 0.86);
}

.contact-section {
  background:
    linear-gradient(125deg, rgba(11, 47, 88, 0.9), rgba(5, 19, 38, 0.68) 40%, transparent 72%),
    linear-gradient(180deg, #071426 0%, #020304 100%);
  color: var(--silver);
  padding: clamp(58px, 8vw, 120px) clamp(20px, 4vw, 58px) clamp(32px, 4vw, 58px);
}

.contact-form {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  align-items: end;
}

.form-heading {
  grid-column: 1 / -1;
  max-width: 920px;
  justify-self: center;
  text-align: center;
  margin-bottom: clamp(14px, 2.2vw, 30px);
}

.form-heading .section-kicker {
  color: rgba(228, 228, 220, 0.62);
}

.form-heading h2 {
  color: rgba(242, 242, 232, 0.92);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: rgba(232, 232, 224, 0.72);
  font-size: 0.96rem;
  text-transform: lowercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  background: transparent;
  color: #f2f2e8;
  padding: 8px 0 11px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: rgba(242, 242, 232, 0.88);
}

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

.contact-form button {
  width: min(100%, 260px);
  justify-self: center;
  min-height: 48px;
  border: 1px solid rgba(242, 242, 232, 0.7);
  border-radius: 0;
  background: transparent;
  color: #f2f2e8;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #f2f2e8;
  color: var(--black);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.52;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(232, 232, 224, 0.76);
  text-align: center;
}

.form-status:empty {
  min-height: 0;
}

.form-status[data-state="error"] {
  color: #f2b9b9;
}

.form-status[data-state="success"] {
  color: #d9e8d1;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  width: min(100%, 980px);
  margin: clamp(22px, 3vw, 40px) auto 0;
  display: grid;
  gap: 10px;
  color: rgba(232, 232, 224, 0.54);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .header-actions {
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .hero-logo {
    min-width: 230px;
    width: min(74vw, 520px);
  }

  .section-grid,
  .media-split,
  .tech-points,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .tech-points article {
    min-height: 210px;
  }
}

@media (max-width: 560px) {
  .hero-content {
    width: min(88vw, 420px);
    padding-top: 92px;
  }

  .hero-content p {
    font-size: clamp(1.45rem, 10vw, 2.75rem);
    white-space: normal;
  }

  .copy-block,
  .section-grid {
    margin-left: 16px;
    margin-right: 16px;
  }

  .copy-block h2,
  .section-heading h2,
  .tech-copy h2 {
    font-size: clamp(1.82rem, 10.8vw, 3.1rem);
  }

  .form-heading h2 {
    font-size: clamp(1.7rem, 9.6vw, 2.85rem);
  }

  .copy-block p:not(.section-kicker),
  .section-copy p,
  .tech-copy p {
    font-size: 1.18rem;
  }

  .tech-copy,
  .tech-points {
    margin-left: 16px;
    margin-right: 16px;
  }

  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
