:root {
  --ink: #101419;
  --muted: #5f6872;
  --line: #dce1e5;
  --paper: #f7f7f4;
  --white: #ffffff;
  --signal: #e5382c;
  --steel: #27303a;
  --mist: #e8edf0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.reveal-ready .text-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(9px);
  transition:
    opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-ready .text-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.reveal-ready .hero-content h1.text-reveal,
.reveal-ready .section-heading h2.text-reveal,
.reveal-ready .intro-grid h2.text-reveal {
  transform: translate3d(0, 44px, 0) scale(0.985);
  transition-duration: 1450ms;
}

.reveal-ready .hero-content h1.text-reveal.is-visible,
.reveal-ready .section-heading h2.text-reveal.is-visible,
.reveal-ready .intro-grid h2.text-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-ready .eyebrow.text-reveal,
.reveal-ready .feature-copy .kicker.text-reveal {
  transform: translate3d(0, 18px, 0);
  transition-duration: 900ms;
}

.reveal-ready .button.text-reveal,
.reveal-ready .footer-social a.text-reveal {
  transform: translate3d(0, 22px, 0) scale(0.96);
}

.reveal-ready .button.text-reveal.is-visible,
.reveal-ready .footer-social a.text-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .text-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.password-protected:not(.auth-ok) > :not(.password-gate) {
  visibility: hidden;
}

body.geo-blocked > :not(.geo-block-screen) {
  display: none !important;
}

.geo-block-screen {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(5, 6, 8, 0.88), rgba(5, 6, 8, 0.88)),
    url("assets/hero-night.jpg") center / cover;
}

.geo-block-card {
  width: min(480px, 100%);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 12, 15, 0.82);
  text-align: center;
}

.geo-block-card img {
  width: 190px;
  max-width: 70%;
  margin-bottom: 28px;
}

.geo-block-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.geo-block-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.geo-block-card small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.48);
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 6, 8, 0.96), rgba(20, 27, 34, 0.92)),
    url("assets/hero-night.jpg") center / cover;
}

.password-gate::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(5, 6, 8, 0.54);
}

.password-gate-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  display: grid;
  gap: 16px;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 11, 14, 0.78);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45);
}

.password-gate-card img {
  width: 172px;
  height: auto;
  margin-bottom: 8px;
}

.password-gate-card h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 7vw, 52px);
  line-height: 0.95;
}

.password-gate-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.password-gate-card label {
  display: grid;
  gap: 8px;
}

.password-gate-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.password-gate-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.password-gate-card input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.56);
  outline-offset: 2px;
}

.password-gate-card button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.password-gate-card small {
  min-height: 18px;
  color: #ff8b80;
  font-weight: 800;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(5, 6, 8, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 8, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.brand,
.nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  width: clamp(160px, 16vw, 240px);
}

.brand img {
  width: 100%;
  height: auto;
  filter: invert(1) brightness(2.2);
}

.nav {
  justify-content: center;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.nav a,
.nav-dropdown button,
.nav-dropdown-trigger,
.contact-button,
.catalogue-button,
.login-button,
.button {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav-dropdown button:hover,
.nav-dropdown-trigger:hover {
  color: var(--white);
  transform: scale(1.07);
}

.contact-button:hover,
.catalogue-button:hover,
.login-button:hover {
  transform: scale(1.07);
}

.nav a[aria-current="page"] {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button,
.nav-dropdown-trigger {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: max-content;
  min-width: 220px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 6, 8, 0.94);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, -8px, 0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}

.nav-dropdown-menu span {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  white-space: nowrap;
}

.nav-dropdown-menu span:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  gap: 8px;
  justify-content: end;
}

.catalogue {
  position: relative;
}

.mobile-menu-button,
.contact-button,
.catalogue-button,
.login-button {
  min-height: 42px;
  width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-button span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.catalogue-button svg,
.contact-button svg,
.login-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-icon-button {
  position: relative;
}

.header-icon-button::after {
  position: absolute;
  right: 50%;
  top: calc(100% + 10px);
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 6, 8, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  content: attr(data-tooltip);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(50%, -5px, 0);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.header-icon-button:hover::after,
.header-icon-button:focus-visible::after {
  opacity: 1;
  transform: translate3d(50%, 0, 0);
}

.catalogue .header-icon-button::after {
  right: auto;
  left: 50%;
  transform: translate3d(-50%, -5px, 0);
}

.catalogue .header-icon-button:hover::after,
.catalogue .header-icon-button:focus-visible::after {
  transform: translate3d(-50%, 0, 0);
}

.contact-button:hover,
.catalogue-button:hover,
.catalogue.is-open .catalogue-button,
.mobile-menu-button:hover,
.site-header.menu-open .mobile-menu-button,
.login-button:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.48);
}

.mobile-menu {
  display: none;
}

.catalogue-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(300px, calc(100vw - 32px));
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #050608;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -8px, 0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.catalogue.is-open .catalogue-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.catalogue-menu a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px;
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--white);
  font-size: 12px;
}

