:root {
  --bg: #ececef;
  --ink: #16171a;
  --muted: #565c66;
  --surface: #f7f7f8;
  --dark: #111217;
  --dark-soft: #1a1d24;
  --radius: 34px;
}

/* ── Global section heading underline — drawn on scroll ── */
.section-underline {
  display: block;
  width: clamp(2.8rem, 15vw, 5rem);
  height: 2px;
  margin-top: 0.6rem;
  border-radius: 2px;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.color-page .section-underline,
[style*="background:#1"] .section-underline {
  background: rgba(255,255,255,0.55);
}

.reveal.is-visible .section-underline,
.is-visible .section-underline {
  transform: scaleX(1);
}

*,
*::before,
*::after {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 100px);
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  /* scroll-behavior: smooth is handled by Lenis when active;
     leaving it on html/body fights Lenis wheel control on desktop */
  scroll-behavior: auto;
}


/* lenis.css also sets scroll-behavior; keep in sync if CDN fails to load */
html.lenis,
html.lenis-smooth,
html.lenis.lenis-smooth {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

/* Native scroll (no Lenis): keep programmatic scroll predictable for ScrollTrigger scrubs. */
html.native-scroll,
html.native-scroll body {
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.06);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}


.color-page {
  position: relative;
  margin: 0;
  --page-radius: clamp(28px, 4.2vw, 60px);
  border-top-left-radius: var(--page-radius);
  border-top-right-radius: var(--page-radius);
  border-bottom-left-radius: var(--page-radius);
  border-bottom-right-radius: var(--page-radius);
  overflow: visible;
}


.color-page.section {
  scroll-margin-top: 140px;
}




#servicesGrid.color-page {
  overflow: hidden;
}

#servicesGrid.color-page::before {
  border-radius: inherit;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* Extra blocks inside an existing section — keep one <section> + id; add siblings in .container */
.section-add {
  margin-top: clamp(1.25rem, 2.8vw, 2.35rem);
}

.section-add--flush {
  margin-top: 0;
}

.section-add--spacious {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.top-nav {
  position: fixed;
  top: max(24px, env(safe-area-inset-top, 0px));
  left: 50%;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  max-width: calc(100vw - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) - 24px);
  transform: translateX(-50%) translateY(var(--nav-y, 0px)) scale(var(--nav-scale, 1));
  z-index: 30;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background: rgba(249, 249, 250, 0.94);
  border: 1px solid rgba(20, 20, 22, 0.09);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 0.5px rgba(255,255,255,0.8) inset;
  min-width: 142px;
  min-height: 50px;
  backdrop-filter: blur(8px);
  transition:
    width 340ms cubic-bezier(0.22, 1, 0.36, 1),
    min-width 340ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 340ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 340ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 340ms cubic-bezier(0.22, 1, 0.36, 1),
    gap 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.035em;
  transition: font-size 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-pill .brand {
  flex: 1;
  min-width: 0;
  text-align: left;
  overflow-wrap: break-word;
}

/* Wordmark + logo: single line; ellipsis if the bar is too narrow */
.nav-pill .brand.brand--with-mark {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: normal;
  word-break: normal;
}

.brand--with-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 38px;
  max-width: min(160px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-pill-trailing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #23242a;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  touch-action: manipulation;
  transition: width 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #23242a;
  min-width: 18px;
  min-height: 18px;
}

.menu-icon-svg {
  display: block;
  flex: none;
}

.menu-icon-svg--close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-svg--burger {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-svg--close {
  display: block;
}

.menu-panel {
  margin-top: 10px;
  background: rgba(249, 249, 250, 0.96);
  border: 1px solid rgba(20, 20, 22, 0.1);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  backdrop-filter: blur(8px);
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-panel.open {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.menu-strip {
  margin-top: 10px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 22, 0.14);
  background: rgba(246, 246, 247, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px;
  max-height: 64px;
  transform-origin: top center;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 320ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 320ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.menu-strip-indicator {
  position: absolute;
  top: 8px;
  left: 0;
  height: calc(100% - 16px);
  width: 78px;
  border-radius: 999px;
  background: #b8bbc2;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), width 340ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: transform, width;
}

.menu-strip a {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2a2d33;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.menu-strip a.is-current {
  color: #f4f5f7;
}

.top-nav.nav-scrolled {
  transform: translateX(-50%) translateY(0) scale(1);
}

.top-nav.nav-scrolled .nav-pill {
  position: relative;
  width: auto;
  min-width: min(340px, calc(100vw - 32px));
  max-width: min(420px, calc(100vw - 24px));
  min-height: 46px;
  padding: 8px 14px;
  justify-content: flex-start;
  gap: 0;
  border-radius: 12px;
}

.top-nav.nav-scrolled .brand {
  flex: 1 1 auto;
  box-sizing: border-box;
  padding: 0 102px 0 14px;
  text-align: left;
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
  line-height: 1.12;
}

.top-nav.nav-scrolled .brand:not(.brand--with-mark) {
  display: block;
  width: 100%;
}

.top-nav.nav-scrolled .brand.brand--with-mark {
  display: flex;
  align-items: center;
  width: auto;
  min-width: 0;
  max-width: 100%;
}

.top-nav.nav-scrolled .brand-mark {
  height: 28px;
  max-width: 120px;
}

.top-nav.nav-scrolled .nav-pill-trailing {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  gap: 6px;
}

.top-nav.nav-scrolled .menu-toggle {
  width: 0;
  height: 0;
  opacity: 0;
  margin-left: 0;
  overflow: hidden;
  pointer-events: none;
  transform: scale(0.7);
}

.top-nav.nav-scrolled .menu-strip {
  transform: translateY(-14px) scale(0.92);
  opacity: 0;
  max-height: 0;
  width: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-width: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  filter: blur(4px);
}

.top-nav.nav-scrolled .menu-panel {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px) scale(0.95);
  pointer-events: none;
}

.menu-panel a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}

.menu-panel a:hover {
  background: #ececee;
}

@media (prefers-reduced-motion: reduce) {
  .menu-panel {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   HERO — v2 (elegant, nav-respectful)
   ============================================================ */

.hero-sequence {
  position: relative;
}

.sequence-track {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
}

.sequence-sticky {
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  height: 100vh;
  height: -webkit-fill-available;
  height: 100dvh;
  overflow: hidden;
  background: #08090c;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
  /* Desaturated, darker — cinematic */
  filter: brightness(0.45) saturate(0.5) contrast(1.1);
}

/* Layered vignette — heavy everywhere except the live centre zone */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(5,6,9,0.72) 0%,
      rgba(5,6,9,0.18) 28%,
      rgba(5,6,9,0.18) 58%,
      rgba(5,6,9,0.82) 100%
    ),
    linear-gradient(to right,
      rgba(5,6,9,0.55) 0%,
      rgba(5,6,9,0.0)  45%,
      rgba(5,6,9,0.25) 100%
    );
}

/* ── Overlay ── */
.hero-overlay {
  --hero-pad-x: clamp(20px, 7vw, 96px);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(22px, 3.5vh, 40px);
  /*
    Total nav height at desktop:
      top offset:    24px
      nav-pill:      ~50px
      gap:           10px
      menu-strip:    ~46px
      breathing:     24px
    = 154px minimum safe clear point.
  */
  padding-top: max(166px, 19vh);
  padding-left: var(--hero-pad-x);
  padding-right: var(--hero-pad-x);
  padding-bottom: max(52px, 6.5vh);
  color: #fff;
}

/* ── Eyebrow ── */
.eyebrow {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.28);
  flex-shrink: 0;
}

/* ── Headline block ── */
.hero-copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
  padding-bottom: 0;
  width: 100%;
  max-width: min(42rem, 100%);
  margin-right: auto;
}

.hero-copy h1 {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Room for deep italic descenders (y, g) in Cormorant */
  padding-bottom: 0.22em;
  overflow: visible;
}

/* Big italic serif — the centrepiece */
.h1-line--serif {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.15rem, 4.9vw, 5.25rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: #ffffff;
  overflow: visible;
}

/* Primary descriptor under company name */
.h1-line--primary {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: clamp(0.82rem, 1.55vw, 1.65rem);
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.18em;
  padding-left: 0;
}

/* Thin tracking subline */
.h1-line--light {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: clamp(0.62rem, 1.15vw, 1.05rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(255,255,255,0.42);
  margin-top: 0.2em;
  padding-left: 0;
}

/* One highlight line (hero banner) */
.hero-corporate {
  margin: 0.5em 0 0;
  max-width: 36em;
  padding-left: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.68rem, 0.85vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}

/* ── Bottom footer: desc + CTA ── */
.hero-footer {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  width: 100%;
  max-width: min(42rem, 100%);
  margin-right: auto;
}

.hero-footer-left {
  max-width: none;
  width: 100%;
}

.hero-footer-right { display: none; }

.hero-desc {
  margin: 0 0 1.15em;
  padding-left: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.74rem, 0.88vw, 0.86rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  pointer-events: auto;
  flex-wrap: wrap;
}

/* White pill CTA — echoes nav pill shape */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255,255,255,0.95);
  color: #0c0d10;
  border: none;
  border-radius: 980px;
  padding: 13px 28px;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 280ms ease, box-shadow 280ms ease;
}

/* Dark fill wipes bottom→top on hover */
.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #0c0d10;
  z-index: -1;
  transform: translateY(100%) translateZ(0);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.3, 1);
}

.hero-btn-primary:hover::before { transform: translateY(0) translateZ(0); }

.hero-btn-primary:hover {
  color: rgba(255,255,255,0.92);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Arrow — reserves width so button stays stable */
.hero-btn-primary::after {
  content: '→';
  display: inline-block;
  width: 1.1em;
  text-align: center;
  font-weight: 300;
  font-family: inherit;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 240ms ease 60ms, transform 300ms cubic-bezier(0.22,1,0.36,1) 40ms;
  flex-shrink: 0;
  letter-spacing: 0;
}

.hero-btn-primary:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.42);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.hero-btn-ghost svg { transition: transform 220ms cubic-bezier(0.22,1,0.36,1); }
.hero-btn-ghost:hover { color: rgba(255,255,255,0.85); }
.hero-btn-ghost:hover svg { transform: translateX(4px); }

/* ── Right-side decorative panel ── */
.hero-side-panel {
  position: absolute;
  z-index: 3;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  pointer-events: none;
}

.hsp-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 980px;
  padding: 6px 12px 6px 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hsp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5cff8a;
  box-shadow: 0 0 6px #5cff8a;
  animation: hspBlink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hspBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hsp-tag span:last-child {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hsp-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  align-self: flex-end;
  margin-right: 14px;
}

.hsp-spec {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.hsp-spec-val {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  color: rgba(255,255,255,0.8);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hsp-spec-key {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.hsp-uptime {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hsp-uptime svg circle:last-child {
  animation: hspRingSpin 3s ease-in-out forwards;
}

@keyframes hspRingSpin {
  from { stroke-dashoffset: 94; }
  to   { stroke-dashoffset: 0; }
}

.hsp-uptime-label {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* ── Scroll cue — bottom-left so it doesn't collide with side panel ── */
.hero-scroll-cue {
  position: absolute;
  left: var(--hero-pad-x, clamp(20px, 7vw, 96px));
  bottom: max(52px, 6.5vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25));
  animation: heroScrollPulse 2.6s ease-in-out infinite;
}

.hero-scroll-cue > span {
  font-family: "Outfit", sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  writing-mode: vertical-rl;
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50%       { opacity: 0.85; transform: translateY(4px); }
}

/* ── Back-to-top button ── */
.back-to-top {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right: max(28px, env(safe-area-inset-right, 0px));
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249,249,250,0.92);
  border: 1px solid rgba(20,20,22,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1), 0 0 0 0.5px rgba(255,255,255,0.7) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1d1d1f;
  cursor: pointer;
  touch-action: manipulation;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 280ms cubic-bezier(0.22,1,0.36,1),
    transform 280ms cubic-bezier(0.22,1,0.36,1),
    background 160ms ease,
    box-shadow 160ms ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}

.back-to-top:active {
  transform: scale(0.95);
}

/* ── btn-light — light sections (white bg → dark fill on hover) ── */
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 980px;
  -webkit-mask-image: radial-gradient(white, white); /* force GPU layer → fixes ::before overflow bleed in WebKit */
  mask-image: radial-gradient(white, white);
  background: #f5f5f7;
  color: #1d1d1f;
  border: 1px solid rgba(20, 20, 24, 0.14);
  padding: 12px 26px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

/* Dark fill sweeps bottom→top, sits behind text */
.btn-light::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #1d1d1f;
  z-index: -1;
  transform: translateY(101%) translateZ(0);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.3, 1);
}

.btn-light:hover::before { transform: translateY(0) translateZ(0); }

.btn-light:hover {
  color: #f5f5f7;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
}

/* Arrow — always reserves its width so button never shifts */
.btn-light::after {
  content: '→';
  display: inline-block;
  width: 1.1em;
  text-align: center;
  font-weight: 300;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 240ms ease 60ms, transform 300ms cubic-bezier(0.22,1,0.36,1) 40ms;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-light:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ── btn-light on dark backgrounds — ghost style ── */
.dark .btn-light,
.color-page .btn-light {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.22);
}

.dark .btn-light::before,
.color-page .btn-light::before {
  background: rgba(255,255,255,0.95);
}

.dark .btn-light:hover,
.color-page .btn-light:hover {
  color: #0d0e11;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
}


/* ── btn-cta: white pill on dark bg, wipes to dark on hover ── */
.btn-cta {
  background: #f5f5f7 !important;
  color: #1d1d1f !important;
  border-color: rgba(20,20,24,0.12) !important;
}

.btn-cta::before {
  background: #1d1d1f !important;
}

.btn-cta:hover {
  color: #f5f5f7 !important;
  border-color: transparent !important;
}

/* hero-cta-bar legacy — hidden */
.hero-cta-bar { display: none; }

/* ── Compact short viewports ── */
@media (max-height: 780px) and (min-width: 981px) {
  /* Nav still same height — keep the 166px floor, just shrink fonts */
  .h1-line--serif  { font-size: clamp(2rem, 5.2vw, 4.85rem); }
  .h1-line--primary { font-size: clamp(0.8rem, 1.55vw, 1.55rem); }
  .h1-line--light  { font-size: clamp(0.6rem, 1.1vw, 1rem); letter-spacing: 0.17em; }
}

@media (max-height: 640px) and (min-width: 981px) {
  .h1-line--serif  { font-size: clamp(1.65rem, 4.2vw, 3.65rem); }
  .h1-line--primary { font-size: clamp(0.76rem, 1.4vw, 1.42rem); }
  .h1-line--light  { font-size: clamp(0.56rem, 1.05vw, 0.92rem); letter-spacing: 0.16em; }
  .hero-scroll-cue { display: none; }
  .hero-side-panel { display: none; }
}

/* ── Mobile: menu-strip is hidden, only nav-pill (~74px) + safe area ── */
@media (max-width: 980px) {
  .hero-overlay {
    --hero-pad-x: 6vw;
    padding-top: max(110px, 13vh);
    padding-left: var(--hero-pad-x);
    padding-right: var(--hero-pad-x);
    padding-bottom: max(40px, 5vh);
  }
  .h1-line--serif { font-size: clamp(1.95rem, 8vw, 3.35rem); }
  .h1-line--primary { font-size: clamp(0.78rem, 2.75vw, 1.18rem); }
  .h1-line--light { font-size: clamp(0.58rem, 2.35vw, 0.95rem); letter-spacing: 0.15em; }
  .hero-scroll-cue { display: none; }
  .hero-side-panel { display: none; }
}

@media (max-width: 480px) {
  .hero-desc    { font-size: 0.82rem; }
  .hero-actions { gap: 16px; }
}

.section {
  padding: 100px 0;
  scroll-margin-top: 140px;
}

.intro {
  margin-top: -65px;
  position: relative;
  z-index: 4;
  transform: translateY(var(--intro-shift, 0px));
  opacity: var(--intro-opacity, 1);
  will-change: transform, opacity;
}

.section.intro {
  padding-bottom: 44px;
  /* Let clicks reach the hero CTA: overlap + padding sit above the hero in paint order. */
  pointer-events: none;
}

#services.section {
  padding-top: 56px;
  margin-top: 0;
}

