:root {
  --global-nav-paper: rgba(251, 250, 246, 0.9);
  --global-nav-ink: #20242a;
  --global-nav-muted: #5c6670;
  --global-nav-line: rgba(90, 88, 80, 0.14);
  --global-nav-teal: #1d6b66;
  --global-nav-teal-dark: #144f4c;
  --global-nav-understand: #3f7080;
  --global-nav-reset: #4f715f;
  --global-nav-agentic: #6d667e;
}

.site-header.global-site-header[data-global-navigation] {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(217, 222, 213, 0.88);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: none;
  color: var(--global-nav-ink);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
  backdrop-filter: blur(16px) saturate(110%);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.global-site-header[data-global-navigation].is-scrolled {
  border-bottom-color: #d9ded5;
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 6px 20px rgba(31, 36, 42, 0.07);
}

.global-site-header *,
.global-site-header *::before,
.global-site-header *::after {
  box-sizing: border-box;
}

.global-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), 1120px);
  min-height: 68px;
  margin: 0 auto;
}

.global-nav-brand {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--global-nav-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.global-nav-brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.global-nav-logo {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  overflow: hidden;
  isolation: isolate;
}

.global-nav-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.global-nav-logo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 36%,
    rgba(255, 255, 255, 0.18) 43%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.18) 57%,
    transparent 64%
  );
  background-position: 130% 0;
  background-size: 260% 100%;
  opacity: 0;
  -webkit-mask: url("/assets/brand/jan-sudhoff-logo-systemic-entscheidungsfuge-mark-v1.svg") center / contain no-repeat;
  mask: url("/assets/brand/jan-sudhoff-logo-systemic-entscheidungsfuge-mark-v1.svg") center / contain no-repeat;
  animation: global-logo-signal-intro 720ms cubic-bezier(0.22, 0.72, 0.24, 1) 180ms 1 both;
}

@media (hover: hover) and (pointer: fine) {
  .global-nav-brand:hover .global-nav-logo::after {
    animation-name: global-logo-signal-hover;
  }
}

.global-nav-brand:focus-visible .global-nav-logo::after {
  animation-name: global-logo-signal-hover;
}

@keyframes global-logo-signal-intro {
  0% {
    background-position: 130% 0;
    opacity: 0;
  }

  14%,
  82% {
    opacity: 0.84;
  }

  100% {
    background-position: -30% 0;
    opacity: 0;
  }
}

@keyframes global-logo-signal-hover {
  0% {
    background-position: 130% 0;
    opacity: 0;
  }

  14%,
  82% {
    opacity: 0.84;
  }

  100% {
    background-position: -30% 0;
    opacity: 0;
  }
}

.global-nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--global-nav-muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.global-nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.global-nav-disclosure,
.global-nav-section-link,
.global-nav-direct {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 540;
  text-decoration: none;
}

.global-nav-disclosure {
  gap: 7px;
  cursor: pointer;
}

.global-nav-submenu-toggle {
  justify-content: center;
  width: 28px;
  margin-left: -6px;
}

.global-nav-disclosure:hover,
.global-nav-section-link:hover,
.global-nav-direct:hover,
.global-nav-disclosure.is-current,
.global-nav-section-link.is-current,
.global-nav-direct[aria-current="page"] {
  color: var(--global-nav-ink);
}

.global-nav-disclosure.is-current,
.global-nav-section-link.is-current,
.global-nav-direct[aria-current="page"] {
  font-weight: 680;
}

.global-nav-disclosure:focus-visible,
.global-nav-section-link:focus-visible,
.global-nav-direct:focus-visible,
.global-nav-panel a:focus-visible,
.global-nav-mobile-toggle:focus-visible,
.global-nav-mobile-disclosure:focus-visible,
.global-nav-mobile-section-link:focus-visible,
.global-nav-mobile-panel a:focus-visible,
.global-nav-mobile-direct:focus-visible {
  outline: 3px solid rgba(63, 112, 128, 0.38);
  outline-offset: 2px;
}

.global-nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 150ms ease;
}

[aria-expanded="true"] > .global-nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.global-nav-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: -10px;
  z-index: 2;
  display: grid;
  width: max-content;
  min-width: 208px;
  max-width: min(270px, calc(100vw - 32px));
  padding: 4px;
  border: 1px solid var(--global-nav-line);
  border-radius: 9px;
  background: var(--global-nav-paper);
  box-shadow: 0 8px 24px rgba(43, 51, 51, 0.1);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
}

.global-nav-panel::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 6px;
  content: "";
}

.global-nav-panel[hidden],
.global-nav-mobile[hidden],
.global-nav-mobile-panel[hidden] {
  display: none;
}

.global-nav-panel > a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 5px;
  color: rgba(43, 51, 51, 0.84);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.global-nav-panel > a:hover,