.catalogue-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.catalogue-menu span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: max(790px, 102vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(150px, 13vw, 240px);
  height: 104px;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0), rgba(5, 6, 8, 0.98) 42%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.98), rgba(5, 6, 8, 0.72));
  pointer-events: none;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -2;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1.12);
  transform-origin: center;
  transition: transform 90ms linear;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 14, 0.72), rgba(8, 11, 14, 0.3) 46%, rgba(8, 11, 14, 0.04)),
    linear-gradient(0deg, rgba(8, 11, 14, 0.68), rgba(8, 11, 14, 0.02) 45%);
}

.hero-video-label {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 262px;
  width: min(720px, 70vw);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Arkitech Light", "Arkitech", "Eurostile", "Bank Gothic", "Rajdhani", ui-monospace, monospace;
  font-size: clamp(13px, 1.15vw, 19px);
  font-weight: 300;
  letter-spacing: 0.095em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(50%);
  white-space: nowrap;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: clamp(112px, 16vh, 150px);
  left: clamp(18px, 4vw, 56px);
  width: min(520px, calc(100% - 36px));
  margin: 0;
}

.hero-product-mark,
.hero-award {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 76px);
}

.hero-product-mark {
  top: clamp(112px, 15vh, 150px);
  display: flex;
  align-items: baseline;
  justify-content: end;
  gap: 0.18em;
  color: var(--white);
  opacity: 0.6;
  text-align: right;
  text-transform: uppercase;
}