/* ══════════════════════════════════════════
   About intro card
══════════════════════════════════════════ */
.intro-grid {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(18,21,27,0.08);
  box-shadow: 0 2px 4px rgba(18,21,27,0.04), 0 20px 60px rgba(18,21,27,0.08);
  padding: clamp(44px, 6vw, 80px) clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 52px);
  overflow: hidden;
  pointer-events: auto;
}

.intro-grid::before { display: none; }

/* Faint radial shadow top-right */
.intro-grid::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,21,27,0.03) 0%, transparent 65%);
  pointer-events: none;
}

/* Blobs — remove, replaced by ::after above */
.ig-blob { display: none; }

/* ── Header ── */
.ig-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.ig-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18,21,27,0.35);
}

.ig-overline-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(18,21,27,0.4);
}

.ig-headline {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.038em;
  font-weight: 800;
  color: var(--ink);
}

/* ── Feature cards grid ── */
.ig-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}

.ig-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 22px 30px;
  border-radius: 16px;
  background: #f7f7f8;
  border: 1px solid rgba(18,21,27,0.07);
  cursor: default;
  overflow: hidden;
  transition:
    background 0.4s cubic-bezier(0.22,1,0.36,1),
    border-color 0.4s cubic-bezier(0.22,1,0.36,1),
    transform 0.45s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
  animation: igCardIn 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: calc(var(--i) * 90ms);
}

@keyframes igCardIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Top-edge accent line that draws in on hover */
.ig-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(18,21,27,0.35) 30%, rgba(18,21,27,0.35) 70%, transparent 100%);
  border-radius: 0 0 2px 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

/* Shimmer sweep */
.ig-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.6) 50%,
    transparent 80%
  );
  transform: translateX(-110%);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.ig-card:hover {
  background: #ffffff;
  border-color: rgba(18,21,27,0.12);
  transform: translateY(-5px);
  box-shadow: 0 2px 4px rgba(18,21,27,0.04), 0 12px 32px rgba(18,21,27,0.08);
}

.ig-card:hover::before {
  transform: scaleX(1);
}

.ig-card:hover::after {
  transform: translateX(110%);
}

.ig-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(18,21,27,0.06);
  border: 1px solid rgba(18,21,27,0.09);
  color: var(--ink);
  flex-shrink: 0;
  transition:
    background 0.35s cubic-bezier(0.22,1,0.36,1),
    border-color 0.35s,
    color 0.35s,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.ig-card:hover .ig-card-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  transform: scale(1.1) rotate(-4deg);
}

.ig-card-icon svg {
  width: 16px;
  height: 16px;
}

.ig-card-text {
  margin: 0;
  font-size: clamp(0.82rem, 0.88vw, 0.92rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(18,21,27,0.55);
  transition: color 0.35s cubic-bezier(0.22,1,0.36,1);
}

.ig-card:hover .ig-card-text {
  color: rgba(18,21,27,0.85);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ig-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .intro-grid {
    padding: 40px 22px;
  }
  .ig-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .ig-card:last-child {
    grid-column: span 2;
  }
}

.chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(18, 21, 27, 0.055);
  border: 1px solid rgba(18, 21, 27, 0.1);
  color: #3a3e4a;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 700;
}

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

.intro h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  max-width: 880px;
  font-weight: 800;
  color: var(--ink);
}

.intro p {
  margin: 0;
  max-width: 700px;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--muted);
}


@media (max-width: 560px) {
  .intro-grid {
    padding: 52px 22px 56px;
  }

}

.dark {
  background:
    radial-gradient(circle at 15% 60%, #6f5d2f 0%, rgba(111, 93, 47, 0) 37%),
    radial-gradient(circle at 75% 50%, #294735 0%, rgba(41, 71, 53, 0) 39%),
    linear-gradient(120deg, #1b1d20 0%, #16181d 50%, #13161a 100%);
  color: #f4f4f5;
  background-position: 15% 60%, 75% 50%, 50% 50%;
}

.services-track {
  height: 360vh;
}

.services-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.services-left {
  display: flex;
  min-height: 74vh;
  flex-direction: column;
  justify-content: space-between;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.dark h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 640px;
}

.pill-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pill-list li {
  width: fit-content;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.93);
  padding: 10px 12px;
  font-size: 0.95rem;
  opacity: 0.5;
  transform: translateX(0);
  transition: opacity 0.22s linear, transform 0.22s linear, background-color 0.22s linear;
}

.services-pills li.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(6px);
}

.services-bottom-cta {
  color: rgba(255, 255, 255, 0.88);
}

.services-bottom-cta p {
  margin: 0 0 10px;
  line-height: 1.35;
}

.floating-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 15, 19, 0.58);
  padding: 22px;
  transform: translateY(0);
  opacity: 1;
  will-change: auto;
  overflow: hidden;
}

.service-story-viewport {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.service-story-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  contain: layout paint;
}

.service-story-slide {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  min-height: 560px;
  transition: none;
  backface-visibility: hidden;
}

.service-story-slide.is-active {
  opacity: 1;
}

.floating-card .card-kicker {
  margin: 0 0 10px;
  color: #a2a9b6;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-card h4 {
  margin: 0;
  font-size: 1.7rem;
}

.floating-card > p {
  color: #bcc1ca;
  line-height: 1.5;
}

.fake-ui {
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0d0f14;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.fake-ui div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  background: #171a20;
  padding: 10px 11px;
  font-size: 0.9rem;
}

.fake-ui strong {
  color: #c6f4d8;
  font-weight: 600;
}

.service-photo {
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
  min-height: 250px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(10, 12, 16, 0.02) 0%, rgba(10, 12, 16, 0.32) 100%),
    var(--photo);
  background-size: cover;
  background-position: center;
}

.service-photo-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(8, 10, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-photo-meta span {
  color: rgba(225, 232, 241, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-photo-meta strong {
  color: #eef3f8;
  font-size: 0.92rem;
  font-weight: 600;
}

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

.intro-stats {
  margin-top: 18px;
  pointer-events: auto;
}

.trust-strip {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(18, 21, 27, 0.06);
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a8f9a;
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(18, 21, 27, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #2a2d36;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.trust-badge:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}

.trust-badge--tuv span { color: var(--ink); }
.trust-badge--dekra span { color: var(--ink); }

.stats-grid article {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(18, 21, 27, 0.06);
  transform: translateY(var(--stats-shift, 0px));
  opacity: var(--stats-opacity, 1);
  will-change: transform, opacity;
  transition: box-shadow 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stats-grid article:hover {
  box-shadow: 0 14px 32px rgba(18, 20, 24, 0.1);
  transform: translateY(calc(var(--stats-shift, 0px) - 4px));
}

.stats-grid h4 {
  margin: 0;
  font-size: clamp(2.6rem, 3.8vw, 3.4rem);
  letter-spacing: -0.05em;
  font-weight: 800;
  line-height: 1;
}

.stats-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.partners-head p {
  margin: 10px 0 0;
  color: #5d626d;
  max-width: 62ch;
  line-height: 1.55;
}

.partners-top {
  margin-bottom: 26px;
}

.partners-strip {
  margin-top: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(18, 21, 27, 0.08);
  overflow: hidden;
  position: relative;
}

.partners-strip::before,
.partners-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
  z-index: 2;
}

.partners-strip::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.partners-strip::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.partners-strip-track {
  display: flex;
  gap: 12px;
  padding: 16px;
  width: max-content;
  animation: partnersMarquee 26s linear infinite;
  will-change: transform;
}

.partners-strip:hover .partners-strip-track {
  animation-play-state: paused;
}

.partner-pill {
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: #f4f4f7;
  border: 1px solid rgba(18, 21, 27, 0.07);
  color: #1d2129;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.partner-pill img {
  width: 62px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  padding: 6px;
  background: #ffffff;
  border: 1px solid rgba(18, 21, 27, 0.14);
  box-shadow: 0 10px 18px rgba(18, 20, 24, 0.12);
  filter: contrast(1.2) brightness(1.05);
}

.partner-pill span {
  display: inline-block;
}

@keyframes partnersMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.capabilities-scroll {
  margin-top: 18px;
}

.capabilities-viewport {
  border-radius: 24px;
  border: 1px solid rgba(18, 21, 27, 0.08);
  background: linear-gradient(165deg, #ffffff 0%, #f3f5f8 100%);
  box-shadow: 0 26px 48px rgba(18, 20, 24, 0.08);
  padding: 18px;
}

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

.capability-card {
  min-height: 210px;
  border-radius: 18px;
  border: 1px solid rgba(18, 21, 27, 0.07);
  background: #ffffff;
  padding: 22px 20px;
  display: grid;
  align-content: start;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(17, 20, 26, 0.04), 0 10px 22px rgba(17, 20, 26, 0.06);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 260ms ease;
  cursor: default;
}

.capability-card.is-active {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(17, 20, 26, 0.12);
  border-color: rgba(18, 21, 27, 0.2);
}

.capability-kicker {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(18, 21, 27, 0.14);
  background: #eceef2;
  color: #4e5562;
  padding: 6px 11px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-card h4 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.58rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.capability-card p {
  margin: 0;
  color: #5c6370;
  line-height: 1.55;
}

.capabilities-progress {
  margin-top: 12px;
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 21, 27, 0.1);
  overflow: hidden;
}

.capabilities-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(17, 20, 26, 0.92), rgba(17, 20, 26, 0.46));
}

.partners-people {
  margin-top: 22px;
}

.partners-people .section-head p {
  margin: -10px 0 0;
  max-width: 64ch;
  color: #5d626d;
  line-height: 1.55;
}

.people-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  width: 100%;
  /* Full container width so columns line up with headings (no narrower centered band). */
  margin-inline: 0;
}

/* Same portrait frame for every card — even heights; cover trims baked-in file margins. */
.people-grid .person-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: #f3f3f6;
}

.people-grid .person-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.people-grid .person-card-body {
  flex: 1 1 auto;
}

.person-card {
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(18, 21, 27, 0.08);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
}

.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(18, 20, 24, 0.11);
}

.person-media {
  position: relative;
  overflow: hidden;
}

.person-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  background: #f3f3f6;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.person-card:hover .person-media img,
.person-card:focus-within .person-media img {
  transform: scale(1.075);
  filter: saturate(1.06);
}

.person-bubble {
  position: absolute;
  left: 14px;
  right: auto;
  max-width: min(86%, 310px);
  bottom: 14px;
  margin: 0;
  padding: 11px 13px;
  border-radius: 16px 16px 16px 6px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  border: 1px solid rgba(17, 21, 27, 0.08);
  color: #1b212c;
  font-size: 0.86rem;
  line-height: 1.38;
  box-shadow:
    0 14px 30px rgba(10, 14, 20, 0.22),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  transform: translateY(16px) scale(0.92) rotate(-1.2deg);
  transform-origin: left bottom;
  opacity: 0;
  pointer-events: none;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
}

.person-bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 16px;
  height: 10px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  clip-path: polygon(0 0, 100% 0, 24% 100%);
}

.person-bubble::before {
  content: "";
  position: absolute;
  left: 13px;
  top: -7px;
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(99, 112, 134, 0.58), rgba(99, 112, 134, 0.16));
}

.person-card:hover .person-bubble,
.person-card:focus-within .person-bubble {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  animation: personBubbleFloat 1.75s ease-in-out infinite;
}

@keyframes personBubbleFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -2px;
  }
}

/* Touch: bubble hidden by default, shown on tap (.person-media has tabindex=0) */
@media (hover: none) {
  .person-bubble {
    opacity: 0;
    pointer-events: none;
  }
  .person-card:focus-within .person-bubble,
  .person-media:focus .person-bubble {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    animation: none;
    pointer-events: auto;
  }
}

.person-card-body {
  position: relative;
}

.person-card h4 {
  margin: 14px 14px 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.person-role {
  margin: 0 14px 10px;
  color: #1d2129;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.person-desc {
  margin: 0 14px 14px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #5d626d;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.person-email {
  display: block;
  margin: -6px 14px 14px;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #0f5c8c;
  text-decoration: none;
  word-break: break-all;
}

.person-email:hover {
  text-decoration: underline;
}

.person-card-body p {
  margin: 0 14px 14px;
  color: #5d626d;
  line-height: 1.5;
}

.people-showcase {
  margin: 16px 0 0;
  max-width: none;
}

.people-showcase .person-media img {
  aspect-ratio: 4 / 3;
}

.people-showcase--process .person-media {
  background: #101826;
}

.people-showcase--process .person-media img {
  transform: scale(1.65);
  transform-origin: center center;
  filter: saturate(1.03);
}

.people-showcase--process:hover .person-media img,
.people-showcase--process:focus-within .person-media img {
  transform: scale(1.75);
}

.people-showcase-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#impactImage .container {
  position: relative;
  overflow: visible;
}

