@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
}

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

:root {
  color-scheme: dark;
  --font-family-base: canada-type-gibson, sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --color-orange: #fb5802;
  --color-orange-hover: #ff6a1d;
  --color-black: #07090c;
  --color-navy-400: #404149;
  --color-navy-500: #10121c;
  --color-blue-hover: #829cae;
  --color-surface: #0d1117;
  --color-surface-elevated: #131821;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-line-strong: rgba(255, 255, 255, 0.2);
  --color-text: #f4f6f8;
  --color-text-muted: #a8b0ba;
  --color-text-soft: #747d88;
  --color-white: #ffffff;
}

body {
  background: radial-gradient(circle at 78% 8%, rgba(251, 88, 2, 0.12), transparent 28rem), linear-gradient(180deg, #090c11 0%, #050608 100%);
  color: #f4f6f8;
  font-family: "canada-type-gibson", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4.6vw, 4rem);
  letter-spacing: 0;
  line-height: 0.95;
}

h2 strong {
  font-weight: 500;
}

::selection {
  background: rgba(251, 88, 2, 0.35);
  color: #ffffff;
}

.site-shell {
  min-height: 100vh;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.revealme {
  opacity: 0;
  transform: translateY(2rem);
  will-change: opacity, transform;
}

.revealme.is-revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* SplitType breaks text into per-character spans for the title animation.
   Keeping each word as an atomic inline-block stops the browser from wrapping
   mid-word (letters were breaking across lines on small screens). */
.title-animation .word {
  display: inline-block;
}

.container {
  width: calc(100% - 1rem * 2);
  max-width: 1280px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .container {
    width: calc(100% - 1.5rem * 2);
  }
}
@media (min-width: 1024px) {
  .container {
    width: calc(100% - 2rem * 2);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1450px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1550px;
  }
}
@media (min-width: 1700px) {
  .container {
    max-width: 1650px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1750px;
  }
}
@media (min-width: 1900px) {
  .container {
    max-width: 1850px;
  }
}
@media (min-width: 2000px) {
  .container {
    max-width: 1950px;
  }
}
@media (min-width: 2100px) {
  .container {
    max-width: 2050px;
  }
}
@media (min-width: 2200px) {
  .container {
    max-width: 2150px;
  }
}
.btn {
  --btn-bg: transparent;
  --btn-color: #ffffff;
  --btn-border: transparent;
  --btn-hover-bg: #fb5802;
  --btn-hover-color: #ffffff;
  --btn-arrow-bg: #ffffff;
  --btn-arrow-color: #07090c;
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.625rem 0.6875rem 0.625rem 2rem;
  overflow: hidden;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  isolation: isolate;
  transition: background-color 240ms cubic-bezier(0.2, 0, 0, 1), border-color 240ms cubic-bezier(0.2, 0, 0, 1), box-shadow 240ms cubic-bezier(0.2, 0, 0, 1), color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent), var(--btn-hover-bg);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 240ms cubic-bezier(0.2, 0, 0, 1), transform 520ms cubic-bezier(0.2, 0, 0, 1);
}

.btn:hover,
.btn:focus-visible {
  border-color: var(--btn-hover-bg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  color: var(--btn-hover-color);
  transform: translateY(-0.0625rem);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.btn:focus-visible {
  outline: 2px solid rgba(251, 88, 2, 0.55);
  outline-offset: 3px;
}

.btn__arrow {
  display: inline-grid;
  width: 4.4375rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--btn-arrow-bg);
  color: var(--btn-arrow-color);
  transition: background-color 240ms cubic-bezier(0.2, 0, 0, 1), color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow {
  transform: translateX(0.25rem);
}

.btn--orange {
  --btn-bg: #fb5802;
  --btn-hover-bg: #ff6a1d;
  --btn-border: #fb5802;
}

.btn--transparent {
  --btn-bg: transparent;
  --btn-border: rgba(255, 255, 255, 0.24);
  --btn-hover-bg: rgba(255, 255, 255, 0.08);
}

.btn--white {
  --btn-bg: #ffffff;
  --btn-color: #07090c;
  --btn-border: #ffffff;
  --btn-hover-bg: #fb5802;
  --btn-hover-color: #ffffff;
  --btn-arrow-bg: #07090c;
  --btn-arrow-color: #ffffff;
}

/* slightly smaller buttons on mobile */
@media (max-width: 767px) {
  .btn {
    min-height: 2.5rem;
    gap: 0.75rem;
    padding: 0.4375rem 0.4375rem 0.4375rem 1.375rem;
    font-size: 0.875rem;
  }
  .btn__arrow {
    width: 3rem;
    height: 1.75rem;
  }
}
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

/* liquid glass layer 1 — backdrop blur */
.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  /* Plain GPU blur only. The url(#lg-dist) SVG displacement filter was
     re-computed over the whole backdrop every scroll frame on this fixed
     header, which made scrolling janky. A flat blur stays frosted but cheap. */
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  backdrop-filter: blur(8px) saturate(150%);
  backdrop-filter: blur(4px) url(#lg-dist) saturate(150%);
}

/* liquid glass layer 2 — translucent tint + specular rim */
.site-header::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

/* the mobile dropdown menu sits below the pill — release the clip while open */
.nav-open .site-header {
  overflow: visible;
}

/* Safari only: -webkit-named-image() is implemented by no other engine */
@supports (background: -webkit-named-image(i)) {
  .site-header {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
}
.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}
@media (min-width: 1024px) {
  .navbar {
    min-height: 7.125rem;
  }
}

.navbar__brand {
  display: inline-flex;
  width: 10.25rem;
  flex: 0 0 auto;
  align-items: center;
}
@media (min-width: 1024px) {
  .navbar__brand {
    width: 11.125rem;
  }
}

.navbar__logo {
  width: 100%;
  height: auto;
}

.navbar__toggle {
  position: relative;
  z-index: 30;
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: background-color 240ms cubic-bezier(0.2, 0, 0, 1), border-color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 1024px) {
  .navbar__toggle {
    display: none;
  }
}

.navbar__toggle:hover,
.navbar__toggle:focus-visible {
  border-color: rgba(251, 88, 2, 0.72);
  background: rgba(251, 88, 2, 0.14);
}

.navbar__toggle:focus-visible {
  outline: 2px solid rgba(251, 88, 2, 0.55);
  outline-offset: 3px;
}

.navbar__toggle-line,
.navbar__toggle-line::before,
.navbar__toggle-line::after {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  border-radius: 999px;
  background: currentColor;
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1), opacity 240ms cubic-bezier(0.2, 0, 0, 1);
}

.navbar__toggle-line {
  position: relative;
}

.navbar__toggle-line::before,
.navbar__toggle-line::after {
  position: absolute;
  left: 0;
  content: "";
}

.navbar__toggle-line::before {
  transform: translateY(-0.4375rem);
}

.navbar__toggle-line::after {
  transform: translateY(0.4375rem);
}

.nav-open .navbar__toggle {
  background: #fb5802;
  border-color: #fb5802;
  transform: rotate(90deg);
}

.nav-open .navbar__toggle-line {
  transform: rotate(45deg);
}

.nav-open .navbar__toggle-line::before {
  opacity: 0;
  transform: translateY(0);
}

.nav-open .navbar__toggle-line::after {
  transform: translateY(0) rotate(-90deg);
}

.navbar__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  left: 0;
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 0;
  padding: 0 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 0.5rem;
  background: rgba(8, 10, 15, 0.96);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem) scale(0.98);
  transform-origin: top center;
  transition: max-height 420ms cubic-bezier(0.2, 0, 0, 1), opacity 240ms cubic-bezier(0.2, 0, 0, 1), padding 240ms cubic-bezier(0.2, 0, 0, 1), border-color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
  backdrop-filter: blur(18px);
}
@media (min-width: 1024px) {
  .navbar__menu {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }
}

