/* BauPoint Freight-inspired layer — original CSS, not Framer source */

.fx-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: max(1.05rem, env(safe-area-inset-top)) clamp(1rem, 3vw, 1.75rem) .85rem;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  pointer-events: none;
}
.fx-nav-inner,
.fx-mobile { pointer-events: auto; }
.fx-nav-inner {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

/* Sortiment: Filtern docks beside nav pills when scrolled — out of flow so pills never shift */
.fx-nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-width: 0;
  position: relative;
}
.nav-filter-fab {
  position: absolute;
  left: calc(100% + .45rem);
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 2.85rem;
  height: 2.85rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--bp-green);
  color: #fff;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) scale(.9);
  transition:
    opacity .32s cubic-bezier(.22, 1, .36, 1),
    transform .38s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear .32s,
    background-color .2s ease,
    color .2s ease;
}
.nav-filter-fab[hidden] {
  display: inline-flex !important;
}
.nav-filter-fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
  transition-delay: 0s;
}
.nav-filter-fab.is-open {
  background: #1b4d42;
  color: #fff;
  box-shadow: none;
  transform: translateY(-50%) scale(1);
}
.nav-filter-fab-orb {
  display: none;
}
.nav-filter-fab-ico,
.nav-filter-fab .icon {
  width: 1.15rem;
  height: 1.15rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.nav-filter-fab-txt {
  display: none;
  position: relative;
  z-index: 1;
}
.nav-filter-fab-badge {
  position: absolute;
  top: -.15rem;
  right: -.15rem;
  z-index: 2;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 .28rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  line-height: 1;
  border: 1.5px solid #fff;
}
.nav-filter-fab.is-open .nav-filter-fab-badge {
  background: var(--bp-green);
  border-color: #fff;
}
@media (min-width: 1040px) {
  .nav-filter-fab {
    width: auto;
    height: auto;
    min-height: 2.95rem;
    padding: .75rem 1.25rem;
  }
  .nav-filter-fab-txt { display: inline; }
  .nav-filter-fab-badge {
    top: .15rem;
    right: .15rem;
  }
}
@media (max-width: 1039px) {
  .fx-nav--sortiment .fx-pills {
    pointer-events: auto;
  }
  .fx-nav--sortiment .nav-filter-fab.is-visible {
    pointer-events: auto;
  }
}
.fx-pills {
  display: none;
  gap: .45rem;
  flex-wrap: nowrap;
  justify-self: center;
  align-items: center;
  transition: opacity .22s ease, transform .22s ease;
}
.fx-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.85rem;
  padding: .88rem 1.5rem;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: #fff;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
  transform: none !important;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.fx-pills a:hover,
.fx-pills a:focus-visible,
.fx-pills a:active {
  background: rgba(255,255,255,.38);
  border-color: rgba(255,255,255,.45);
  color: #fff;
  transform: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
.fx-pills a.active {
  background: var(--bp-red);
  border-color: var(--bp-red);
  color: #fff;
  box-shadow: none;
  transform: none;
}

/* Logo — official file as-is, left side */
.fx-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  padding: 0;
  margin: 0;
  border: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-radius: 0;
}
.fx-logo-img {
  display: block;
  height: clamp(2.35rem, 3.6vw, 2.85rem);
  width: auto;
  aspect-ratio: 1;
}
.fx-logo:hover,
.fx-logo:focus-visible {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.fx-nav-right {
  display: flex;
  align-items: center;
  gap: .65rem;
  justify-self: end;
}
.fx-cta {
  padding: .92rem 1.6rem !important;
  font-size: .92rem !important;
  min-width: 11rem;
  box-shadow: none !important;
}

/* Toggle: white + closed → white circle + red X when open */
.fx-nav .nav-toggle {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(20, 20, 20, .42);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-radius: 999px;
  cursor: pointer;
  color: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.fx-nav .nav-toggle .nav-x {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}
.fx-nav .nav-toggle .nav-x-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.05rem;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: background-color .28s ease;
}
.fx-nav .nav-toggle .nav-x-bar + .nav-x-bar {
  transform: translate(-50%, -50%) rotate(90deg);
}
.fx-nav .nav-toggle:hover .nav-x,
.fx-nav .nav-toggle:focus-visible .nav-x {
  transform: scale(1.08);
}
.fx-nav .nav-toggle[aria-expanded="true"] {
  background: #fff;
  border-color: rgba(15, 15, 15, .1);
  box-shadow: 0 4px 14px rgba(15, 15, 15, .08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.fx-nav .nav-toggle[aria-expanded="true"] .nav-x {
  transform: rotate(45deg) scale(1.05);
}
.fx-nav .nav-toggle[aria-expanded="true"] .nav-x-bar {
  background: var(--bp-red);
}

/* Mobile panel — transparent shell, wide pills only */
.fx-mobile {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  width: min(1180px, calc(100% - 1.5rem));
  margin: .55rem auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transform-origin: calc(100% - 1.05rem) -2.55rem;
  transform: scale(.92) translateY(-.35rem);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    transform .32s cubic-bezier(.22, 1, .36, 1),
    opacity .22s ease,
    visibility 0s linear .32s;
}
.fx-mobile.open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition:
    transform .32s cubic-bezier(.22, 1, .36, 1),
    opacity .2s ease,
    visibility 0s linear 0s;
}
.fx-mobile[hidden] { display: none !important; }

/* Stacked wide pills — same language as desktop nav */
.fx-mobile-stack {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.fx-mobile-stack a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.35rem;
  color: var(--ink);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: -.01em;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid rgba(15, 15, 15, .08);
  border-radius: 999px;
  margin: 0;
  box-shadow: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.fx-mobile-stack a:hover,
.fx-mobile-stack a:focus-visible {
  background: #fff;
  border-color: rgba(15, 15, 15, .12);
  color: var(--ink);
}
.fx-mobile-stack a.active {
  background: var(--bp-red);
  border-color: var(--bp-red);
  color: #fff;
}
.fx-mobile-stack a.active:hover,
.fx-mobile-stack a.active:focus-visible {
  background: #b82a26;
  border-color: #b82a26;
  color: #fff;
}
.fx-mobile-stack a.fx-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  margin: .15rem 0 0;
  background: var(--bp-red);
  border: 1px solid var(--bp-red);
  color: #fff;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: -.01em;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color .2s ease, border-color .2s ease;
}
.fx-mobile-stack a.fx-mobile-cta:hover,
.fx-mobile-stack a.fx-mobile-cta:focus-visible {
  background: #b82a26;
  border-color: #b82a26;
  color: #fff;
}

.fx-nav--home .fx-mobile-stack a:not(.active):not(.fx-mobile-cta) {
  color: #fff;
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
}
.fx-nav--home .fx-mobile-stack a:not(.active):not(.fx-mobile-cta):hover,
.fx-nav--home .fx-mobile-stack a:not(.active):not(.fx-mobile-cta):focus-visible {
  background: rgba(255, 255, 255, .38);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}
.fx-nav--home.is-scrolled .fx-mobile-stack a:not(.active):not(.fx-mobile-cta),
.fx-nav--solid .fx-mobile-stack a:not(.active):not(.fx-mobile-cta) {
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border-color: rgba(15, 15, 15, .08);
  box-shadow: none;
}

.fx-nav--solid .fx-pills a,
.fx-nav.is-scrolled .fx-pills a {
  color: var(--ink);
  background: rgba(255,255,255,.82);
  border-color: rgba(15,15,15,.08);
  box-shadow: none;
}
.fx-nav--solid .fx-pills a.active,
.fx-nav--solid .fx-pills a:hover,
.fx-nav.is-scrolled .fx-pills a.active,
.fx-nav.is-scrolled .fx-pills a:hover {
  background: var(--bp-red);
  border-color: var(--bp-red);
  color: #fff;
  box-shadow: none;
}
.fx-nav--solid .fx-logo,
.fx-nav.is-scrolled .fx-logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.fx-nav--solid .nav-toggle,
.fx-nav.is-scrolled .nav-toggle {
  background: rgba(20, 20, 20, .88);
  border: 1px solid rgba(15, 15, 15, .12);
  color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.fx-nav--solid .nav-toggle .nav-x-bar,
.fx-nav.is-scrolled .nav-toggle .nav-x-bar {
  background: #fff;
}
.fx-nav--solid .nav-toggle[aria-expanded="true"],
.fx-nav.is-scrolled .nav-toggle[aria-expanded="true"] {
  background: #fff;
  border-color: rgba(15, 15, 15, .1);
  box-shadow: 0 4px 14px rgba(15, 15, 15, .08);
}
.fx-nav--solid .nav-toggle[aria-expanded="true"] .nav-x-bar,
.fx-nav.is-scrolled .nav-toggle[aria-expanded="true"] .nav-x-bar {
  background: var(--bp-red);
}

@media (min-width: 1040px) {
  .fx-pills { display: flex; }
  .fx-nav .nav-toggle { display: none; }
}
@media (min-width: 1180px) {
  .fx-pills a {
    min-width: 7.5rem;
    padding: .95rem 1.7rem;
    font-size: .96rem;
  }
}

/* Mobile chrome */
@media (max-width: 1039px) {
  .fx-nav {
    padding: max(.85rem, env(safe-area-inset-top)) .85rem .55rem;
  }
  .fx-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .65rem;
  }
  .fx-logo {
    position: relative;
    z-index: 2;
    order: 1;
    flex: 0 0 auto;
    margin-inline-end: auto;
    justify-self: start;
  }
  .fx-logo-img {
    height: 2.15rem;
  }
  /* Keep filter FAB centered without stealing left slot from the logo */
  .fx-nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    order: 0;
  }
  .fx-nav-center .nav-filter-fab.is-visible {
    pointer-events: auto;
  }
  .fx-nav-right {
    position: relative;
    z-index: 2;
    order: 2;
    flex: 0 0 auto;
    margin-inline-start: auto;
    justify-self: end;
    gap: .45rem;
  }
  .fx-cta {
    display: none !important;
  }
  .fx-nav .nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border-radius: 999px;
  }
  .fx-mobile {
    width: calc(100% - 1.2rem);
    margin: .45rem auto 0;
    padding: 0;
    border-radius: 0;
    gap: .45rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform-origin: calc(100% - .55rem) -2.35rem;
  }
  .fx-mobile.open {
    border-radius: 0;
  }
  .fx-mobile-stack {
    gap: .4rem;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  .fx-mobile-stack a,
  .fx-mobile-stack a.fx-mobile-cta {
    padding: 1rem 1.25rem;
    border-radius: 999px;
  }
  .fx-nav--solid .nav-toggle,
  .fx-nav.is-scrolled .nav-toggle {
    background: rgba(20, 20, 20, .88);
    border: 1px solid rgba(15, 15, 15, .12);
    color: transparent;
  }
  .fx-nav--solid .nav-toggle[aria-expanded="true"],
  .fx-nav.is-scrolled .nav-toggle[aria-expanded="true"] {
    background: #fff;
    border-color: rgba(15, 15, 15, .1);
  }
}

body { padding-top: 0; }
.site-main { padding-top: 0; }
body.is-inner .site-main { padding-top: 5.9rem; }
@media (max-width: 1039px) {
  body.is-inner .site-main { padding-top: 4.75rem; }
}

body.is-inner .page-hero {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}
body.is-inner .page-hero h1 { max-width: 16ch; }

/* Hero stage — app frame */
.fx-hero-stage {
  padding: .65rem .65rem 0;
}
.fx-hero-frame {
  position: relative;
  min-height: min(94vh, 920px);
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  background: #111;
  display: grid;
  place-items: center;
}
.fx-hero-media {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
  will-change: transform;
}
.fx-hero-slides {
  position: absolute;
  inset: 0;
}
.fx-hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 6s var(--ease);
  filter: saturate(.96) contrast(1.04);
}
.fx-hero-slides img.is-active {
  opacity: 1;
  transform: scale(1.02);
  z-index: 1;
}
.fx-hero-stage.in-view .fx-hero-slides img.is-active {
  transform: scale(1.01);
}
.fx-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15,15,15,.62) 0%, rgba(15,15,15,.42) 48%, rgba(15,15,15,.2) 100%),
    linear-gradient(180deg, rgba(15,15,15,.5) 0%, rgba(15,15,15,.12) 42%, rgba(15,15,15,.72) 100%);
  pointer-events: none;
}
.fx-hero-center {
  position: relative;
  z-index: 4;
  width: min(920px, calc(100% - 2.5rem));
  text-align: left;
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fx-hero-center h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  max-width: 14ch;
  line-height: 1.14;
  text-shadow: 0 10px 40px rgba(0,0,0,.28);
  overflow: visible;
}
.fx-hero-center .fx-hero-lead {
  margin: 1.1rem 0 0;
  max-width: 34ch;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
}