.achievement-carousel {
  position: relative;
  width: 100%;
}

.achievement-carousel .carousel-dir-btn--left,
.achievement-carousel .carousel-dir-btn--right {
  position: absolute;
  top: 50%;
  z-index: 4;
  margin: 0;
}

.achievement-carousel .carousel-dir-btn--left {
  left: 0;
  transform: translate(calc(-100% - 12px), -50%);
}

.achievement-carousel .carousel-dir-btn--right {
  right: 0;
  transform: translate(calc(100% + 12px), -50%);
}

.achievement-showcase {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  min-height: 520px;
  height: 520px;
  border-radius: 26px;
  border: 1px solid rgba(18, 21, 27, 0.08);
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 24px 44px rgba(18, 20, 24, 0.08);
  overflow: hidden;
}

.achievement-slide-panel {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
  align-self: stretch;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.achievement-showcase.is-ach-sliding .achievement-slide-panel {
  will-change: transform;
}

.achievement-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  height: 100%;
  background: #f0f1f4;
}

.achievement-compare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  touch-action: none;
  user-select: none;
  cursor: ew-resize;
}

.achievement-compare:active {
  cursor: grabbing;
}

.achievement-compare-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  background: #e8eaef;
  transition: opacity 280ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.achievement-compare-after {
  z-index: 1;
  filter: contrast(1.04) brightness(1.02);
}

.achievement-compare-before {
  z-index: 2;
  filter: contrast(1.06) brightness(1.03);
  clip-path: polygon(
    0 0,
    calc(var(--compare-pct, 50) * 1%) 0,
    calc(var(--compare-pct, 50) * 1%) 100%,
    0 100%
  );
  -webkit-clip-path: polygon(
    0 0,
    calc(var(--compare-pct, 50) * 1%) 0,
    calc(var(--compare-pct, 50) * 1%) 100%,
    0 100%
  );
}

.achievement-compare-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -14deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(12, 15, 21, 0.14));
  mix-blend-mode: soft-light;
}

.achievement-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--compare-pct, 50) * 1%);
  z-index: 5;
  width: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: ew-resize;
  transform: translateX(-50%);
  touch-action: none;
}

.achievement-compare-handle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

.achievement-compare-grip {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffffff 0%, #e8eaef 100%);
  border-radius: 3px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 4px 18px rgba(0, 0, 0, 0.22);
}

.achievement-compare-grip::before,
.achievement-compare-grip::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 14px;
  height: 2px;
  margin-left: -7px;
  background: rgba(30, 34, 42, 0.55);
  border-radius: 1px;
}

.achievement-compare-grip::before {
  top: calc(50% - 5px);
}

.achievement-compare-grip::after {
  top: calc(50% + 3px);
}

.achievement-showcase.is-transitioning .achievement-compare-layer {
  opacity: 0.42;
  transform: scale(1.02);
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.achievement-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 6px 2px 4px;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
}

.achievement-showcase.is-transitioning .achievement-copy {
  opacity: 0.45;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.achievement-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.achievement-copy > p {
  margin: 0;
  color: #5a606c;
  line-height: 1.58;
}

.achievement-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.achievement-highlights li {
  position: relative;
  padding-left: 20px;
  color: #303540;
  line-height: 1.48;
}

.achievement-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.82em;
  font-weight: 700;
  color: #171b24;
  line-height: 1.5;
}

.achievement-dots {
  margin-top: 4px;
  display: flex;
  gap: 8px;
}

.achievement-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(18, 21, 27, 0.24);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.achievement-dots button.is-active {
  width: 24px;
  background: rgba(18, 21, 27, 0.84);
}

.impact-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 540px;
  background: #1f1c1a;
  border: 1px solid rgba(0, 0, 0, 0.22);
}

.impact-bg {
  position: absolute;
  inset: -2px;
  background-image:
    radial-gradient(circle at 20% 72%, rgba(210, 160, 112, 0.28), rgba(196, 147, 101, 0) 46%),
    radial-gradient(circle at 82% 22%, rgba(186, 140, 102, 0.22), rgba(171, 128, 93, 0) 52%),
    linear-gradient(128deg, #1f1c1a 0%, #3d3228 40%, #6b5a47 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: normal;
  transform: translateY(var(--impact-parallax, 0px));
  will-change: transform;
}

.impact-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(14, 11, 10, 0.78) 0%,
    rgba(14, 11, 10, 0.3) 18%,
    rgba(14, 11, 10, 0) 42%
  );
  pointer-events: none;
}

.impact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 46%, rgba(210, 160, 112, 0.08), transparent 58%),
    radial-gradient(circle at 78% 54%, rgba(186, 140, 102, 0.07), transparent 62%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent 40%, rgba(0, 0, 0, 0.22));
  opacity: 1;
  pointer-events: none;
}

.impact-overlay {
  position: relative;
  z-index: 1;
  min-height: 540px;
  display: grid;
  padding: 24px;
}

.impact-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.impact-top-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.impact-top-specs {
  display: grid;
  gap: 10px;
  text-align: right;
  align-self: center;
}

.impact-top-spec {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10, 9, 9, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(2px);
}

.impact-top-spec span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 230, 0.78);
}

.impact-top-spec strong {
  color: #f6f1e8;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.impact-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(20, 15, 12, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
  flex-shrink: 0;
}

.impact-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  border-radius: 12px;
  display: block;
}

.impact-subcopy {
  margin: 0 0 12px;
  color: rgba(246, 241, 232, 0.78);
  max-width: 56ch;
  font-size: 0.98rem;
  line-height: 1.45;
}

.impact-copy h3 {
  margin: 2px 0 10px;
  color: #f5f1eb;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 560px;
}

.impact-kicker {
  margin: 0;
  color: rgba(248, 241, 230, 0.88);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.impact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.impact-tags span {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.74rem;
  color: #efe9de;
  background: rgba(23, 18, 14, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.impact-mid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: stretch;
  position: relative;
  border-radius: 18px;
  padding: 16px;
  background: rgba(10, 9, 9, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2px);
}

.impact-mid::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 26% 50%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 56%, transparent 76%);
  pointer-events: none;
}

.impact-blueprint {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: none;
  backdrop-filter: none;
  min-height: 240px;
}

.impact-blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, rgba(0, 0, 0, 0.12) 68%, transparent 78%);
}

.impact-blueprint-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.impact-blueprint-path {
  fill: none;
  stroke: url(#atLine);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.9;
}

.impact-blueprint-path.is-secondary {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2;
  opacity: 0.7;
}

.impact-blueprint-node {
  fill: rgba(255, 255, 255, 0.9);
  opacity: 0.32;
}

.impact-blueprint-pulse {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2;
  opacity: 0.5;
  transform-origin: 336px 132px;
  animation: impactPulse 2.8s ease-in-out infinite;
}

.impact-blueprint-dot {
  fill: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.impact-blueprint-label {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  border-radius: 12px;
  background: rgba(10, 9, 9, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f4efe6;
  backdrop-filter: blur(3px);
}

.impact-blueprint-label span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 230, 0.82);
}

.impact-blueprint-label strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.impact-flow-legend {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10, 9, 9, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(246, 241, 232, 0.86);
  font-size: 0.82rem;
  backdrop-filter: blur(2px);
}

.impact-flow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.impact-flow-step {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  border-radius: 14px;
  background: rgba(10, 9, 9, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f6f1e8;
  backdrop-filter: blur(5px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.impact-flow-step::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.impact-flow-step span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 230, 0.78);
}

.impact-flow-step strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.impact-flow-step em {
  font-style: normal;
  font-size: 0.86rem;
  color: rgba(246, 241, 232, 0.76);
}

.impact-flow-step--1 {
  left: 16px;
  bottom: 14px;
  transform: translate(-18px, 18px);
}

.impact-flow-step--2 {
  left: 43%;
  top: 50%;
  transform: translate(-86%, -132%);
}

.impact-flow-step--3 {
  right: 18px;
  bottom: 22px;
  transform: translate(18px, 26px);
}

.impact-flow-step--4 {
  right: 18px;
  top: 50px;
  transform: translate(18px, -28px);
}

.impact-console {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  border-radius: 16px;
  padding: 16px;
  background: rgba(18, 14, 12, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2px);
}

.impact-console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.impact-console-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 230, 0.84);
}

.impact-console h4 {
  margin: 8px 0 0;
  font-size: 1.15rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #f6f1e8;
}

.impact-console-help {
  margin: 8px 0 0;
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 46ch;
}

.impact-console-cta {
  flex-shrink: 0;
  align-self: start;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #201a15;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.impact-console-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.impact-console-body {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(10, 9, 9, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(246, 241, 232, 0.92);
  font-size: 0.92rem;
}

.impact-console-row span {
  color: rgba(246, 241, 232, 0.78);
}

.impact-console-row strong {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.impact-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.impact-proof-item {
  border-radius: 14px;
  padding: 12px;
  background: rgba(10, 9, 9, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 4px;
}

.impact-proof-item span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 230, 0.8);
}

.impact-proof-item strong {
  color: #f6f1e8;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

@keyframes impactPulse {
  0% { transform: scale(0.9); opacity: 0.18; }
  45% { transform: scale(1.35); opacity: 0.55; }
  100% { transform: scale(0.9); opacity: 0.18; }
}


.impact-meters {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.impact-meter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  background: rgba(10, 9, 9, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(3px);
  padding: 12px 14px;
  color: rgba(246, 241, 232, 0.92);
  font-size: 0.92rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.impact-meter span {
  color: rgba(246, 241, 232, 0.78);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.impact-meter strong {
  color: #f6f1e8;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.impact-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.impact-track i {
  display: block;
  height: 100%;
  width: calc(var(--w) * 100%);
  transform: scaleX(var(--meter-scale, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.55));
}

@media (max-width: 980px) {
  #impactImage .container {
    overflow-x: clip;
    max-width: 100%;
  }

  .achievement-carousel,
  .achievement-showcase,
  .achievement-slide-panel,
  .achievement-media {
    min-width: 0;
    max-width: 100%;
  }

  .achievement-showcase {
    overflow-x: hidden;
  }

  .achievement-compare-layer {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .achievement-carousel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px 10px;
    align-items: center;
  }

  .achievement-carousel .carousel-dir-btn--left,
  .achievement-carousel .carousel-dir-btn--right {
    position: static;
    left: auto;
    right: auto;
    z-index: auto;
  }

  .achievement-carousel .carousel-dir-btn--left {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }

  .achievement-carousel .carousel-dir-btn--right {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .achievement-carousel .achievement-showcase {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .achievement-showcase {
    min-height: 0;
    height: auto;
    padding: 18px;
  }

  .achievement-slide-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
    flex: 0 1 auto;
  }

  .achievement-media {
    min-height: 240px;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .achievement-compare {
    position: absolute;
    inset: 0;
  }

  .achievement-compare-layer {
    position: absolute;
    inset: 0;
  }

  .capabilities-viewport {
    padding: 14px 14px 12px;
  }

  .capabilities-track {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 190px;
  }

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

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

  .impact-mid {
    grid-template-columns: 1fr;
  }

  .impact-mid::after {
    display: none;
  }

  .impact-top {
    flex-direction: column;
  }

  .impact-top-specs {
    width: 100%;
    text-align: left;
  }

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

.brain-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  isolation: isolate;
}

.brain-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(90deg, rgba(16, 19, 24, 0.7) 0%, rgba(16, 19, 24, 0.28) 52%),
    radial-gradient(circle at 18% 52%, rgba(20, 89, 139, 0.58) 0%, rgba(20, 89, 139, 0) 44%),
    radial-gradient(circle at 74% 44%, rgba(76, 151, 201, 0.36) 0%, rgba(76, 151, 201, 0) 56%),
    linear-gradient(116deg, #0f1a24 0%, #17334b 52%, #235a82 100%);
  background-size: cover;
  background-position: center;
  /* Parallax only — no scale (scale + overflow:hidden was clipping top corners). */
  transform: translateY(var(--brain-parallax, 0px));
  will-change: transform;
}

.brain-overlay {
  position: relative;
  z-index: 1;
  min-height: 520px;
  color: #f5f5f7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 40px;
}

.brain-left h3 {
  margin: 0 0 20px;
  max-width: 340px;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.brain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  row-gap: 12px;
}

.brain-tags span {
  padding: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(245, 245, 247, 0.95);
  letter-spacing: 0.01em;
}

.brain-right {
  justify-self: end;
  text-align: right;
  max-width: 420px;
}

.brain-right h2 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.services-signature {
  position: relative;
}

.services-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(210, 160, 112, 0.28), rgba(210, 160, 112, 0) 52%),
    radial-gradient(circle at 76% 38%, rgba(41, 71, 53, 0.18), rgba(41, 71, 53, 0) 58%),
    linear-gradient(180deg, rgba(18, 19, 23, 0.03) 0%, rgba(18, 19, 23, 0.0) 40%, rgba(18, 19, 23, 0.02) 100%);
  pointer-events: none;
}

.services-signature-wrap {
  position: relative;
}

.services-signature-head {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.services-signature-head h3 {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.services-signature-head p {
  margin: 0;
  max-width: 70ch;
  color: #5d626d;
  font-size: 1.08rem;
  line-height: 1.55;
}

.service-tabs-specs-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) minmax(230px, 280px);
  align-items: stretch;
  gap: 16px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}



.services-signature.is-specs-visible .service-tabs-specs-layout {
  opacity: 1;
  transform: translateY(0);
}

.service-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
  align-items: start;
}

/* Match side column height + same card look so the middle isn’t a dark empty strip. */
#serviceTabs.service-tabs {
  align-self: stretch;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding: 14px;
  background:
    radial-gradient(circle at 18% 16%, rgba(90, 135, 109, 0.12), rgba(90, 135, 109, 0) 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 244, 0.93));
  border: 1px solid rgba(18, 21, 27, 0.14);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 12px 26px rgba(20, 28, 23, 0.08);
  grid-template-rows: 1fr 1fr;
  align-content: stretch;
  align-items: stretch;
}