.hero-product-mark span {
  font-size: clamp(21px, 2.8vw, 42px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-product-mark em {
  font-size: clamp(11px, 1.4vw, 21px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.hero-award {
  top: clamp(260px, 38vh, 330px);
  width: clamp(106px, 12.8vw, 184px);
  height: auto;
  opacity: 0.94;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.hero-award img {
  width: 100%;
  height: auto;
}

.hero-award:hover,
.hero-award:focus-visible {
  opacity: 1;
  transform: scale(1.1);
  filter:
    drop-shadow(0 22px 42px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.18));
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--signal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(32px, 4.1vw, 53px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 70px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.05;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.5;
}

.hero-content h1,
.hero-copy {
  opacity: 0.72;
}

.hero-actions {
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

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

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-stats {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 134px;
  left: clamp(18px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats article {
  min-height: 112px;
  padding: 22px clamp(14px, 3vw, 34px) 0 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
}

.hero-updates {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 24px;
  left: clamp(18px, 5vw, 76px);
  z-index: 3;
}

.hero-updates .eyebrow {
  margin: 0 0 -1px;
  color: var(--signal);
}

.hero-updates .event-bar {
  margin: 0;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(72px, 11vw, 150px) 0;
}

.section-band {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
}

.intro-copy-block p {
  margin: 36px 0 0;
  font-size: 20px;
}

.intro-copy-block .button {
  width: fit-content;
  margin-top: 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading .eyebrow {
  align-self: start;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.section-heading.narrow p:last-child {
  margin-top: 22px;
}

.social-updates {
  padding: clamp(28px, 4vw, 54px) 0;
}

.social-heading {
  display: block;
  margin-bottom: 4px;
}

.social-heading .eyebrow {
  margin-bottom: 0;
}

.featured-products {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
}

.system-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: clamp(26px, 4.5vw, 64px);
  align-items: stretch;
}

.system-feature figure,
.reach figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
}

.system-feature .product-figure-contain {
  background: var(--white);
}

.system-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.product-figure-contain img {
  object-fit: contain;
  object-position: center;
  padding: clamp(6px, 1.2vw, 14px);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.kicker {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--signal);
  background: rgba(229, 56, 44, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  font-weight: 700;
}

.system-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 14px;
  margin-top: 14px;
}

.system-strip img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  background: #050608;
}

.components {
  background: var(--white);
}

.component-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 56px;
}

.component-track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  will-change: transform;
}

.component-card {
  min-width: 0;
  flex: 0 0 calc((100% - 32px) / 3);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.systems-carousel .component-card {
  flex-basis: auto;
}

.systems-carousel {
  overflow: visible;
  padding: 0;
}

.systems-carousel .component-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.components .component-card {
  flex-basis: calc((100% - 48px) / 4);
  border-color: rgba(255, 255, 255, 0.12);
  background: #242628;
  color: var(--white);
  box-shadow: 0 18px 46px rgba(7, 10, 13, 0.12);
}

.component-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.components .component-card > img {
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #d7d8db;
}

.systems-carousel .component-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d7d8db;
}

.systems-carousel .component-card:first-child img {
  object-fit: contain;
  padding: clamp(2px, 0.7vw, 8px);
}

.component-card > div {
  padding: 18px;
}

.component-card h3 {
  min-height: 52px;
  margin-bottom: 12px;
  font-size: clamp(18px, 1.45vw, 24px);
}

.system-card-title {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.system-card-title h3 {
  min-height: 0;
  margin-bottom: 0;
}

.xworks-badge {
  position: relative;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -24px;
  border: 1px solid rgba(10, 14, 19, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  cursor: help;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.systems-carousel .component-card .xworks-badge img,
.xworks-badge img {
  width: 102px;
  height: 102px;
  max-width: 102px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent !important;
  border-radius: 999px;
  filter: grayscale(1) contrast(1.06);
}

.xworks-badge:hover,
.xworks-badge:focus-visible {
  border-color: rgba(10, 14, 19, 0.24);
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.04);
}

.components .component-card h3 {
  color: var(--white);
}

.component-card details {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.components .component-card details {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.component-card summary {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.component-card summary::after {
  content: "+";
  font-size: 16px;
  line-height: 1;
}

.component-card details[open] summary::after {
  content: "-";
}

.component-card summary::marker {
  color: var(--signal);
}

.component-card p {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.components .component-card p {
  color: rgba(255, 255, 255, 0.76);
}

.component-card ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.components .component-card ul {
  color: rgba(255, 255, 255, 0.76);
}

.component-download {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0 11px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.component-download svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.product-page {
  background: var(--white);
}

.product-hero {
  min-height: 88vh;
  padding: clamp(124px, 13vw, 190px) 0 clamp(58px, 7vw, 100px);
  display: grid;
  align-items: end;
  background: #090d12;
  color: var(--white);
  overflow: hidden;
}

.product-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
}

.product-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
}

.product-hero-copy p {
  max-width: 640px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
}

.product-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d7d8db;
}

.product-hero-media img,
.product-hero-media video {
  width: 100%;
  min-height: clamp(340px, 38vw, 620px);
  display: block;
  object-fit: cover;
}

.product-hero-media.contain img {
  object-fit: contain;
  padding: clamp(10px, 1.5vw, 22px);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
}

.product-detail-grid h2 {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
}

.product-copy-stack {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.product-copy-stack .button {
  width: fit-content;
  margin-top: 8px;
}

.product-spec-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(38px, 6vw, 72px);
  background: var(--line);
  border: 1px solid var(--line);
}

.product-spec-panel article {
  min-height: 150px;
  padding: clamp(18px, 2vw, 28px);
  background: #f4f4f2;
}

.product-spec-panel strong {
  display: block;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-spec-panel span {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.08;
}

.product-footer-legal {
  color: rgba(10, 14, 19, 0.62);
  border-top: 1px solid var(--line);
}

.product-footer-legal a {
  color: rgba(10, 14, 19, 0.86);
}

.product-footer-legal .back-to-top {
  border-color: rgba(10, 14, 19, 0.18);
  background: rgba(10, 14, 19, 0.04);
}

.component-carousel-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.component-arrow {
  position: absolute;
  top: clamp(88px, 9vw, 138px);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  pointer-events: auto;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.component-arrow-left {
  left: 0;
}

.component-arrow-right {
  right: 0;
}

.component-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.component-arrow:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.06);
}

.c3p-software {
  position: relative;
  min-height: max(720px, 96vh);
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #050608;
  isolation: isolate;
}

.c3p-video,
.c3p-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.c3p-video {
  z-index: -2;
  object-fit: cover;
}

.c3p-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.82), rgba(5, 6, 8, 0.34) 48%, rgba(5, 6, 8, 0.18)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.7), rgba(5, 6, 8, 0.05) 56%);
}

.c3p-copy {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(52px, 8vw, 104px);
}

.c3p-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.c3p-copy h2 {
  max-width: 900px;
}

.c3p-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 30px;
}

.c3p-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.capability-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 300px);
  gap: clamp(32px, 7vw, 120px);
  align-items: center;
}

.capability-heading .section-heading {
  margin-bottom: 0;
}

.capability-xworks {
  position: relative;
  justify-self: center;
  width: clamp(150px, 16vw, 230px);
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: help;
}

.capability-xworks img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(1);
  transition: opacity 180ms ease, transform 180ms ease;
}

.capability-xworks:hover img,
.capability-xworks:focus-visible img {
  opacity: 1;
  transform: scale(1.035);
}

.capability-xworks span {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  z-index: 6;
  width: min(420px, 80vw);
  padding: 14px 16px;
  border: 1px solid rgba(10, 14, 19, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(5, 6, 8, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.capability-xworks:hover span,
.capability-xworks:focus-visible span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.capability-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.capability-grid img,
.capability-grid video {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.capability-grid div {
  padding: 24px;
}

.capability-grid h3 {
  font-size: 23px;
}

.capability-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.cinematic-band {
  position: relative;
  width: 100vw;
  height: clamp(260px, 42vw, 540px);
  margin: 0 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
  border-radius: 0;
  background: var(--steel);
  isolation: isolate;
}

.cinematic-band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.9);
}

.cinematic-band::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 11, 14, 0.68), rgba(8, 11, 14, 0.1)),
    linear-gradient(0deg, rgba(8, 11, 14, 0.34), rgba(8, 11, 14, 0));
}