/* Floating slideshow card — bottom-right, clear of headline */
.fx-float-shot {
  position: absolute;
  z-index: 3;
  right: clamp(1.25rem, 4vw, 3rem);
  left: auto;
  top: auto;
  bottom: clamp(3.75rem, 8vh, 5.5rem);
  width: min(250px, 24vw);
  border-radius: 1.45rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  display: none;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 900px) {
  .fx-float-shot { display: block; }
  .fx-hero-center {
    width: min(560px, calc(100% - 320px));
    margin-left: clamp(1.75rem, 5vw, 3.5rem);
    margin-right: auto;
    padding-top: 0;
    justify-self: start;
    align-self: center;
  }
}
.fx-float-slides {
  position: relative;
  aspect-ratio: 5 / 3.4;
}
.fx-float-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}
.fx-float-slides img.is-active { opacity: 1; }
.fx-float-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: .85rem 1rem .95rem;
  background: linear-gradient(180deg, transparent, rgba(15,15,15,.82));
  color: #fff;
}
.fx-float-meta strong {
  display: block;
  font-size: .88rem;
  letter-spacing: -.01em;
}
.fx-float-meta span {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
}
.fx-float-dots {
  position: absolute;
  z-index: 3;
  top: .75rem;
  right: .75rem;
  display: flex;
  gap: .28rem;
}
.fx-float-dots button {
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transform: none;
}
.fx-float-dots button.is-active {
  background: var(--bp-yellow);
  width: .9rem;
}