.nav-open .navbar__menu {
  max-height: calc(100vh - 7rem);
  padding-block: 1.25rem;
  border-color: rgba(255, 255, 255, 0.14);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.navbar__links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .navbar__links {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.navbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.25rem;
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  transition: color 240ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 1024px) {
  .navbar__link {
    justify-content: center;
    font-size: 1.125rem;
    text-align: center;
  }
}

.navbar__links .navbar__link {
  padding: 0.875rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 1024px) {
  .navbar__links .navbar__link {
    padding: 0.25rem 0;
    border-bottom: 0;
  }
}

.navbar__link::before {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: currentColor;
  content: none;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: opacity 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.navbar__link::after {
  position: absolute;
  right: 0;
  bottom: -0.25rem;
  left: 0;
  height: 0.125rem;
  border-radius: 999px;
  background: #fb5802;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.navbar__link:hover,
.navbar__link:focus-visible,
.navbar__link.is-active {
  color: #fb5802;
}

.navbar__link:hover::before,
.navbar__link:focus-visible::before,
.navbar__link.is-active::before {
  opacity: 1;
  transform: translateX(0);
}

.navbar__link:hover::after,
.navbar__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar__cta {
  align-self: center;
  width: min(100%, 15.3125rem);
}
@media (min-width: 1024px) {
  .navbar__cta {
    align-self: auto;
  }
}

.hero-banner {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #07090c;
}

.hero-banner__media,
.hero-banner__overlay {
  position: absolute;
  inset: 0;
}

.hero-banner__media {
  z-index: 0;
  overflow: hidden;
  background: #07090c;
}

.hero-banner__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #07090c;
  opacity: 1;
  transition: opacity 700ms cubic-bezier(0.2, 0, 0, 1);
}

.hero-banner.is-video-ready .hero-banner__poster {
  opacity: 0;
  pointer-events: none;
}

.hero-banner__video {
  position: absolute;
  top: 51%;
  left: 50%;
  display: block;
  width: max(100vw, 177.7778svh);
  min-width: 100%;
  height: max(100svh, 56.25vw);
  min-height: 100%;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  transition: opacity 700ms cubic-bezier(0.2, 0, 0, 1);
}

.hero-banner__overlay {
  z-index: 3;
  background: linear-gradient(256deg, rgba(7, 8, 12, 0) -34.08%, rgba(7, 8, 12, 0.6) 56.55%, rgba(7, 8, 12, 0.6) 99.18%);
  pointer-events: none;
}

.hero-banner__content {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 100svh;
  align-content: end;
  gap: 2rem;
  padding-block: 5rem 3rem;
}
@media (min-width: 768px) {
  .hero-banner__content {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    padding-block: 6rem 4rem;
  }
}
@media (min-width: 1024px) {
  .hero-banner__content {
    padding-block: 7rem 5rem;
  }
}

.hero-banner__copy {
  max-width: 61.8125rem;
}

.hero-banner__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.75rem, 6.2vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-banner__title-line {
  display: block;
  overflow: hidden;
}

.hero-banner__title-line > span {
  display: inline-block;
}

.text-accent {
  color: #fb5802;
}

.hero-banner__subtitle {
  margin: 1.5rem 0 0;
  color: #99a1af;
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  line-height: 1.3;
}

.hero-banner__partner-logo {
  width: min(100%, 27rem);
  height: auto;
  justify-self: start;
}
@media (min-width: 768px) {
  .hero-banner__partner-logo {
    width: clamp(15rem, 22.5vw, 27rem);
    justify-self: end;
    margin-bottom: 0.625rem;
  }
}

.section-dark {
  background: #07090c;
}

.who-we-are {
  position: relative;
  overflow: hidden;
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .who-we-are {
    padding-block: 7rem;
  }
}
@media (min-width: 1024px) {
  .who-we-are {
    padding-block: 9rem;
  }
}

.who-we-are::before {
  position: absolute;
  inset: auto -18rem -10rem -18rem;
  height: 2px;
  background: #ccc;
  content: "";
  opacity: 0.48;
  pointer-events: none;
}

.who-we-are__inner {
  position: relative;
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .who-we-are__inner {
    grid-template-columns: minmax(0, 1fr) minmax(32rem, 49.25rem);
    align-items: center;
  }
}

.who-we-are__visual {
  position: relative;
  display: grid;
  min-height: 18rem;
  place-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .who-we-are__visual {
    min-height: 34rem;
  }
}

.who-we-are__radar {
  position: relative;
  width: min(100%, 38rem);
  aspect-ratio: 1;
}

.who-we-are__radar::before {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 88, 2, 0.18), transparent 58%);
  content: "";
  opacity: 0.34;
  transform: translate(20%, 20%);
}

.who-we-are__ring {
  position: absolute;
  inset: var(--ring-inset);
  border: 1px dashed rgba(130, 156, 174, 0.14);
  border-radius: 50%;
  animation: radar-ring-pulse 5.5s ease-in-out infinite;
}

.who-we-are__ring--outer {
  --ring-inset: 0;
  animation-delay: 1.4s;
}

.who-we-are__ring--middle {
  --ring-inset: 13%;
  border-style: solid;
  opacity: 0.7;
  animation-delay: 0.75s;
}

.who-we-are__ring--inner {
  --ring-inset: 31%;
  animation-delay: 0s;
}

.who-we-are__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -18deg, rgba(251, 88, 2, 0.38) 0deg, rgba(251, 88, 2, 0.18) 22deg, rgba(251, 88, 2, 0.04) 52deg, transparent 76deg, transparent 360deg);
  mask-image: radial-gradient(circle, transparent 0 14%, #000 14.5% 100%);
  opacity: 0.78;
  animation: radar-sweep 7.5s linear infinite;
}

.who-we-are__pulse {
  position: absolute;
  inset: 38%;
  border: 1px solid rgba(251, 88, 2, 0.5);
  border-radius: 50%;
  opacity: 0;
  animation: radar-pulse 3.6s ease-out infinite;
}

.who-we-are__blip {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #fb5802;
  box-shadow: 0 0 0.75rem rgba(251, 88, 2, 0.8);
  opacity: 0;
  animation: radar-blip 7.5s linear infinite;
}

.who-we-are__blip--one {
  top: 26%;
  left: 61%;
  animation-delay: 1.1s;
}

.who-we-are__blip--two {
  top: 62%;
  left: 37%;
  animation-delay: 3.2s;
}

.who-we-are__blip--three {
  top: 41%;
  left: 27%;
  animation-delay: 5.4s;
}

.who-we-are__bearing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 64%;
  background: linear-gradient(180deg, rgba(251, 88, 2, 0.75), rgba(251, 88, 2, 0));
  transform-origin: top center;
  opacity: 0.55;
  animation: radar-bearing 7.5s linear infinite;
}

.who-we-are__ship {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(82%, 31.25rem);
  height: auto;
  filter: drop-shadow(0 1.25rem 2rem rgba(0, 0, 0, 0.55));
  transform: translate(-50%, -50%);
}

@keyframes radar-sweep {
  to {
    transform: rotate(360deg);
  }
}
@keyframes radar-bearing {
  from {
    transform: rotate(-18deg);
  }
  to {
    transform: rotate(342deg);
  }
}
@keyframes radar-ring-pulse {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  45% {
    opacity: 0.82;
    transform: scale(1.012);
  }
}
@keyframes radar-pulse {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  18% {
    opacity: 0.58;
  }
  100% {
    opacity: 0;
    transform: scale(3.2);
  }
}
@keyframes radar-blip {
  0%, 78%, 100% {
    opacity: 0;
    transform: scale(0.6);
  }
  82% {
    opacity: 1;
    transform: scale(1.25);
  }
  92% {
    opacity: 0.18;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .who-we-are__ring,
  .who-we-are__sweep,
  .who-we-are__pulse,
  .who-we-are__blip,
  .who-we-are__bearing {
    animation: none;
  }
  .who-we-are__sweep {
    opacity: 0.28;
  }
}
.who-we-are__panel {
  position: relative;
  padding: 2rem 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  background: rgba(16, 18, 28, 0.6);
}
@media (min-width: 768px) {
  .who-we-are__panel {
    padding: 2.5rem 2rem;
  }
}

.who-we-are__corner,
.who-we-are__corner::before,
.who-we-are__corner::after,
.who-we-are__panel::before,
.who-we-are__panel::after {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  pointer-events: none;
}

.who-we-are__corner {
  inset: 0;
  width: auto;
  height: auto;
}

.who-we-are__corner::before {
  top: -1px;
  right: -1px;
  border-top: 0.1875rem solid #fb5802;
  border-right: 0.1875rem solid #fb5802;
  content: "";
  opacity: 0.6;
}

.who-we-are__corner::after {
  top: -1px;
  left: -1px;
  border-top: 0.1875rem solid #fb5802;
  border-left: 0.1875rem solid #fb5802;
  content: "";
  opacity: 0.6;
}

.who-we-are__panel::before {
  bottom: -1px;
  left: -1px;
  border-bottom: 0.1875rem solid #fb5802;
  border-left: 0.1875rem solid #fb5802;
  content: "";
  opacity: 0.6;
}

.who-we-are__panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 0.1875rem solid #fb5802;
  border-bottom: 0.1875rem solid #fb5802;
  content: "";
  opacity: 0.6;
}

.who-we-are__title {
  margin: 0;
  color: #ffffff;
}

.who-we-are__eyebrow {
  margin: 1rem 0 0;
  color: #fb5802;
  font-size: 0.875rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.who-we-are__text {
  max-width: 49.25rem;
  margin-top: 2rem;
  color: #dde6ec;
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  letter-spacing: 0.01em;
  line-height: 1.7;
  opacity: 0.8;
}

.who-we-are__text p {
  margin: 0;
}

.who-we-are__text p + p {
  margin-top: 1.35rem;
}

.naval-innovation {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --grid-rotate-x: 0deg;
  --grid-rotate-y: 0deg;
  --asset-x: 0px;
  --asset-y: 0px;
  --asset-opacity: 0.4;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #07090c;
  padding-block: 6rem;
  perspective: 900px;
}
@media (min-width: 768px) {
  .naval-innovation {
    --asset-opacity: 1;
    padding-block: 7rem;
  }
}

.naval-innovation-wrap {
  position: relative;
}

/* top boundary divider — line + centered orange plus marker */
.naval-innovation-wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.naval-innovation-wrap::after {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  z-index: 10;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(#fb5802, #fb5802) center/1rem 0.125rem no-repeat, linear-gradient(#fb5802, #fb5802) center/0.125rem 1rem no-repeat;
  content: "";
  transform: translateX(-50%);
}

.naval-innovation__divider {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  z-index: 10;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(#fb5802, #fb5802) center/1rem 0.125rem no-repeat, linear-gradient(#fb5802, #fb5802) center/0.125rem 1rem no-repeat;
  transform: translateX(-50%);
}

.naval-innovation::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 7;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.naval-innovation__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  box-sizing: border-box;
  overflow: visible;
  opacity: 0;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotateX(var(--grid-rotate-x)) rotateY(var(--grid-rotate-y)) scale(0.72);
  transform-origin: 50% 46%;
  transform-style: preserve-3d;
  transition: transform 120ms linear;
  will-change: transform;
}

.naval-innovation.is-loaded .naval-innovation__grid {
  animation: innovation-grid-load 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.naval-innovation__grid::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 47%, transparent 0 18%, rgba(7, 8, 12, 0.2) 46%, rgba(7, 8, 12, 0.9) 100%), linear-gradient(180deg, rgba(7, 8, 12, 0.26), rgba(7, 8, 12, 0.02) 46%, rgba(7, 8, 12, 0.5));
  content: "";
  z-index: 2;
  pointer-events: none;
}

.naval-innovation__grid-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  opacity: 0.32;
  transform: scale(1);
  transform-origin: center center;
  animation: innovation-grid-idle 8s ease-in-out infinite;
  will-change: transform;
}