.global-nav-panel > a:focus-visible,
.global-nav-panel > a[aria-current="page"] {
  background: rgba(63, 112, 128, 0.1);
  color: var(--global-nav-ink);
}

.global-nav-panel > a[aria-current="page"] {
  box-shadow: inset 3px 0 0 rgba(63, 112, 128, 0.62);
  font-weight: 680;
}

.global-nav-panel > .global-nav-overview {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(81, 107, 122, 0.16);
  font-weight: 680;
}

.global-nav-overview-arrow {
  color: var(--global-nav-teal);
  font-size: 17px;
  line-height: 1;
}

.global-nav-panel-label {
  padding: 8px 10px 3px;
  color: rgba(43, 51, 51, 0.7);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.global-nav-panel > .global-nav-nested {
  min-height: 31px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 20px;
}

.global-nav-upcoming {
  display: grid;
  gap: 2px;
  margin: 4px 6px 0;
  padding: 10px 4px 5px;
  border-top: 1px solid rgba(81, 107, 122, 0.16);
  color: var(--global-nav-muted);
  cursor: default;
}

.global-nav-upcoming-title {
  color: var(--global-nav-ink);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.3;
}

.global-nav-upcoming-status {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.global-nav-modules > a:nth-of-type(1):hover,
.global-nav-modules > a:nth-of-type(1):focus-visible,
.global-nav-modules > a:nth-of-type(1)[aria-current="page"] {
  background: rgba(63, 112, 128, 0.11);
  box-shadow: inset 3px 0 0 rgba(63, 112, 128, 0.62);
}

.global-nav-modules > a:nth-of-type(2):hover,
.global-nav-modules > a:nth-of-type(2):focus-visible,
.global-nav-modules > a:nth-of-type(2)[aria-current="page"] {
  background: rgba(79, 113, 95, 0.11);
  box-shadow: inset 3px 0 0 rgba(79, 113, 95, 0.62);
}

.global-nav-modules > a:nth-of-type(3):hover,
.global-nav-modules > a:nth-of-type(3):focus-visible,
.global-nav-modules > a:nth-of-type(3)[aria-current="page"] {
  background: rgba(109, 102, 126, 0.11);
  box-shadow: inset 3px 0 0 rgba(109, 102, 126, 0.62);
}

.global-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--global-nav-teal);
  box-shadow: none;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.global-nav-cta:hover {
  background: var(--global-nav-teal-dark);
  box-shadow: none;
  color: #fff;
  transform: translateY(-1px);
}

.global-nav-cta:focus-visible,
.global-nav-mobile-cta:focus-visible {
  outline: 3px solid var(--global-nav-teal-dark);
  outline-offset: 3px;
}

.global-nav-mobile-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(29, 107, 102, 0.3);
  border-radius: 6px;
  background: transparent;
  color: var(--global-nav-teal-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
}

.global-nav-mobile-toggle-icon,
.global-nav-mobile-toggle-icon::before,
.global-nav-mobile-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 150ms ease, background-color 150ms ease;
}

.global-nav-mobile-toggle-icon {
  position: relative;
}

.global-nav-mobile-toggle-icon::before,
.global-nav-mobile-toggle-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.global-nav-mobile-toggle-icon::before { top: -6px; }
.global-nav-mobile-toggle-icon::after { top: 6px; }

.global-nav-mobile-toggle[aria-expanded="true"] .global-nav-mobile-toggle-icon {
  background: transparent;
}

.global-nav-mobile-toggle[aria-expanded="true"] .global-nav-mobile-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.global-nav-mobile-toggle[aria-expanded="true"] .global-nav-mobile-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.global-nav-mobile {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  padding: 0 0 16px;
}

.global-nav-mobile-inner {
  display: grid;
  padding: 8px;
  border: 1px solid var(--global-nav-line);
  border-radius: 9px;
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 10px 28px rgba(31, 36, 42, 0.09);
}

.global-nav-mobile-disclosure,
.global-nav-mobile-section-link,
.global-nav-mobile-direct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--global-nav-muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 560;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.global-nav-mobile-disclosure:hover,
.global-nav-mobile-disclosure:focus-visible,
.global-nav-mobile-section-link:hover,
.global-nav-mobile-section-link:focus-visible,
.global-nav-mobile-direct:hover,
.global-nav-mobile-direct:focus-visible,
.global-nav-mobile-disclosure.is-current,
.global-nav-mobile-section-link.is-current,
.global-nav-mobile-direct[aria-current="page"] {
  background: rgba(63, 112, 128, 0.09);
  color: var(--global-nav-ink);
}

.global-nav-mobile-section-row {
  display: flex;
  align-items: center;
}

.global-nav-mobile-section-link {
  flex: 1 1 auto;
  justify-content: flex-start;
}

.global-nav-mobile-submenu-toggle {
  flex: 0 0 44px;
  justify-content: center;
  width: 44px;
  padding-inline: 0;
}