.cinematic-overlay {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 5vw, 64px);
  bottom: clamp(22px, 5vw, 56px);
  max-width: 520px;
  color: var(--white);
}

.cinematic-overlay span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cinematic-overlay p {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.05;
}

.reach {
  padding: clamp(44px, 6vw, 82px) 0;
}

.reach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.reach-grid p {
  max-width: 620px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.55;
}

.section-link {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid rgba(10, 14, 19, 0.26);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.section-link:hover {
  border-color: rgba(10, 14, 19, 0.56);
  background: rgba(10, 14, 19, 0.06);
  transform: translateY(-1px);
}

.reach h2 {
  max-width: 620px;
  font-size: clamp(34px, 4.3vw, 58px);
}

.reach figure {
  position: relative;
  width: min(430px, 100%);
  padding: clamp(18px, 3vw, 36px);
  background: transparent;
  border: 0;
  justify-self: center;
}

.reach img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  opacity: 0.82;
  mix-blend-mode: multiply;
}

.reach figure::after {
  position: absolute;
  inset: clamp(18px, 3vw, 36px);
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 63% 28%, var(--signal) 0 4px, transparent 4.5px),
    radial-gradient(circle at 69% 37%, var(--signal) 0 3px, transparent 3.5px),
    radial-gradient(circle at 58% 45%, var(--signal) 0 3px, transparent 3.5px),
    radial-gradient(circle at 73% 55%, var(--signal) 0 4px, transparent 4.5px),
    radial-gradient(circle at 52% 58%, var(--signal) 0 3px, transparent 3.5px),
    radial-gradient(circle at 80% 67%, var(--signal) 0 3px, transparent 3.5px),
    radial-gradient(circle at 46% 72%, var(--signal) 0 4px, transparent 4.5px),
    radial-gradient(circle at 37% 48%, var(--signal) 0 3px, transparent 3.5px),
    radial-gradient(circle at 29% 36%, var(--signal) 0 3px, transparent 3.5px),
    radial-gradient(circle at 21% 58%, var(--signal) 0 3px, transparent 3.5px),
    radial-gradient(circle at 34% 76%, var(--signal) 0 3px, transparent 3.5px);
  opacity: 0.9;
}

.story {
  padding-top: 0;
}

.story-carousel {
  position: relative;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 42vw);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.story-grid::-webkit-scrollbar {
  display: none;
}