.naval-innovation__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 12rem);
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .naval-innovation__inner {
    grid-template-columns: minmax(20rem, 0.92fr) minmax(22rem, 0.88fr);
    justify-content: space-between;
  }
}

.naval-innovation__heading {
  max-width: 35rem;
  justify-self: start;
  text-align: left;
  align-self: start;
}

.naval-innovation__side--left {
  --side-start-x: -2rem;
}

.naval-innovation__side--right {
  --side-start-x: 2rem;
}

.naval-innovation__heading h2 {
  margin: 0;
  color: #ffffff;
}

.naval-innovation__asset-wrap {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  display: grid;
  width: min(300vw, 90rem);
  place-items: center;
  transform: translate3d(calc(-50% + var(--asset-x)), calc(-50% + var(--asset-y)), 0);
  transition: transform 120ms linear;
  will-change: transform;
}
@media (min-width: 768px) {
  .naval-innovation__asset-wrap {
    width: min(96vw, 52rem);
  }
}
@media (min-width: 1024px) {
  .naval-innovation__asset-wrap {
    width: min(70vw, 70rem);
  }
}

.naval-innovation__asset-wrap picture {
  display: contents;
}

.naval-innovation__asset {
  width: 100%;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 2rem 3.5rem rgba(0, 0, 0, 0.55));
  transform: scale(1.05);
}

.naval-innovation.is-loaded .naval-innovation__asset {
  animation: innovation-asset-load 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards, innovation-asset-float 5s ease-in-out 1.35s infinite;
}

.naval-innovation__content {
  max-width: 36.5rem;
  justify-self: end;
  color: #99a1af;
  font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  text-align: left;
}
@media (min-width: 1024px) {
  .naval-innovation__content {
    padding-top: 9.375rem; /* ~150px, desktop only */
  }
}

.naval-innovation__content p {
  margin: 0;
}

.naval-innovation__content p + p {
  margin-top: 1.5rem;
}

@keyframes innovation-grid-load {
  from {
    opacity: 0;
    transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotateX(var(--grid-rotate-x)) rotateY(var(--grid-rotate-y)) scale(0.46);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotateX(var(--grid-rotate-x)) rotateY(var(--grid-rotate-y)) scale(1);
  }
}
@keyframes innovation-grid-idle {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}
@keyframes innovation-asset-load {
  to {
    opacity: var(--asset-opacity);
    transform: scale(1);
  }
}
@keyframes innovation-asset-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .naval-innovation__grid,
  .naval-innovation.is-loaded .naval-innovation__grid,
  .naval-innovation.is-loaded .naval-innovation__asset {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 767px) {
  /* show the asset (ship) in normal flow, below the title and description */
  .naval-innovation__asset-wrap {
    position: static;
    order: 1;
    z-index: auto;
    transform: none;
    width: 80%;
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }
  .who-we-are__ship {
    transform: translate(-50%, -50%) scale(2.2);
  }
}
.capabilities {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .capabilities {
    padding-block: 6rem;
  }
}
@media (min-width: 1024px) {
  .capabilities {
    min-height: 100svh;
    padding-block: 7rem;
  }
}

.capabilities__inner {
  position: relative;
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .capabilities__inner {
    grid-template-columns: minmax(22rem, 36rem) minmax(0, 1fr);
    align-items: center;
  }
}

.capabilities__content {
  position: relative;
  z-index: 2;
}

.capabilities__title {
  margin: 0 0 3rem;
  color: #ffffff;
}

.capabilities__list {
  display: grid;
  gap: 0;
  max-width: 36rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capabilities__item {
  position: relative;
  display: grid;
  gap: 0.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: border-color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.capabilities__item::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fb5802;
  content: "";
  transition: width 360ms cubic-bezier(0.2, 0, 0, 1);
}

.capabilities__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.capabilities__index {
  color: #fb5802;
  font-size: 0.875rem;
  line-height: 1.3;
  transition: color 240ms cubic-bezier(0.2, 0, 0, 1);
}

.capabilities__label {
  color: #ffffff;
  font-size: clamp(1.375rem, 2vw, 2rem);
  line-height: 1.25;
  transition: color 240ms cubic-bezier(0.2, 0, 0, 1);
}

.capabilities__item:hover,
.capabilities__item:focus-within {
  border-color: rgba(251, 88, 2, 0.55);
  transform: translateX(0.375rem);
}

.capabilities__item:hover::before,
.capabilities__item:focus-within::before {
  width: 100%;
}

.capabilities__item:hover .capabilities__label,
.capabilities__item:focus-within .capabilities__label {
  color: #fb5802;
}

.capabilities__item:hover .capabilities__index,
.capabilities__item:focus-within .capabilities__index {
  color: #ffffff;
}

.capabilities__visual {
  position: relative;
  min-height: auto;
}
@media (min-width: 768px) {
  .capabilities__visual {
    min-height: 34rem;
  }
}
@media (min-width: 1024px) {
  .capabilities__visual {
    min-height: 45rem;
  }
}

.capabilities__grid,
.capabilities__vessel {
  position: absolute;
  max-width: none;
  pointer-events: none;
}

.capabilities__grid {
  right: -10%;
  bottom: 2%;
  width: min(135%, 90rem);
  opacity: 0.55;
}
@media (min-width: 1024px) {
  .capabilities__grid {
    right: -16%;
    bottom: 0;
    width: min(118%, 90rem);
  }
}

.capabilities__vessel {
  right: 0;
  bottom: auto;
  width: 100%;
  filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.52));
}
@media (min-width: 768px) {
  .capabilities__vessel {
    right: -8%;
    bottom: 8%;
    width: min(130%, 82rem);
  }
}
@media (min-width: 1024px) {
  .capabilities__vessel {
    right: -15%;
    bottom: 11%;
    width: min(132%, 94rem);
  }
}

.stats-section {
  position: relative;
  overflow: hidden;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .stats-section {
    padding-block: 6rem;
  }
}

.stats-section__inner {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .stats-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(34rem, 0.95fr);
    align-items: center;
  }
}

.stats-section__visual {
  display: none;
  position: relative;
  min-height: 18rem;
}
@media (min-width: 768px) {
  .stats-section__visual {
    display: block;
    min-height: 28rem;
  }
}
@media (min-width: 1024px) {
  .stats-section__visual {
    min-height: 40rem;
  }
}

.stats-section__glow {
  position: absolute;
  inset: auto auto auto -20%;
  width: 58rem;
  max-width: 125%;
  aspect-ratio: 1.2;
  background: radial-gradient(ellipse at center, rgba(251, 88, 2, 0.32), transparent 62%);
  filter: blur(0.5rem);
}
@media (min-width: 1024px) {
  .stats-section__glow {
    inset: auto auto auto -32%;
    width: 88rem;
    max-width: 160%;
    aspect-ratio: 1.45;
    background: radial-gradient(ellipse at center, rgba(251, 88, 2, 0.34), transparent 74%);
    filter: blur(1.25rem);
  }
}

.stats-section__ship {
  position: absolute;
  left: -8%;
  bottom: 0;
  width: min(100%, 72rem);
  max-width: none;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
  bottom: -36px;
}
@media (min-width: 1024px) {
  .stats-section__ship {
    left: -10%;
    width: min(70%, 90rem);
  }
}

.stats-section__content {
  position: relative;
  z-index: 2;
}

.stats-section__eyebrow {
  margin: 0 0 1.5rem;
  color: #fb5802;
  font-size: 1rem;
  line-height: 1.3;
}

.stats-section__title {
  margin: 0 0 2rem;
  color: #ffffff;
}

.stats-section__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .stats-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.stats-card {
  position: relative;
  min-height: 13rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid #404149;
  background: rgba(7, 8, 12, 0.62);
  transition: border-color 240ms cubic-bezier(0.2, 0, 0, 1), box-shadow 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.stats-card::before {
  position: absolute;
  top: -2.0625rem;
  right: -4.0625rem;
  width: 11.3675rem;
  height: 9.56625rem;
  background: url("../images/number-bg.svg") center/contain no-repeat;
  content: "";
  opacity: 0.74;
  pointer-events: none;
  transition: opacity 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.stats-card:hover {
  border-color: rgba(251, 88, 2, 0.66);
  box-shadow: 0 1.25rem 3rem rgba(251, 88, 2, 0.1);
  transform: translateY(-0.25rem) scale(1.01);
}

.stats-card:hover::before {
  opacity: 1;
  transform: translate(-0.25rem, 0.25rem) scale(1.04);
}

.stats-card__pattern {
  display: none;
}

.stats-card__number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 1rem;
  color: #fb5802;
  font-size: clamp(3.25rem, 5vw, 5rem);
  line-height: 1;
}

.odometer-counter {
  display: inline-flex;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
}

.odometer-digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
}