.global-nav-mobile-panel {
  display: grid;
  padding: 2px 0 4px 14px;
}

.global-nav-mobile-panel > a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 5px;
  color: var(--global-nav-muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.global-nav-mobile-panel > a:hover,
.global-nav-mobile-panel > a:focus-visible,
.global-nav-mobile-panel > a[aria-current="page"] {
  background: rgba(63, 112, 128, 0.09);
  color: var(--global-nav-ink);
}

.global-nav-mobile-panel > a[aria-current="page"] {
  box-shadow: inset 3px 0 0 rgba(63, 112, 128, 0.62);
  font-weight: 680;
}

.global-nav-mobile-label {
  padding: 10px 12px 3px;
  color: rgba(43, 51, 51, 0.7);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.global-nav-mobile-panel > .global-nav-mobile-nested {
  min-height: 38px;
  padding-left: 22px;
}

.global-nav-mobile-panel > .global-nav-upcoming {
  margin-right: 12px;
  margin-left: 12px;
  padding-bottom: 8px;
}

.global-nav-mobile-cta {
  justify-content: center;
  margin-top: 6px;
  background: var(--global-nav-teal);
  color: #fff;
  font-weight: 720;
}

.global-nav-mobile-cta:hover,
.global-nav-mobile-cta:focus-visible {
  background: var(--global-nav-teal-dark);
  color: #fff;
}

.site-footer.global-site-footer {
  padding: 38px 0 42px;
  background: linear-gradient(100deg, #17242d, #20242a 48%, #272433);
  color: #d8dddf;
}

.global-site-footer .footer-inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.7fr);
  align-items: start;
  gap: 32px 48px;
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  color: #aeb8bc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.global-site-footer .footer-brand {
  color: #e7ebed;
  font-weight: 720;
  line-height: 1.45;
  text-decoration: none;
}

.global-site-footer .footer-brand:hover,
.global-site-footer .footer-brand:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.global-site-footer .footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.global-site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  line-height: 1.5;
}

.global-site-footer .footer-links a {
  color: #d8dddf;
  text-decoration: none;
}

.global-site-footer .footer-links a:hover,
.global-site-footer .footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.global-site-footer .footer-links-meta {
  font-size: 13px;
}

@media (max-width: 980px) {
  .global-nav-shell {
    width: min(calc(100% - 32px), 1120px);
    min-height: 64px;
  }

  .global-nav-desktop {
    display: none;
  }

  .global-nav-mobile-toggle {
    display: inline-flex;
  }

  .global-nav-mobile {
    width: min(calc(100% - 32px), 1120px);
  }

  .global-nav-brand {
    gap: 10px;
    font-size: 15px;
  }

  .global-nav-logo {
    width: 24px;
    height: 24px;
  }

  .global-site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .global-site-footer .footer-nav {
    align-items: flex-start;
  }

  .global-site-footer .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .global-nav-brand-text {
    max-width: 220px;
  }

  .global-nav-mobile-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .site-footer.global-site-footer {
    padding: 30px 0 36px;
  }

  .global-site-footer .footer-nav,
  .global-site-footer .footer-links {
    width: 100%;
  }

  .global-site-footer .footer-nav {
    display: grid;
    gap: 18px;
  }

  .global-site-footer .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .global-nav-brand-text {
    max-width: 178px;
  }

  .global-site-footer .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-nav-logo::after {
    animation: none;
  }

  .site-header.global-site-header,
  .global-nav-chevron,
  .global-nav-mobile-toggle-icon,
  .global-nav-mobile-toggle-icon::before,
  .global-nav-mobile-toggle-icon::after,
  .global-nav-cta {
    transition: none;
  }
}


/* HOM-VIS-02-v3 shared working-logo and footer appearance. */
.global-nav-brand { min-height: 44px; }
.global-nav-lockup { display: block; width: auto; height: 40px; }
.global-site-footer .footer-brand { display: inline-flex; width: fit-content; min-height: 44px; align-items: center; color: #fff; }
.global-site-footer .footer-brand-lockup { display: block; width: auto; height: 38px; transition: opacity 160ms ease; }
.global-site-footer .footer-brand:hover .footer-brand-lockup,
.global-site-footer .footer-brand:focus-visible .footer-brand-lockup { opacity: 0.86; }
.structure-v1-price-link { display: inline-flex; width: fit-content; margin-top: 12px; color: #315f68; font-size: 14px; font-weight: 700; line-height: 1.45; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.structure-v1-price-link:hover { color: #20242a; }
.structure-v1-price-link:focus-visible { outline: 3px solid rgba(63, 112, 128, 0.38); outline-offset: 3px; }
@media (max-width: 980px) { .global-nav-lockup { height: 30px; } }
@media (max-width: 540px) { .global-site-footer .footer-brand-lockup { height: 34px; } }