.story-carousel .story-grid img {
  width: 100%;
  height: clamp(310px, 42vw, 560px);
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%) saturate(0%) contrast(1.22) brightness(0.82) !important;
  scroll-snap-align: start;
  cursor: zoom-in;
  transition: filter 260ms ease, transform 260ms ease;
}

.story-carousel .story-grid img:hover {
  filter: grayscale(0%) saturate(100%) contrast(1) brightness(1) !important;
  transform: scale(1.012);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 6, 8, 0.58);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-arrow:hover {
  background: rgba(5, 6, 8, 0.82);
  transform: translateY(-50%) scale(1.06);
}

.gallery-arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.gallery-arrow-left {
  left: 14px;
}

.gallery-arrow-right {
  right: 14px;
}

.gallery-lightbox {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(5, 6, 8, 0.82);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  width: min(78%, 940px);
  height: 78%;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

.social-update-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 8px;
  color: var(--white);
  background: var(--steel);
  isolation: isolate;
}

.social-update-card::before,
.social-update-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.social-update-card::before {
  z-index: -2;
  background: center / cover;
  filter: grayscale(1) contrast(1.12) brightness(0.82);
  transform: scale(1.04);
  transition: filter 220ms ease, transform 220ms ease;
}

.linkedin-card::before {
  background-image: url("assets/social-linkedin-post.jpg");
}

.instagram-card::before {
  background-image: url("assets/social-instagram-post.jpg");
}

.youtube-card::before {
  background-image: url("assets/aircraft-over-water.jpg");
}

.social-update-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 13, 16, 0.08), rgba(10, 13, 16, 0.9)),
    linear-gradient(90deg, rgba(10, 13, 16, 0.62), rgba(10, 13, 16, 0.1));
}

.social-update-card:hover::before {
  filter: grayscale(0.78) contrast(1.12) brightness(0.88);
  transform: scale(1.07);
}

.social-update-card .social-platform {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.social-platform svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.social-update-card h3 {
  max-width: 480px;
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 30px);
}

.social-update-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.5;
}

.social-update-card a {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
}

.social-update-card a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact {
  padding: clamp(72px, 10vw, 130px) 0 clamp(26px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 17, 21, 0.94), rgba(13, 17, 21, 0.74)),
    url("assets/field-setup.jpg") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(560px, 0.9fr);
  column-gap: clamp(28px, 5vw, 76px);
  row-gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.contact h2 {
  max-width: 720px;
}

.contact p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

address {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto auto auto 1fr;
  align-items: center;
  gap: 12px clamp(18px, 3vw, 34px);
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 0;
  font-style: normal;
}

address span,
address a {
  color: rgba(255, 255, 255, 0.72);
}

address a:hover {
  color: var(--white);
}