.odometer-digit__stack {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.odometer-digit__stack span {
  display: block;
  height: 1em;
  line-height: 1;
}

.odometer-counter.is-counting .odometer-digit__stack {
  transform: translateY(calc(var(--digit) * -1em));
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1) var(--delay);
}

.stats-card p {
  position: relative;
  z-index: 1;
  max-width: 20rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.3;
}

@media (max-width: 767px) {
  /* show the ship in normal flow, below the stats content */
  .stats-section {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
  }
  .stats-section__ship {
    position: static;
    order: 1;
    width: 100%;
    margin-top: 2rem;
  }
}
.geographic-reach {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  background: #000100;
}
@media (min-width: 768px) {
  .geographic-reach {
    min-height: 100svh;
    padding-top: 6rem;
  }
}

.geographic-reach__header {
  position: relative;
  z-index: 2;
  text-align: center;
}

.geographic-reach__title {
  margin: 0;
  color: #ffffff;
}

.geographic-reach__subtitle {
  max-width: 28rem;
  margin: 1.5rem auto 0;
  color: #dde6ec;
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  letter-spacing: 0.01em;
  line-height: 1.7;
  opacity: 0.8;
}

.geographic-reach__map-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 3rem;
}

.geographic-reach__map {
  width: 100%;
  max-width: none;
  object-position: center top;
  pointer-events: none;
}
@media (min-width: 768px) {
  .geographic-reach__map {
    min-height: 40rem;
    object-fit: cover;
  }
}

.about-page {
  background: #07090c;
}

.about-section {
  position: relative;
  background: #07090c;
}

.about-kicker {
  color: #fb5802;
  font-size: clamp(0.8125rem, 0.72rem + 0.28vw, 1rem);
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-title {
  margin: 0;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0;
}

.about-page .site-shell h1.about-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
}

.about-copy {
  color: rgba(244, 247, 249, 0.82);
  font-size: clamp(1rem, 0.92rem + 0.28vw, 1.125rem);
  line-height: 1.62;
}

.about-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-corners::before,
.about-corners::after,
.about-corners span::before,
.about-corners span::after {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  border-color: #fb5802;
  content: "";
  opacity: 0.85;
}

.about-corners::before {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
}

.about-corners::after {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
}

.about-corners span::before {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.about-corners span::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.page-banner {
  --banner-pattern-y: 0px;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.05), rgba(7, 8, 12, 0.85) 96%), radial-gradient(circle at 50% 58%, rgba(251, 88, 2, 0.12), transparent 22rem), url("../images/about/banner-pattern.svg") center calc(100% + var(--banner-pattern-y))/min(100%, 120rem) auto no-repeat, #07090c;
  transition: background-position 80ms linear;
  background-size: cover;
  background-position: bottom center;
}

.about-hero {
  min-height: clamp(38rem, 92vh, 54rem);
  display: grid;
  align-items: end;
  padding: 8rem 0 clamp(4rem, 9vw, 7rem);
  isolation: isolate;
}

.about-hero__content {
  position: relative;
  z-index: 1;
}

/* visual style is shared with .media-listing__tab (see _media.scss); */
/* only the back-button-specific layout (icon gap + spacing) lives here */
.about-hero__back {
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 4.25rem);
}
@media (min-width: 1024px) {
  .about-hero__back {
    margin-bottom: clamp(7rem, 10.5vw, 12.5rem);
  }
}

.about-hero__back-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(251, 88, 2, 0.16);
  color: #fb5802;
  transition: background-color 240ms cubic-bezier(0.2, 0, 0, 1), color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.about-hero__back-icon svg {
  width: 1.125rem;
  height: auto;
}

.about-hero__back:hover .about-hero__back-icon,
.about-hero__back:focus-visible .about-hero__back-icon {
  background: #fb5802;
  color: #ffffff;
  transform: translateX(-0.125rem);
}

/* smaller liquid-glass back button on mobile.
   Extra .about-hero specificity so it beats the shared sizing in _media.scss
   (which is imported later than this file). */
@media (max-width: 767px) {
  .about-hero .about-hero__back {
    min-height: 2.5rem;
    gap: 0.5rem;
    padding: 0.3rem 1.1rem 0.3rem 0.4rem;
    font-size: 0.75rem;
  }
  .about-hero .about-hero__back-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
  .about-hero .about-hero__back-icon svg {
    width: 0.95rem;
  }
}
.about-hero__subtitle {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: rgba(244, 247, 249, 0.72);
  font-size: clamp(1.25rem, 2vw, 1.25rem);
  line-height: 1.35;
}

.about-what {
  min-height: clamp(42rem, 70vw, 61.25rem);
  padding: clamp(5rem, 7vw, 5rem) 0 clamp(22rem, 38vw, 32rem);
  isolation: isolate;
}

.about-what::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  height: min(61.25rem, 100%);
  background: url("../images/about/what-bg.webp") center bottom/cover no-repeat;
  content: "";
  transform: scale(1);
  transform-origin: center bottom;
}

.about-what::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #08070c 0%, rgba(8, 7, 12, 0.7) 40%, rgba(8, 7, 12, 0.3) 80%, rgba(8, 7, 12, 0) 100%), linear-gradient(180deg, rgba(7, 8, 12, 0) 55%, rgba(7, 8, 12, 0.22) 100%);
  content: "";
}

.about-what__content {
  display: grid;
  gap: clamp(2rem, 3.4vw, 3.75rem);
  align-items: start;
}

.about-what__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.08fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 2.05vw, 2.4375rem);
  max-width: 102.75rem;
}

.about-what__grid p {
  margin: 0;
  color: #dde6ec;
  font-size: clamp(0.875rem, 0.7vw + 0.2rem, 1.125rem);
  line-height: 1.6;
  opacity: 0.8;
}

/* in-flow version of the what-bg image, only shown on mobile (see below) */
.about-what__image {
  display: none;
}

.about-mosaic {
  padding: clamp(5rem, 6vw, 5rem) 0 0;
}

.about-mosaic__inner {
  position: relative;
  display: grid;
  grid-template-columns: 36.5% 31.5% 32%;
  gap: 0;
  min-height: clamp(54rem, 67.6vw, 81.125rem);
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

.about-mosaic__inner::before,
.about-mosaic__inner::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.about-mosaic__inner::before {
  top: -5rem;
}

.about-mosaic__inner::after {
  bottom: 0.5rem;
}

.about-mosaic__divider {
  position: absolute;
  top: -5rem;
  bottom: 0.5rem;
  z-index: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.about-mosaic__divider::before,
.about-mosaic__divider::after {
  position: absolute;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(#fb5802, #fb5802) center/100% 2px no-repeat, linear-gradient(90deg, #fb5802, #fb5802) center/2px 100% no-repeat;
  content: "";
  transform: translateX(-50%);
}

.about-mosaic__divider::before {
  top: -0.5rem;
}

.about-mosaic__divider::after {
  bottom: -0.5rem;
}

.about-mosaic__divider--one {
  left: 36.5%;
}

.about-mosaic__divider--two {
  left: 68%;
}

.about-mosaic__lane {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.about-mosaic__lane--left {
  justify-content: space-between;
  padding-top: clamp(0rem, 1vw, 1rem);
  padding-right: clamp(1.5rem, 2.4vw, 3rem);
}

.about-mosaic__lane--middle {
  padding: 3.125rem 0 0;
}

.about-mosaic__lane--right {
  padding-top: 6.25rem;
  padding-left: clamp(1.5rem, 2.4vw, 3rem);
}

.about-mosaic__heading {
  max-width: 35.375rem;
}

.about-mosaic__image {
  position: relative;
  overflow: hidden;
  background: #10121c;
}

.about-mosaic__image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.about-mosaic__image--side {
  width: calc(100% + 0.5rem);
  height: clamp(20rem, 35.6vw, 42.7rem);
  margin-left: max(-1rem, (100vw - 100%) / -2);
}

.about-mosaic__image--ship {
  height: clamp(24rem, 35vw, 42rem);
}

.about-mosaic__image--front {
  height: clamp(26rem, 46.8vw, 56.25rem);
}

.about-mosaic__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 240ms cubic-bezier(0.2, 0, 0, 1);
}

.about-mosaic__image:hover img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.06);
}

.about-mosaic__text {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.about-mosaic__heading .about-copy {
  max-width: 35.375rem;
  margin-top: clamp(2.5rem, 5.6vw, 6rem);
  font-size: clamp(0.875rem, 0.62vw + 0.3rem, 1.125rem);
}

.about-mosaic__text--middle {
  margin-top: clamp(2rem, 5vw, 5.5rem);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(2rem, 2.8vw, 3.5rem);
}

.about-mosaic__text--right {
  max-width: 25.625rem;
  margin-top: clamp(4rem, 8vw, 10.5rem);
  padding-right: clamp(0.5rem, 1.2vw, 1.5rem);
}

.about-mosaic__text .about-copy {
  margin: 0;
  color: #dde6ec;
  font-size: clamp(0.875rem, 0.55vw + 0.3rem, 1rem);
  line-height: 1.6;
  opacity: 0.8;
  overflow-wrap: break-word;
}

.about-leadership {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.about-leadership__title {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.about-leadership__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 35.25rem));
  gap: 1.25rem;
  justify-content: center;
}

.leader-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #141316;
  transition: border-color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.leader-card:hover {
  border-color: rgba(251, 88, 2, 0.75);
  transform: translateY(-0.35rem);
}

.leader-card__image {
  position: relative;
  height: clamp(22rem, 36vw, 30.75rem);
  overflow: hidden;
  background: #10121c;
  padding: 3px;
}

.leader-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.leader-card:hover .leader-card__image img {
  transform: scale(1.04);
}

.leader-card__body {
  position: relative;
  min-height: 9rem;
  display: grid;
  align-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #141316;
  margin-top: 5px;
}

.leader-card__image::before,
.leader-card__body::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(#fb5802, #fb5802) left top/1.25rem 2px no-repeat, linear-gradient(#fb5802, #fb5802) left top/2px 1.25rem no-repeat, linear-gradient(#fb5802, #fb5802) right top/1.25rem 2px no-repeat, linear-gradient(#fb5802, #fb5802) right top/2px 1.25rem no-repeat, linear-gradient(#fb5802, #fb5802) left bottom/1.25rem 2px no-repeat, linear-gradient(#fb5802, #fb5802) left bottom/2px 1.25rem no-repeat, linear-gradient(#fb5802, #fb5802) right bottom/1.25rem 2px no-repeat, linear-gradient(#fb5802, #fb5802) right bottom/2px 1.25rem no-repeat;
  content: "";
  pointer-events: none;
}

.leader-card__corners {
  display: none;
}

.leader-card__name {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  line-height: 1;
}

.leader-card__role {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fb5802;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-partner {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.about-partner__panel {
  position: relative;
  min-height: clamp(38rem, 62vw, 48rem);
  overflow: hidden;
  display: grid;
  align-items: start;
  padding: clamp(2rem, 5vw, 5rem);
  background: #10121c;
  isolation: isolate;
}

/* desktop: title (left) and card (right) sit parallel, both aligned to the top */
@media (min-width: 1024px) {
  .about-partner__panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 49.5rem);
    gap: clamp(2rem, 4vw, 4rem);
  }
}
.about-partner__panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--partner-bg) center/cover no-repeat;
  content: "";
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-partner__panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(7, 8, 12, 0.19)), linear-gradient(90deg, rgba(7, 8, 12, 0.42), rgba(7, 8, 12, 0));
  content: "";
}