.fx-hero-kinetic {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.85rem;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: .14;
  padding: .15em 0 .2em;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.fx-hero-kinetic-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  white-space: nowrap;
  font-size: clamp(2.4rem, 7vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1;
  will-change: transform;
}
.fx-play {
  display: none;
}
.fx-hero-cta {
  position: static;
  z-index: 4;
  margin-top: 1.45rem;
  transform: none;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.fx-hero-cta:hover,
.fx-hero-cta:focus-visible,
.fx-hero-cta:active {
  transform: none;
}
.fx-hero-progress {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
}
.fx-hero-progress button {
  width: 2rem;
  height: .28rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  padding: 0;
  transform: none;
  overflow: hidden;
}
.fx-hero-progress button.is-active { background: rgba(255,255,255,.55); }
.fx-hero-progress button.is-active::after {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  background: var(--bp-yellow);
  animation: heroBar 5.5s linear forwards;
}
@keyframes heroBar {
  from { width: 0; }
  to { width: 100%; }
}

/* Mission */
.fx-label {
  margin: 0 0 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: #9a9a9a;
}
.fx-mission-top {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
@media (min-width: 900px) {
  .fx-mission-top {
    grid-template-columns: .55fr 1.45fr;
    align-items: start;
  }
}
.fx-mission-top h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.85rem);
  line-height: 1.2;
  letter-spacing: -.03em;
  max-width: 22ch;
}
.fx-muted { color: #a3a3a3; }
.fx-mission-bottom {
  display: grid;
  gap: 2rem;
  align-items: end;
}
@media (min-width: 900px) {
  .fx-mission-bottom { grid-template-columns: .9fr 1.1fr; gap: 3rem; }
}
.fx-mission-shot {
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  min-height: 360px;
  background: var(--sand);
}
.fx-mission-shot img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.fx-mission-shot:hover img { transform: scale(1.05); }
.fx-num-row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  margin: 1.25rem 0 1.25rem;
}
.fx-num-row strong {
  display: block;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .45rem;
}
.fx-num-row span,
.fx-numbers-note {
  color: var(--muted);
  font-size: .95rem;
}
.fx-numbers-note { margin: 0; max-width: 28ch; }

/* Dark word-reveal CTA */
.fx-dark {
  position: relative;
  margin: 0 .65rem;
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background: #0f0f0f;
  color: #fff;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 7rem) 1.25rem 6.5rem;
  text-align: center;
}
.fx-dark-inner { width: min(900px, 100%); margin: 0 auto; position: relative; z-index: 2; }
.fx-wordline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem .55rem;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.fx-wordline [data-word] {
  color: rgba(255,255,255,.22);
  transition: color .45s ease;
}
.fx-wordline [data-word].on { color: #fff; }
.fx-dark-lead {
  color: rgba(255,255,255,.65);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.fx-network {
  display: block;
  width: min(820px, 100%);
  margin: 3.25rem auto 0;
  overflow: visible;
}
.fx-route {
  opacity: .95;
}
.fx-hubs circle {
  transform-box: fill-box;
  transform-origin: center;
}
.fx-packet {
  pointer-events: none;
}
.fx-packet circle:last-child {
  animation: packetShine 2.4s ease-in-out infinite;
}
@keyframes packetShine {
  0%, 100% { opacity: .88; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .fx-packet { display: none; }
}
.fx-notch {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  z-index: 3;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.fx-notch:hover {
  color: #fff;
  background: var(--bp-red);
  border-color: var(--bp-red);
}

/* Testimonials — full-bleed rail, vertical page scroll always wins */
.fx-quotes {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-inline: 0;
  overflow: clip;
}
.fx-quotes > .container {
  padding-inline: clamp(1rem, 4vw, 1.5rem);
  box-sizing: border-box;
}
.fx-quotes-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: end;
}
@media (min-width: 800px) {
  .fx-quotes-head {
    grid-template-columns: .6fr 1.4fr auto;
  }
}
.fx-quotes-head h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  max-width: 16ch;
}
.fx-quotes-bleed {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.fx-quotes-track {
  display: flex;
  gap: clamp(.85rem, 2vw, 1.15rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block: .15rem .5rem;
  padding-inline: 0;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}
.fx-quotes-track::-webkit-scrollbar { display: none; }
.fx-qcard {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  border-radius: clamp(1.5rem, 4vw, 2.75rem);
  overflow: hidden;
  min-height: 420px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 560px) {
  .fx-qcard {
    flex: 0 0 min(78vw, 280px);
    min-height: 340px;
    border-radius: 1.65rem;
  }
  .fx-qcard--photo img { min-height: 340px; }
  .fx-qcard--blue,
  .fx-qcard--ink,
  .fx-qcard--green,
  .fx-qcard--yellow {
    padding: 1.2rem 1.15rem 1.3rem;
  }
  .fx-qcard strong {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .fx-qcard p {
    font-size: .92rem;
    line-height: 1.4;
    margin: .85rem 0;
  }
  .fx-qcard cite {
    font-size: .78rem;
  }
}
.fx-qcard--photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.fx-qcard-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.25rem 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(15,15,15,.82));
  color: #fff;
  box-sizing: border-box;
}
.fx-qcard-caption strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -.015em;
  overflow-wrap: break-word;
}
.fx-qcard-caption span {
  display: block;
  margin-top: .25rem;
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  overflow-wrap: break-word;
}
.fx-qcard--blue,
.fx-qcard--ink,
.fx-qcard--green,
.fx-qcard--yellow {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  min-width: 0;
}
.fx-qcard--blue { background: var(--bp-red); }
.fx-qcard--ink { background: #1c1c1c; }
.fx-qcard--green { background: var(--bp-green); }
.fx-qcard--yellow {
  background: var(--bp-yellow);
  color: #121212;
}
.fx-qcard--yellow cite { opacity: .7; }
.fx-qcard strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -.02em;
  overflow-wrap: break-word;
  max-width: 100%;
}
.fx-qcard p {
  font-size: 1.15rem;
  line-height: 1.45;
  margin: 1.5rem 0;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  min-width: 0;
}
.fx-qcard cite {
  display: block;
  font-style: normal;
  opacity: .75;
  font-size: .85rem;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* News / insights sticky */
.fx-news-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .fx-news-grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 3.5rem;
    align-items: start;
  }
  .fx-news-aside {
    position: sticky;
    top: 6.75rem;
  }
}
.fx-news-aside h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 12ch;
  margin-bottom: 1.5rem;
}
.fx-news-item {
  display: block;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: opacity .25s ease;
}
.fx-news-item:hover { opacity: .92; }
.fx-news-item:last-child { border-bottom: 0; }
.fx-news-meta {
  display: flex;
  gap: .85rem;
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: .75rem;
}
.fx-news-meta span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.fx-news-item h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin-bottom: .55rem;
}
.fx-news-item p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 42ch;
}
.fx-news-shot {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--sand);
}
.fx-news-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.fx-news-item:hover .fx-news-shot img { transform: scale(1.04); }