.service-specs {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(18, 21, 27, 0.14);
  background:
    radial-gradient(circle at 18% 16%, rgba(90, 135, 109, 0.12), rgba(90, 135, 109, 0) 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 244, 0.93));
  backdrop-filter: blur(8px);
  padding: 14px;
  display: grid;
  gap: 10px;
  align-content: start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 12px 26px rgba(20, 28, 23, 0.08);
  overflow: hidden;
  min-height: 172px;
  height: 100%;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 460ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  grid-template-rows: auto 1fr;
}

.service-specs--left {
  transform: translateX(0);
}

.service-specs--right {
  transform: translateX(0);
}

.services-signature.is-specs-visible .service-specs {
  opacity: 1;
  transform: translateX(0);
}

.service-specs-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #5e646d;
  padding: 2px 2px 0;
}

.service-specs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: 100%;
}

.service-spec-item {
  margin: 0;
  position: relative;
  padding: 10px 12px 10px 30px;
  border-radius: 12px;
  background: rgba(245, 249, 247, 0.9);
  color: #2f353d;
  font-size: 0.88rem;
  line-height: 1.36;
  border: 1px solid rgba(24, 45, 33, 0.13);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  isolation: isolate;
  min-height: 68px;
}

.service-spec-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  border-radius: 50%;
  background: #9aa3ad;
  box-shadow: 0 0 0 0 rgba(62, 135, 95, 0.3);
  transition: background-color 220ms ease;
}

.service-spec-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.62) 47%, rgba(255, 255, 255, 0) 74%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.service-spec-item.is-active {
  border-color: rgba(38, 105, 67, 0.34);
  background: rgba(237, 247, 240, 0.95);
  box-shadow: 0 10px 18px rgba(26, 52, 37, 0.12);
  transform: translateY(-1px);
}

.service-spec-item.is-active::before {
  background: #3e875f;
  animation: serviceSpecPulse 1.7s ease-out infinite;
}

.service-spec-item.is-live::after {
  opacity: 1;
  animation: serviceSpecSweep 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-spec-item span {
  display: block;
  min-height: 0;
  max-width: 28ch;
  line-height: 1.36;
  text-wrap: balance;
}



.service-spec-item.is-updating {
  animation: serviceSpecRefresh 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes serviceSpecPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 135, 95, 0.35);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(62, 135, 95, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(62, 135, 95, 0);
  }
}

@keyframes serviceSpecSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes serviceSpecRefresh {
  0% {
    transform: translateX(-6px);
    opacity: 0.28;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}



@media (max-width: 1320px) {
  .service-tabs-specs-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }

  .service-specs {
    min-height: auto;
  }

  .service-tabs,
  .service-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* 2×3 grid → three rows; fixed row heights so tabs don’t rely on a stretched column. */
  #serviceTabs.service-tabs {
    height: auto;
    min-height: auto;
    grid-template-rows: none;
    grid-auto-rows: minmax(118px, auto);
  }

  .service-tab {
    height: auto;
    min-height: 118px;
  }

  .service-tab-clip {
    flex: 0 0 auto;
    height: 118px;
    min-height: 118px;
    max-height: 118px;
  }
}

.service-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  min-height: 0;
  height: 100%;
  max-height: none;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(18, 21, 27, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #22262f;
  border-radius: 14px;
  padding: 0;
  margin: 0;
  text-align: left;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-tab.is-active {
  border-color: rgba(18, 21, 27, 0.34);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(18, 20, 24, 0.08);
}

/* No transform here — transform on <button> breaks nested .service-tab-track transitions in several browsers. */
.service-tab.is-pop {
  animation: serviceTabPop 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes serviceTabPop {
  0% {
    box-shadow: 0 0 0 rgba(18, 20, 24, 0);
  }
  45% {
    box-shadow: 0 12px 28px rgba(18, 20, 24, 0.12);
  }
  100% {
    box-shadow: 0 16px 30px rgba(18, 20, 24, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-specs,
  .service-tab,
  .service-tab-track,
  .service-tab-label,
  .service-tab-preview,
  .service-spec-item,
  .service-products-cta,
  .service-products-cta::after {
    transition: none;
    animation: none;
  }
}

.service-tab:hover {
  box-shadow: 0 14px 28px rgba(18, 20, 24, 0.1);
}

.service-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 21, 27, 0.14), 0 14px 28px rgba(18, 20, 24, 0.1);
}

/* Clip fills the tab; track is 2× tall; slide = -50% of track (one full face). */
.service-tab-clip {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.service-tab-track {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 200%;
  width: 100%;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate3d(0, 0, 0);
}

.service-tab-label {
  box-sizing: border-box;
  flex: 0 0 50%;
  width: 100%;
  height: 50%;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.95);
}

.service-tab-preview {
  box-sizing: border-box;
  flex: 0 0 50%;
  width: 100%;
  height: 50%;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-tab:hover .service-tab-preview,
.service-tab:focus-visible .service-tab-preview,
.service-tab.is-hover-preview .service-tab-preview,
.service-tab.is-preview-revealed .service-tab-preview {
  opacity: 1;
}

.service-tab-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-tab:hover .service-tab-track,
.service-tab:focus-visible .service-tab-track,
.service-tab.is-hover-preview .service-tab-track,
.service-tab.is-preview-revealed .service-tab-track {
  transform: translate3d(0, -50%, 0);
}

/* Do NOT zero out hover transform under prefers-reduced-motion: Windows often sets it
   globally; users still need to see the preview. Motion is already minimized via
   transition:none on .service-tab-track in the block above. */

.service-products-panel {
  margin-top: 18px;
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 21, 27, 0.1);
  backdrop-filter: blur(8px);
}

.service-products-head h4 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.service-products-head p {
  margin: 8px 0 0;
  color: #5d626d;
}

.service-products-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(32, 92, 151, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.9));
  box-shadow: 0 12px 24px rgba(20, 36, 56, 0.08);
}

.service-products-actions[hidden] {
  display: none !important;
}

.service-products-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  border-radius: 980px;
  background: #1d1d1f;
  color: #f5f5f7;
  padding: 12px 26px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  transition: color 280ms ease, box-shadow 280ms ease;
}

.service-products-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #f5f5f7;
  z-index: -1;
  transform: translateY(101%) translateZ(0);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.3, 1);
}

.service-products-cta:hover::before { transform: translateY(0) translateZ(0); }

.service-products-cta--secondary {
  background: #1d1d1f;
  color: #f5f5f7;
}

.service-products-cta::after {
  content: '→';
  display: inline-block;
  width: 1.1em;
  text-align: center;
  font-weight: 300;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 240ms ease 60ms, transform 300ms cubic-bezier(0.22,1,0.36,1) 40ms;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.service-products-cta:hover {
  color: #1d1d1f;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.service-products-cta:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.service-products-cta:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.3);
  outline-offset: 2px;
}

.service-products-cta[hidden] {
  display: none !important;
}

@media (max-width: 700px) {
  .service-products-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-products-cta {
    width: 100%;
  }
}

.service-products-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  border-radius: 16px;
  border: 1px solid rgba(18, 21, 27, 0.1);
  background: #ffffff;
  padding: 10px;
  display: grid;
  gap: 10px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(18, 20, 24, 0.1);
}

.product-card-image {
  height: 130px;
  border-radius: 12px;
  background-color: #dde2e8;
  background-size: cover;
  background-position: center;
}

.product-card h5 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.product-card p {
  margin: 0;
  color: #5d626d;
  line-height: 1.45;
  font-size: 0.92rem;
}

.section-head h3 {
  margin: 12px 0 22px;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

/* ── Portfolio (Selected Projects) — left-aligned head + horizontal sector chips (no bullets) ── */
#portfolio .section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}

#portfolio .section-head h3 {
  margin: 12px 0 10px;
  text-align: start;
}

#portfolio .section-head > p {
  margin-top: 0;
  text-align: start;
}

.project-deck {
  position: relative;
  height: 420px;
  margin-top: 10px;
  isolation: isolate;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  cursor: default;
  padding-top: 8px;
  overflow: visible;
}

.project-deck-card {
  position: absolute;
  top: 6px;
  left: 50%;
  box-sizing: border-box;
  width: min(760px, 90%);
  max-width: 760px;
  min-width: 0;
  background: #f8f8f9;
  border-radius: 20px;
  padding: 14px;
  border: 1px solid rgba(18, 21, 27, 0.08);
  box-shadow: 0 16px 34px rgba(18, 20, 24, 0.12);
  transform: translate3d(-50%, 0, 0);
  transition:
    transform 480ms cubic-bezier(0.22, 1, 0.32, 1),
    opacity 360ms ease-out,
    filter 280ms ease-out,
    box-shadow 280ms ease;
  will-change: transform, opacity, filter;
  transform-origin: center center;
}