.about-partner--edge .about-partner__panel {
  --partner-bg: url("../images/about/edge-bg.webp");
}

.about-partner--fincantieri .about-partner__panel {
  --partner-bg: url("../images/about/fincantieri-bg-2.webp");
}

/* FINCANTIERI: no panel background or corner border
   (the EDGE panel keeps all of these) */
.about-partner--fincantieri .about-partner__panel {
  border: 0;
  background: transparent;
}

.about-partner--fincantieri .about-corners {
  display: none;
}

.about-partner__title {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.about-partner__card {
  position: relative;
  z-index: 1;
  width: min(100%, 49.5rem);
  margin-left: auto;
  margin-top: 0;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.about-partner__card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(#f4f7f9, #f4f7f9) left top/1.35rem 0.225rem no-repeat, linear-gradient(#f4f7f9, #f4f7f9) left top/0.225rem 1.35rem no-repeat, linear-gradient(#f4f7f9, #f4f7f9) right top/1.35rem 0.225rem no-repeat, linear-gradient(#f4f7f9, #f4f7f9) right top/0.225rem 1.35rem no-repeat, linear-gradient(#f4f7f9, #f4f7f9) left bottom/1.35rem 0.225rem no-repeat, linear-gradient(#f4f7f9, #f4f7f9) left bottom/0.225rem 1.35rem no-repeat, linear-gradient(#f4f7f9, #f4f7f9) right bottom/1.35rem 0.225rem no-repeat, linear-gradient(#f4f7f9, #f4f7f9) right bottom/0.225rem 1.35rem no-repeat;
  content: "";
  opacity: 0.6;
  pointer-events: none;
}

.about-partner__card > * {
  position: relative;
  z-index: 2;
}

.about-partner__card p {
  margin: 0 0 1.5rem;
}

.about-purpose {
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
}

.about-purpose__inner {
  max-width: 72rem;
}

.about-purpose__text {
  max-width: 68rem;
  margin: 1.25rem auto 0;
  background: linear-gradient(99deg, #ffffff 65%, rgba(231, 231, 232, 0) 108%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.4;
}

@media (max-width: 1023px) {
  .about-page .site-shell h1.about-title {
    font-size: clamp(2.35rem, 8vw, 4rem);
  }
  .about-copy {
    font-size: 1rem;
  }
  .about-hero {
    min-height: 34rem;
    padding: 7rem 0 4.5rem;
  }
  .about-hero__back {
    margin-bottom: 2rem;
  }
  .about-hero__subtitle {
    max-width: 34rem;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  }
  .about-what {
    min-height: auto;
    padding: 5rem 0 18rem;
  }
  .about-what::before {
    height: 30rem;
    background-position: center bottom;
  }
  .about-what::after {
    background: linear-gradient(180deg, #08070c 0%, rgba(8, 7, 12, 0.84) 48%, rgba(8, 7, 12, 0.42) 82%, rgba(8, 7, 12, 0) 100%), linear-gradient(180deg, rgba(7, 8, 12, 0) 55%, rgba(7, 8, 12, 0.18) 100%);
  }
  .about-what__content,
  .about-mosaic__inner {
    grid-template-columns: 1fr;
  }
  .about-what__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: none;
  }
  .about-what__grid p,
  .about-mosaic__heading .about-copy,
  .about-mosaic__text .about-copy {
    font-size: 0.9375rem;
  }
  .about-mosaic {
    padding-top: 5rem;
  }
  .about-mosaic__inner {
    min-height: 0;
    gap: 3rem;
    padding-bottom: 0;
  }
  .about-mosaic__divider {
    display: none;
  }
  .about-mosaic__inner::before {
    top: -2.5rem;
  }
  .about-mosaic__inner::after {
    content: none;
  }
  .about-mosaic__lane {
    gap: 2rem;
    padding-inline: 0;
  }
  .about-mosaic__heading,
  .about-mosaic__heading .about-copy,
  .about-mosaic__text--right {
    max-width: none;
  }
  .about-mosaic__heading .about-copy,
  .about-mosaic__text--middle,
  .about-mosaic__text--right {
    margin-top: 0;
    padding-inline: 0;
  }
  .about-mosaic__image--side {
    width: 100%;
    margin-left: 0;
  }
  .about-mosaic__image--side,
  .about-mosaic__image--ship,
  .about-mosaic__image--front {
    height: clamp(22rem, 48vw, 34rem);
  }
  .about-leadership {
    padding: 5rem 0 3rem;
  }
  .about-leadership__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .leader-card__image {
    height: clamp(20rem, 48vw, 30rem);
  }
  .leader-card__body {
    min-height: 7rem;
  }
  .about-partner {
    padding: 3rem 0 5rem;
  }
  .about-partner__panel {
    min-height: 38rem;
    align-content: end;
    padding: 2rem;
  }
  .about-partner__card {
    margin-left: 0;
    margin-top: 2rem;
  }
  .about-purpose {
    padding: 5rem 0;
  }
  .about-purpose__text {
    font-size: clamp(1.35rem, 3.8vw, 2rem);
  }
}
@media (max-width: 767px) {
  .about-page .site-shell h1.about-title {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.02;
  }
  .about-page .site-shell h2.about-title {
    margin-bottom: 1.5rem;
  }
  .about-hero {
    min-height: 31rem;
    padding: 6.5rem 0 4rem;
  }
  .page-banner {
    background-size: auto, auto, min(170vw, 70rem) auto, auto;
  }
  .about-what__grid,
  .about-leadership__grid {
    grid-template-columns: 1fr;
  }
  .about-what {
    padding-top: 4rem;
    padding-bottom: 0;
  }
  /* drop the background image; it's rendered in-flow below the text instead */
  .about-what::before,
  .about-what::after {
    content: none;
  }
  .about-what__image {
    display: block;
    width: 100%;
    height: auto;
  }
  .about-mosaic__image--side {
    width: 100%;
    margin-left: 0;
  }
  .about-mosaic__image--side,
  .about-mosaic__image--ship,
  .about-mosaic__image--front {
    height: clamp(18rem, 74vw, 28rem);
  }
  .about-leadership,
  .about-purpose {
    padding: 4rem 0;
  }
  .about-leadership {
    padding-bottom: 2rem;
  }
  .about-partner {
    padding: 2rem 0 4rem;
  }
  .leader-card:hover {
    transform: none;
  }
  .leader-card__image {
    height: clamp(19rem, 86vw, 28rem);
  }
  .leader-card__body {
    min-height: 6.5rem;
    padding: 1rem;
  }
  .leader-card__name {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }
  .about-partner__panel {
    min-height: 34rem;
    align-content: end;
    padding: 1.25rem;
  }
  .about-partner__card {
    padding: 1rem;
    backdrop-filter: blur(10px);
  }
  .about-partner__panel:hover::before {
    transform: none;
  }
  .about-purpose__text {
    color: rgba(244, 247, 249, 0.86);
    background: none;
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }
}
figure {
  margin: 0;
}

.about-partner--fincantieri .about-partner__panel .about-partner__card::before {
  display: none;
}

.about-partner--fincantieri .about-partner__panel .about-partner__card {
  background-color: transparent;
  border: 0px none;
  border-radius: 0px;
  padding: 0px;
  margin-top: 0px;
}

.products-showcase {
  position: relative;
  /* clip (not hidden) so the sticky image below isn't trapped in a scroll container */
  overflow: hidden;
  overflow: clip;
  padding: clamp(4rem, 7vw, 6.25rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: #07090c;
}

.products-showcase__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.products-showcase__list {
  display: grid;
  gap: 0.5rem;
}

.product-accordion {
  overflow: hidden;
  border-radius: 0.75rem;
  background: #0f1019;
  color: #ffffff;
  opacity: 0.07;
  transition: border-color 240ms cubic-bezier(0.2, 0, 0, 1), box-shadow 240ms cubic-bezier(0.2, 0, 0, 1), opacity 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.product-accordion:hover {
  opacity: 0.72;
  transform: translateY(-0.125rem);
}

.product-accordion.is-active {
  border: 1px solid rgba(255, 105, 0, 0.3);
  box-shadow: 0.25rem 0.25rem 3.75rem rgba(255, 105, 0, 0.1);
  opacity: 1;
}

.product-accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 2.4vw, 2.5rem);
  border: 0;
  outline: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.product-accordion__head:focus-visible {
  outline: 2px solid rgba(251, 88, 2, 0.7);
  outline-offset: -3px;
  border-radius: 0.5rem;
}

.product-accordion__label {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1.125rem, 1.8vw, 1.75rem);
  line-height: 1.15;
}

.product-accordion__label::before {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.product-accordion.is-active .product-accordion__label::before {
  border: 0.375rem solid rgba(251, 88, 2, 0.35);
  background: #fb5802;
  box-sizing: content-box;
}

.product-accordion__icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  border-radius: 0.25rem;
}

.product-accordion__icon::before,
.product-accordion__icon::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1rem;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.product-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.product-accordion.is-active .product-accordion__icon {
  color: #fb5802;
}

.product-accordion.is-active .product-accordion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.product-accordion__body {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
}

.product-accordion.is-active .product-accordion__body {
  opacity: 1;
  transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease 0.1s;
}

.product-accordion__body[hidden] {
  height: 0;
  opacity: 0;
}

.product-accordion__body-inner {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 0 clamp(1.25rem, 2.4vw, 2.5rem) 2.25rem;
}

.product-accordion__copy {
  max-width: 43.5rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
  line-height: 1.5;
}

.product-accordion__specs {
  display: grid;
  gap: 0.1rem;
  margin: 0;
  color: #ffffff;
  font-family: ui-monospace, "SFMono-Regular", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: clamp(0.875rem, 1.1vw, 1.125rem);
  line-height: 1.5;
}

.product-accordion__specs div {
  display: flex;
  gap: 0.35rem;
}

.product-accordion__specs dt,
.product-accordion__specs dd {
  margin: 0;
}

.product-accordion__specs dd {
  color: #ff6900;
  font-weight: 500;
}

.products-showcase__visual {
  position: relative;
  min-height: clamp(22rem, 46vw, 44.75rem);
  overflow: hidden;
  border-radius: 0.75rem;
  background: #0f1019;
}

.products-showcase__ship {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: min(78%, 34rem);
  max-width: none;
  transform: translate(-50%, -50%);
  /* blur dissolve when the image changes */
  filter: drop-shadow(0 2rem 2.5rem rgba(0, 0, 0, 0.45)) blur(0);
  transition: opacity 0.45s ease, filter 0.55s ease;
}

/* mid-swap: blur out + fade, then the new image sharpens back in */
.products-showcase__ship.is-swapping {
  opacity: 0;
  filter: drop-shadow(0 2rem 2.5rem rgba(0, 0, 0, 0.45)) blur(16px);
}

/* per-accordion image (injected via JS) — only shown on mobile, under the text */
.product-accordion__image {
  display: none;
  width: 100%;
  height: auto;
  margin-top: 1.25rem;
  border-radius: 0.5rem;
}

@media (min-width: 1024px) {
  .products-showcase__inner {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.95fr);
    align-items: start;
  }
  /* pin the product image in the vertical middle of the area below the fixed
     header (~7.125rem tall) while scrolling, so its top never hides behind it */
  .products-showcase__visual {
    position: sticky;
    align-self: start;
    top: calc(50vh + 3.5625rem - clamp(11rem, 23vw, 22.375rem));
  }
}
/* slightly smaller showcase visual on laptop screens */
@media (min-width: 1100px) and (max-width: 1800px) {
  .products-showcase__visual {
    min-height: clamp(20rem, 34vw, 34rem);
    top: calc(50vh + 3.5625rem - clamp(10rem, 17vw, 17rem));
  }
  .products-showcase__ship {
    width: min(66%, 27rem);
  }
}
@media (max-width: 767px) {
  .products-showcase {
    padding: 4rem 0;
  }
  .product-accordion.is-active {
    min-height: 0;
  }
  .product-accordion__head {
    padding: 1.125rem;
  }
  .product-accordion__body-inner {
    padding: 0 1.125rem 1.5rem;
  }
  /* hide the shared right-side image on mobile; each item shows its own below the text */
  .products-showcase__visual {
    display: none;
  }
  .product-accordion__image {
    display: block;
  }
}
.contact-page {
  background: #07090c;
}

.contact-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #07090c;
}

.contact-panel {
  position: relative;
  display: grid;
  gap: clamp(3rem, 5vw, 5rem);
  overflow: hidden;
  padding: clamp(2rem, 3.6vw, 3rem);
  border-radius: 1rem;
  background: #0f1019;
}

.contact-panel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.contact-panel::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(#fb5802, #fb5802) center/100% 2px no-repeat, linear-gradient(90deg, #fb5802, #fb5802) center/2px 100% no-repeat;
  content: "";
  transform: translate(-50%, -50%);
}

.contact-panel__info {
  display: grid;
  min-height: clamp(24rem, 45vw, 39.75rem);
  align-content: space-between;
  gap: 3rem;
}

.contact-panel__title {
  margin: 0;
}

.contact-presence {
  display: grid;
  gap: 1rem;
  max-width: 18rem;
}

.contact-presence__label {
  margin: 0;
  color: #ff6900;
  font-size: 1.125rem;
  line-height: 1.3;
}

.contact-presence__item {
  display: inline-flex;
  align-items: flex-end;
  gap: 1rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
  transition: color 240ms cubic-bezier(0.2, 0, 0, 1);
}

.contact-presence__item:hover {
  color: #fb5802;
}

.contact-presence__arrow {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  place-items: center;
  color: #fb5802;
  transform: translateY(-0.1rem);
}

.contact-form {
  display: grid;
  gap: 2.2rem;
}

.contact-field {
  display: grid;
  gap: 0.75rem;
}

.contact-field label {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
}

/* form fields — same liquid glass treatment as the media tabs        */
/* (blur + tint + specular rim applied directly, since form controls   */
/*  can't host the ::before/.specular/.glow child layers)              */
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  background: rgba(31, 27, 27, 0.17);
  box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.55), inset 0 0 2px rgba(255, 255, 255, 0.65), 0 6px 24px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font: inherit;
  font-size: 1.25rem;
  outline: 0;
  -webkit-backdrop-filter: blur(6px) saturate(130%);
  backdrop-filter: blur(6px) saturate(130%);
  backdrop-filter: blur(4px) url(#lg-dist) saturate(130%);
  resize: none;
  transition: background-color 240ms cubic-bezier(0.2, 0, 0, 1), box-shadow 240ms cubic-bezier(0.2, 0, 0, 1);
}