/* Mega footer */
.fx-footer {
  background: var(--bg);
  padding: clamp(3rem, 8vw, 6rem) 1rem max(5rem, calc(env(safe-area-inset-bottom) + 4.5rem));
}
.fx-footer-mega {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}
.fx-mega-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  font-size: clamp(2.4rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--ink);
  transform: none;
  transition: color .25s ease;
}
.fx-mega-line:hover { color: var(--bp-red); transform: none; }
@media (max-width: 560px) {
  .fx-mega-line { flex-direction: column; gap: .85rem; }
  .fx-float-shot { display: none !important; }
  .fx-hero-center {
    text-align: center;
    padding-top: 5.5rem;
    width: min(920px, calc(100% - 2.5rem));
    margin: 0;
    align-items: center;
  }
  .fx-hero-center h1,
  .fx-hero-center .fx-hero-lead { margin-inline: auto; }
  .fx-hero-stage { padding: .45rem .45rem 0; }
  .fx-hero-frame {
    min-height: min(88vh, 760px);
    border-radius: 1.35rem;
  }
  .fx-play { display: none; }
  .fx-hero-kinetic { bottom: 2.5rem; }
  .fx-hero-cta { margin-top: 1.25rem; }
  .fx-hero-progress { bottom: 1rem; }
  .fx-dark { margin: 0 .45rem; padding-bottom: 5.5rem; }
  .fx-notch { bottom: 1rem; }
}
.fx-mega-circle {
  width: clamp(4.5rem, 12vw, 8rem);
  height: clamp(4.5rem, 12vw, 8rem);
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  border: 1px solid rgba(15,15,15,.08);
}
.fx-mega-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fx-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
.fx-footer-brand img { height: 1.75rem; width: auto; }
.fx-footer-meta {
  text-align: center;
  margin: 0 auto 1.35rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.fx-footer-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .15em;
}
.fx-footer-meta a:hover { color: var(--bp-red); }
.fx-footer-hours { margin-top: .35rem; font-size: .84rem; }
.fx-footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.fx-footer-pills a {
  padding: .65rem 1.05rem;
  border-radius: 999px;
  background: rgba(15,15,15,.06);
  font-size: .88rem;
  font-weight: 500;
  transform: none;
  transition: background-color .25s ease, color .25s ease;
}
.fx-footer-pills a:hover,
.fx-footer-pills a:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: none;
}
.fx-copy {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

@media (prefers-reduced-motion: reduce) {
  .fx-play-ring { animation: none; }
  .fx-packet { display: none; }
  .fx-hero-progress button.is-active::after { animation: none; width: 100%; }
  .fx-hero-slides img { transition: opacity .2s ease; }
  .fx-nav .nav-toggle .nav-x { transition: none; }
  .fx-mobile {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .fx-mobile:not(.open) {
    opacity: 0;
  }
}


/* ——— FX finesse ——— */
.fx-pills a {
  min-width: 6.5rem;
  padding: .82rem 1.35rem;
  font-size: .9rem;
}
.fx-cta {
  padding: .86rem 1.45rem !important;
  font-size: .88rem !important;
  min-width: 10.25rem;
}
.fx-logo-img {
  height: clamp(2.25rem, 3.4vw, 2.75rem);
}
.fx-hero-center h1 {
  letter-spacing: -.04em;
  line-height: 1.14;
  text-wrap: balance;
}
.fx-hero-center .fx-hero-lead {
  margin-top: 1rem;
  font-size: clamp(.98rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.74);
  text-wrap: pretty;
}
.fx-mission-top h2 {
  text-wrap: balance;
}
.fx-label {
  letter-spacing: .02em;
}
.fx-num-row strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.05em;
}
.fx-wordline {
  text-wrap: balance;
  row-gap: .25rem;
}
.fx-dark {
  margin-inline: clamp(.45rem, 1.5vw, .75rem);
  padding-bottom: clamp(4.5rem, 9vw, 6rem);
}
.fx-notch {
  width: 2.85rem;
  height: 2.85rem;
  font-size: 1rem;
}
.fx-quotes-head h2 { text-wrap: balance; }
.fx-news-aside h2 { text-wrap: balance; }
.fx-mega-line {
  letter-spacing: -.055em;
}
.fx-footer-pills a {
  padding: .6rem 1rem;
  font-size: .84rem;
}
.fx-hero-cta {
  padding: .88rem 1.45rem;
  font-size: .92rem;
}
.fx-hero-progress button {
  width: 1.75rem;
  height: .22rem;
}

@media (min-width: 1180px) {
  .fx-pills a {
    min-width: 7.1rem;
    padding: .88rem 1.55rem;
    font-size: .93rem;
  }
}

@media (max-width: 1039px) {
  .fx-mobile-stack a,
  .fx-mobile-stack a.fx-mobile-cta {
    padding: 1rem 1.25rem;
    font-size: .95rem;
  }
}

@media (max-width: 560px) {
  .fx-hero-center h1 {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    max-width: 12ch;
  }
  .fx-hero-center .fx-hero-lead {
    font-size: .95rem;
    max-width: 28ch;
  }
  .fx-mission-top h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
  }
  .fx-num-row strong {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }
}