.project-deck-card.is-front {
  box-shadow:
    0 24px 46px rgba(18, 20, 24, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

.project-deck-controls {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(920px, 96%);
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
  pointer-events: none;
  z-index: 130;
}

.carousel-dir-btn {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  touch-action: manipulation;
  background: rgba(247, 248, 250, 0.96);
  border: 1px solid rgba(18, 21, 27, 0.14);
  color: #1c222c;
  box-shadow:
    0 10px 22px rgba(18, 20, 24, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    background 220ms ease;
}

.carousel-dir-btn span {
  display: block;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px) scaleX(0.95);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .carousel-dir-btn:hover {
    transform: translateY(-3px) scale(1.06);
    background: #ffffff;
    box-shadow:
      0 16px 32px rgba(18, 20, 24, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .carousel-dir-btn--left:hover span {
    transform: translate(-4px, -1px) scaleX(0.95);
  }

  .carousel-dir-btn--right:hover span {
    transform: translate(4px, -1px) scaleX(0.95);
  }
}

.carousel-dir-btn:active {
  transform: translateY(0) scale(0.94);
  transition-duration: 90ms;
}

.carousel-dir-btn:active span {
  transition-duration: 90ms;
}

.carousel-dir-btn:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(18, 21, 27, 0.16),
    0 14px 28px rgba(18, 20, 24, 0.2);
}

@media (hover: hover) {
  .achievement-carousel .carousel-dir-btn--left:hover {
    transform: translate(calc(-100% - 12px), calc(-50% - 3px)) scale(1.06);
  }

  .achievement-carousel .carousel-dir-btn--right:hover {
    transform: translate(calc(100% + 12px), calc(-50% - 3px)) scale(1.06);
  }
}

.achievement-carousel .carousel-dir-btn--left:active {
  transform: translate(calc(-100% - 12px), -50%) scale(0.94);
}

.achievement-carousel .carousel-dir-btn--right:active {
  transform: translate(calc(100% + 12px), -50%) scale(0.94);
}

.project-image {
  height: 220px;
  border-radius: 12px;
  background-image: var(--project);
  background-size: cover;
  background-position: center;
}

.project-deck-card h4 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  transition: opacity 240ms ease;
}

.project-deck-card p {
  margin: 0;
  color: #5d626d;
  line-height: 1.45;
  transition: opacity 240ms ease;
}

.project-deck-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.project-deck-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(18, 21, 27, 0.22);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.project-deck-dots button.is-active {
  width: 24px;
  background: rgba(18, 21, 27, 0.82);
}

.process-route-wrap {
  position: relative;
  padding-top: 128px;
}

.process-route {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 148px;
  pointer-events: none;
}

.process-route-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.process-route-base {
  fill: none;
  
  stroke: rgba(17, 20, 26, 0.34);
  stroke-width: 3.5;
  stroke-linecap: round;
}

.process-route-progress {
  fill: none;
  stroke: #12151b;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.process-route-glow {
  fill: rgba(18, 21, 27, 0.18);
}

.process-route-marker {
  fill: #11141a;
  stroke: none;
}

.process-route-pin {
  --pin-tx: 0px;
  --pin-ty: 0px;
  --pin-scale: 1;
  fill: #c4c8d1;
  stroke: #f4f5f7;
  stroke-width: 2;
  transition: fill 220ms ease, transform 220ms ease;
  transform-origin: center;
  transform: translate(var(--pin-tx), var(--pin-ty)) scale(var(--pin-scale));
}


.process-route-pin[data-pin="0"] {
  opacity: 1;
  
  --pin-tx: -50px;
  --pin-ty: 65px;
}

.process-route-pin.is-active {
  fill: #11141a;
  --pin-scale: 1.2;
}

.process-treasure-ring {
  fill: rgba(248, 249, 251, 0.88);
  stroke: rgba(17, 20, 26, 0.82);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 1.4 6 2.5 4.2 1.6 5.8 2.2 4.8 1.2 6.5;
}

.process-treasure-x {
  stroke: #0e1218;
  stroke-width: 2.7;
  stroke-linecap: round;
}

.process-treasure {
  filter: drop-shadow(0 8px 14px rgba(17, 20, 26, 0.22));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.process-grid article {
  background: #f8f8f9;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(18, 21, 27, 0.07);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.process-grid article.is-active {
  transform: translateY(-8px);
  border-color: rgba(18, 21, 27, 0.2);
  box-shadow: 0 16px 32px rgba(18, 20, 24, 0.12);
}

.process-grid article:nth-child(1) {
  margin-top: 10px;
}

.process-grid article:nth-child(2) {
  margin-top: 42px;
}

.process-grid article:nth-child(3) {
  margin-top: -2px;
}

.process-grid .process-step-label {
  display: block;
  color: #626a76;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}

.process-grid h4 {
  margin: 10px 0 8px;
  font-size: 1.26rem;
  letter-spacing: -0.02em;
}

.process-grid p {
  margin: 0;
  color: #5d626d;
  line-height: 1.5;
}

/* ── Technical Standards — centered headline + four white pill cards ── */
.technical-standards-section {
  position: relative;
  padding: clamp(72px, 8vw, 108px) 0;
  background: var(--bg);
  border-top: 1px solid rgba(22, 23, 26, 0.06);
  scroll-margin-top: 140px;
}

.technical-standards-head {
  margin-bottom: 0;
  max-width: min(48rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.technical-standards-title {
  margin: 0;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: var(--ink);
}

.technical-standards-lead {
  margin: clamp(1.1rem, 2.2vw, 1.45rem) auto 0;
  max-width: min(44rem, 100%);
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--muted);
}

html:lang(de) .technical-standards-lead {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.technical-standards-panel {
  margin-top: clamp(1.85rem, 3.4vw, 2.65rem);
  padding: 0;
}

.technical-standards-grid {
  counter-reset: ts;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  align-items: stretch;
}

.technical-standards-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(72px, 10vw, 96px);
  padding: clamp(16px, 2.4vw, 22px) clamp(14px, 2vw, 20px);
  border-radius: clamp(16px, 2.5vw, 22px);
  background: #ffffff;
  border: 1px solid rgba(22, 23, 26, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(18, 20, 24, 0.06);
  overflow: hidden;
}

.technical-standards-item::before {
  counter-increment: ts;
  content: counter(ts, decimal-leading-zero);
  position: absolute;
  top: clamp(10px, 1.5vw, 14px);
  left: clamp(12px, 2vw, 16px);
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(22, 23, 26, 0.32);
}

.technical-standards-item-text {
  display: block;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

html:lang(de) .technical-standards-item-text {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

@media (max-width: 900px) {
  .technical-standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .technical-standards-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Core Focus — centered headline + four white pill cards (matches Technical Standards rhythm) ── */
.core-focus-section {
  position: relative;
  padding: clamp(72px, 8vw, 108px) 0;
  background: var(--bg);
  border-top: 1px solid rgba(22, 23, 26, 0.06);
  scroll-margin-top: 140px;
  overflow: visible;
}

.core-focus-section .container {
  overflow: visible;
}

.core-focus-head {
  margin-bottom: 0;
  max-width: min(48rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  overflow: visible;
}

.core-focus-title {
  margin: 0;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: var(--ink);
}

.core-focus-lead {
  margin: clamp(1.1rem, 2.2vw, 1.45rem) auto 0;
  max-width: min(44rem, 100%);
  padding-inline: 6px;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--muted);
}

html:lang(de) .core-focus-lead {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.core-focus-panel {
  margin-top: clamp(1.85rem, 3.4vw, 2.65rem);
  padding: 0;
}

.core-focus-grid {
  counter-reset: cf;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(12px, 2vw, 18px);
  align-items: stretch;
}

.core-focus-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(72px, 10vw, 96px);
  padding: clamp(16px, 2.4vw, 22px) clamp(14px, 2vw, 20px);
  border-radius: clamp(16px, 2.5vw, 22px);
  background: #ffffff;
  border: 1px solid rgba(22, 23, 26, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(18, 20, 24, 0.06);
  overflow: hidden;
}

.core-focus-item::before {
  counter-increment: cf;
  content: counter(cf, decimal-leading-zero);
  position: absolute;
  top: clamp(10px, 1.5vw, 14px);
  left: clamp(12px, 2vw, 16px);
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(22, 23, 26, 0.32);
}

.core-focus-item-text {
  display: block;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

html:lang(de) .core-focus-item-text {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

@media (max-width: 520px) {
  .core-focus-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Technology & Innovation — centered headline + four white pill cards (site palette, no blue accent) ── */
.tech-innovation-section {
  position: relative;
  padding: clamp(72px, 8vw, 108px) 0;
  background: var(--bg);
  border-top: 1px solid rgba(22, 23, 26, 0.06);
  scroll-margin-top: 140px;
  overflow: visible;
}

.tech-innovation-section .container {
  overflow: visible;
}

.tech-innovation-head {
  margin-bottom: 0;
  max-width: min(48rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  overflow: visible;
}

/* Escalator & Elevator — second band (same surface as section; spacing only, no outer card) */
.tech-innovation-addendum.section-add {
  margin-top: clamp(2.75rem, 6.5vw, 4.5rem);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.tech-innovation-addendum .tech-innovation-subtitle {
  margin: 0 auto;
  max-width: min(52rem, 100%);
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.85rem, 3.9vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--ink);
}

.tech-innovation-addendum .tech-innovation-panel {
  margin-top: clamp(1.65rem, 3vw, 2.45rem);
}

.tech-innovation-addendum .tech-innovation-item-text {
  line-height: 1.42;
}

.tech-innovation-title {
  margin: 0;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: var(--ink);
}

.tech-innovation-lead {
  margin: clamp(1.1rem, 2.2vw, 1.45rem) auto 0;
  max-width: min(44rem, 100%);
  padding-inline: 6px;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--muted);
}

html:lang(de) .tech-innovation-lead {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.tech-innovation-panel {
  margin-top: clamp(1.85rem, 3.4vw, 2.65rem);
  padding: 0;
}

.tech-innovation-grid {
  counter-reset: ti;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  align-items: stretch;
}

.tech-innovation-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(72px, 10vw, 96px);
  padding: clamp(16px, 2.4vw, 22px) clamp(14px, 2vw, 20px);
  border-radius: clamp(16px, 2.5vw, 22px);
  background: #ffffff;
  border: 1px solid rgba(22, 23, 26, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(18, 20, 24, 0.06);
  overflow: hidden;
}

.tech-innovation-item::before {
  counter-increment: ti;
  content: counter(ti, decimal-leading-zero);
  position: absolute;
  top: clamp(10px, 1.5vw, 14px);
  left: clamp(12px, 2vw, 16px);
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(22, 23, 26, 0.32);
}

.tech-innovation-item-text {
  display: block;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

html:lang(de) .tech-innovation-item-text {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

@media (max-width: 900px) {
  .tech-innovation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .tech-innovation-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Engineering Team — site palette; stacked list vs Technology & Innovation 4-up tiles ── */
.engineering-team-section {
  position: relative;
  padding: clamp(64px, 7vw, 96px) 0;
  background: var(--bg);
  scroll-margin-top: 140px;
  overflow: visible;
}

.engineering-team-inner {
  max-width: min(1180px, 92vw);
}

.engineering-team-head {
  margin-bottom: 0;
  max-width: min(40rem, 100%);
  text-align: left;
}

.engineering-team-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
}

.engineering-team-title::after {
  display: none;
}

.engineering-team-lead {
  margin: clamp(0.85rem, 1.8vw, 1.15rem) 0 0;
  max-width: min(38rem, 100%);
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--muted);
}

html:lang(de) .engineering-team-lead {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.engineering-team-panel {
  margin-top: clamp(1.5rem, 2.8vw, 2.15rem);
  padding: 0;
}

.engineering-team-grid {
  counter-reset: et;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: min(52rem, 100%);
  border-radius: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(18, 21, 27, 0.08);
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(18,21,27,0.04), 0 20px 60px rgba(18,21,27,0.08);
  overflow: hidden;
}

.engineering-team-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(2.85rem, 3.5rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  padding: clamp(14px, 2.2vw, 18px) clamp(16px, 2.4vw, 22px);
  border-bottom: 1px solid rgba(18, 21, 27, 0.06);
  background: #ffffff;
  overflow: hidden;
  transition:
    background 0.3s cubic-bezier(0.22,1,0.36,1),
    transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.engineering-team-item:last-child {
  border-bottom: none;
}

/* shimmer sweep */
.engineering-team-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.55) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

/* number badge */
.engineering-team-item::before {
  counter-increment: et;
  content: counter(et, decimal-leading-zero);
  position: static;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(18,21,27,0.06);
  border: 1px solid rgba(18,21,27,0.09);
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(18,21,27,0.5);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  z-index: 1;
}

.engineering-team-item-text {
  display: block;
  margin: 0;
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.88rem, 1.12vw, 1.02rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.02em;
  color: rgba(18,21,27,0.65);
  transition: color 0.25s;
  position: relative;
  z-index: 1;
}

html:lang(de) .engineering-team-item-text {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

@media (hover: hover) and (pointer: fine) {
  .engineering-team-item:hover {
    background: rgba(18,21,27,0.04);
    transform: translateX(6px);
  }
  .engineering-team-item:hover::after {
    transform: translateX(100%);
  }
  .engineering-team-item:hover::before {
    background: var(--ink);
    border-color: var(--ink);
    color: #ffffff;
  }
  .engineering-team-item:hover .engineering-team-item-text {
    color: var(--ink);
  }
}

@media (max-width: 680px) {
  .engineering-team-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .engineering-team-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .engineering-team-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .engineering-team-grid {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Safety Concept — dark, left-aligned timeline (contrasts centered Technical Standards) ── */
.safety-concept-section {
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  background: transparent;
  scroll-margin-top: 140px;
  overflow: hidden;
}

.safety-concept-section::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: 0 clamp(16px, 3vw, 40px);
  background: #12141a;
  border-radius: clamp(24px, 3vw, 40px);
  z-index: 0;
  pointer-events: none;
}

.safety-concept-section .container,
.safety-concept-section > * {
  position: relative;
  z-index: 1;
}

.safety-concept-section .container {
  max-width: min(1180px, 92vw);
}

.safety-concept-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
}

.safety-concept-col {
  min-width: 0;
}

.safety-concept-col--why {
  padding-left: clamp(1rem, 3vw, 2.25rem);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.safety-concept-head {
  margin-bottom: 0;
  max-width: min(38rem, 100%);
  margin-inline: 0 auto;
  text-align: start;
}

.safety-concept-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: rgba(255,255,255,0.96);
}

.safety-concept-title::after { display: none; }

.safety-concept-section .section-underline {
  background: rgba(255,255,255,0.5);
}

.safety-concept-lead {
  margin: clamp(1.1rem, 2.2vw, 1.45rem) 0 0;
  max-width: min(40rem, 100%);
  padding-inline: 0;
  text-align: start;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.58);
}

html:lang(de) .safety-concept-lead {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.safety-concept-subtitle {
  margin: 0;
  max-width: min(38rem, 100%);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.96);
  text-align: start;
}

.safety-concept-subtitle::after { display: none; }

.safety-concept-panel {
  margin-top: clamp(2rem, 3.6vw, 2.75rem);
  padding: 0;
  max-width: min(36rem, 100%);
}

.safety-concept-col--why .safety-concept-panel {
  margin-top: clamp(1.35rem, 2.6vw, 2rem);
}

.safety-concept-col .safety-concept-panel {
  max-width: 100%;
}

.safety-concept-steps {
  counter-reset: sc;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0 clamp(2.65rem, 5vw, 3.15rem);
}

.safety-concept-steps::before {
  display: none;
}

.safety-concept-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  text-align: start;
  padding: 0 0 clamp(1.15rem, 2.2vw, 1.45rem);
  border: none;
}

.safety-concept-item:last-child {
  padding-bottom: 0;
}

.safety-concept-item::before {
  counter-increment: sc;
  content: counter(sc, decimal-leading-zero);
  position: absolute;
  inset-inline-start: calc(-1 * clamp(2.65rem, 5vw, 3.15rem) + 0.12rem);
  top: 0.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.safety-concept-item:hover::before {
  background: #ffffff;
  border-color: #ffffff;
  color: #12141a;
}

.safety-concept-item-text {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}

.safety-concept-item:hover .safety-concept-item-text {
  color: rgba(255,255,255,0.95);
  transform: translateX(5px);
}

html:lang(de) .safety-concept-item-text {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

@media (max-width: 960px) {
  .safety-concept-split {
    grid-template-columns: 1fr;
  }

  .safety-concept-col--why {
    padding-left: 0;
    border-left: none;
    padding-top: clamp(2rem, 5vw, 2.75rem);
    margin-top: clamp(0.25rem, 1.5vw, 0.75rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 520px) {
  .safety-concept-head {
    max-width: 100%;
  }

  .safety-concept-panel {
    max-width: 100%;
  }
}

.offers-wrap {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.offers-head h3 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 720px;
}

.offers-head p {
  margin: 10px 0 0;
  color: #5d626d;
  line-height: 1.5;
  max-width: 78ch;
}

.offers-grid-shell {
  border-radius: 22px;
  padding: clamp(22px, 3.2vw, 40px);
  background: linear-gradient(165deg, #fafbfd 0%, #f3f5f8 48%, #eef1f5 100%);
  border: 1px solid rgba(18, 21, 27, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 56px rgba(18, 20, 24, 0.07);
}

.offers-cta {
  display: inline-flex;
  margin-top: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 980px;
  background: #1d1d1f;
  color: #f5f5f7;
  padding: 12px 26px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  transition: color 280ms ease, box-shadow 280ms ease;
}

.offers-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #f5f5f7;
  z-index: -1;
  transform: translateY(101%) translateZ(0);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.3, 1);
}

.offers-cta:hover::before { transform: translateY(0) translateZ(0); }

.offers-cta:hover {
  color: #1d1d1f;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.offers-cta::after {
  content: '→';
  display: inline-block;
  width: 1.1em;
  text-align: center;
  font-weight: 300;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 240ms ease 60ms, transform 300ms cubic-bezier(0.22,1,0.36,1) 40ms;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.offers-cta:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.offers-board {
  counter-reset: offer;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 16px;
}

.offer-tile {
  position: relative;
  border-radius: 14px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(18, 21, 27, 0.08);
  background: #ffffff;
  min-height: 0;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
  counter-increment: offer;
}

.offer-tile h4 {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.022em;
  color: #0e1118;
}

.offer-tile h4::before {
  content: counter(offer, decimal-leading-zero);
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(32, 92, 151, 0.55);
  margin-bottom: 10px;
}

.offer-tile p {
  margin: 10px 0 0;
  color: #5a606c;
  line-height: 1.5;
  font-size: 0.9rem;
}

.offer-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 92, 151, 0.22);
  box-shadow:
    0 0 0 1px rgba(32, 92, 151, 0.08),
    0 16px 36px rgba(18, 24, 40, 0.1);
}

@media (max-width: 1200px) {
  .offers-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .offers-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offers-grid-shell {
    padding: 20px 18px;
  }
}

@media (max-width: 560px) {
  .offers-board {
    grid-template-columns: 1fr;
  }
}

/* ===== INDUSTRIAL VISION ===== */
.industrial-vision-section {
  position: relative;
  padding: 0 0 96px;
  background: transparent;
  overflow: hidden;
}

/* Dark rounded panel */
.industrial-vision-bg {
  position: absolute;
  inset: 0;
  margin: 0 clamp(16px, 3vw, 40px);
  background: #111113;
  border-radius: clamp(24px, 3vw, 40px);
  pointer-events: none;
  z-index: 0;
}

/* No grid, no orbs */
.industrial-vision-grid { display: none; }
.industrial-vision-orb  { display: none; }

.industrial-vision-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-top: 96px;
}

.industrial-vision-intro {
  min-width: 0;
}

.industrial-vision-intro-copy {
  min-width: 0;
}

.industrial-vision-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
  color: #ffffff;
}

.industrial-vision-subtitle {
  margin: 1.2rem 0 0;
  max-width: 38em;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.94rem, 1.08vw, 1.1rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.5);
}

.industrial-vision-panel {
  position: relative;
  border-radius: clamp(16px, 2vw, 22px);
  padding: clamp(22px, 3.2vw, 32px) clamp(18px, 2.8vw, 28px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
}

.industrial-vision-panel::before { display: none; }

.industrial-vision-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.industrial-vision-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 18px);
  padding: 14px 14px 14px 12px;
  margin: 0;
  border-radius: 14px;
  outline: none;
  cursor: pointer;
  transition:
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.industrial-vision-item:focus-visible {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

.industrial-vision-item:hover:not(.is-active) {
  background: rgba(255,255,255,0.05);
}

.industrial-vision-item.is-active {
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}

.industrial-vision-rail {
  width: 3px;
  margin-top: 0.35em;
  align-self: stretch;
  min-height: 1.15em;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition:
    background 0.35s ease,
    width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.industrial-vision-item.is-active .industrial-vision-rail {
  width: 4px;
  margin-top: 0.28em;
  background: #ffffff;
  box-shadow: none;
}

.industrial-vision-item-body {
  min-width: 0;
  flex: 1;
}

.industrial-vision-text {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.96rem, 1.1vw, 1.07rem);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease, font-weight 0.25s ease;
}

.industrial-vision-item.is-active .industrial-vision-text {
  font-weight: 600;
  color: #ffffff;
}

.industrial-vision-detail {
  margin: 0.5em 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.84rem, 0.95vw, 0.92rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.015em;
  color: rgba(255,255,255,0.45);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    margin 0.35s ease;
}

.industrial-vision-item.is-active .industrial-vision-detail {
  max-height: 8rem;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .industrial-vision-detail {
    transition: none;
  }

  .industrial-vision-grid,
  .industrial-vision-title {
    animation: none;
  }

  .industrial-vision-title {
    color: var(--ink);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }
}

@media (max-width: 900px) {
  .industrial-vision-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .industrial-vision-intro {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .industrial-vision-section {
    padding: 68px 0 80px;
  }

  .industrial-vision-shell {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .industrial-vision-intro,
  .industrial-vision-intro-copy {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .industrial-vision-title {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .industrial-vision-panel {
    padding: 18px 16px 20px;
  }

  .industrial-vision-item {
    padding: 12px 10px;
  }

  .industrial-vision-item.is-active .industrial-vision-detail {
    max-height: 11rem;
  }
}

/* ===== VISION / MISSION / VALUES ===== */
.vmv-section {
  position: relative;
  background: transparent;
  color: #f5f5f7;
  padding: 72px 0 80px;
}

.vmv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: 0 clamp(16px, 3vw, 40px);
  background: #1d1d1f;
  border-radius: clamp(24px, 3vw, 40px);
  z-index: 0;
  pointer-events: none;
}

.vmv-section .container,
.vmv-section > * {
  position: relative;
  z-index: 1;
}

.vmv-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 44px;
}

.vmv-header .chip {
  background: rgba(255,255,255,0.08);
  color: #f5f5f7;
  border: 1px solid rgba(255,255,255,0.12);
}

.vmv-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #f5f5f7;
  white-space: pre-line;
  margin: 0;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
}

.vmv-card {
  position: relative;
  padding: 48px 40px 52px;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: background 0.4s ease;
}

.vmv-card:last-child { border-right: none; }
.vmv-card:hover { background: rgba(255,255,255,0.06); }

.vmv-index {
  font-family: 'Outfit', sans-serif;
  font-size: 4.5rem;
  font-weight: 200;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.vmv-card h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 20px;
}

.vmv-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.vmv-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vmv-values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
}

.vmv-values-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.vmv-accent {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 860px) {
  .vmv-grid { grid-template-columns: 1fr; }
  .vmv-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .vmv-card:last-child { border-bottom: none; }
  .vmv-header h2 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }
  .vmv-card { padding: 28px 22px 32px; }
  .vmv-index { font-size: 3rem; margin-bottom: 14px; }
}

@media (max-width: 480px) {
  .vmv-section {
    padding: 56px 0 64px;
    overflow: visible;
  }
  .vmv-section::before {
    border-radius: clamp(16px, 3vw, 28px);
    overflow: hidden;
  }
  .vmv-grid {
    border-radius: 16px;
  }
  .vmv-card { padding: 24px 18px 28px; }
  .vmv-index { font-size: 2.5rem; margin-bottom: 10px; }
  .vmv-card h3 { font-size: 0.68rem; margin-bottom: 10px; }
  .vmv-card p { font-size: 0.92rem; line-height: 1.6; }
}
/* ===== END VMV ===== */

/* ===== OFFICES & FACILITIES ===== */
.offices-section {
  background: #ececef;
  padding: 100px 0 120px;
}

.offices-header,
.facilities-header {
  margin-bottom: 52px;
}

.offices-header h2,
.facilities-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin: 12px 0 14px;
}

.offices-header p,
.facilities-header p {
  font-size: 1rem;
  color: rgba(0,0,0,0.5);
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

/* Offices grid */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.office-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.office-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.office-img--berlin {
  background-color: #3d4f63;
  background-image: url("../assets/Office1%28Berlin%29.png");
}

.office-img--leipzig {
  background-color: #1a2434;
  background-image: url("../assets/Office2%28Lipzig%29.png");
}

.office-img--italy {
  background-color: #3d5240;
  background-image: url("../assets/Office3%28Italy%29%20.png");
}

.office-img-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 20px;
}

.office-body {
  padding: 24px 28px 28px;
}

.office-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.office-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin: 0 0 12px;
}

.office-body p:last-child {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.65;
  margin: 0;
}

/* Divider */
.offices-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 72px 0;
}

/* Facilities grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.facility-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.facility-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.facility-location {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin: 0 0 12px;
}

.facility-body p:last-child {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 860px) {
  .offices-grid,
  .facilities-grid { grid-template-columns: 1fr; }
}
/* ===== END OFFICES & FACILITIES ===== */

/* ===== PARTNERS REEL ===== */
.partners-reel-section {
  position: relative;
  background: transparent;
  padding: 88px 0 100px;
  overflow: hidden;
}

.partners-reel-section::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: 0 clamp(16px, 3vw, 40px);
  background: #1d1d1f;
  border-radius: clamp(24px, 3vw, 40px);
  z-index: 0;
  pointer-events: none;
}

.partners-reel-section .container,
.partners-reel-section > * {
  position: relative;
  z-index: 1;
}

.partners-reel-section .container {
  padding-left: clamp(32px, 5vw, 64px);
  padding-right: clamp(32px, 5vw, 64px);
}

.partners-reel-section .partners-reel-track-wrap {
  padding: 0 clamp(32px, 5vw, 72px);
  margin-top: 0;
}

.partners-reel-header {
  margin-bottom: 20px;
}

.partners-reel-chip {
  background: rgba(255,255,255,0.08);
  color: #f5f5f7;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 16px;
}

.partners-reel-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f5f5f7;
  margin: 0;
}

.partners-reel-hook {
  max-width: min(42rem, 100%);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 24px;
  padding: 0;
}

@media (min-width: 1024px) {
  .partners-reel-hook {
    padding: 0;
  }
}

/* 5-column grid */
.partners-reel-track-wrap {
  position: relative;
  margin-top: 0;
}

.partners-reel-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 0;
}

.reel-fade-left,
.reel-fade-right { display: none; }

/* Individual cards */
.reel-card {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

/* Accent line that grows in from left on hover */
.reel-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.55), rgba(255,255,255,0.1));
  border-radius: 0 0 24px 24px;
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}

.reel-card:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.065);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}

.reel-card:hover::after {
  width: 100%;
}

/* Logo area — white bg so logos read clearly */
.reel-img-wrap {
  width: 100%;
  height: 100px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  box-sizing: border-box;
}

.reel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.22);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
  display: block;
}

.reel-card:hover .reel-img-wrap img {
  transform: scale(1.3);
}

/* Index number badge */
.reel-index {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
  font-family: 'Outfit', sans-serif;
}

.reel-card-body {
  padding: 14px 16px 18px;
}

.reel-country {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: block;
  margin-bottom: 7px;
}

.reel-card-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f5f5f7;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  font-family: 'Outfit', sans-serif;
}

.reel-card-body p {
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* Footer hint */
.partners-reel-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.reel-drag-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .partners-reel-track { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .partners-reel-header { flex-direction: column; align-items: flex-start; }
  .partners-reel-hook { max-width: 100%; }
  .partners-reel-track { grid-template-columns: repeat(2, 1fr); }
}

/* ===== END PARTNERS REEL ===== */

/* ===== TIMELINE ===== */
.timeline-section {
  background: linear-gradient(180deg, #e8eaee 0%, var(--bg) 42%, var(--bg) 100%);
  color: #1d1d1f;
  padding: 100px 0 140px;
  overflow: hidden;
}

.timeline-section .section-head {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-section .section-head h3 {
  color: #1d1d1f;
  max-width: 640px;
  margin: 16px auto 0;
}

.timeline-section .section-head > p {
  margin: 14px auto 0;
  max-width: 48ch;
}

.timeline-track {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SVG snake path drawn on scroll */
.tl-snake-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.tl-snake-path {
  fill: none;
  stroke: #1d1d1f;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  transition: stroke-dashoffset 0.04s linear;
  opacity: 0.18;
}

/* Each milestone row */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.timeline-item.tl-left {
  transform: translateX(-48px);
}

.timeline-item.tl-right {
  transform: translateX(48px);
}

.timeline-item.tl-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Left slot — card or empty */
.tl-slot-left {
  display: flex;
  justify-content: flex-end;
  padding-right: 28px;
}

/* Right slot — card or empty */
.tl-slot-right {
  padding-left: 28px;
}

/* Centre node */
.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
}

.tl-node-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid rgba(0,0,0,0.2);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.timeline-item.tl-visible .tl-node-dot {
  background: #1d1d1f;
  border-color: #1d1d1f;
  transform: scale(1.4);
}

/* Card */
.tl-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
  max-width: 380px;
  width: 100%;
}

.tl-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* Big bold year */
.tl-year {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(29, 29, 31, 0.62);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.tl-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

/* Description only — year is also a <p>, so :not avoids overriding .tl-year */
.tl-card p:not(.tl-year) {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.48);
  line-height: 1.65;
  margin: 0;
}

/* Empty slot placeholder for alternating layout */
.tl-empty { flex: 1; }

@media (max-width: 700px) {
  /* Single-column stacked timeline — hide snake SVG, left slots, centre node */
  .tl-snake-svg { display: none; }

  .timeline-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-bottom: 24px;
  }

  .tl-slot-left { display: none; }
  .tl-node { display: none; }
  .tl-slot-right {
    grid-column: 1;
    padding-left: 0;
  }

  /* All items enter from bottom — no left/right */
  .timeline-item.tl-left,
  .timeline-item.tl-right { transform: translateY(24px); }
  .timeline-item.tl-visible { transform: translateY(0); }

  .tl-year { font-size: 3rem; }

  .tl-card {
    width: 100%;
    max-width: 100%;
  }

  .timeline-track {
    padding: 0 16px;
  }
}
/* ===== END TIMELINE ===== */

.ratings-wrap {
  display: grid;
  gap: 22px;
}

.ratings-head h3 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 760px;
}

.ratings-marquee {
  overflow: hidden;
  border-radius: 20px;
  background: #f3f4f7;
  border: 1px solid rgba(18, 21, 27, 0.07);
  padding: 18px 0;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}

.ratings-marquee.is-dragging {
  cursor: grabbing;
}

.ratings-track {
  display: flex;
  gap: 14px;
  will-change: transform;
  padding: 0 16px;
}

.rating-card {
  flex: 0 0 min(360px, 74vw);
  border-radius: 18px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(18, 21, 27, 0.08);
  box-shadow: 0 2px 8px rgba(18, 20, 24, 0.05), 0 12px 28px rgba(18, 20, 24, 0.07);
}

.rating-stars {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: #f5a623;
  margin-bottom: 14px;
}

.rating-card blockquote {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #171b24;
  max-width: 26ch;
}

.rating-company {
  margin: 14px 0 0;
  color: #646c78;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-wrap h3 {
  margin: 14px 0 26px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 900px;
}

.faq-wrap h3 a {
  border-bottom: 2px solid #0f1117;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  border-radius: 14px;
  background: rgba(240, 240, 243, 0.85);
  border: 1px solid rgba(18, 21, 27, 0.06);
  padding: 18px 20px;
  transform: translateY(var(--faq-shift, 0px));
  opacity: var(--faq-opacity, 1);
  will-change: transform, opacity;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

.faq-list details.is-expanded {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(18, 20, 24, 0.08);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.38;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(18, 21, 27, 0.08) url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5L6 8.5L10 4.5' stroke='%23171b24' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), background-color 200ms ease;
}

.faq-list details.is-expanded summary::after,
.faq-list details.is-opening summary::after {
  transform: rotate(180deg);
  background-color: rgba(18, 21, 27, 0.13);
}

.faq-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details.is-expanded .faq-drawer,
.faq-list details.is-opening .faq-drawer {
  max-height: var(--faq-open-height, 420px);
}

.faq-list details.is-closing .faq-drawer {
  max-height: 0;
}

.faq-content {
  overflow: hidden;
  padding-top: 12px;
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details.is-expanded .faq-content,
.faq-list details.is-opening .faq-content {
  opacity: 1;
  transform: translateY(0);
}

.faq-list details.is-closing .faq-content {
  opacity: 0;
  transform: translateY(-6px);
}

.faq-content p {
  margin: 0;
  color: #4e5460;
  line-height: 1.5;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.contact-left h2 {
  margin: 16px 0 10px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-left p {
  margin: 0;
  color: #5d626d;
  max-width: 52ch;
  line-height: 1.55;
}

.contact-cards {
  margin-top: 48px;
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.contact-card {
  border-radius: 16px;
  background: #f3f3f6;
  border: 1px solid rgba(18, 21, 27, 0.08);
  padding: 16px 16px;
  display: grid;
  gap: 6px;
}

.contact-card span {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a707c;
}

.contact-card strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.contact-card em {
  font-style: normal;
  color: #5d626d;
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form-card {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(18, 21, 27, 0.07);
  box-shadow: 0 2px 4px rgba(18, 20, 24, 0.04), 0 18px 42px rgba(18, 20, 24, 0.09);
  padding: 24px;
  margin-top: 60px;
  align-self: start;
}

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

.contact-row label {
  display: grid;
  gap: 8px;
}

.contact-row span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1d2129;
}

.contact-row input,
.contact-row textarea {
  width: 100%;
  border-radius: 10px;
  border: 1.5px solid rgba(18, 21, 27, 0.12);
  background: #fafafa;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.96rem;
  color: #12151b;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-row input:hover,
.contact-row textarea:hover {
  border-color: rgba(18, 21, 27, 0.22);
  background: #fff;
}

.contact-row textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-row input:focus,
.contact-row textarea:focus {
  border-color: rgba(0, 100, 210, 0.48);
  box-shadow: 0 0 0 3px rgba(0, 100, 210, 0.12);
  outline: none;
}

.contact-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5d626d;
  font-size: 0.92rem;
}

.contact-consent input {
  width: 16px;
  height: 16px;
}

.contact-submit {
  justify-self: start;
  border: 0;
  border-radius: 980px;
  padding: 13px 28px;
  background: #121317;
  color: #f4f5f7;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease, background 180ms ease;
}

.contact-submit:hover {
  background: #1c1c22;
  transform: scale(1.024);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.contact-submit:active {
  transform: scale(0.98);
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

.bottom-slogan {
  position: relative;
  margin-top: 6px;
  z-index: 1;
  padding: 92px 0 254px;
  overflow: hidden;
}

.bottom-slogan-title {
  margin: 0;
  display: grid;
  gap: 0;
  font-size: clamp(2rem, 6.8vw, 5.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: rgba(22, 26, 33, 0.84);
}

.bottom-slogan-title span {
  display: block;
}

.bottom-slogan-title .is-blur {
  position: relative;
  top: 26px;
  color: rgba(22, 26, 33, 0.28);
  filter: blur(5.4px);
}

/* About — Organizational Structure */
.about-org {
  margin-top: clamp(18px, 3vw, 26px);
  pointer-events: auto;
}

.about-org-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius);
  padding: clamp(36px, 4.5vw, 52px) clamp(26px, 4.2vw, 48px);
  border: 1px solid rgba(18,21,27,0.08);
  box-shadow: 0 2px 4px rgba(18,21,27,0.04), 0 20px 60px rgba(18,21,27,0.08);
  overflow: hidden;
}

.about-org-card::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,21,27,0.03) 0%, transparent 65%);
  pointer-events: none;
}

.about-org-head {
  max-width: min(58rem, 100%);
  margin-bottom: clamp(1.35rem, 2.8vw, 1.85rem);
  padding-bottom: clamp(1.1rem, 2vw, 1.45rem);
  border-bottom: 1px solid rgba(18,21,27,0.07);
  position: relative;
  z-index: 1;
}

.about-org-heading {
  margin: 0 0 0.65em;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.about-org-lead {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.92rem, 1.12vw, 1.05rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.01em;
  color: var(--muted);
  text-wrap: balance;
}

.about-org-list {
  --org-gap: clamp(14px, 2vw, 20px);
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--org-gap);
  align-items: stretch;
}

/* Wide German copy: 2×2 until there is room for four comfortable columns */
@media (min-width: 560px) {
  .about-org-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1360px) {
  .about-org-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* German: keep two columns longer — avoids cramped four-up with long compounds */
@media (min-width: 560px) and (max-width: 1519px) {
  html:lang(de) .about-org-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1520px) {
  html:lang(de) .about-org-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

.about-org-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(18px, 2vw, 24px) clamp(16px, 1.8vw, 20px);
  border-radius: 16px;
  background: #f7f7f8;
  border: 1px solid rgba(18,21,27,0.07);
  overflow: hidden;
  transition:
    background 0.4s cubic-bezier(0.22,1,0.36,1),
    border-color 0.4s cubic-bezier(0.22,1,0.36,1),
    transform 0.45s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}

/* Top-edge line draws in left to right */
.about-org-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(18,21,27,0.35) 30%, rgba(18,21,27,0.35) 70%, transparent 100%);
  border-radius: 0 0 2px 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

/* Shimmer sweep */
.about-org-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.6) 50%, transparent 80%);
  transform: translateX(-110%);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.about-org-card.about-org-ready .about-org-item:hover {
  background: #ffffff;
  border-color: rgba(18,21,27,0.12);
  transform: translateY(-5px);
  box-shadow: 0 2px 4px rgba(18,21,27,0.04), 0 12px 32px rgba(18,21,27,0.08);
}

.about-org-card.about-org-ready .about-org-item:hover::before {
  transform: scaleX(1);
}

.about-org-card.about-org-ready .about-org-item:hover::after {
  transform: translateX(110%);
}

.about-org-card.about-org-ready .about-org-item:hover .about-org-index {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  transform: scale(1.1) rotate(-4deg);
}

.about-org-index {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 8px;
  background: rgba(18,21,27,0.07);
  border: 1px solid rgba(18,21,27,0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(18,21,27,0.6);
  margin-top: 2px;
  transition: background 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s, color 0.35s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.about-org-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45em;
}

.about-org-name {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.about-org-desc {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.78rem, 0.92vw, 0.86rem);
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: 0.015em;
  color: var(--muted);
}

html:lang(de) .about-org-desc,
html:lang(de) .about-org-lead {
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 8 4 4;
  overflow-wrap: break-word;
}

html:lang(de) .about-org-name {
  line-height: 1.32;
}

/* About — Work Philosophy (terminology points 25–29) */
.about-philosophy {
  margin-top: clamp(18px, 3vw, 26px);
  pointer-events: auto;
}

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

.about-philo-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius);
  padding: clamp(38px, 4.8vw, 56px) clamp(26px, 4.2vw, 48px);
  border: 1px solid rgba(18,21,27,0.08);
  box-shadow: 0 2px 4px rgba(18,21,27,0.04), 0 20px 60px rgba(18,21,27,0.08);
  overflow: hidden;
}

.about-philo-card::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,21,27,0.03) 0%, transparent 65%);
  pointer-events: none;
}