.contact-field input {
  min-height: 4rem;
  padding: 1rem 2rem;
  border-radius: 999px;
}

.contact-field textarea {
  min-height: 8.3125rem;
  resize: vertical;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #818181;
  opacity: 1;
}

/* focus — orange-tinted glass + ring, keeping the specular rim */
.contact-field input:focus,
.contact-field textarea:focus {
  background: #181823;
}

.contact-form .btn {
  width: 100%;
  justify-content: space-between;
  min-height: 4rem;
  padding-block: 0.75rem;
}

@media (min-width: 1024px) {
  .contact-panel {
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 1fr);
  }
}
@media (max-width: 1023px) {
  .contact-panel::before,
  .contact-panel::after {
    display: none;
  }
  .contact-panel__info {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 4rem 0;
  }
  .contact-panel {
    padding: 1.25rem;
    gap: 2.5rem;
  }
  .contact-form {
    gap: 1.5rem;
  }
  .contact-field input {
    min-height: 3.5rem;
    padding-inline: 1.25rem;
  }
  .contact-field textarea {
    min-height: 7rem;
    padding: 1.25rem;
  }
  .contact-field input,
  .contact-field textarea {
    font-size: 1rem;
  }
}
.media-page {
  background: #07090c;
}

.media-listing {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(5rem, 9vw, 8rem);
  background: radial-gradient(circle at 22% 0%, rgba(48, 80, 118, 0.18), transparent 28rem), #07090c;
}

.media-listing__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.media-listing__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.media-listing__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.1vw, 1rem);
}

/* the "Select Media" dropdown is mobile-only; on desktop the tabs show inline */
.media-listing__tabs-toggle {
  display: none;
}