/* Language switch — glassy pill, same height as nav buttons */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  padding: .2rem;
  min-height: 3.05rem;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
  box-sizing: border-box;
}
.fx-nav--solid .lang-switch,
.fx-nav.is-scrolled .lang-switch {
  background: rgba(255,255,255,.82);
  border-color: rgba(15,15,15,.08);
  box-shadow: none;
}
.lang-switch a {
  min-width: 2.55rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  opacity: .78;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}
.fx-nav--solid .lang-switch a,
.fx-nav.is-scrolled .lang-switch a {
  color: var(--ink);
  opacity: .55;
}
.lang-switch a.is-on {
  background: var(--bp-red);
  color: #fff !important;
  opacity: 1;
  box-shadow: none;
}
.lang-switch a:hover:not(.is-on),
.lang-switch a:focus-visible:not(.is-on) {
  opacity: 1;
  background: rgba(255,255,255,.22);
}
.fx-nav--solid .lang-switch a:hover:not(.is-on),
.fx-nav.is-scrolled .lang-switch a:hover:not(.is-on) {
  background: rgba(15,15,15,.06);
}

/* Mobile: language only inside the menu drawer */
@media (max-width: 1039px) {
  .fx-nav-right > .lang-switch {
    display: none !important;
  }
}

.lang-switch--mobile {
  margin: .15rem 0 0;
  width: 100%;
  max-width: 11rem;
  min-height: 3.05rem;
  justify-content: stretch;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,15,15,.08);
  box-shadow: none;
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}
.lang-switch--mobile a {
  flex: 1;
  color: var(--ink);
  opacity: .55;
}
.lang-switch--mobile a.is-on {
  background: var(--bp-red);
  color: #fff !important;
  opacity: 1;
}
.lang-switch--mobile a:hover:not(.is-on) {
  background: rgba(15,15,15,.05);
  opacity: 1;
}