.about-philo-head {
  margin-bottom: clamp(1.15rem, 2.2vw, 1.5rem);
  padding-bottom: clamp(0.85rem, 1.5vw, 1.1rem);
  border-bottom: 1px solid rgba(18, 21, 27, 0.07);
}

.about-philo-heading {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.about-philo-triad {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 clamp(1.5rem, 2.8vw, 2rem);
}

.about-philo-pillar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 1.05em;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(18,21,27,0.04);
  border: 1px solid rgba(18,21,27,0.12);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset;
}

.about-philo-triad-sep {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(18, 21, 27, 0.22);
  user-select: none;
}

.about-philo-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.5vw, 14px);
  align-items: stretch;
  justify-items: stretch;
  width: 100%;
  margin-inline: auto;
}

/* Horizontal layout on larger viewports (matches previous 3-across cards) */
@media (min-width: 680px) {
  .about-philo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: min(820px, 100%);
  }
}

@media (min-width: 1024px) {
  .about-philo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: min(960px, 100%);
  }
}

.about-philo-cell {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  padding: clamp(11px, 1.4vw, 14px) clamp(12px, 1.5vw, 16px) clamp(11px, 1.4vw, 14px)
    clamp(11px, 1.4vw, 15px);
  border-radius: 14px;
  background: rgba(18,21,27,0.03);
  border: 1px solid rgba(18,21,27,0.08);
  box-shadow: inset 3px 0 0 0 rgba(18,21,27,0.18);
  overflow: hidden;
  transition:
    background 0.3s cubic-bezier(0.22,1,0.36,1),
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

/* shimmer on hover */
.about-philo-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.45) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.about-philo-cell-ix {
  flex-shrink: 0;
  width: 1.5rem;
  align-self: flex-start;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18,21,27,0.4);
  padding-top: 0.2em;
  transition: color 0.25s;
}