.media-listing__tabs-panel {
  display: contents;
}

/* ─── liquid glass pill tabs (4 layers: blur / tint / specular / glow) ─── */
/* shared by .about-hero__back so the back button matches the tabs exactly */
.media-listing__tab,
.about-hero__back {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font: inherit;
  font-size: clamp(0.9375rem, 1vw, 1.25rem);
  font-weight: normal;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-transform: uppercase;
  cursor: pointer;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2), box-shadow 0.4s ease, color 240ms cubic-bezier(0.2, 0, 0, 1);
}

/* layer 1 — liquid distortion + blur of whatever is behind */
.media-listing__tab::before,
.about-hero__back::before,
.media-search::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  -webkit-backdrop-filter: blur(6px) saturate(130%);
  backdrop-filter: blur(6px) saturate(130%);
  backdrop-filter: blur(4px) url(#lg-dist) saturate(130%);
}

/* layer 2 — tint overlay */
.media-listing__tab::after,
.about-hero__back::after,
.media-search::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(31, 27, 27, 0.22);
  content: "";
  transition: background 0.3s ease;
}

/* layer 3 — specular rim highlight */
.media-listing__tab .specular,
.about-hero__back .specular,
.media-search .specular {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.75), inset 0 0 6px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

/* layer 4 — mouse-tracking glow blob (--mx/--my set via JS) */
.media-listing__tab .glow,
.about-hero__back .glow,
.media-search .glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(190, 190, 190, 0.45), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.media-listing__tab:hover .glow,
.about-hero__back:hover .glow,
.media-search:hover .glow,
.media-search:focus-within .glow {
  opacity: 1;
}

/* springy press feedback */
.media-listing__tab:hover,
.about-hero__back:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.media-listing__tab:active,
.about-hero__back:active {
  transform: scale(0.94);
  transition-duration: 0.1s;
}

.media-listing__tab:focus-visible,
.about-hero__back:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

/* active tab — orange tint on the glass */
.media-listing__tab.is-active::after {
  background: #fb5802;
}

/* ─── search field: same liquid glass treatment as the tabs ─── */
.media-search {
  position: relative;
  display: flex;
  width: min(100%, 26.3125rem);
  min-height: 3rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.35rem 0 1.85rem;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  color: #818181;
  isolation: isolate;
  transition: box-shadow 0.4s ease;
}

/* focus — orange tint on the glass + ring, mirroring the active tab */
.media-search:focus-within {
  box-shadow: 0 0 0 3px rgba(251, 88, 2, 0.12), 0 10px 32px rgba(0, 0, 0, 0.28);
}

.media-search:focus-within::after {
  background: rgba(36, 36, 35, 0.22);
}

.media-search input {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: clamp(0.9375rem, 1vw, 1.25rem);
  outline: 0;
}

.media-search input::placeholder {
  color: #818181;
  opacity: 1;
}

.media-search svg {
  position: relative;
  z-index: 1;
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 auto;
}

.media-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.media-card {
  position: relative;
  display: grid;
  min-height: clamp(32rem, 48vw, 48.2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.015);
  color: #ffffff;
  transition: border-color 240ms cubic-bezier(0.2, 0, 0, 1), box-shadow 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.media-card::before,
.media-card::after,
.media-card__image::before,
.media-card__image::after {
  position: absolute;
  z-index: 3;
  width: 1.25rem;
  height: 1.25rem;
  border-color: #fb5802;
  content: "";
  pointer-events: none;
}

.media-card::before {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
}

.media-card::after {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
}

.media-card__image::before {
  right: 0;
  bottom: 0;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.media-card__image::after {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.media-card:hover {
  border-color: rgba(251, 88, 2, 0.58);
  box-shadow: 0 1.75rem 4rem rgba(0, 0, 0, 0.28), 0 0 2.5rem rgba(251, 88, 2, 0.08);
  transform: translateY(-0.35rem);
}

.media-card[hidden] {
  display: none;
}

.media-card__image {
  position: relative;
  display: block;
  height: clamp(18rem, 30vw, 30.75rem);
  overflow: hidden;
  margin: 0.1875rem;
  color: inherit;
}

.media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0, 0, 1);
}

.media-card:hover .media-card__image img {
  transform: scale(1.045);
}

.media-card__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.55rem 1rem;
  background: #fb5802;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1;
  text-transform: uppercase;
}

.media-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1rem, 1.4vw, 1.25rem);
}

.media-card__date {
  margin-bottom: -0.75rem;
  color: #fb5802;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.media-card__title {
  margin: 0;
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.32;
}

.media-card__excerpt {
  margin: 0;
  color: #99a1af;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.5;
}

.media-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: clamp(1.5rem, 3vw, 3rem);
}

/* liquid glass call-to-action — orange tinted (blur + tint + specular rim) */
.media-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.35rem 0.35rem 1.1rem;
  overflow: hidden;
  border: 0px none;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.2);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.45), inset 0 0 6px rgba(255, 255, 255, 0.2), 0 6px 24px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
  -webkit-backdrop-filter: blur(6px) saturate(130%);
  backdrop-filter: blur(6px) saturate(130%);
  backdrop-filter: blur(4px) url(#lg-dist) saturate(130%);
  transition: border-color 240ms cubic-bezier(0.2, 0, 0, 1), color 240ms cubic-bezier(0.2, 0, 0, 1), background-color 240ms cubic-bezier(0.2, 0, 0, 1), box-shadow 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.media-card__link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1);
  z-index: 1;
}

.media-card__link::after {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: #fb5802;
  color: #ffffff;
  content: "";
  transition: background-color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.media-card__link svg {
  position: absolute;
  right: 1rem;
  color: #ffffff;
  pointer-events: none;
}

.media-card__link:hover {
  border-color: rgba(251, 88, 2, 0.8);
  background: rgba(72, 72, 72, 0.34);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.55), inset 0 0 8px rgba(255, 255, 255, 0.25), 0 0.75rem 1.75rem rgba(251, 88, 2, 0.3);
  color: #ffffff;
  transform: translateY(-0.125rem);
}

.media-card__link:hover svg {
  transform: translateX(0.18rem);
}

.media-card__link:hover::after {
  background: #ff6a1d;
  transform: scale(1.04);
}

.media-listing__empty {
  margin: 0;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #99a1af;
  text-align: center;
}

@media (max-width: 1023px) {
  .media-listing__toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .media-search {
    width: 100%;
  }
  .media-listing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .media-listing {
    padding: 4rem 0 5rem;
  }
  /* media filters become a "Select Media" dropdown */
  .media-listing__tabs {
    position: relative;
    display: block;
    width: 100%;
  }
  .media-listing__tabs-toggle {
    display: flex;
    width: 100%;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font: inherit;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .media-listing__tabs-toggle::after {
    width: 0.5rem;
    height: 0.5rem;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-0.15em) rotate(45deg);
    transition: transform 0.25s ease;
  }
  .media-listing__tabs.is-open .media-listing__tabs-toggle::after {
    transform: translateY(0.1em) rotate(-135deg);
  }
  .media-listing__tabs-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    z-index: 6;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    background: rgba(8, 10, 15, 0.97);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  .media-listing__tabs.is-open .media-listing__tabs-panel {
    display: flex;
  }
  .media-listing__grid {
    grid-template-columns: 1fr;
  }
  .media-listing__tab {
    justify-content: flex-start;
    width: 100%;
    min-height: 3rem;
    padding-inline: 1.25rem;
    font-size: 0.8125rem;
  }
  .media-card {
    min-height: auto;
  }
  .media-card__image {
    height: clamp(15rem, 68vw, 24rem);
  }
  .media-card__footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1rem;
  }
}
.bg-transparent.z-2 {
  background-color: transparent;
  z-index: 2;
}

.news-detail-page {
  background: #07090c;
}

.news-detail {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(5rem, 9vw, 8rem);
  background: #07090c;
}