.map-link {
  width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.map-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.map-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.contact-side {
  align-self: start;
}

.contact-form {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  padding: clamp(16px, 2.2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-message {
  position: relative;
  grid-column: 1 / -1;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(7, 10, 13, 0.5);
  font: inherit;
  line-height: 1.45;
}

.contact-form textarea {
  min-height: 120px;
  padding-right: 142px;
  padding-bottom: 58px;
  resize: vertical;
}

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

.contact-form button {
  width: fit-content;
  min-width: 0;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-submit {
  grid-column: 1 / -1;
  justify-self: end;
  align-self: end;
  margin: -52px 12px 12px 0;
  position: relative;
  z-index: 2;
}

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

.social-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links {
  margin-top: 12px;
}

address .social-links {
  align-items: center;
  justify-self: end;
  margin-top: 0;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.social-links a svg,
.footer-social a svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: currentColor;
}

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

.event-bar {
  width: 100%;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  background: #080b0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.event-bar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 7px 0 10px;
}

.event-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-items a,
.event-demo {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.event-items strong {
  color: var(--white);
  font-size: 12px;
}

.event-items span {
  color: rgba(255, 255, 255, 0.55);
}

.event-demo {
  color: var(--white);
  font-weight: 800;
}

.event-items a:hover,
.event-demo:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  transform: scale(1.04);
}

.footer-compliance-logos {
  grid-column: 1 / -1;
  width: 100%;
  margin: clamp(4px, 1vw, 10px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(18px, 4vw, 70px);
  padding-top: clamp(16px, 2.5vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.7;
}

.footer-compliance-logos figure {
  position: relative;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: visible;
}

.footer-compliance-logos img {
  width: auto;
  height: auto;
  max-width: min(86%, 182px);
  max-height: 55px;
  object-fit: contain;
  flex: 0 1 auto;
}

.footer-compliance-logos figure:nth-child(2) img {
  max-width: min(92%, 231px);
  max-height: 43px;
}

.footer-compliance-logos figure:nth-child(3) img {
  max-width: min(78%, 155px);
  max-height: 62px;
}

.footer-compliance-logos figure:nth-child(4) img {
  max-width: min(86%, 190px);
  max-height: 55px;
}

.footer-compliance-logos figcaption {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 4;
  width: min(260px, 82vw);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(5, 6, 8, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-compliance-logos figure:hover figcaption,
.footer-compliance-logos figure:focus-within figcaption {
  opacity: 1;
  transform: translate(-50%, 0);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0 max(20px, env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  position: relative;
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.contact > .footer-legal {
  margin-top: clamp(14px, 2vw, 28px);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  backdrop-filter: none;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

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

.footer-legal .js-legals-modal {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.back-to-top {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.back-to-top:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.56);
  transform: translateY(-2px);
}

.legal-page {
  padding: 150px 0 80px;
  background: var(--paper);
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(25px, 3.1vw, 36px);
  line-height: 1.04;
}

.legal-content h2 {
  margin: 22px 0 6px;
  font-size: clamp(15px, 1.55vw, 20px);
  color: var(--ink);
}

.legal-content p {
  margin-bottom: 8px;
  font-size: 11.5px;
  line-height: 1.5;
}

.legal-content ul {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.legals-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 46px);
  background: rgba(2, 3, 5, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.legals-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legals-modal-panel {
  position: relative;
  width: min(900px, 94vw);
  max-height: min(760px, 86vh);
  overflow: auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(5, 7, 9, 0.88);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.legals-modal.is-open .legals-modal-panel {
  transform: translateY(0) scale(1);
}

.legals-modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  width: 34px;
  height: 34px;
  margin: -8px -8px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
}

.legals-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.legals-modal-content {
  max-width: 760px;
}

.legals-modal-content .eyebrow {
  margin-bottom: 8px;
  font-size: 9px;
}

.legals-modal-content h1 {
  max-width: 420px;
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(18px, 2.3vw, 26px);
  line-height: 1.08;
}

.legals-modal-content h2 {
  margin: 16px 0 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.2;
}

.legals-modal-content p,
.legals-modal-content li {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9.5px;
  line-height: 1.45;
}

.legals-modal-content p {
  margin-bottom: 7px;
}

.legals-modal-content ul {
  display: grid;
  gap: 3px;
  margin: 7px 0;
  padding-left: 16px;
}

.about-hero {
  position: relative;
  min-height: max(620px, 82vh);
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 76px) clamp(54px, 8vw, 96px);
  color: var(--white);
  background: #050608;
  isolation: isolate;
}

.about-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.78), rgba(5, 6, 8, 0.24)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.68), rgba(5, 6, 8, 0.04));
}

.about-hero > img,
.about-hero > video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04);
}

.about-hero-copy {
  width: min(780px, 100%);
}

.about-hero-copy p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 24px);
}

.about-overview-grid,
.about-split,
.careers-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
}

.about-copy-stack p {
  margin-bottom: 22px;
  font-size: 19px;
}

.about-proof {
  color: var(--white);
  background: #050608;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.about-proof-grid article {
  min-height: 150px;
  padding: 26px clamp(16px, 3vw, 34px) 0 0;
}

.about-proof-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1;
}

.about-proof-grid span {
  display: block;
  max-width: 220px;
  color: rgba(255, 255, 255, 0.68);
}

.global-partners {
  background: #fff;
}

.partners-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.partners-grid h2 {
  max-width: 560px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.95;
}

.partners-map {
  grid-column: 1 / -1;
  margin: 0;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(10, 14, 19, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(232, 236, 238, 0.76), transparent 42%),
    #fff;
}

.partners-map svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
}

.partners-map .map-land {
  fill: rgba(10, 14, 19, 0.13);
}

.partners-map .map-land-soft {
  fill: rgba(10, 14, 19, 0.09);
}