.about-philo-cell-text {
  flex: 1 1 auto;
  align-self: flex-start;
  min-width: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.78rem, 0.92vw, 0.88rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.01em;
  color: var(--muted);
}

html:lang(de) .about-philo-cell-text {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.about-philo-card.about-philo-ready .about-philo-cell:hover {
  background: rgba(18,21,27,0.06);
  border-color: rgba(18,21,27,0.16);
  box-shadow: inset 3px 0 0 0 var(--ink), 0 14px 36px rgba(18,21,27,0.1);
  transform: translateY(-4px);
}

.about-philo-card.about-philo-ready .about-philo-cell:hover::after {
  transform: translateX(100%);
}

.about-philo-card.about-philo-ready .about-philo-cell:hover .about-philo-cell-ix {
  color: var(--ink);
}

.about-philo-card.about-philo-ready .about-philo-cell:hover .about-philo-cell-text {
  color: var(--ink);
}

@media (max-width: 900px) {
  .about-philo-triad {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .about-philo-pillar {
    font-size: clamp(0.72rem, 3.2vw, 0.82rem);
    padding: 0.5em 0.85em;
  }

  .about-philo-triad-sep {
    display: none;
  }

  .about-philo-triad {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .about-philo-pillar {
    justify-content: center;
  }
}

/* Market Approach (terminology 30–34) — own section between About and Services */
.market-approach-section {
  position: relative;
  padding: clamp(64px, 7vw, 96px) 0;
  background: linear-gradient(180deg, #e8eaee 0%, var(--bg) 42%, var(--bg) 100%);
  border-top: 1px solid rgba(18, 21, 27, 0.07);
  scroll-margin-top: 140px;
}

.market-approach-head {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.85rem);
}

.market-approach-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--ink);
}

.market-approach-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
  align-items: stretch;
}