.news-detail-page .site-shell h1.about-title {
  max-width: 67rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.news-detail-banner__row {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.news-share {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.news-share__label {
  margin: 0;
  color: #ff6900;
  font-size: 1.125rem;
  line-height: 1.3;
}

.news-share__links {
  display: flex;
  gap: 0.6875rem;
}

.news-share__links a {
  display: grid;
  width: 2.6875rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 999px;
  background: #e45002;
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 240ms cubic-bezier(0.2, 0, 0, 1), box-shadow 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.news-share__links a:hover {
  background: #fb5802;
  box-shadow: 0 0.75rem 1.5rem rgba(251, 88, 2, 0.22);
  transform: translateY(-0.15rem);
}

.news-share__links svg {
  width: 0.95rem;
  height: 0.95rem;
}

.news-detail__inner {
  display: grid;
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
}

.news-detail__aside {
  position: sticky;
  top: 8.75rem;
  display: grid;
  gap: 1.5rem;
  padding: 1rem;
  border: 1px solid #24273a;
  background: #07080c;
}

.news-detail__aside-label {
  margin: 0;
  color: #90adc1;
  font-size: 0.875rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.news-detail__toc {
  display: grid;
}

.news-detail__toc a {
  padding: 1rem 0;
  border-top: 1px solid rgba(144, 173, 193, 0.16);
  color: #90adc1;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.45;
  transition: color 240ms cubic-bezier(0.2, 0, 0, 1), padding-left 240ms cubic-bezier(0.2, 0, 0, 1);
}

.news-detail__toc a:hover,
.news-detail__toc a.is-active {
  color: #ff6900;
  padding-left: 0.35rem;
}

.news-detail__content {
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}

.news-detail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.news-detail__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  background: #fb5802;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1;
  text-transform: uppercase;
}

.news-detail__meta time {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
}

.news-detail__divider {
  position: relative;
  height: 1rem;
  overflow: hidden;
}

.news-detail__divider::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.news-detail__divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(#fb5802, #fb5802) center/100% 2px no-repeat, linear-gradient(90deg, #fb5802, #fb5802) center/2px 100% no-repeat;
  content: "";
  transform: translate(-50%, -50%);
}

.news-detail__article {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5625rem, 2.2vw, 2rem) clamp(3rem, 5vw, 4.5rem);
}

.news-detail__article::before,
.news-detail__article::after,
.news-detail__article-corners::before,
.news-detail__article-corners::after {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-color: #fb5802;
  content: "";
  pointer-events: none;
}

.news-detail__article::before {
  top: 0;
  left: 0;
  border-top: 3px solid #fb5802;
  border-left: 3px solid #fb5802;
}

.news-detail__article::after {
  top: 0;
  right: 0;
  border-top: 3px solid #fb5802;
  border-right: 3px solid #fb5802;
}

.news-detail__article-corners::before {
  bottom: 0;
  left: 0;
  border-bottom: 3px solid #fb5802;
  border-left: 3px solid #fb5802;
}

.news-detail__article-corners::after {
  right: 0;
  bottom: 0;
  border-right: 3px solid #fb5802;
  border-bottom: 3px solid #fb5802;
}

.news-detail__article h1 {
  max-width: 58rem;
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.5vw, 4.5rem);
  line-height: 1;
}

.news-detail__article h2 {
  margin: 1rem 0 0;
  color: #fb5802;
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  line-height: 1.35;
  text-transform: uppercase;
}

.news-detail__article p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.6;
}

.news-detail__article figure {
  margin: 0.5rem 0 1rem;
}

.news-detail__article img {
  width: 100%;
  height: clamp(18rem, 37vw, 31.25rem);
  object-fit: cover;
}

@media (min-width: 1024px) {
  .news-detail-banner__row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .news-share {
    min-width: 9.5rem;
  }
  .news-detail__inner {
    grid-template-columns: minmax(16rem, 26.0625rem) minmax(0, 1fr);
  }
}
@media (max-width: 1023px) {
  .news-detail-page .site-shell h1.about-title {
    font-size: clamp(2.25rem, 7.4vw, 4rem);
  }
  .news-detail {
    padding-top: 4rem;
  }
  .news-detail__aside {
    position: static;
  }
  .news-detail__toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
  }
}
@media (max-width: 767px) {
  .news-detail-page .site-shell h1.about-title {
    font-size: clamp(1.95rem, 9vw, 3rem);
    line-height: 1.02;
  }
  .news-detail {
    padding: 6rem 0 5rem;
  }
  .news-detail__meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .news-detail__toc {
    grid-template-columns: 1fr;
  }
  .news-detail__article {
    gap: 0.9rem;
  }
  .news-detail__article::before,
  .news-detail__article::after,
  .news-detail__article-corners::before,
  .news-detail__article-corners::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.services-footer-bg {
  position: relative;
}
.services-footer-bg .services-footer-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(7, 8, 12, 0), rgba(7, 8, 12, 0)), url("../images/footer-bg.svg") center/cover no-repeat, #07090c;
}

.services-section {
  position: relative;
  padding-block: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  background: #07090c;
}
@media (min-width: 768px) {
  .services-section {
    padding-block: 5rem;
  }
}

.services-section__divider {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(#fb5802, #fb5802) center/1rem 0.125rem no-repeat, linear-gradient(#fb5802, #fb5802) center/0.125rem 1rem no-repeat;
  transform: translateX(-50%);
  z-index: 2;
}

.services-section__panel {
  max-width: 78rem;
  padding: 2rem 1rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .services-section__panel {
    padding: 2.5rem 2rem;
  }
}

.services-section__title {
  margin: 0;
  color: #ffffff;
}

.services-section__lead {
  margin: 1.5rem 0 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
}
@media (max-width: 767px) {
  .services-section__lead {
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .services-section__lead {
    margin-top: 3rem;
  }
}

.services-section__copy {
  max-width: 73.125rem;
  margin: 3rem auto 0;
  color: #ffffff;
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.services-section__copy p {
  margin: 0;
}

.services-section__copy strong {
  color: #fb5802;
  font-weight: 400;
}

.site-footer {
  position: relative;
  padding: 1.5rem;
  color: #ffffff;
  z-index: 2;
}

.site-footer__main {
  display: grid;
  gap: 4rem;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .site-footer__main {
    grid-template-columns: minmax(20rem, 29rem) minmax(0, 1fr);
    gap: 6rem;
    min-height: 35rem;
    align-items: start;
    padding-block: 7.5rem;
  }
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media (min-width: 1024px) {
  .site-footer__contact {
    min-height: 21rem;
    justify-content: space-between;
  }
}

.site-footer__intro h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.1;
}

.site-footer__intro p {
  max-width: 29rem;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.3;
}

.site-footer__form {
  display: flex;
  width: min(100%, 25.75rem);
  min-height: 4.5rem;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  border: 0.5px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__form input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #ffffff;
  outline: 0;
}

.site-footer__form input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.site-footer__form button {
  display: grid;
  width: 4.5rem;
  height: 2.625rem;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #07090c;
  transition: background-color 240ms cubic-bezier(0.2, 0, 0, 1), color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.site-footer__form button:hover {
  background: #fb5802;
  color: #ffffff;
  transform: translateX(0.2rem);
}

.site-footer__logo {
  display: inline-flex;
  width: min(21rem, 82vw);
}

.site-footer__columns {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .site-footer__columns {
    gap: 5rem;
    justify-content: end;
  }
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1.125rem;
  font-style: normal;
}

.site-footer__column h3 {
  margin: 0;
  color: #ff6900;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
}

.site-footer__column a,
.site-footer__presence p,
.site-footer__copyright {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
}

.site-footer__socials {
  display: flex;
  gap: 0.6875rem;
  align-items: flex-start;
  flex-direction: column;
}

.site-footer__socials a {
  display: inline-grid;
  min-width: 2.6875rem;
  height: 1.75rem;
  place-items: center;
  padding-inline: 0.65rem;
  border-radius: 999px;
  background: #e45002;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__copyright {
  margin: 0;
}

.site-footer__presence {
  gap: 1.5rem;
}

.site-footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.site-footer__bottom > span {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  background: linear-gradient(#fb5802, #fb5802) center/1.25rem 0.1875rem no-repeat, linear-gradient(#fb5802, #fb5802) center/0.1875rem 1.25rem no-repeat;
  transform: translateX(-50%);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem 3rem;
  color: #f4f7f9;
  font-size: 1.125rem;
  line-height: 1.3;
}

.site-footer__column a:not(.site-footer__socials a),
.site-footer__legal a {
  position: relative;
  width: fit-content;
  transition: color 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.site-footer__column a:not(.site-footer__socials a)::after,
.site-footer__legal a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: #fb5802;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: opacity 240ms cubic-bezier(0.2, 0, 0, 1), transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.site-footer__column a:not(.site-footer__socials a):hover,
.site-footer__column a:not(.site-footer__socials a):focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #fb5802;
  transform: translateY(-0.125rem);
}

.site-footer__column a:not(.site-footer__socials a):hover::after,
.site-footer__column a:not(.site-footer__socials a):focus-visible::after,
.site-footer__legal a:hover::after,
.site-footer__legal a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 0.75rem 0.5rem 1rem;
  }
  .site-footer__main {
    gap: 2rem;
    padding-block: 2.5rem 2rem;
  }
  .site-footer__contact {
    gap: 1.5rem;
  }
  .site-footer__logo {
    order: -1;
  }
  .site-footer__intro h2 {
    margin-bottom: 0.875rem;
    font-size: 1.5rem;
  }
  .site-footer__intro p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0.82;
  }
  .site-footer__form {
    width: 100%;
    min-height: 3.5rem;
    gap: 0.75rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
  }
  .site-footer__form input {
    font-size: 0.9375rem;
  }
  .site-footer__form button {
    width: 3.25rem;
    height: 2.25rem;
  }
  .site-footer__logo {
    width: min(14rem, 72vw);
  }
  .site-footer__columns {
    gap: 0.75rem;
  }
  .site-footer__column {
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.035);
  }
  .site-footer__column h3 {
    font-size: 0.95rem;
  }
  .site-footer__column a,
  .site-footer__presence p,
  .site-footer__copyright {
    font-size: 0.9375rem;
    line-height: 1.35;
  }
  .site-footer__connect {
    order: 3;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.875rem;
    border-color: rgba(251, 88, 2, 0.28);
    background: rgba(251, 88, 2, 0.07);
  }
  .site-footer__connect h3 {
    width: 100%;
  }
  .site-footer__socials {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .site-footer__socials a {
    min-width: 2.25rem;
    height: 1.625rem;
    padding-inline: 0.5rem;
  }
  .site-footer__copyright {
    text-align: left;
  }
  .site-footer__presence {
    gap: 0.875rem;
  }
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-inline: 0.5rem;
    padding-top: 1.25rem;
  }
  .site-footer__legal {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/*# sourceMappingURL=main.css.map */