.partners-map .map-point circle {
  fill: var(--signal);
  stroke: #fff;
  stroke-width: 3px;
}

.partners-map .map-point text {
  fill: var(--ink);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

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

.partner-list article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(10, 14, 19, 0.12);
  border-radius: 8px;
  background: rgba(10, 14, 19, 0.035);
}

.partner-list h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.partner-list p {
  margin: 0;
  color: var(--muted);
}

.partner-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-list li {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 14, 19, 0.1);
}

.partner-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.partner-list strong {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-list span {
  color: var(--ink);
  font-weight: 800;
}

.partner-list a {
  width: fit-content;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.partner-list a:hover {
  color: var(--signal);
}

.about-split {
  align-items: center;
}

.about-split figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
}

.about-split img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.about-split p {
  margin-top: 24px;
}

.about-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.careers {
  background: var(--paper);
}

.careers-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.careers-panel p {
  font-size: 19px;
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 30px;
}

.career-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.about-contact {
  padding: clamp(62px, 8vw, 100px) 0;
}

.editor-body {
  min-height: 100vh;
  background: var(--mist);
}

.editor-shell {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  min-height: 100vh;
}

.editor-panel {
  height: 100vh;
  overflow: auto;
  padding: 32px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.editor-topbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.editor-topbar h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.editor-help {
  margin-bottom: 28px;
  font-size: 15px;
}

.editor-form {
  display: grid;
  gap: 14px;
}

.editor-form h2 {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.editor-form h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.editor-field {
  display: grid;
  gap: 7px;
}

.editor-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.editor-field input,
.editor-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  line-height: 1.45;
}

.editor-field textarea {
  resize: vertical;
}

.editor-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px -32px 0;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.button-dark {
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button-subtle,
.editor-preview-link {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.editor-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--signal);
  font-size: 14px;
}

.preview-panel {
  min-width: 0;
  padding: 18px;
}

.preview-panel iframe {
  width: 100%;
  height: calc(100vh - 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

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

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(5, 6, 8, 0.96);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(0, -8px, 0);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu a,
  .mobile-menu summary {
    min-height: 40px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu a:hover,
  .mobile-menu summary:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-menu details {
    display: grid;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu details span {
    display: block;
    padding: 7px 12px 7px 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-content {
    top: 104px;
    left: 18px;
    width: min(460px, calc(100% - 36px));
  }

  .hero-product-mark {
    top: 106px;
  }

  .hero-award {
    top: auto;
    right: 18px;
    bottom: 196px;
    width: 114px;
  }

  .hero-stats,
  .intro-grid,
  .section-heading,
  .capability-heading,
  .system-feature,
  .product-hero .section-inner,
  .product-detail-grid,
  .reach-grid,
  .contact-grid,
  .about-overview-grid,
  .about-split,
  .careers-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-message {
    grid-column: 1 / -1;
  }

  .contact-submit {
    justify-self: end;
  }

  .contact-form button {
    min-height: 34px;
  }

  .hero-stats {
    gap: 0;
  }

  .hero-stats article {
    min-height: auto;
    padding: 18px 12px 0 0;
  }

  .system-feature img {
    min-height: 360px;
  }

  .system-strip,
  .capability-grid,
  .social-update-grid {
    grid-template-columns: 1fr;
  }

  .capability-xworks {
    justify-self: start;
    width: min(180px, 46vw);
  }

  .capability-xworks span {
    right: auto;
    left: 0;
    width: min(360px, calc(100vw - 32px));
  }

  .component-card {
    flex-basis: calc((100% - 32px) / 3);
  }

  .component-carousel {
    padding: 0 48px;
  }

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

  .story-grid {
    grid-auto-columns: minmax(280px, 72vw);
  }

  .editor-shell {
    grid-template-columns: 1fr;
  }

  .editor-panel {
    height: auto;
    overflow: visible;
    border-right: 0;
  }

  .preview-panel {
    display: none;
  }

  .partners-grid,
  .partner-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .component-card {
    flex-basis: calc((100% - 32px) / 3);
  }

  .components .component-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 149px;
  }

  .contact-button,
  .catalogue-button,
  .mobile-menu-button,
  .login-button {
    min-height: 38px;
    width: 40px;
  }

  .hero {
    min-height: 1040px;
    min-height: max(1040px, 112svh);
  }

  .hero-video {
    object-position: center center;
  }

  .c3p-software {
    min-height: 760px;
    min-height: max(760px, 92svh);
  }

  .about-hero {
    min-height: 680px;
    padding: 110px 16px 42px;
  }

  .hero-content {
    width: calc(100% - 32px);
    top: 92px;
    left: 16px;
    margin: 0;
  }

  .hero-video-label {
    right: 50%;
    bottom: 380px;
    width: calc(100% - 32px);
    font-size: 9px;
    letter-spacing: 0.075em;
    text-align: center;
    transform: translateX(50%);
  }

  .hero-product-mark {
    top: 86px;
    right: 16px;
    opacity: 0.6;
  }

  .hero-product-mark span {
    font-size: 18px;
  }

  .hero-product-mark em {
    font-size: 9px;
  }

  .hero-award {
    right: 22px;
    bottom: 420px;
    width: 83px;
  }

  .hero-actions {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    bottom: 190px;
  }

  .hero-stats article {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: baseline;
    min-height: 54px;
    padding-top: 12px;
  }

  .hero-stats span {
    white-space: normal;
  }

  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .about-proof-grid article {
    min-height: auto;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .about-split img {
    min-height: 320px;
  }

  .reach figure {
    width: min(300px, 100%);
  }

  .story-carousel {
    width: calc(100% - 32px);
  }

  .story-grid {
    grid-auto-columns: minmax(250px, 84vw);
  }

  .story-grid img {
    height: 320px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-stats span {
    max-width: none;
  }

  .feature-copy {
    padding: 24px 0;
  }

  .product-hero {
    min-height: auto;
    padding: 116px 0 54px;
  }

  .product-hero .section-inner {
    gap: 28px;
  }

  .product-hero-copy h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .product-hero-media img,
  .product-hero-media video {
    min-height: 280px;
  }

  .product-spec-panel {
    grid-template-columns: 1fr;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .component-card {
    flex-basis: min(82vw, 320px);
  }

  .components .component-card {
    flex-basis: min(82vw, 320px);
  }

  .systems-carousel .component-card {
    flex-basis: auto;
  }

  .systems-carousel .component-track {
    grid-template-columns: 1fr;
  }

  .component-carousel {
    padding: 0 42px;
  }

  .component-arrow {
    top: 118px;
    width: 38px;
    height: 38px;
  }

  .component-card h3 {
    min-height: auto;
  }

  .system-card-title {
    grid-template-columns: minmax(0, 1fr) 70px;
    min-height: 64px;
  }

  .xworks-badge {
    width: 70px;
    height: 70px;
    flex-basis: 70px;
    margin-top: -18px;
  }

  .xworks-badge img {
    width: 64px;
    height: 64px;
    max-width: 64px;
  }

  .event-bar-inner {
    display: grid;
    justify-items: start;
    min-height: 0;
    padding: 0 0 12px;
  }

  .hero-updates {
    right: 16px;
    bottom: 34px;
    left: 16px;
  }

  .event-items a {
    width: fit-content;
    justify-content: flex-start;
  }

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

  .contact-message {
    grid-column: auto;
  }

  .contact-form button {
    width: fit-content;
  }

  .contact {
    padding-bottom: max(96px, calc(76px + env(safe-area-inset-bottom)));
  }

  address {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 12px;
    align-items: center;
  }

  address strong {
    grid-column: 1 / -1;
  }

  address span {
    grid-column: 1;
  }

  address .map-link {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  address > a:not(.map-link) {
    grid-column: 1 / -1;
  }

  address .social-links {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-compliance-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
  }

  .footer-compliance-logos figure {
    height: 58px;
  }

  .footer-compliance-logos img {
    max-height: 44px;
  }

  .footer-compliance-logos figure:nth-child(2) img {
    max-height: 34px;
  }

  .footer-legal {
    width: calc(100% - 32px);
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 18px 0 max(32px, env(safe-area-inset-bottom));
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    background: transparent;
  }

  .contact > .footer-legal {
    margin: 14px auto 0;
  }

  .footer-legal a {
    color: rgba(255, 255, 255, 0.92);
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.44);
  }

  .footer-social {
    justify-content: start;
  }

  .editor-panel {
    padding: 22px 16px;
  }

  .editor-topbar {
    display: grid;
  }

  .editor-actions {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }
}