.market-approach-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 4.5rem;
  border-radius: 20px;
  padding: clamp(18px, 2.2vw, 26px) clamp(14px, 2vw, 20px);
  background: linear-gradient(165deg, #ffffff 0%, var(--surface) 100%);
  border: 1px solid rgba(18, 21, 27, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 28px rgba(18, 21, 27, 0.045);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.market-approach-item:hover {
  border-color: rgba(45, 103, 170, 0.24);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 16px 40px rgba(18, 21, 27, 0.07);
  transform: translateY(-3px);
}

.market-approach-item-text {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.9rem, 1.12vw, 1.04rem);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.015em;
  color: var(--ink);
}

html:lang(de) .market-approach-item-text {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

@media (max-width: 900px) {
  .market-approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .market-approach-grid {
    grid-template-columns: 1fr;
  }
}

.about-slideshow-wrap {
  margin-top: 32px;
  pointer-events: auto;
}

.about-slideshow {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0c0f16;
  box-shadow:
    0 2px 4px rgba(18, 20, 24, 0.06),
    0 18px 48px rgba(18, 20, 24, 0.14);
  border: 1px solid rgba(18, 21, 27, 0.08);
}

.about-slideshow-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

.about-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  z-index: 0;
}

.about-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.about-slide.is-exiting {
  opacity: 0;
  transform: scale(0.97);
  z-index: 1;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-slide figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 520px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(8, 10, 16, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
  z-index: 2;
}

.about-slideshow-nav {
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(12, 16, 24, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-slideshow-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #d4ddef;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.about-slideshow-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  transform: scale(1.08);
}

.about-slideshow-arrow:active {
  transform: scale(0.94);
}

.about-slideshow-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.about-slideshow-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0;
  transition: background 260ms ease, width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-slideshow-dots button.is-active {
  width: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.about-slideshow-dots button:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.5);
}

.about-slideshow-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.about-slideshow-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
  border-radius: 0 3px 3px 0;
  transition: width 50ms linear;
}

@media (max-width: 980px) {
  .about-slideshow-track {
    aspect-ratio: 16 / 10;
  }

  .about-slideshow-nav {
    bottom: 12px;
    right: 12px;
    gap: 8px;
    padding: 5px 6px;
  }

  .about-slideshow-arrow {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 640px) {
  .about-slideshow-wrap {
    margin-top: 24px;
  }

  .about-slideshow {
    border-radius: 16px;
  }

  .about-slideshow-track {
    aspect-ratio: 4 / 3;
  }

  .about-slide figcaption {
    font-size: 0.78rem;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 9px 13px;
  }

  .about-slideshow-nav {
    bottom: 10px;
    right: 10px;
    gap: 6px;
    padding: 4px 6px;
  }
}

.site-footer {

  margin: -254px 16px;
  position: relative;
  z-index: 6;
  border-radius: 18px 18px 0 0;
  background: #121318;
  color: #f2f3f5;
  padding: 44px 0 calc(50px + env(safe-area-inset-bottom, 0px));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) minmax(140px, 220px);
  gap: 34px;
  align-items: start;
}

/* Logo is the 4th column — was wrapping to row 2 under col 1 when only 3 tracks existed */
.footer-col--mark {
  justify-self: end;
  text-align: right;
}

.footer-col--mark .footer-contact-logo {
  margin-top: 0;
  margin-left: auto;
}

.footer-grid p {
  color: #b6bcc8;
  max-width: 420px;
}

.footer-grid h5 {
  margin: 8px 0 10px;
  font-size: 0.95rem;
  color: #9ea4b2;
}

.footer-grid a:not(.btn-light) {
  display: block;
  margin-bottom: 9px;
  color: #b6bcc8;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.footer-grid a:not(.btn-light):hover {
  color: #f2f3f5;
}

.footer-contact-logo {
  display: block;
  width: clamp(132px, 36vw, 200px);
  height: auto;
  margin-top: 16px;
}

/* Footer CTA pill: footer link colors must not override light button text */
.site-footer .footer-grid .btn-light {
  display: inline-flex;
  margin-bottom: 0;
  /* Footer is light bg — use default btn-light dark-fill scheme */
  background: #f5f5f7;
  color: #111217;
  border-color: rgba(20,20,24,0.14);
}

.site-footer .footer-grid .btn-light::before {
  background: #1d1d1f;
}

.site-footer .footer-grid .btn-light:hover {
  color: #f5f5f7;
}

.reveal {
  opacity: 1;
  transform: none;
}

/* Smooth section entry animations */
.reveal-pending {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-entering {
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-done {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-pending,
  .reveal-entering,
  .reveal-done {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .nav-pill,
  .menu-panel {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }

  .hero-overlay,
  .intro {
    will-change: auto;
  }

  .top-nav {
    will-change: auto;
    left: max(12px, env(safe-area-inset-left, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    transform: translateY(var(--nav-y, 0px)) scale(var(--nav-scale, 1));
  }

  .top-nav.nav-scrolled {
    transform: translateY(0) scale(1);
  }

  .nav-pill {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .top-nav.nav-scrolled .nav-pill {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .top-nav .brand {
    font-size: clamp(1.05rem, 4.5vw, 1.55rem);
    line-height: 1.15;
  }

  .top-nav .brand-mark {
    height: 30px;
    max-width: min(140px, 48vw);
  }

  .menu-strip {
    display: none;
  }

  .hero-overlay {
    /* Mobile: menu-strip hidden, only nav-pill (~74px). 110px clears it with room. */
    --hero-pad-x: max(20px, env(safe-area-inset-left, 0px));
    padding-top: max(13vh, calc(env(safe-area-inset-top, 0px) + 110px));
    padding-left: var(--hero-pad-x);
    padding-right: max(20px, env(safe-area-inset-right, 0px));
    padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
  }

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

  .hero-copy h1,
  .hero-copy .hero-corporate,
  .hero-copy p {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  }

  .h1-line--serif {
    font-size: clamp(1.95rem, 8.2vw, 3.35rem);
  }

  .h1-line--primary {
    font-size: clamp(0.78rem, 2.85vw, 1.18rem);
  }

  .h1-line--light {
    font-size: clamp(0.58rem, 2.45vw, 0.95rem);
    letter-spacing: 0.15em;
  }

  .services-sticky .container.two-col {
    padding-top: max(80px, calc(env(safe-area-inset-top, 0px) + 52px));
    gap: 28px;
  }

  .services-left h3 {
    padding-top: 6px;
    position: relative;
    z-index: 1;
  }

  /*
   * Use svh (stable viewport) instead of dvh: iOS Safari’s dynamic toolbar changes dvh while
   * ScrollTrigger uses ignoreMobileResize — scrub math desyncs and the story stack “tears”.
   */
  .service-story-viewport {
    height: min(520px, 82svh);
    min-height: min(520px, 82svh);
  }

  .service-story-slide {
    min-height: min(520px, 82svh);
    box-sizing: border-box;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .service-story-slide h4 {
    margin-bottom: 10px;
  }

  .service-story-stack {
    contain: none;
  }

  #serviceStoryCard.floating-card {
    overflow: visible;
    padding: 18px;
    isolation: isolate;
  }

  .services-card .service-photo {
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }

  .two-col,
  .stats-grid,
  .service-cards,
  .project-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-route-wrap {
    padding-top: 48px;
  }

  .process-route {
    display: none;
  }

  .process-grid article:nth-child(1),
  .process-grid article:nth-child(2),
  .process-grid article:nth-child(3) {
    margin-top: 0;
  }

  /* On mobile: collapse sticky scroll-driven service carousel into flat stacked slides */
  #services.section {
    padding-bottom: 60px;
    overflow: hidden;
  }
  .services-track {
    height: auto !important;
  }
  .services-sticky {
    position: static !important;
    min-height: auto !important;
    align-items: start;
    padding-top: 0 !important;
    padding-bottom: 0;
    box-sizing: border-box;
  }
  .services-sticky .container.two-col {
    padding-top: 24px !important;
  }
  .service-story-viewport {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  .service-story-stack {
    overflow: visible !important;
    height: auto !important;
  }
  .service-story-slide {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
    min-height: auto !important;
    margin-bottom: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px !important;
  }
  .service-story-slide:not(.is-active) {
    display: block !important;
    opacity: 1 !important;
  }
  .services-left {
    min-height: auto;
    gap: 22px;
  }

  .brain-overlay {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .brain-right {
    justify-self: start;
    text-align: left;
  }

  .project-deck {
    height: 390px;
  }

  .project-deck-card {
    width: 96%;
  }

  .project-deck-controls {
    width: 100%;
    top: 44%;
    padding: 0 4px;
  }

  .rating-card {
    flex-basis: min(328px, 86vw);
  }

  .rating-card blockquote {
    font-size: 1.3rem;
  }

  .carousel-dir-btn {
    width: 36px;
    height: 36px;
  }

  .service-tabs-specs-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }

  .service-specs {
    position: static;
    width: auto;
    top: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    pointer-events: auto;
    animation: none;
  }

  .service-specs::before {
    animation: none;
  }

  .service-spec-item {
    font-size: 0.88rem;
  }

  .service-tabs,
  .service-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bottom-slogan {
    padding: 78px 0 216px;
  }

  .site-footer {
    margin-top: -216px;
    margin-left: max(12px, env(safe-area-inset-left, 0px));
    margin-right: max(12px, env(safe-area-inset-right, 0px));
    padding-left: max(8px, env(safe-area-inset-left, 0px));
    padding-right: max(8px, env(safe-area-inset-right, 0px));
  }

  .site-footer .brand {
    font-size: 1.35rem;
  }

}

@media (max-width: 640px) {
  html {
    scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 82px);
  }

  .top-nav {
    top: max(14px, env(safe-area-inset-top, 0px));
  }

  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
  }

  .menu-panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
  }

  .hero-cta-bar {
    align-items: flex-start;
  }

  .section {
    padding: 70px 0;
  }

  .intro {
    margin-top: -40px;
  }

  .project-deck {
    height: 370px;
  }

  .project-deck-card {
    border-radius: 16px;
    padding: 10px;
  }

  .project-deck-controls {
    top: 46%;
    padding: 0 2px;
  }

  .carousel-dir-btn {
    width: 44px;
    height: 44px;
  }

  .project-deck {
    touch-action: manipulation;
  }

  .service-tabs,
  .service-products-grid {
    grid-template-columns: 1fr;
  }

  #serviceTabs.service-tabs {
    grid-auto-rows: minmax(104px, auto);
  }

  .service-tab {
    min-height: 104px;
    font-size: 0.86rem;
  }

  .service-tab-clip {
    height: 104px;
    min-height: 104px;
    max-height: 104px;
  }

  .service-specs {
    padding: 10px;
  }

  .project-image {
    height: 180px;
  }

  .bottom-slogan {
    padding: 70px 0 182px;
  }

  .bottom-slogan-title {
    line-height: 0.94;
    font-size: clamp(1.8rem, 10.8vw, 3.8rem);
  }

  .site-footer {
    margin-top: -182px;
    margin-left: max(10px, env(safe-area-inset-left, 0px));
    margin-right: max(10px, env(safe-area-inset-right, 0px));
    padding-top: 32px;
    padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer .brand {
    font-size: 1.22rem;
  }

  /* Compact 2-col footer on mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  /* Brand col spans full width */
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }

  /* Logo col hidden on mobile — reduces height significantly */
  .footer-col--mark {
    display: none;
  }

  .footer-grid a:not(.btn-light) {
    font-size: 0.88rem;
    margin-bottom: 6px;
  }

  .footer-grid h5 {
    font-size: 0.82rem;
    margin-bottom: 8px;
  }

  .footer-grid p {
    font-size: 0.88rem;
  }

  .footer-address {
    font-size: 0.82rem;
    margin-top: 8px;
  }

  .ratings-marquee {
    border-radius: 16px;
  }

  .rating-card {
    flex-basis: min(300px, 92vw);
    padding: 16px;
  }

  .rating-card blockquote {
    font-size: 1.16rem;
  }
}

/* Touch phones: backdrop-filter is a common source of scroll jank on Android. */
html.is-touch .nav-pill,
html.is-touch .menu-panel,
html.is-touch .menu-strip {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

html.is-touch .nav-pill,
html.is-touch .menu-panel {
  background: rgba(249, 249, 250, 0.98);
}

html.is-touch .menu-strip {
  background: rgba(246, 246, 247, 0.98);
}

@media (max-width: 980px) {
  html.is-save-data .services-track {
    height: 220vh;
  }

  html.is-light-mode .container {
    width: min(1180px, 94vw);
  }
}

@media (max-width: 640px) {
  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }
}

/* ============================================================
   PREMIUM ADDITIONS — scroll progress, split text, tilt,
   magnetic, marquee line, grain, shimmer, stagger base states
   ============================================================ */


/* ── Split-text word wrappers ── */
.sw {
  display: inline-block;
  overflow: visible;
  vertical-align: bottom;
  line-height: inherit;
  /* Larger padding for deep italic descenders (Cormorant y, g etc.) */
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
  padding-right: 0.08em;
  margin-right: -0.08em;
}

.sw-inner {
  display: inline-block;
  /* JS sets yPercent / opacity; fallback shows text normally */
}

/* ── Tilt card ── */
.tilt-card {
  position: relative;
  will-change: transform;
  isolation: isolate;
}

/* Tilt cards: overflow hidden keeps rounded corners clean while 3-D transforms apply */
.contact-form-card.tilt-card {
  overflow: hidden;
}

/* The injected shine overlay */
.tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  transition: opacity 300ms ease;
}

/* ── Marquee tagline line ── */
.marquee-line {
  overflow: hidden;
  padding: 16px 0;
  background: transparent;
  border-top: 1px solid rgba(18, 21, 27, 0.07);
  border-bottom: 1px solid rgba(18, 21, 27, 0.07);
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.marquee-line-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marqueeLineScroll 34s linear infinite;
  will-change: transform;
}

.marquee-line-track span {
  font-size: clamp(0.72rem, 1.3vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 21, 27, 0.22);
  white-space: nowrap;
}

.marquee-line-track .ml-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(18, 21, 27, 0.18);
  flex-shrink: 0;
}

@keyframes marqueeLineScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-line--people-achievements {
  margin: clamp(20px, 4vw, 48px) 0;
}

/* ── Grain texture on dark section ── */
#services.dark {
  position: relative;
}

#services.dark::after {
  content: '';
  position: absolute;
  inset: -60%;
  width: 220%;
  height: 220%;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
  pointer-events: none;
  z-index: 0;
  animation: grainDrift 0.6s steps(2) infinite;
}

@keyframes grainDrift {
  0%   { transform: translate(0,    0); }
  25%  { transform: translate(-1%,  1%); }
  50%  { transform: translate(1%,  -1%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(1%,   1%); }
}

/* ── Brain CTA — animated light sweep ── */
.brain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.055) 50%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
  animation: brainShimmer 5s ease-in-out infinite;
}

@keyframes brainShimmer {
  0%       { left: -120%; }
  40%, 100%{ left:  160%; }
}

/* ── Bottom slogan — dramatic gradient text ── */
.bottom-slogan-title span:not(.is-blur) {
  background: linear-gradient(
    135deg,
    #0f1117 0%,
    #2a2d36 40%,
    #0f1117 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: sloganGradient 6s ease infinite;
}

@keyframes sloganGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Floating keyframe — used on badges etc. ── */
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Make partner pills float subtly on hover */
.partner-pill:hover {
  animation: floatUp 1.2s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(18, 20, 24, 0.1);
}

/* ── Enhanced capability card hover glow ── */
.capability-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(18, 21, 27, 0.1),
    0 4px 8px rgba(18, 20, 24, 0.06),
    0 24px 40px rgba(18, 20, 24, 0.12);
  border-color: rgba(18, 21, 27, 0.14);
}

/* ── Trust badges pulse on hover ── */
.trust-badge--tuv:hover,
.trust-badge--dekra:hover {
  box-shadow: 0 6px 18px rgba(0, 80, 200, 0.16);
}

/* ── Stat number — subtle gradient ── */
.stats-grid h4 {
  background: linear-gradient(135deg, #0a0b0f 0%, #2a2e3a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Achievement copy chip ── */
.achievement-copy .chip {
  margin-bottom: 2px;
}

/* ── Contact form card subtle top-border accent ── */
.contact-form-card {
  border-top: 2px solid rgba(0, 85, 196, 0.14);
}

/* ── Section head subtitle ── */
.section-head p {
  margin: 0;
  color: #5d626d;
  font-size: 1.06rem;
  line-height: 1.58;
  max-width: 68ch;
}

/* ── Improved dark section pill list ── */
.pill-list li {
  border-radius: 10px;
  padding: 11px 14px;
}

/* ── Hero CTA bar enhanced ── */
.hero-cta-bar {
  background: rgba(12, 14, 18, 0.54);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  gap: 14px;
}

/* ── Footer brand larger ── */
.site-footer .brand {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-block;
  margin-bottom: 10px;
}

/* ── Footer description ── */
.footer-grid > div:first-child p {
  margin: 8px 0 16px;
  line-height: 1.6;
}

/* ── Reduced motion — kill all the new animations ── */
@media (prefers-reduced-motion: reduce) {
  .marquee-line-track,
  #services.dark::after,
  .brain-card::before,
  .bottom-slogan-title span {
    animation: none !important;
  }

  .sw-inner {
    opacity: 1 !important;
    transform: none !important;
  }

  .tilt-card {
    transform: none !important;
  }
}

/* ── Mobile tweaks for new elements ── */
@media (max-width: 980px) {
  .hero-cta-bar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(12, 14, 18, 0.62);
  }

  .marquee-line-track {
    animation-duration: 22s;
  }
}

/* ── Split-word reveal animation support ── */
.sw {
  display: inline-block;
  overflow: visible;
  vertical-align: bottom;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
}

.sw-inner {
  display: inline-block;
  will-change: transform, opacity;
}

/* ── 3-D card tilt base + shine overlay ── */
.tilt-card {
  position: relative;
}

.tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  transition: opacity 350ms ease;
}

/* ── Language Switcher ── */
.site-lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-lang-btn {
  border: none;
  background: transparent;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 8px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--muted);
  transition: color 200ms, background 200ms;
}

.site-lang-btn:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.05);
}

.site-lang-btn.is-active {
  color: #fff;
  background: var(--ink);
}

/* ── Touch / mobile performance ── */
@media (hover: none) and (pointer: coarse) {
  /* Strip backdrop-filter only from the elements that have it — avoids breaking nav bg */
  .menu-panel,
  .menu-toggle,
  .menu-panel-close,
  .scroll-nav-pill,
  .back-to-top,
  .hsp-pill,
  .service-products-head,
  .impact-top-spec,
  .impact-mid-icon,
  .impact-mid,
  .impact-blueprint-label,
  .impact-flow-step,
  .impact-console-body,
  .impact-bot-stat {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Disable 3-D tilt on touch — no hover anyway */
  .tilt-card {
    transform: none !important;
    transition: none !important;
  }

  /* No shimmer sweep on touch — saves a composited layer per card */
  .ig-card::after,
  .about-org-item::after {
    display: none;
  }
}

/* ── Mobile layout fixes ── */
@media (max-width: 700px) {
  /* Partners reel: 5th card fills the empty right cell */
  .partners-reel-track .reel-card:last-child:nth-child(2n+1) {
    grid-column: 1 / -1;
  }

  /* VMV header: ensure text doesn't overflow dark panel edges */
  .vmv-section .container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  /* Safety Concept: prevent left-edge text crop inside dark panel */
  .safety-concept-section .container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }
}
