:root {
  color-scheme: light;
  --ink: #151817;
  --muted: #5c625f;
  --line: #dddcd5;
  --paper: #f3f2ed;
  --surface: #fffefa;
  --surface-elevated: #ffffff;
  --surface-soft: #f5f6f2;
  --surface-green: #e8f7f1;
  --header-surface: rgba(249, 250, 247, .88);
  --white: #fffefa;
  --night: #0e1110;
  --night-soft: #171c1b;
  --accent: #bd784d;
  --logo-green: #0ac18e;
  --accent-2: var(--logo-green);
  --green-deep: var(--logo-green);
  --green-text: var(--logo-green);
  --copper-soft: #d6a07a;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 28px 70px rgba(10, 12, 12, .28);
  --max: 1240px;
  --header-height: 84px;
  --subhero-height: 620px;
  --motion-ease: cubic-bezier(.16, 1, .3, 1);
  --motion-distance: 18px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f1f5f2;
  --muted: #aeb7b2;
  --line: #303936;
  --paper: #0d1110;
  --surface: #151a18;
  --surface-elevated: #1a211e;
  --surface-soft: #111715;
  --surface-green: #10241f;
  --header-surface: rgba(13, 17, 16, .9);
  --green-text: var(--logo-green);
  --shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero-backdrop img,
  .motion-ready .blog-article-hero-image,
  .motion-ready .website-landing-hero-media img {
    animation: nuweb-image-settle 1.1s var(--motion-ease) both;
  }

  .motion-ready .website-landing-hero-media img {
    animation:
      nuweb-image-settle 1.1s var(--motion-ease) both,
      nuweb-landing-hero-drift 18s ease-in-out 1.1s infinite alternate;
  }

  .motion-ready .website-landing-showcase figure img,
  .motion-ready .website-landing-cta figure img {
    animation: nuweb-landing-image-breathe 14s ease-in-out infinite alternate;
  }

  .motion-ready [data-motion="reveal"] {
    opacity: 0;
    transform: translate3d(0, var(--motion-distance), 0);
    transition:
      opacity .72s var(--motion-ease) var(--motion-delay, 0ms),
      transform .72s var(--motion-ease) var(--motion-delay, 0ms);
    will-change: opacity, transform;
  }

  .motion-ready [data-motion="reveal"].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .button,
  .language-link,
  .nav-toggle,
  .solution-card,
  .project-card,
  .blog-card,
  .blog-aside-box,
  .pricing-card,
  .price-hero-panel a,
  .website-landing-card-grid article,
  .website-landing-process-grid article,
  .blog-topic-list a,
  .blog-tag-list a,
  .project-action,
  .project-rail-item,
  .detail-return-link,
  .process-grid article,
  .related-link {
    transition:
      transform .28s var(--motion-ease),
      border-color .28s ease,
      background .28s ease,
      box-shadow .28s ease,
      color .28s ease;
  }

  .solution-card:hover,
  .project-card:hover,
  .blog-card:hover,
  .blog-aside-box:hover,
  .pricing-card:hover,
  .price-hero-panel a:hover,
  .website-landing-card-grid article:hover,
  .website-landing-process-grid article:hover,
  .blog-topic-list a:hover,
  .project-rail-item:hover,
  .process-grid article:hover,
  .related-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(14, 17, 16, .08);
  }

  .button:hover,
  .language-link:hover,
  .nav-toggle:hover,
  .blog-tag-list a:hover,
  .project-action:hover,
  .detail-return-link:hover {
    transform: translateY(-2px);
  }
}

/* Buttons remain intentionally flat across all pages and interaction states. */
.button,
.button:hover,
.button:active,
.button:focus-visible {
  box-shadow: none !important;
}

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

#t3-inspector {
  right: auto !important;
  left: 1rem !important;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: manual;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  font-size: 4.45rem;
  font-weight: 840;
  line-height: 1;
}

h2 {
  font-size: 3.15rem;
  font-weight: 820;
  line-height: 1.04;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.16;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 20;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease, box-shadow .2s ease;
}

.site-header[data-scrolled] {
  background: rgba(14, 17, 16, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.brand-logo {
  display: block;
  width: clamp(132px, 15vw, 176px);
}

.brand-logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 254, 250, .82);
  font-size: .9rem;
  font-weight: 720;
}

.nav-links a {
  padding: 7px 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
}

.brand {
  order: 1;
}

.nav-links {
  order: 2;
  margin-left: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-actions .language-switch {
  display: none;
}

.nav-links a:hover,
.nav-links a.is-active,
.language-link {
  color: var(--white);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 0 !important;
  background: rgba(255, 255, 255, .06);
}

.language-link.is-current {
  border-color: rgba(10, 193, 142, .56);
  background: rgba(10, 193, 142, .1);
}

.language-link:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid rgba(10, 193, 142, .72);
  outline-offset: 3px;
}

.language-flag {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 17px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .22);
}

.language-link-de .language-flag {
  background: linear-gradient(#151515 0 33.333%, #d61724 33.333% 66.666%, #ffcf33 66.666%);
}

.language-link-da .language-flag {
  background: #c8102e;
}

.language-link-da .language-flag::before,
.language-link-da .language-flag::after {
  position: absolute;
  content: "";
  background: #fff;
}

.language-link-da .language-flag::before {
  left: 0;
  right: 0;
  top: 7px;
  height: 3px;
}

.language-link-da .language-flag::after {
  top: 0;
  bottom: 0;
  left: 8px;
  width: 3px;
}

.language-name {
  display: none;
}

.theme-picker {
  position: relative;
  flex: 0 0 auto;
  color: var(--white);
}

.theme-picker-summary {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  color: currentColor;
  cursor: pointer;
  list-style: none;
  transition: border-color .28s ease, background-color .28s ease, color .28s ease;
}

.theme-picker-summary::-webkit-details-marker {
  display: none;
}

.theme-picker-summary:hover,
.theme-picker[open] .theme-picker-summary {
  border-color: rgba(10, 193, 142, .48);
  background: rgba(10, 193, 142, .1);
}

.theme-picker-summary:focus-visible,
.theme-picker-option:focus-visible {
  outline: 2px solid rgba(10, 193, 142, .72);
  outline-offset: 3px;
}

.theme-picker-summary-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
}

.theme-picker-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 158px;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-elevated);
  color: var(--ink);
}

.theme-picker-option {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background-color .24s ease, color .24s ease;
}

.theme-picker-option:hover {
  background: rgba(10, 193, 142, .08);
}

.theme-picker-option.is-selected {
  background: rgba(10, 193, 142, .14);
  color: var(--green-text);
}

.theme-picker-option-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
}

.theme-picker-summary-icon svg {
  display: block;
  overflow: visible;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.theme-picker-option-icon svg {
  display: block;
  overflow: visible;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.theme-picker [data-theme-icon="system"] svg {
  transform: scale(1.18);
}

.theme-picker [data-theme-icon="dark"] svg {
  transform: scale(1.12);
}

.language-suggestion {
  position: fixed;
  z-index: 55;
  top: calc(var(--header-height) + 8px);
  right: max(20px, calc((100vw - var(--max)) / 2));
  display: inline-flex;
  align-items: center;
  max-width: min(285px, calc(100vw - 40px));
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(14, 17, 16, .78);
  color: var(--white);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}

.language-suggestion-actions {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.language-suggestion-primary,
.language-suggestion-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: .74rem;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.language-suggestion-primary {
  flex: 1 1 auto;
  background: var(--green-deep);
  color: var(--night);
  box-shadow: 0 8px 24px rgba(10, 193, 142, .16);
}

.language-suggestion-secondary {
  flex: 0 0 30px;
  width: 30px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 254, 250, .72);
  cursor: pointer;
  font-size: 1.1rem;
}

.language-suggestion-primary:hover,
.language-suggestion-secondary:hover {
  transform: translateY(-1px);
}

.language-suggestion-primary:focus-visible,
.language-suggestion-secondary:focus-visible {
  outline: 2px solid rgba(10, 193, 142, .78);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.nav-toggle-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: currentColor;
  transition: background .18s ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .22s ease;
}

.nav-toggle-lines::before { transform: translateY(-6px); }
.nav-toggle-lines::after { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(10, 193, 142, .45);
  background: rgba(10, 193, 142, .15);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 700px;
  background: var(--night);
  color: var(--white);
  overflow: hidden;
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 17, 16, 1) 0%, rgba(14, 17, 16, .96) 42%, rgba(14, 17, 16, .36) 70%, rgba(14, 17, 16, .16) 100%),
    linear-gradient(180deg, rgba(14, 17, 16, .28), rgba(14, 17, 16, .1) 42%, rgba(14, 17, 16, .66));
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 48px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-panel {
  max-width: 530px;
  min-width: 0;
}

.hero-copy p {
  max-width: 47ch;
  color: rgba(255, 254, 250, .82);
  font-size: 1.22rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .62rem;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--green-deep);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 42%),
    var(--green-deep);
  color: var(--white);
  font-weight: 760;
  box-shadow: 0 14px 34px rgba(10, 193, 142, .18);
  isolation: isolate;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.button::before,
.project-action::before,
.detail-return-link::before {
  position: absolute;
  inset: -1px;
  background: linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, .26) 46%, transparent 58%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform .55s var(--motion-ease);
  z-index: 0;
}

.button::after,
.project-action-primary::after,
.detail-return-link::after {
  display: inline-block;
  content: "→";
  font-weight: 900;
  transition: transform .22s var(--motion-ease);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(10, 193, 142, .22);
}

.button:hover::before,
.project-action:hover::before,
.detail-return-link:hover::before {
  transform: translateX(120%);
}

.button:hover::after,
.project-action-primary:hover::after,
.detail-return-link:hover::after {
  transform: translateX(4px);
}

.button-ghost {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .38);
  box-shadow: none;
}

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

.section {
  padding: clamp(68px, 7vw, 88px) 0;
}

.subhero {
  position: relative;
  display: block;
  min-height: var(--subhero-height);
  padding: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 16%, rgba(10, 193, 142, .14), transparent 30%),
    linear-gradient(135deg, rgba(10, 193, 142, .1), transparent 38%),
    linear-gradient(180deg, #0e1110 0%, #111615 100%);
  color: var(--white);
  overflow: hidden;
}

.subhero::before {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 254, 250, .052) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 254, 250, .035) 0 1px, transparent 1px 72px);
  content: "";
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: .5;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: nuweb-subhero-grid 34s linear infinite;
  z-index: 0;
}

.subhero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(10, 193, 142, .18), transparent 28%),
    linear-gradient(112deg, transparent 18%, rgba(10, 193, 142, 0) 36%, rgba(10, 193, 142, .2) 49%, rgba(255, 254, 250, .08) 51%, rgba(10, 193, 142, 0) 66%, transparent 84%);
  background-size: 220% 100%;
  content: "";
  mix-blend-mode: screen;
  opacity: .68;
  pointer-events: none;
  animation: nuweb-subhero-sheen 18s ease-in-out infinite alternate;
  z-index: 0;
}

.subhero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .48fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.subhero > .section-inner {
  position: relative;
  z-index: 1;
  min-height: var(--subhero-height);
  padding-top: 126px;
  padding-bottom: 42px;
  box-sizing: border-box;
}

.subhero-copy {
  display: grid;
  gap: 0;
  max-width: 720px;
}

.subhero-copy > h1 + p,
.subhero-copy > p + :is(a, .button, .website-landing-actions) {
  margin-top: 18px;
}

.subhero h1 {
  max-width: 10.5ch;
}

.subhero-kicker {
  display: block;
  margin: 0;
  color: var(--accent-2);
  font-size: .8rem;
  font-weight: 880;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
  margin: 0;
  color: var(--accent-2);
  font-size: .78rem;
  font-weight: 880;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow + :is(h1, h2, h3),
.subhero-kicker + :is(h1, h2, h3) {
  margin-top: 14px;
}

.subhero p {
  color: rgba(255, 254, 250, .76);
  font-size: 1.18rem;
  max-width: 62ch;
}

.legal-hero,
.legal-hero > .section-inner {
  min-height: 318px;
}

.legal-hero > .section-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-height) + 46px);
  padding-bottom: 46px;
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.legal-hero .subhero-kicker {
  margin-bottom: 12px;
}

.legal-body {
  max-width: 62ch;
}

.legal-body p {
  color: rgba(255, 254, 250, .76);
  font-size: 1.08rem;
  line-height: 1.65;
}

.legal-body p + p {
  margin-top: 1rem;
}

.legal-body h2,
.legal-body h3,
.legal-body p:has(> strong:first-child) {
  margin-top: 1.8rem;
  color: var(--paper);
  font-size: 1.1rem;
  line-height: 1.3;
}

.legal-body > :first-child {
  margin-top: 0;
}

.legal-body ul,
.legal-body ol {
  margin: 1rem 0 1.2rem;
  padding-left: 1.35rem;
  color: rgba(255, 254, 250, .76);
}

.legal-body li + li {
  margin-top: .35rem;
}

.legal-body a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.legal-section {
  background: var(--white);
  padding: 62px 0 76px;
}

.legal-section .legal-body p,
.legal-section .legal-body ul,
.legal-section .legal-body ol {
  color: var(--muted);
}

.legal-section .legal-body h2,
.legal-section .legal-body h3,
.legal-section .legal-body p:has(> strong:first-child) {
  color: var(--ink);
}

.subhero-focus {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 1px;
  width: 100%;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
}

.subhero-focus article,
.price-hero-panel a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 8px 24px;
  align-items: start;
  min-height: 108px;
  padding: 22px;
  background: rgba(255, 255, 255, .045);
}

.subhero-focus span,
.price-hero-panel span {
  grid-row: span 2;
  color: var(--accent-2);
  font-size: clamp(2.35rem, 3.1vw, 3.1rem);
  font-weight: 900;
  line-height: .9;
}

.subhero-focus strong,
.price-hero-panel strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.18;
}

.subhero-focus p,
.price-hero-panel small {
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255, 254, 250, .64);
}

.ip-hero h1 {
  max-width: 13ch;
}

.ip-hero-stack {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: clamp(28px, 4vw, 44px);
}

.ip-hero-copy {
  max-width: 900px;
}

.ip-hero-copy p {
  max-width: 72ch;
}

.ip-tool-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px clamp(24px, 4vw, 58px);
  min-height: 0;
  padding: clamp(24px, 3.2vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 254, 250, .08), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  box-shadow: 0 30px 76px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}

.ip-tool-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 254, 250, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 254, 250, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  opacity: .3;
  pointer-events: none;
}

.ip-tool-card > * {
  position: relative;
  z-index: 1;
}

.ip-tool-card .eyebrow {
  grid-column: 1 / -1;
}

.ip-value {
  display: block;
  grid-column: 1;
  width: 100%;
  color: var(--white);
  font-size: clamp(3rem, 7.8vw, 7.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .98;
  overflow-wrap: anywhere;
}

.ip-tool-card[data-ip-family="ipv4"] .ip-value {
  font-size: clamp(3rem, 6.6vw, 6.35rem);
  white-space: nowrap;
}

.ip-tool-card[data-ip-family="ipv6"] .ip-value {
  max-width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.72rem, 3vw, 2.55rem);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.ip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ip-meta span {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 254, 250, .74);
  font-size: .78rem;
  font-weight: 760;
}

.ip-secondary {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  max-width: 100%;
  margin: 2px 0 0;
  color: rgba(255, 254, 250, .58);
}

.ip-secondary[hidden] {
  display: none;
}

.ip-secondary span {
  color: rgba(255, 254, 250, .52);
  font-size: .74rem;
  font-weight: 820;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ip-secondary code {
  max-width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(.9rem, 1.35vw, 1.08rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.ip-copy-button {
  grid-column: 2;
  grid-row: 2 / span 2;
  display: inline-grid;
  place-items: center;
  width: clamp(58px, 5.6vw, 78px);
  height: clamp(58px, 5.6vw, 78px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--night);
  box-shadow: 0 18px 38px rgba(10, 193, 142, .2);
  cursor: pointer;
  transition: transform .24s var(--motion-ease), box-shadow .24s ease, background .24s ease;
}

.ip-copy-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ip-copy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(10, 193, 142, .25);
}

.ip-copy-button:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

.ip-status {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 254, 250, .62);
  font-size: .95rem;
}

.ip-service-section {
  background: var(--white);
}

.ip-service-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.ip-help-copy {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  gap: 16px;
}

.ip-help-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.25rem, 4.5vw, 4.9rem);
  line-height: .98;
}

.ip-help-copy p {
  max-width: 34ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.24rem);
  line-height: 1.58;
}

.ip-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.ip-fact-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: clamp(22px, 2.4vw, 34px);
  background: var(--paper);
}

.ip-fact-card span {
  color: var(--accent-2);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: .9;
}

.ip-fact-card h3 {
  font-size: clamp(1.25rem, 1.5vw, 1.6rem);
  line-height: 1.08;
}

.ip-fact-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.support-hero h1 {
  max-width: 12ch;
}

.support-hero-grid {
  align-items: center;
}

.support-tool-section {
  background:
    linear-gradient(180deg, var(--white) 0%, #f3f4f0 100%);
}

.support-tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.support-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 64px rgba(14, 17, 16, .08);
}

.support-diagnostics {
  padding: clamp(24px, 3vw, 38px);
}

.support-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.support-panel-header h2,
.support-report-builder h2 {
  margin-top: 12px;
  font-size: clamp(1.85rem, 2.7vw, 3rem);
  line-height: 1.02;
}

.support-panel-header h2 {
  max-width: 12ch;
}

.support-ready-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: .8rem;
  font-weight: 780;
  line-height: 1.2;
}

.support-ready-state::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(189, 120, 77, .1);
  content: "";
}

.support-ready-state[data-ready] {
  color: var(--green-text);
  border-color: rgba(10, 193, 142, .28);
  background: rgba(10, 193, 142, .08);
}

.support-ready-state[data-ready]::before {
  background: var(--logo-green);
  box-shadow: 0 0 0 4px rgba(10, 193, 142, .12);
}

.support-diagnostic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.support-diagnostic-list > div {
  min-width: 0;
  min-height: 102px;
  padding: 17px 18px;
  background: var(--paper);
}

.support-diagnostic-list dt {
  color: var(--green-text);
  font-size: .72rem;
  font-weight: 880;
  letter-spacing: .065em;
  line-height: 1.2;
  text-transform: uppercase;
}

.support-diagnostic-list dd {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.support-technical-details {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(243, 242, 237, .58);
}

.support-technical-details summary,
.support-report-preview summary {
  cursor: pointer;
  font-size: .88rem;
  font-weight: 820;
}

.support-technical-details code {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .78rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.support-noscript {
  margin-top: 18px;
  color: #8f321f;
  font-weight: 720;
}

.support-report-builder {
  position: relative;
  display: grid;
  gap: 24px;
  padding: clamp(24px, 3vw, 38px);
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 92% 4%, rgba(10, 193, 142, .2), transparent 30%),
    linear-gradient(155deg, #0e1110 0%, #151c1a 64%, #10241f 100%);
  box-shadow: 0 28px 70px rgba(14, 17, 16, .18);
}

.support-report-builder::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 254, 250, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 254, 250, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  opacity: .32;
  pointer-events: none;
}

.support-report-builder > * {
  position: relative;
  z-index: 1;
}

.support-report-builder h2 {
  max-width: 12ch;
}

.support-report-builder > div:first-child > p:last-child {
  max-width: 36ch;
  margin-top: 12px;
  color: rgba(255, 254, 250, .68);
  line-height: 1.55;
}

.support-fields {
  display: grid;
  gap: 16px;
}

.support-fields label {
  display: grid;
  gap: 7px;
}

.support-fields label > span {
  color: rgba(255, 254, 250, .72);
  font-size: .76rem;
  font-weight: 840;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.support-fields :is(input, textarea) {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  outline: 0;
  background: rgba(255, 255, 255, .075);
  font: inherit;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.support-fields textarea {
  min-height: 138px;
  resize: vertical;
}

.support-fields :is(input, textarea)::placeholder {
  color: rgba(255, 254, 250, .42);
}

.support-fields :is(input, textarea):focus {
  border-color: rgba(10, 193, 142, .68);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 4px rgba(10, 193, 142, .1);
}

.support-report-preview {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}

.support-report-preview summary {
  color: rgba(255, 254, 250, .82);
}

.support-report-preview pre {
  max-height: 280px;
  margin: 14px 0 0;
  padding: 14px;
  overflow: auto;
  color: rgba(255, 254, 250, .7);
  border-radius: 5px;
  background: rgba(0, 0, 0, .24);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .73rem;
  line-height: 1.52;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.support-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-action {
  display: inline-flex;
  flex: 1 1 150px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  font: inherit;
  font-size: .9rem;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .2s var(--motion-ease), border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.support-action[hidden] {
  display: none;
}

.support-action-primary {
  flex-basis: 100%;
  color: var(--night);
  border-color: var(--logo-green);
  background: var(--logo-green);
  box-shadow: 0 16px 34px rgba(10, 193, 142, .18);
}

.support-action:hover {
  border-color: rgba(10, 193, 142, .58);
  background: rgba(10, 193, 142, .14);
  transform: translateY(-1px);
}

.support-action-primary:hover {
  color: var(--night);
  background: #10d7a0;
  box-shadow: 0 18px 38px rgba(10, 193, 142, .25);
}

.support-action:disabled {
  cursor: wait;
  opacity: .55;
  transform: none;
}

.support-action svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-action-status {
  min-height: 1.4em;
  margin: -12px 0 0;
  color: var(--logo-green);
  font-size: .86rem;
  font-weight: 760;
}

.support-privacy {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  margin: -6px 0 0;
  color: rgba(255, 254, 250, .6);
  font-size: .8rem;
  line-height: 1.5;
}

.support-privacy svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--logo-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-help-section {
  border-top: 1px solid var(--line);
}

.narrow {
  max-width: 850px;
}

.subhero .narrow {
  display: grid;
  align-content: start;
  gap: 22px;
}

.error-page {
  min-height: calc(100vh - var(--header-height));
}

.error-page > .section-inner.error-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .74fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding-top: clamp(118px, 12vw, 164px);
  padding-bottom: clamp(62px, 8vw, 112px);
}

.error-copy {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.error-kicker {
  color: transparent;
  -webkit-text-stroke: 1px rgba(10, 193, 142, .78);
  font-size: clamp(4rem, 9vw, 8.4rem);
  font-weight: 900;
  line-height: .76;
}

.error-copy h1 {
  max-width: 11ch;
}

.error-copy > p:not(.error-kicker) {
  max-width: 58ch;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 8px;
}

.error-contact {
  color: var(--white);
}

.error-board {
  position: relative;
  min-height: 390px;
}

.error-browser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 250, .15);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 250, .075);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
}

.error-browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 254, 250, .12);
}

.error-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 254, 250, .34);
}

.error-browser-bar strong {
  justify-self: end;
  color: rgba(255, 254, 250, .5);
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .04em;
}

.error-layout-preview {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 14px;
  min-height: 312px;
  padding: 24px;
}

.error-tile {
  border: 1px solid rgba(255, 254, 250, .13);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, .09);
}

.error-tile-hero {
  min-height: 122px;
  background: linear-gradient(135deg, rgba(10, 193, 142, .42), rgba(255, 254, 250, .08));
}

.error-tile-copy {
  min-height: 122px;
  transform: translateY(28px);
}

.error-tile-gap {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  min-height: 104px;
  color: var(--green-deep);
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  font-weight: 900;
  line-height: 1;
  transform: rotate(-2deg);
}

.error-tile-button {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(220px, 42%);
  height: 42px;
  background: var(--green-deep);
  transform: translate(18px, 16px);
}

.error-note {
  position: absolute;
  right: -22px;
  bottom: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 254, 250, .18);
  border-radius: var(--radius);
  background: rgba(14, 17, 16, .78);
  color: rgba(255, 254, 250, .82);
  font-size: .9rem;
  font-weight: 760;
  transform: rotate(2deg);
}

@media (max-width: 900px) {
  .error-page > .section-inner.error-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: calc(var(--header-height) + 54px);
  }

  .error-board {
    min-height: 310px;
    max-width: 580px;
  }

  .error-copy h1 {
    max-width: 13ch;
  }
}

@media (max-width: 560px) {
  .error-page > .section-inner.error-layout {
    gap: 30px;
    padding-bottom: 54px;
  }

  .error-kicker {
    font-size: 3.25rem;
  }

  .error-layout-preview {
    min-height: 252px;
    padding: 18px;
  }

  .error-browser-bar {
    padding: 14px;
  }

  .error-browser-bar strong {
    font-size: .7rem;
  }

  .error-note {
    position: static;
    width: fit-content;
    margin-top: 12px;
    transform: none;
  }
}

body[class*="page-project-detail-"] .project-detail-hero .subhero-media img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
  object-position: top center;
}

.legal-hero > .section-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}

.two-col,
.feature-split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(34px, 4.5vw, 54px);
  align-items: center;
}

.detail-media {
  margin: 0;
  aspect-ratio: 45 / 31;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
}

.detail-media picture,
.detail-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-media img {
  object-fit: cover;
}

.solution-detail-hero-grid {
  grid-template-columns: minmax(0, .76fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 78px);
}

.solution-detail-copy {
  display: grid;
  align-content: center;
  max-width: 620px;
  min-height: clamp(360px, 36vw, 500px);
  padding: clamp(28px, 4vw, 56px) 0;
}

.solution-detail-copy .meta {
  margin-bottom: 24px;
}

.solution-detail-copy h1 {
  max-width: 11ch;
}

.solution-detail-copy h1 + p {
  max-width: 46ch;
  margin-top: 24px;
  font-size: clamp(1.06rem, 1.15vw, 1.22rem);
  line-height: 1.68;
}

.solution-consulting-section {
  background:
    linear-gradient(180deg, rgba(10, 193, 142, .045), transparent 42%),
    var(--white);
}

.solution-consulting {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.solution-consulting-card,
.solution-capabilities {
  position: relative;
  display: grid;
  align-content: start;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(21, 24, 23, .12);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 250, .78);
  box-shadow: 0 20px 56px rgba(14, 17, 16, .07);
}

.solution-consulting-card {
  min-height: 250px;
}

.solution-consulting-card span,
.solution-capabilities > span {
  margin-bottom: 22px;
  color: var(--green-deep);
  font-size: .74rem;
  font-weight: 880;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.solution-consulting-card h2,
.solution-capabilities h2 {
  max-width: 16ch;
  font-size: clamp(1.5rem, 1.85vw, 2.05rem);
  line-height: 1.08;
}

.solution-consulting-card p {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.solution-capabilities {
  grid-column: 1 / -1;
}

.solution-capabilities h2 {
  max-width: 24ch;
}

.solution-capabilities.richtext ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 30px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.solution-capabilities.richtext li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: .98rem;
  font-weight: 720;
  line-height: 1.35;
}

.solution-capabilities.richtext li + li {
  margin-top: 0;
}

.solution-capabilities.richtext li::before {
  position: absolute;
  top: .42em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-deep);
  content: "";
}

.lead-stack {
  display: grid;
  gap: 20px;
  font-size: 1.08rem;
}

.craft-section {
  background:
    radial-gradient(circle at 22% 20%, rgba(10, 193, 142, .08), transparent 34%),
    linear-gradient(180deg, #fffefa 0%, var(--paper) 100%);
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.45fr);
  gap: clamp(34px, 5vw, 56px);
  align-items: center;
}

.craft-intro {
  display: grid;
  gap: 22px;
}

.craft-intro h2 {
  max-width: 16ch;
  font-size: 2.25rem;
  line-height: 1.08;
}

.craft-intro p {
  font-size: 1.06rem;
}

.competence-proof-section {
  padding-top: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(48px, 6vw, 76px);
  background: var(--paper);
}

.competence-proof {
  display: grid;
  grid-template-columns: minmax(172px, 250px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid var(--line);
}

.competence-icon-cloud {
  position: relative;
  display: block;
  width: min(250px, 48vw);
  aspect-ratio: 1.32;
  isolation: isolate;
}

.competence-icon-cloud::before {
  position: absolute;
  inset: 8% -2% 0 2%;
  z-index: -1;
  border-radius: 42% 58% 46% 54%;
  background:
    radial-gradient(circle at 62% 34%, rgba(46, 199, 153, .22), transparent 48%),
    radial-gradient(circle at 28% 74%, rgba(255, 185, 82, .18), transparent 56%),
    linear-gradient(135deg, rgba(255, 254, 250, .55), rgba(255, 254, 250, .08));
  filter: blur(10px);
  content: "";
  transform: rotate(-5deg);
  animation: nuweb-tool-glow 8.5s ease-in-out infinite;
}

.competence-icon-cloud::after {
  position: absolute;
  right: 5%;
  bottom: 7%;
  z-index: -1;
  width: 58%;
  height: 22%;
  border-radius: 999px;
  background: rgba(12, 18, 18, .12);
  filter: blur(16px);
  content: "";
}

.competence-icon-shell {
  position: absolute;
  display: block;
  width: clamp(58px, 6.2vw, 82px);
  aspect-ratio: 1;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(14, 17, 16, .18);
  transform: translate3d(0, 0, 0);
  animation: nuweb-tool-float 7.8s ease-in-out infinite;
  will-change: transform;
}

.competence-icon-shell img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.icon-socialdock {
  top: 16%;
  left: 2%;
  transform: rotate(-8deg);
  animation-delay: -.8s;
}

.icon-dotflow {
  top: 2%;
  right: 22%;
  width: clamp(64px, 7vw, 94px);
  border-radius: 24px;
  transform: rotate(6deg);
  animation-delay: -2.4s;
}

.icon-mapmax {
  bottom: 4%;
  left: 14%;
  width: clamp(60px, 6.8vw, 88px);
  transform: rotate(5deg);
  animation-delay: -4.1s;
}

.icon-beam {
  right: 3%;
  bottom: 18%;
  width: clamp(68px, 7.6vw, 102px);
  border-radius: 25px;
  transform: rotate(-4deg);
  animation-delay: -5.7s;
}

.competence-proof-copy {
  max-width: 760px;
}

.competence-proof h2 {
  max-width: 26ch;
  margin-top: 10px;
  font-size: clamp(1.35rem, 1.7vw, 1.95rem);
  line-height: 1.14;
}

.competence-proof p:not(.eyebrow) {
  max-width: 70ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.competence-proof .eyebrow,
.competence-proof-link {
  color: var(--green-text);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: .18em;
}

@keyframes nuweb-tool-float {
  0%, 100% {
    translate: 0 0;
  }
  35% {
    translate: 0 -9px;
  }
  70% {
    translate: 5px 5px;
  }
}

@keyframes nuweb-tool-glow {
  0%, 100% {
    opacity: .65;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .competence-icon-cloud::before,
  .competence-icon-shell {
    animation: none;
  }
}

/* CMS-managed customer logos: one continuous, evenly scaled monochrome ribbon. */
.client-logo-marquee {
  width: 100%;
  min-height: 104px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.client-logo-marquee-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: client-logo-scroll 34s linear infinite;
  will-change: transform;
}

.client-logo-set {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
  min-width: 100vw;
  min-height: 104px;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(64px, 5.5vw, 92px);
  padding-inline: clamp(56px, 5vw, 84px);
}

.client-logo-mark {
  display: grid;
  flex: 0 0 clamp(150px, 12vw, 184px);
  width: clamp(150px, 12vw, 184px);
  height: 50px;
  place-items: center;
  color: inherit;
  opacity: .58;
  filter: brightness(0) saturate(100%);
  transition: opacity .32s ease;
}

.client-logo-mark svg,
.client-logo-mark img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 50px;
  overflow: visible;
  transform: scale(var(--logo-optical-scale, 1));
  transform-origin: center;
}

/* Optical corrections for unusually tall, square or visually heavy supplied marks. */
.client-logo-mark[data-logo-id="sommelier-am-see"] { --logo-optical-scale: 1.12; }
.client-logo-mark[data-logo-id="networks-it"] { --logo-optical-scale: 1.05; }
.client-logo-mark[data-logo-id="gevu"] { --logo-optical-scale: .9; }
.client-logo-mark[data-logo-id="blacklight"] { --logo-optical-scale: 1.05; }
.client-logo-mark[data-logo-id="apporte-assistenzhunde"] { --logo-optical-scale: 1.1; }
.client-logo-mark[data-logo-id="laperlia"] { --logo-optical-scale: 1.32; }

.client-logo-mark:hover,
.client-logo-mark:focus-visible {
  opacity: .74;
}

@keyframes client-logo-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

html[data-theme="dark"] .client-logo-mark {
  opacity: .64;
  filter: brightness(0) invert(1);
}

html[data-theme="dark"] .client-logo-mark:hover,
html[data-theme="dark"] .client-logo-mark:focus-visible {
  opacity: .76;
}

@media (max-width: 700px) {
  .client-logo-marquee,
  .client-logo-set {
    min-height: 90px;
  }

  .client-logo-set {
    gap: 48px;
    padding-inline: 40px;
  }

  .client-logo-mark {
    flex-basis: 136px;
    width: 136px;
    height: 40px;
  }

  .client-logo-mark svg,
  .client-logo-mark img {
    max-height: 40px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .client-logo-marquee-track {
    animation: none;
    will-change: auto;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .competence-proof {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
  }

  .competence-icon-cloud {
    width: min(280px, 36vw);
    margin-left: 0;
  }

  .competence-proof-copy {
    max-width: 460px;
  }
}

@media (min-width: 561px) and (max-width: 699px) {
  .competence-proof {
    gap: 24px;
  }

  .competence-icon-cloud {
    width: min(310px, 72vw);
    margin-inline: auto;
  }
}

.craft-slider {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.craft-slider-tools {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.craft-slider-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(19, 24, 23, .16);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, .82);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(19, 24, 23, .08);
}

.craft-slider-button::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.craft-slider-button[data-feature-prev]::before {
  transform: translateX(2px) rotate(-135deg);
}

.craft-slider-button[data-feature-next]::before {
  transform: translateX(-2px) rotate(45deg);
}

.craft-slider-button:disabled {
  opacity: .36;
  cursor: default;
}

.craft-line {
  position: relative;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  margin: 0;
  margin-bottom: -72px;
  padding: 2px 0 84px;
  list-style: none;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.craft-line::-webkit-scrollbar {
  display: none;
}

.craft-line li {
  position: relative;
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 18px;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 258px;
  padding: 22px;
  border: 1px solid rgba(19, 24, 23, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(10, 193, 142, .08), rgba(255, 254, 250, .95) 48%),
    var(--white);
  box-shadow: 0 20px 46px rgba(19, 24, 23, .08);
  scroll-snap-align: start;
  text-align: left;
}

.craft-line span {
  display: block;
  color: var(--green-deep);
  font-size: clamp(3.35rem, 4.2vw, 5.15rem);
  font-weight: 920;
  line-height: .82;
}

.craft-line strong {
  max-width: 12ch;
  font-size: 1.08rem;
  line-height: 1.18;
  text-wrap: balance;
}

.craft-line p {
  max-width: 24ch;
  font-size: .97rem;
  line-height: 1.55;
}

.intro-band {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h2 {
  max-width: 15ch;
}

.text-link {
  color: var(--accent-2);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.solutions-editorial {
  background: var(--night);
  color: var(--white);
  padding-bottom: 46px;
}

.solutions-editorial + .workflow-section .feature-split {
  padding-top: 34px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 70px);
  align-items: start;
}

.editorial-heading {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 26px;
}

.editorial-heading h2 {
  max-width: 14ch;
}

.solution-editorial-list {
  display: grid;
}

.solution-editorial-list article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: 34px;
  row-gap: 10px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.solution-editorial-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.solution-editorial-list span {
  grid-row: 1 / span 2;
  color: var(--accent-2);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: .82;
}

.solution-editorial-list h3 {
  grid-column: 2;
  font-size: 1.45rem;
}

.solution-editorial-list p {
  grid-column: 2;
  margin-top: 0;
  color: rgba(255, 254, 250, .7);
  max-width: 46ch;
  font-size: .98rem;
  line-height: 1.62;
}

.solution-grid,
.project-grid,
.price-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.solution-card,
.project-card,
.price-card,
.process-grid article,
.contact-card,
.contact-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.solution-card img,
.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.solution-card div,
.project-card div,
.price-card,
.process-grid article,
.contact-card,
.contact-note {
  padding: 24px;
}

.solution-card,
.project-card,
.price-card {
  min-height: 100%;
}

.solution-card p,
.project-card p,
.price-card p {
  margin-top: 12px;
}

.dark-band {
  background: var(--night);
  color: var(--white);
}

.dark-band p {
  color: rgba(255, 254, 250, .76);
}

.workflow-section {
  padding: 0;
}

.workflow-section .feature-split {
  padding: 60px 0;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  gap: clamp(34px, 5vw, 58px);
  align-items: start;
}

.workflow-media {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  background: var(--night);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.workflow-media img,
.about-hero img {
  width: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04) brightness(1.08);
}

.workflow-media img {
  aspect-ratio: 4 / 3;
}

.multilingual-teaser-section,
.multilingual-section {
  background: var(--white);
}

.multilingual-teaser {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.multilingual-teaser > div:first-child,
.multilingual-bento article,
.multilingual-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(19, 22, 20, .045);
}

.multilingual-teaser > div:first-child {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 3.4vw, 48px);
}

.multilingual-teaser h2,
.multilingual-lead h2,
.multilingual-strip h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 2.65vw, 2.95rem);
  line-height: 1.03;
}

.language-bento,
.multilingual-bento {
  display: grid;
  gap: 16px;
}

.language-bento {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.language-bento article,
.multilingual-bento article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(24px, 3vw, 38px);
}

.language-bento span,
.multilingual-bento article > span {
  color: var(--accent-2);
  font-size: clamp(2.15rem, 3.2vw, 3.6rem);
  font-weight: 900;
  line-height: .9;
}

.language-bento strong {
  font-size: 1.08rem;
  line-height: 1.15;
}

.multilingual-bento {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.multilingual-lead {
  grid-column: span 2;
}

.multilingual-lead p:last-child {
  max-width: 66ch;
  font-size: 1.08rem;
  line-height: 1.7;
}

.multilingual-dark .feature-split {
  padding: 78px 0;
}

.multilingual-strip-section {
  padding: 34px 0;
  background: var(--white);
}

.multilingual-strip {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .64fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 3.4vw, 46px) clamp(28px, 4vw, 54px);
}

.multilingual-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-self: end;
  max-width: 48ch;
}

.multilingual-strip-copy p {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1.04rem, 1.2vw, 1.2rem);
  line-height: 1.55;
}

.website-landing-hero h1 {
  max-width: 12.5ch;
}

.website-landing-hero {
  min-height: min(760px, 88vh);
  background: var(--night);
}

.website-landing-hero::before {
  opacity: .34;
}

.website-landing-hero::after {
  background:
    linear-gradient(90deg, rgba(14, 17, 16, .98) 0%, rgba(14, 17, 16, .86) 36%, rgba(14, 17, 16, .34) 66%, rgba(14, 17, 16, .76) 100%),
    linear-gradient(0deg, rgba(14, 17, 16, .94) 0%, rgba(14, 17, 16, .08) 46%, rgba(14, 17, 16, .32) 100%);
  mix-blend-mode: normal;
  opacity: 1;
  animation: none;
}

.website-landing-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}

.website-landing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  opacity: .84;
  transform: scale(1.04);
}

.website-landing-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: min(760px, 88vh);
  padding-top: 124px;
  padding-bottom: 70px;
}

.website-landing-copy {
  max-width: 690px;
}

.website-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}

.website-landing-showcase img,
.website-landing-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-landing-lead-section,
.website-landing-card-section,
.website-landing-faq {
  background: var(--white);
}

.website-landing-lead,
.website-landing-process,
.website-landing-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.website-landing-lead h2,
.website-landing-process h2,
.website-landing-faq h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.website-landing-lead > p,
.website-landing-process-copy > p:last-child {
  max-width: 62ch;
  font-size: clamp(1.06rem, 1.24vw, 1.22rem);
  line-height: 1.68;
}

.website-landing-showcase-section {
  padding-top: 0;
  background: var(--white);
}

.website-landing-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .62fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-lg);
  background: var(--night);
  box-shadow: var(--shadow);
}

.website-landing-showcase figure,
.website-landing-cta figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night-soft);
}

.website-landing-showcase figure {
  min-height: 390px;
}

.website-landing-showcase h2,
.website-landing-cta h2 {
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.05rem);
}

.website-landing-showcase p:not(.eyebrow),
.website-landing-cta p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 254, 250, .74);
  font-size: 1.05rem;
  line-height: 1.62;
}

.website-landing-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.website-landing-card-grid article {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .075), transparent 42%),
    var(--white);
  box-shadow: 0 18px 52px rgba(14, 17, 16, .055);
}

.website-landing-card-grid span,
.website-landing-process-grid span {
  color: var(--green-deep);
  font-size: clamp(2.4rem, 3.2vw, 3.55rem);
  font-weight: 900;
  line-height: .9;
}

.website-landing-card-grid h2 {
  margin-top: 46px;
  font-size: clamp(1.28rem, 1.55vw, 1.68rem);
  line-height: 1.08;
}

.website-landing-card-grid p {
  margin-top: 14px;
}

.website-landing-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(10, 193, 142, .18), transparent 32%),
    linear-gradient(135deg, #111615, #0e1110);
  color: var(--white);
}

.website-landing-process-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.website-landing-process-copy h2 {
  color: var(--white);
}

.website-landing-process-copy p:not(.eyebrow) {
  color: rgba(255, 254, 250, .72);
}

.website-landing-process-copy > h2 + p,
.website-landing-cta-copy > h2 + p,
.website-landing-cta-copy > p + .website-landing-actions {
  margin-top: 18px;
}

.website-landing-process-grid {
  position: relative;
  display: grid;
  gap: 14px;
}

.website-landing-process-grid::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 39px;
  width: 1px;
  background: linear-gradient(180deg, rgba(10, 193, 142, 0), rgba(10, 193, 142, .75), rgba(10, 193, 142, 0));
  content: "";
}

.website-landing-process-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035)),
    rgba(255, 255, 255, .045);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}

.website-landing-process-grid h3 {
  color: var(--white);
  font-size: 1.18rem;
}

.website-landing-process-grid p {
  margin-top: 8px;
  color: rgba(255, 254, 250, .68);
}

.website-landing-faq .richtext {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.website-landing-faq .richtext h2 {
  max-width: none;
  font-size: clamp(1.35rem, 1.7vw, 1.72rem);
  line-height: 1.12;
}

.website-landing-faq .richtext h2:not(:first-child) {
  margin-top: 18px;
}

.website-landing-faq .richtext p {
  font-size: 1rem;
  line-height: 1.68;
}

.website-landing-cta-section {
  background: var(--night);
}

.website-landing-cta {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.website-landing-cta figure {
  height: clamp(300px, 34vw, 440px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .32);
}

.website-landing-cta-copy {
  display: grid;
  gap: 0;
}

.website-landing-cta .button-ghost {
  border-color: rgba(255, 255, 255, .3);
  color: var(--white);
}

.about-hero img {
  height: clamp(300px, 27vw, 360px);
  border-radius: var(--radius-lg);
  object-position: center top;
}

.about-hero h1 {
  max-width: 13ch;
}

.about-tool-section {
  padding: 0 0 clamp(34px, 4vw, 46px);
}

.about-tool-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
}

.about-tool-copy {
  display: grid;
  gap: 5px;
}

.about-tool-copy > p:last-child {
  max-width: 46ch;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.about-tool-link {
  display: block;
  width: clamp(118px, 10vw, 140px);
  padding: 3px 0;
  text-decoration: none;
  opacity: .7;
  transition: transform .24s var(--motion-ease), opacity .24s ease;
}

.about-tool-link img {
  display: block;
  width: 100%;
  height: auto;
}

.about-tool-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .about-tool-band {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-tool-link {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .about-tool-section {
    padding-bottom: 34px;
  }

  .about-tool-band {
    padding-top: 14px;
  }

  .about-tool-link img {
    max-width: none;
  }
}

.feature-split div {
  display: grid;
  gap: 22px;
}

.process-section {
  background: var(--white);
}

.process-section h2 {
  max-width: 16ch;
  margin-bottom: 32px;
}

.process-section .process-grid article {
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  padding: 28px 0 0;
  overflow: visible;
}

.process-grid article span {
  display: block;
  color: var(--green-deep);
  font-size: clamp(3.2rem, 4.6vw, 5.35rem);
  font-weight: 900;
  line-height: .9;
  margin-bottom: 36px;
}

.process-grid article h3 + p {
  margin-top: 12px;
}

.process-section .process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-section .process-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .075), transparent 42%),
    var(--white);
  box-shadow: 0 18px 52px rgba(14, 17, 16, .055);
}

.process-section .process-grid article:nth-child(3) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(112px, .22fr) minmax(0, 1fr);
  align-items: center;
  min-height: 176px;
  background:
    linear-gradient(90deg, rgba(10, 193, 142, .12), rgba(10, 193, 142, .035) 46%, transparent),
    var(--white);
}

.process-section .process-grid article:nth-child(3) span {
  grid-row: span 2;
  margin-bottom: 0;
}

.process-section .process-grid article span {
  margin-bottom: 14px;
}

.project-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.project-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(1.08);
  opacity: .72;
}

.project-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 17, 16, .96), rgba(14, 17, 16, .34) 56%, rgba(14, 17, 16, .72)),
    linear-gradient(0deg, rgba(14, 17, 16, .9), rgba(14, 17, 16, .08) 68%);
  content: "";
}

.project-stage-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 56px);
  align-items: end;
  padding: 82px 0;
}

.project-stage-copy {
  display: grid;
  gap: 22px;
}

.project-stage-copy h2 {
  max-width: 15ch;
}

.project-stage-copy p {
  color: rgba(255, 254, 250, .76);
}

.project-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.project-rail-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 160px;
  padding: 28px 32px;
  background: rgba(14, 17, 16, .68);
  isolation: isolate;
}

.project-rail-item::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 28% 8%, rgba(255, 254, 250, .07), transparent 46%),
    radial-gradient(ellipse at 50% 0%, rgba(10, 193, 142, .055), transparent 62%);
  content: "";
  opacity: 0;
  transition: opacity .24s ease;
  z-index: -1;
}

.project-rail-item:hover::before {
  opacity: 1;
}

.project-rail-item:only-child {
  grid-column: 1 / -1;
  min-height: 0;
  padding-bottom: 30px;
}

.project-rail p {
  color: rgba(255, 254, 250, .72);
}

.project-rail-item .meta {
  margin-bottom: 7px;
  color: rgba(255, 254, 250, .68);
  font-size: .75rem;
  line-height: 1.15;
}

.project-rail-item h3 {
  margin-bottom: 9px;
  font-size: clamp(1.35rem, 1.45vw, 1.62rem);
  line-height: 1.08;
}

.project-rail-item > p {
  max-width: 66ch;
  font-size: clamp(1rem, 1.04vw, 1.12rem);
  line-height: 1.44;
}

.project-rail-item > span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: 22px;
  color: var(--logo-green);
  font-size: .86rem;
  font-weight: 850;
}

.project-rail-item > span::after {
  content: "→";
  transition: transform .22s var(--motion-ease);
}

.project-rail-item:hover > span::after {
  transform: translateX(4px);
}

.solution-list,
.project-list {
  display: grid;
  gap: 26px;
}

.detail-row,
.project-wide {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-row img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius);
}

.detail-row img {
  object-fit: cover;
}

.project-browser {
  overflow: hidden;
  border: 1px solid rgba(21, 24, 23, .16);
  border-radius: var(--radius-lg);
  background: #171918;
  box-shadow: 0 26px 72px rgba(14, 17, 16, .2);
}

.browser-chrome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .64);
}

.browser-dots {
  display: inline-flex;
  gap: 6px;
}

.browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
}

.browser-address {
  overflow: hidden;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  font-size: .76rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-screen {
  position: relative;
  background: #ebe9e2;
}

.browser-screen::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 84px;
  background: linear-gradient(0deg, rgba(23, 25, 24, .24), rgba(23, 25, 24, 0));
  content: "";
  pointer-events: none;
}

.browser-viewport {
  height: clamp(460px, 44vw, 600px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 255, 255, .5) rgba(0, 0, 0, .08);
  scrollbar-width: thin;
}

.browser-viewport::-webkit-scrollbar {
  width: 9px;
}

.browser-viewport::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, .08);
}

.browser-viewport::-webkit-scrollbar-thumb {
  border: 2px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
}

.project-screenshot {
  width: 100%;
  height: auto;
  max-width: none;
}

.browser-scroll-cue {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  background: rgba(14, 17, 16, .18);
  pointer-events: none;
}

.browser-scroll-cue::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  content: "";
  animation: nuweb-browser-scroll-cue 1.8s ease-in-out infinite;
  transform: translateX(-50%);
}

.detail-row > div,
.project-copy {
  padding: clamp(8px, 1.8vw, 22px) 0;
  display: grid;
  gap: 20px;
}

.project-wide h2 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 3.75vw, 4.1rem);
  line-height: 1.01;
}

.project-copy > p {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.68;
}

.project-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.project-action {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .58rem;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  isolation: isolate;
  transition: transform .2s var(--motion-ease), border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.project-action-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, 0) 44%),
    var(--green-deep);
  box-shadow: 0 16px 32px rgba(10, 193, 142, .18);
}

.project-action-secondary {
  color: var(--night);
  background: rgba(10, 193, 142, .08);
  border-color: rgba(10, 193, 142, .24);
}

.project-action-secondary::after {
  display: inline-block;
  content: "↗";
  font-size: .9em;
  font-weight: 900;
  transition: transform .22s var(--motion-ease);
}

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

.project-action-secondary:hover {
  border-color: rgba(10, 193, 142, .42);
  background: rgba(10, 193, 142, .12);
}

.project-action-secondary:hover::after {
  transform: translate(3px, -3px);
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.project-detail-copy {
  display: grid;
  gap: 22px;
  padding-top: clamp(4px, 1.4vw, 18px);
}

.project-detail-copy .richtext {
  display: grid;
  gap: 1.05rem;
}

.project-detail-copy .richtext p,
.project-detail-copy .richtext li {
  font-size: clamp(1.08rem, 1.15vw, 1.2rem);
  line-height: 1.72;
}

.project-detail-copy .richtext ul {
  display: grid;
  gap: .45rem;
  padding-left: 1.2rem;
}

.project-share-box {
  margin-top: 8px;
}

.project-share-box .blog-share-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-share-box .blog-share-actions :is(a, button) {
  min-width: 0;
}

.detail-return-row {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(40px, 6vw, 76px);
}

.detail-return-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: 0 22px;
  color: var(--night);
  background: rgba(255, 254, 250, .9);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(14, 17, 16, .06);
  isolation: isolate;
  transition: transform .2s var(--motion-ease), border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.detail-return-link:hover {
  color: var(--white);
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(10, 193, 142, .18);
}

.detail-pair,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-pair div,
.detail-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, .72);
}

.detail-actions {
  margin-top: 24px;
}

.project-wide .detail-pair {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 62ch;
}

.project-wide .detail-pair div {
  padding: 0 0 0 18px;
  border: 0;
  border-left: 2px solid rgba(189, 120, 77, .55);
  border-radius: 0;
  background: transparent;
}

.project-wide .detail-pair strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 880;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-wide .detail-pair p,
.project-wide .richtext p {
  font-size: 1rem;
  line-height: 1.68;
}

.project-wide .richtext {
  max-width: 66ch;
}

.detail-full {
  grid-column: 1 / -1;
}

.richtext ul,
.contact-note ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.richtext li + li,
.contact-note li + li {
  margin-top: .45rem;
}

.meta {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
}

.price-hero {
  padding-bottom: 0;
}

.price-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .48fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.price-hero-copy {
  max-width: 860px;
}

.price-hero-copy h1 {
  max-width: 16ch;
  text-wrap: balance;
  hyphens: none;
}

.price-hero-copy p {
  max-width: 62ch;
}

.price-hero-copy .button {
  margin-top: 8px;
}

.price-hero-panel {
  display: grid;
  grid-auto-rows: 1fr;
  overflow: hidden;
  width: 100%;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.price-hero-panel a {
  color: var(--white);
  text-decoration: none;
  min-height: 112px;
}

.price-hero-panel a + a {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.price-hero-panel .price-hero-custom {
  background:
    linear-gradient(150deg, rgba(10, 193, 142, .22), rgba(255, 255, 255, .05)),
    rgba(255, 255, 255, .06);
}

.price-hero-panel small {
  white-space: normal;
}

.pricing-section {
  padding-top: 68px;
}

.pricing-stack {
  display: grid;
  gap: 26px;
}

.pricing-package {
  display: grid;
  grid-template-columns: minmax(250px, .86fr) minmax(240px, .72fr) minmax(220px, .56fr) minmax(220px, .56fr);
  gap: 28px;
  align-items: start;
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(19, 22, 20, .06);
  scroll-margin-top: 112px;
}

.pricing-package.is-featured {
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .18), rgba(10, 193, 142, 0) 36%),
    var(--night);
  box-shadow: 0 28px 72px rgba(19, 22, 20, .22);
}

.pricing-intro > span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent-2);
  font-size: clamp(3.4rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: .82;
}

.pricing-intro h2 {
  max-width: 14ch;
  font-size: clamp(2.15rem, 3vw, 3.45rem);
  line-height: .98;
  text-wrap: balance;
  hyphens: none;
}

.pricing-intro p {
  max-width: 34ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.pricing-package.is-featured .pricing-intro p,
.pricing-package.is-featured .pricing-money span,
.pricing-package.is-featured .pricing-money small,
.pricing-package.is-featured .pricing-money p,
.pricing-package.is-featured .pricing-list li {
  color: rgba(255, 254, 250, .72);
}

.pricing-money {
  display: grid;
  gap: 18px;
}

.pricing-money div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pricing-package.is-featured .pricing-money div {
  border-color: rgba(255, 255, 255, .14);
}

.pricing-money span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-money strong {
  display: block;
  font-size: clamp(1.65rem, 2.2vw, 2.65rem);
  line-height: 1.04;
  text-wrap: balance;
}

.pricing-money small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .9rem;
}

.pricing-money p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
}

.pricing-money p strong {
  display: inline;
  font-size: 1rem;
}

.pricing-list {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pricing-package.is-featured .pricing-list {
  border-color: rgba(255, 255, 255, .14);
}

.pricing-list-heading {
  margin: 0 0 18px;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.pricing-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.44;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: .56em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.pricing-care-section {
  background: var(--night);
  color: var(--white);
}

.pricing-care {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 56px);
  align-items: center;
}

.pricing-care h2,
.pricing-closing h2 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: .98;
  text-wrap: balance;
  hyphens: none;
}

.page-about-da .pricing-closing h2,
.page-about-de .pricing-closing h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 2.2vw, 2.65rem);
  line-height: 1.06;
}

.pricing-care p {
  max-width: 58ch;
  margin-top: 16px;
  color: rgba(255, 254, 250, .72);
  font-size: 1.08rem;
  line-height: 1.72;
}

.care-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: center;
  justify-content: flex-start;
}

.care-list span {
  display: inline-flex;
  align-items: center;
  min-height: 3.5rem;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 254, 250, .9);
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  font-weight: 570;
  line-height: 1.25;
}

.pricing-closing-section {
  background: var(--white);
}

.pricing-closing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 56px);
}

.pricing-closing article {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.pricing-closing p {
  max-width: 58ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.pricing-closing .text-link {
  margin-top: 16px;
}

.contact-section {
  background:
    linear-gradient(180deg, var(--white) 0%, #f5f6f2 100%);
}

.contact-bento {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.contact-card,
.contact-note {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--radius-lg);
}

.contact-card-primary {
  overflow: hidden;
  border-color: rgba(255, 254, 250, .14);
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .2), transparent 42%),
    linear-gradient(160deg, #0e1110 0%, #151c1a 62%, #10241f 100%);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(14, 17, 16, .18);
}

.contact-card-primary::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 254, 250, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 254, 250, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  opacity: .38;
  pointer-events: none;
}

.contact-card-primary > * {
  position: relative;
  z-index: 1;
}

.contact-note-steps {
  align-self: start;
  background:
    linear-gradient(180deg, rgba(10, 193, 142, .045), transparent 42%),
    var(--white);
  box-shadow: 0 22px 58px rgba(14, 17, 16, .08);
}

.contact-kicker {
  color: var(--green-deep);
  font-size: .76rem;
  font-weight: 880;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-card h2,
.contact-note h2 {
  max-width: 15ch;
  font-size: clamp(2.15rem, 3.15vw, 3.55rem);
  line-height: .98;
}

.contact-card h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 2.85vw, 3.25rem);
}

.contact-note h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 2.65vw, 3rem);
}

.contact-intro {
  max-width: 36ch;
  color: rgba(255, 254, 250, .72);
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  line-height: 1.58;
}

.contact-actions {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.contact-card .contact-action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  color: var(--white);
  border: 1px solid rgba(255, 254, 250, .2);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(10, 193, 142, .18) 0 4px, transparent 4px),
    linear-gradient(135deg, rgba(255, 254, 250, .105), rgba(255, 254, 250, .04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .09),
    0 14px 30px rgba(0, 0, 0, .1);
  text-decoration: none;
}

.contact-card .contact-action:hover {
  border-color: rgba(10, 193, 142, .54);
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .18), rgba(255, 254, 250, .045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 16px 34px rgba(0, 0, 0, .14);
}

.contact-action-icon {
  display: inline-grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  color: #06110f;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .42), transparent 38%),
    var(--logo-green);
  border-radius: 50%;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 0 0 6px rgba(10, 193, 142, .1),
    0 10px 22px rgba(10, 193, 142, .18);
}

.contact-action-icon svg {
  width: 1.42rem;
  height: 1.42rem;
  fill: currentColor;
}

.contact-action-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-action-label {
  color: rgba(255, 254, 250, .58);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-action strong {
  color: var(--white);
  font-size: clamp(1.05rem, 1.22vw, 1.22rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-action-note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 2.45rem;
  padding: 0 .8rem;
  color: rgba(255, 254, 250, .86);
  background: rgba(255, 254, 250, .08);
  border: 1px solid rgba(255, 254, 250, .14);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 820;
  white-space: nowrap;
  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.contact-action-note::after {
  content: "→";
  color: var(--logo-green);
  transition: transform .22s var(--motion-ease);
}

.contact-card .contact-action:hover .contact-action-note::after {
  transform: translateX(3px);
}

.contact-card .contact-action:hover .contact-action-note {
  color: var(--white);
  background: rgba(10, 193, 142, .16);
  border-color: rgba(10, 193, 142, .36);
}

.contact-note .contact-step-list {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.contact-note .contact-step-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.contact-note .contact-step-list li:last-child {
  padding-bottom: 0;
}

.contact-note .contact-step-list span {
  color: var(--green-deep);
  font-size: clamp(1.82rem, 2.55vw, 2.35rem);
  font-weight: 900;
  line-height: .9;
}

.contact-note .contact-step-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.2;
}

.contact-note .contact-step-list p {
  margin-top: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.42;
}

.contact-note .text-link {
  margin-top: 8px;
}

.footer-cta {
  padding: 62px 0;
  background: var(--accent-2);
  color: var(--white);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-panel .button {
  flex: 0 0 auto;
  min-width: max-content;
  padding-inline: 34px;
  white-space: nowrap;
}

.cta-panel p {
  margin-top: 12px;
  color: rgba(255, 254, 250, .8);
}

.site-footer {
  padding: 58px 0;
  background: var(--night);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) repeat(4, minmax(138px, .72fr));
  gap: clamp(24px, 3.2vw, 42px);
  align-items: start;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 254, 250, .72);
}

.footer-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-top: 0;
}

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

.footer-about {
  max-width: 34ch;
}

.footer-address {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  color: rgba(255, 254, 250, .68);
  font-style: normal;
}

.footer-contact-links {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  width: 152px;
}

.blog-topic-list {
  align-self: end;
  display: grid;
  gap: .75rem;
}

.blog-index-hero,
.blog-index-hero > .section-inner {
  min-height: auto;
}

.blog-index-hero h1 {
  max-width: 17ch;
}

.blog-topic-list a {
  display: flex;
  justify-content: space-between;
  padding: .95rem 1rem;
  color: var(--white);
  background: rgba(255, 254, 250, .08);
  border: 1px solid rgba(255, 254, 250, .14);
  border-radius: var(--radius);
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(1.7rem, 4vw, 3.8rem);
  align-items: center;
}

.blog-featured figure,
.blog-card > img,
.blog-article-hero figure {
  margin: 0;
  overflow: hidden;
  background: var(--night-soft);
  border-radius: var(--radius);
}

.blog-featured img,
.blog-card > img,
.blog-article-hero img {
  width: 100%;
  aspect-ratio: 40 / 21;
  object-fit: cover;
}

.blog-featured h2 {
  margin: .6rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.blog-featured p:not(.meta) {
  margin-bottom: 1.4rem;
  font-size: 1.08rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-card {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-card-copy {
  display: grid;
  gap: .7rem;
  padding: 1.15rem;
}

.blog-card h2 {
  font-size: 1.45rem;
  line-height: 1.14;
}

.blog-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, max-content);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  color: var(--white);
  background: var(--night);
  border-radius: var(--radius);
}

.blog-cta h2 {
  max-width: 24ch;
  font-size: clamp(2.25rem, 4vw, 4.05rem);
  line-height: 1.04;
}

.blog-cta h2 span {
  display: block;
}

.blog-cta p,
.blog-cta .eyebrow {
  max-width: 74ch;
  color: rgba(255, 254, 250, .75);
}

.blog-cta .button {
  justify-self: end;
  white-space: nowrap;
}

.blog-article-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(460px, 62vh);
  padding: calc(var(--header-height) + 30px) 0 36px;
  color: var(--white);
  background: #111817;
}

.blog-article-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 18, 18, .94) 0%, rgba(12, 18, 18, .78) 43%, rgba(12, 18, 18, .34) 72%, rgba(12, 18, 18, .18) 100%),
    linear-gradient(180deg, rgba(12, 18, 18, .18) 0%, rgba(12, 18, 18, .58) 100%);
  pointer-events: none;
}

.blog-article-hero::after {
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: 0;
  z-index: 2;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent), rgba(10, 193, 142, 0));
}

.blog-article-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(.92);
}

.blog-article-hero-panel {
  position: relative;
  z-index: 3;
  display: block;
}

.blog-article-hero-copy {
  display: grid;
  gap: .95rem;
  max-width: 790px;
}

.blog-back-link {
  color: rgba(255, 254, 250, .74);
  font-size: .92rem;
}

.blog-article-hero h1 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(2.05rem, 3.65vw, 3.45rem);
  line-height: 1.04;
}

.blog-article-lede {
  max-width: 68ch;
  color: rgba(255, 254, 250, .78);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.blog-article-signal-grid {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  max-width: 680px;
}

.blog-article-signal-grid span {
  display: inline-flex;
  align-items: baseline;
  gap: .42rem;
  padding: .65rem .86rem;
  color: rgba(255, 254, 250, .82);
  background: rgba(255, 254, 250, .08);
  border: 1px solid rgba(255, 254, 250, .18);
  border-radius: 999px;
  font-size: .86rem;
  backdrop-filter: blur(16px);
}

.blog-article-signal-grid strong {
  color: var(--white);
  font-size: .98rem;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 800px) minmax(260px, 320px);
  gap: clamp(1.8rem, 4vw, 3.8rem);
  align-items: start;
}

.blog-article-body {
  font-size: 1.25rem;
  line-height: 1.78;
}

.blog-article-body > * {
  margin-top: 0;
  margin-bottom: 0;
}

.blog-article-body h2 {
  margin-top: 2.8rem;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.blog-article-body h3 {
  margin-top: 2.2rem;
  margin-bottom: .75rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.blog-article-body p + p,
.blog-article-body ul + p,
.blog-article-body p + ul {
  margin-top: 1.18rem;
}

.blog-article-body ul {
  display: grid;
  gap: .35rem;
  padding-left: 1.2rem;
}

.blog-article-body li::marker {
  color: var(--green);
}

.blog-article-body a {
  color: var(--green-deep);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .18em;
}

.article-insight-box {
  margin: 1.8rem 0;
  padding: 1.25rem 1.35rem;
  color: #173126;
  background: #e8f7ef;
  border: 1px solid rgba(10, 193, 142, .26);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  line-height: 1.58;
}

.blog-article-body p + h2 {
  margin-top: 3.1rem;
}

.blog-article-aside {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  display: grid;
  gap: .8rem;
  align-self: start;
}

.blog-aside-box {
  display: grid;
  gap: .9rem;
  padding: 1.05rem;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, .96), rgba(255, 254, 250, .82));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(14, 17, 16, .05);
}

.blog-aside-label {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-aside-box a {
  color: var(--green-deep);
}

.blog-share-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

.blog-share-actions :is(a, button) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .55rem;
  min-height: 2.75rem;
  padding: .55rem .65rem;
  color: var(--night);
  background:
    linear-gradient(180deg, rgba(255, 254, 250, .98), rgba(247, 250, 247, .9));
  border: 1px solid rgba(19, 24, 23, .13);
  border-radius: 6px;
  font-size: .78rem;
  font-family: inherit;
  font-weight: 750;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    color .2s ease;
}

.blog-share-actions :is(a, button) span {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green-deep);
  background: rgba(10, 193, 142, .1);
  border: 1px solid rgba(10, 193, 142, .2);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.blog-share-actions :is(a, button):hover {
  color: var(--night);
  background: var(--white);
  border-color: rgba(10, 193, 142, .42);
  box-shadow: 0 8px 22px rgba(14, 17, 16, .06);
}

.blog-share-actions :is(a, button):hover span {
  color: var(--white);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.blog-author-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem;
  align-items: center;
}

.blog-author-avatar {
  display: block;
  width: 2.55rem;
  height: 2.55rem;
  object-fit: cover;
  object-position: 50% 42%;
  background: var(--paper);
  border: 2px solid rgba(10, 193, 142, .18);
  border-radius: 50%;
}

.blog-author-line strong {
  display: block;
  line-height: 1.15;
}

.blog-author-line p {
  margin-top: .2rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.35;
}

.blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.blog-tag-list a {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: .28rem .58rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--logo-green) 44%, var(--line));
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-tag-list a:hover {
  color: var(--ink);
  border-color: var(--logo-green);
  background: color-mix(in srgb, var(--logo-green) 12%, transparent);
}

.blog-faq,
.blog-related {
  display: grid;
  gap: 1rem;
}

.blog-faq article,
.related-link {
  display: grid;
  gap: .4rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-faq h2,
.blog-related h2 {
  margin-bottom: .6rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.blog-related {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  align-items: stretch;
}

.blog-related > div:first-child {
  display: grid;
  gap: 1rem;
}

.related-link span {
  color: var(--muted);
}

.blog-post-cta {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
  color: var(--white);
  background: var(--night);
  border-radius: var(--radius);
}

.blog-post-cta p {
  color: rgba(255, 254, 250, .75);
}

.cms-missing {
  display: inline-block;
  padding: .35rem .5rem;
  border: 2px solid #d20f39;
  border-radius: var(--radius);
  color: #d20f39;
  background: #fff;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .price-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-hero img {
    height: clamp(460px, 48vw, 560px);
    object-position: center 30%;
  }

  .price-hero-panel {
    max-width: 560px;
  }

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

  .pricing-intro {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    column-gap: 26px;
    align-items: start;
  }

  .pricing-intro > span {
    margin-bottom: 0;
  }

  .pricing-intro p {
    grid-column: 2;
  }

  .solution-capabilities.richtext ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --subhero-height: 560px;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-header[data-menu-open],
  .site-header[data-scrolled][data-menu-open] {
    background: rgba(14, 17, 16, .94);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
  }

  .site-header::after {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 0;
    background: rgba(6, 8, 8, .48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    content: "";
    transition: opacity .24s ease, visibility 0s linear .24s;
  }

  .site-header[data-menu-open]::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-actions .language-switch {
    display: inline-flex;
  }

  .nav-actions .language-link {
    min-height: 42px;
    border-radius: var(--radius);
  }

  .nav-links .language-switch {
    display: none;
  }

  .nav-links {
    position: fixed;
    z-index: 3;
    top: calc(var(--header-height) + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(22, 27, 25, .99), rgba(10, 13, 12, .985));
    box-shadow: 0 28px 72px rgba(0, 0, 0, .34);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(.985);
    transform-origin: top right;
    transition: opacity .22s ease, transform .28s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .28s;
  }

  .nav-links::before {
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 193, 142, 0), rgba(10, 193, 142, .75), rgba(10, 193, 142, 0));
    content: "";
  }

  .nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .065);
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity .22s ease, transform .28s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }

  .nav-links a::before {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-right: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    content: "";
    transition: background .2s ease, box-shadow .2s ease;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    border-color: rgba(10, 193, 142, .48);
    background: rgba(10, 193, 142, .13);
  }

  .nav-links a.is-active::before {
    background: var(--accent-2);
    box-shadow: 0 0 0 5px rgba(10, 193, 142, .12);
  }

  .nav-links[data-open] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-links[data-open] a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links[data-open] a:nth-child(1) { transition-delay: .03s; }
  .nav-links[data-open] a:nth-child(2) { transition-delay: .06s; }
  .nav-links[data-open] a:nth-child(3) { transition-delay: .09s; }
  .nav-links[data-open] a:nth-child(4) { transition-delay: .12s; }
  .nav-links[data-open] a:nth-child(5) { transition-delay: .15s; }

  @media (prefers-reduced-motion: reduce) {
    .nav-links,
    .nav-links a,
    .site-header::after,
    .nav-toggle-lines,
    .nav-toggle-lines::before,
    .nav-toggle-lines::after {
      transition: none;
    }
  }

  .hero-grid,
  .subhero-grid,
  .craft-grid,
  .competence-proof,
  .editorial-grid,
  .multilingual-teaser,
  .language-bento,
  .multilingual-bento,
  .multilingual-strip,
  .website-landing-lead,
  .website-landing-process,
  .website-landing-faq-grid,
  .website-landing-showcase,
  .website-landing-cta,
  .project-stage-content,
  .two-col,
  .feature-split,
  .contact-grid,
  .ip-service-grid,
  .support-tool-grid,
  .detail-row,
  .project-wide,
  .project-detail-layout,
  .solution-detail-hero-grid,
  .solution-consulting {
    grid-template-columns: 1fr;
  }

  .solution-detail-copy {
    min-height: 0;
    padding: 24px 0 0;
  }

  .subhero-grid {
    align-items: start;
    gap: 34px;
  }

  .about-hero img {
    height: clamp(420px, 62vw, 520px);
    object-position: center 30%;
  }

  .subhero-focus {
    max-width: 560px;
  }

  .ip-tool-card {
    max-width: none;
  }

  .ip-help-copy {
    position: static;
  }

  .support-report-builder {
    max-width: none;
  }

  .subhero > .section-inner {
    padding-top: 112px;
    padding-bottom: 50px;
  }

  .subhero-copy {
    gap: 0;
  }

  .hero {
    min-height: 600px;
  }

  .hero-stage {
    min-height: 600px;
    align-items: end;
    padding-bottom: 44px;
  }

  .hero-backdrop img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 17, 16, .92), rgba(14, 17, 16, .5)),
      linear-gradient(0deg, rgba(14, 17, 16, .92), rgba(14, 17, 16, .16) 68%);
  }

  .craft-grid,
  .editorial-grid,
  .project-stage-content {
    gap: 42px;
  }

  .craft-line {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .craft-line li {
    grid-template-columns: 96px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .craft-line strong,
  .craft-line p {
    grid-column: 2;
  }

  .craft-line p {
    max-width: 42ch;
  }

  .editorial-heading {
    position: static;
  }

  .workflow-section .feature-split {
    padding: 58px 0;
    grid-template-columns: 1fr;
  }

  .multilingual-lead {
    grid-column: auto;
  }

  .multilingual-strip {
    align-items: start;
  }

  .multilingual-strip-copy {
    justify-self: start;
  }

  .project-stage {
    min-height: auto;
  }

  .project-stage-content {
    padding: 60px 0;
  }

  .project-rail {
    grid-template-columns: 1fr;
  }

  .project-wide,
  .project-detail-layout {
    gap: 28px;
    padding: 18px;
  }

  .project-detail-layout {
    max-width: 760px;
  }

  .project-detail-layout .project-browser {
    max-width: 680px;
    margin-inline: auto;
  }

  .project-detail-layout .browser-viewport {
    height: clamp(340px, 52vh, 460px);
  }

  .project-detail-copy {
    gap: 20px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 254, 250, .82);
    box-shadow: 0 18px 50px rgba(14, 17, 16, .06);
  }

  .project-share-box {
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .detail-row {
    gap: 28px;
    padding: 18px;
  }

  .detail-row img {
    min-height: 280px;
  }

  .browser-viewport {
    height: min(620px, 72vh);
  }

  .project-wide h2 {
    max-width: 14ch;
    font-size: 3.2rem;
  }

  .solution-grid,
  .project-grid,
  .price-grid,
  .pricing-package,
  .pricing-care,
  .pricing-closing,
  .process-grid,
  .ip-fact-grid,
  .detail-pair,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about {
    max-width: none;
  }

  .solution-capabilities.richtext ul {
    grid-template-columns: 1fr;
  }

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

  .website-landing-card-grid article {
    min-height: 250px;
  }

  .website-landing-showcase,
  .website-landing-cta {
    grid-template-columns: 1fr;
  }

  .website-landing-showcase figure,
  .website-landing-cta figure {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .detail-full {
    grid-column: auto;
  }

  .section-head,
  .cta-panel {
    display: grid;
  }

  .pricing-intro {
    display: block;
  }

  .pricing-intro > span {
    margin-bottom: 22px;
  }

  .pricing-intro p {
    max-width: 48ch;
  }

  .pricing-care,
  .pricing-closing,
  .contact-bento {
    gap: 26px;
  }
}

@media (min-width: 720px) and (max-width: 900px) {
  :root {
    --subhero-height: 660px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section {
    padding: 68px 0;
  }

  .competence-proof {
    grid-template-columns: minmax(310px, 340px) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
  }

  .competence-icon-cloud {
    width: min(340px, 42vw);
    aspect-ratio: 1.08;
    margin-left: 0;
  }

  .competence-icon-shell {
    width: 96px;
    border-radius: 22px;
  }

  .icon-socialdock {
    top: 11%;
    left: 5%;
    width: 96px;
  }

  .icon-dotflow {
    top: 0;
    right: 18%;
    width: 114px;
  }

  .icon-mapmax {
    bottom: 4%;
    left: 17%;
    width: 108px;
  }

  .icon-beam {
    right: 5%;
    bottom: 15%;
    width: 124px;
  }

  .competence-proof-copy {
    max-width: 460px;
  }

  .section-head,
  .cta-panel {
    display: flex;
    align-items: end;
  }

  .subhero-grid,
  .price-hero-grid,
  .solution-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(258px, .72fr);
    gap: 30px;
    align-items: center;
  }

  .price-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .price-hero-panel {
    max-width: 560px;
  }

  .subhero > .section-inner {
    padding-top: 106px;
    padding-bottom: 46px;
  }

  .subhero h1 {
    max-width: 12ch;
  }

  .subhero p {
    font-size: 1.06rem;
  }

  .subhero-focus,
  .price-hero-panel {
    min-height: 0;
    max-width: none;
  }

  .subhero-focus article,
  .price-hero-panel a {
    grid-template-columns: 66px minmax(0, 1fr);
    min-height: 108px;
    gap: 7px 16px;
    padding: 20px;
  }

  .subhero-focus span,
  .price-hero-panel span {
    font-size: 2.35rem;
  }

  .subhero-focus strong,
  .price-hero-panel strong {
    font-size: .98rem;
  }

  .subhero-focus p,
  .price-hero-panel small {
    font-size: .86rem;
    line-height: 1.42;
  }

  .legal-hero,
  .legal-hero > .section-inner {
    min-height: 300px;
  }

  .legal-hero > .section-inner {
    padding-top: 108px;
    padding-bottom: 40px;
  }

  .legal-hero h1 {
    max-width: none;
    font-size: 3.2rem;
  }

  .craft-grid,
  .editorial-grid,
  .multilingual-teaser,
  .feature-split,
  .workflow-section .feature-split,
  .project-stage-content,
  .pricing-care,
  .pricing-closing,
  .contact-bento {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 34px;
  }

  .craft-line {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .craft-line li {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .craft-line span {
    font-size: 3.1rem;
  }

  .craft-intro h2,
  .editorial-heading h2,
  .project-stage-copy h2,
  .process-section h2,
  .pricing-care h2,
  .pricing-closing h2,
  .contact-card h2,
  .contact-note h2 {
    font-size: 2.15rem;
    line-height: 1.04;
  }

  .editorial-heading {
    position: static;
  }

  .solution-editorial-list article {
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 22px;
    padding: 28px 0;
  }

  .solution-editorial-list span {
    font-size: 3.15rem;
  }

  .workflow-section .feature-split,
  .multilingual-dark .feature-split {
    padding: 54px 0;
  }

  .solutions-editorial {
    padding-bottom: 36px;
  }

  .solutions-editorial + .workflow-section .feature-split {
    padding-top: 30px;
  }

  .language-bento {
    grid-template-columns: 1fr;
  }

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

  .multilingual-lead {
    grid-column: 1 / -1;
  }

  .language-bento article,
  .multilingual-bento article {
    padding: 24px;
  }

  .multilingual-strip {
    grid-template-columns: minmax(0, .9fr) minmax(260px, .68fr);
    gap: 30px;
    padding: 34px;
  }

  .website-landing-lead,
  .website-landing-process,
  .website-landing-faq-grid {
    grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
    gap: 34px;
  }

  .website-landing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .website-landing-card-grid article {
    min-height: 236px;
    padding: 24px;
  }

  .website-landing-card-grid h2 {
    margin-top: 30px;
  }

  .website-landing-process-grid article {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 20px;
  }

  .website-landing-showcase {
    padding: 22px;
  }

  .project-stage {
    min-height: 540px;
  }

  .project-stage-content {
    padding: 66px 0;
  }

  .project-rail {
    grid-template-columns: 1fr;
  }

  .project-rail-item {
    min-height: 0;
    padding: 22px 24px;
  }

  .solution-list .detail-row,
  .detail-row,
  .solution-detail-hero-grid,
  .solution-consulting {
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1fr);
  }

  .detail-row {
    gap: 26px;
    padding: 18px;
  }

  .detail-row img {
    min-height: 320px;
  }

  .detail-row > div,
  .project-copy {
    gap: 18px;
  }

  .solution-consulting-card,
  .solution-capabilities {
    padding: 28px;
  }

  .solution-capabilities {
    grid-column: 1 / -1;
  }

  .solution-capabilities.richtext ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-wide,
  .project-detail-layout {
    gap: 24px;
    padding: 18px;
  }

  .browser-viewport {
    height: 420px;
  }

  .project-wide h2 {
    max-width: 18ch;
    font-size: 2.45rem;
  }

  .project-copy > p,
  .project-wide .detail-pair p,
  .project-wide .richtext p {
    font-size: .98rem;
    line-height: 1.58;
  }

  .solution-grid,
  .project-grid,
  .price-grid,
  .process-grid,
  .detail-pair,
  .detail-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    gap: 26px;
  }

  .process-grid article {
    padding-top: 22px;
  }

  .process-grid article span {
    margin-bottom: 22px;
  }

  .process-section .process-grid article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .pricing-package {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    padding: 34px;
  }

  .pricing-intro {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    column-gap: 22px;
  }

  .pricing-intro > span {
    margin-bottom: 0;
    font-size: 3rem;
  }

  .pricing-intro p {
    grid-column: 2;
    max-width: 52ch;
  }

  .pricing-money strong {
    font-size: 1.9rem;
  }

  .contact-card,
  .contact-note {
    padding: 34px;
  }

  .contact-note .contact-step-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (min-width: 800px) and (max-width: 900px) {
  .project-wide {
    grid-template-columns: minmax(315px, .92fr) minmax(0, 1fr);
  }

  .project-wide .detail-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .project-detail-layout .browser-viewport {
    height: clamp(300px, 50vh, 390px);
  }

  .project-detail-copy {
    padding: 22px;
  }

  .project-share-box .blog-share-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-share-box .blog-share-actions :is(a, button) {
    min-height: 2.7rem;
    padding: .5rem .6rem;
    font-size: .78rem;
  }

  .project-share-box .blog-share-actions :is(a, button) strong {
    overflow-wrap: anywhere;
  }
}

@media (min-width: 561px) and (max-width: 1180px) {
  .page-about-da .process-section,
  .page-about-de .process-section {
    padding: 54px 0 52px;
  }

  .craft-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: start;
  }

  .craft-intro {
    max-width: 760px;
  }

  .craft-slider {
    max-width: 920px;
  }

  .craft-slider-tools {
    justify-content: flex-start;
  }

  .craft-slider .craft-line {
    display: flex;
    gap: 16px;
    max-width: none;
  }

  .craft-slider .craft-line li {
    grid-template-columns: 1fr;
    flex-basis: calc((100% - 16px) / 2);
    min-height: 236px;
    padding: 22px;
    border-top: 1px solid rgba(19, 24, 23, .12);
  }

  .craft-slider .craft-line li:first-child {
    border-top: 1px solid rgba(19, 24, 23, .12);
  }

  .craft-slider .craft-line span,
  .craft-slider .craft-line strong,
  .craft-slider .craft-line p {
    grid-column: auto;
  }

  .craft-line {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 860px;
  }

  .craft-line li {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 8px 26px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }

  .craft-line li:first-child {
    border-top: 0;
  }

  .craft-line span {
    grid-row: span 2;
    font-size: 3.35rem;
  }

  .craft-line strong,
  .craft-line p {
    grid-column: 2;
  }

  .craft-line strong {
    max-width: none;
  }

  .craft-line p {
    max-width: 46ch;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) {
    min-height: auto;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) > .section-inner {
    min-height: auto;
    padding-top: clamp(102px, 11vw, 120px);
    padding-bottom: clamp(46px, 6vw, 64px);
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) .subhero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) .subhero-copy {
    max-width: 760px;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) h1 {
    max-width: 13.5ch;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) .subhero-focus {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
    max-width: none;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) .subhero-focus article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background:
      linear-gradient(150deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
      rgba(255, 255, 255, .045);
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) .subhero-focus span {
    grid-row: auto;
    font-size: 2.15rem;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) .subhero-focus strong {
    font-size: 1rem;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero):not(.error-page) .subhero-focus p {
    font-size: .88rem;
    line-height: 1.42;
  }
}

@media (min-width: 1181px) and (max-width: 1400px) and (hover: none) and (pointer: coarse) {
  .about-hero img {
    height: 480px;
    object-position: center 30%;
  }
}

@media (min-width: 720px) and (max-width: 1180px) {
  .price-hero-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
    min-height: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .price-hero-panel a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background:
      linear-gradient(150deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
      rgba(255, 255, 255, .045);
  }

  .price-hero-panel a + a {
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .price-hero-panel span {
    grid-row: auto;
    font-size: 2.35rem;
  }

  .price-hero-panel small {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .language-suggestion {
    top: calc(var(--header-height) + 10px);
    right: 16px;
    left: auto;
    max-width: min(270px, calc(100vw - 32px));
    border-radius: 999px;
  }

  .language-suggestion-actions {
    justify-content: flex-end;
  }

  .blog-featured,
  .blog-article-layout,
  .blog-related,
  .blog-cta {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-aside {
    position: static;
  }

  .blog-article-hero h1 {
    max-width: 24ch;
  }

  .blog-article-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 24px) 0 34px;
  }

  .blog-article-hero::before {
    background:
      linear-gradient(90deg, rgba(12, 18, 18, .94), rgba(12, 18, 18, .62)),
      linear-gradient(180deg, rgba(12, 18, 18, .12), rgba(12, 18, 18, .68));
  }

  .blog-article-hero-copy {
    gap: .75rem;
  }

  .blog-article-hero h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.45rem);
    line-height: 1.04;
  }

  .blog-article-lede {
    font-size: .98rem;
    line-height: 1.48;
  }

  .blog-article-signal-grid {
    gap: .5rem;
  }

  .blog-article-signal-grid span {
    padding: .55rem .75rem;
    font-size: .78rem;
  }

  .blog-article-body {
    font-size: 1.12rem;
    line-height: 1.72;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 70px;
    --subhero-height: 0px;
  }

  h1 {
    font-size: 2.42rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.96rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .project-wide h2 {
    max-width: none;
    font-size: 2.35rem;
  }

  .ip-tool-card {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 22px;
  }

  .support-diagnostics,
  .support-report-builder {
    padding: 22px;
  }

  .support-panel-header {
    display: grid;
    gap: 16px;
  }

  .support-ready-state {
    justify-self: start;
  }

  .support-diagnostic-list {
    grid-template-columns: 1fr;
  }

  .support-diagnostic-list > div {
    min-height: 0;
  }

  .support-action {
    flex-basis: 100%;
  }

  .ip-copy-button {
    grid-column: auto;
    grid-row: auto;
    width: 56px;
    height: 56px;
    justify-self: start;
  }

  .ip-value {
    font-size: clamp(2rem, 13vw, 3rem);
  }

  .ip-tool-card[data-ip-family="ipv4"] .ip-value {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .ip-tool-card[data-ip-family="ipv6"] .ip-value {
    font-size: clamp(1.05rem, 4.8vw, 1.55rem);
    line-height: 1.28;
  }

  .ip-fact-card {
    min-height: 0;
  }

  .ip-help-copy h2 {
    max-width: none;
  }

  .project-copy {
    gap: 18px;
  }

  .browser-viewport {
    height: 430px;
  }

  .section-inner,
  .nav-shell {
    width: min(var(--max), calc(100% - 32px));
  }

  .brand-logo {
    width: 136px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .language-link {
    width: 40px;
    min-height: 40px;
    justify-content: center;
    padding: 0 !important;
  }

  .nav-actions .language-name {
    display: none;
  }

  .nav-links {
    top: calc(var(--header-height) + 8px);
    left: 16px;
    right: 16px;
    padding: 8px;
  }

  .nav-links a {
    min-height: 48px;
    padding-inline: 12px;
  }

  .language-suggestion {
    padding: 4px;
  }

  .language-suggestion-primary,
  .language-suggestion-secondary {
    min-height: 30px;
    font-size: .74rem;
  }

  .language-suggestion-secondary {
    flex: 0 0 30px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-stage {
    min-height: 610px;
    padding-top: 86px;
    padding-bottom: 42px;
  }

  .hero-copy {
    gap: 22px;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .section {
    padding: 56px 0;
  }

  .competence-proof-section {
    overflow: hidden;
    padding-top: 32px;
    padding-bottom: 46px;
  }

  .competence-proof {
    gap: 20px;
  }

  .competence-icon-cloud {
    width: min(300px, 82vw);
    margin-left: 0;
    aspect-ratio: 1.12;
  }

  .competence-icon-cloud::before {
    inset: 2% -10% -4% -2%;
    filter: blur(14px);
  }

  .competence-icon-shell {
    width: 90px;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(14, 17, 16, .2);
  }

  .icon-socialdock {
    top: 12%;
    left: 5%;
    width: 94px;
  }

  .icon-dotflow {
    top: 1%;
    right: 18%;
    width: 112px;
  }

  .icon-mapmax {
    bottom: 4%;
    left: 16%;
    width: 108px;
  }

  .icon-beam {
    right: 4%;
    bottom: 16%;
    width: 122px;
  }

  .subhero {
    min-height: auto;
    padding: 0;
  }

  .website-landing-hero,
  .website-landing-hero-inner {
    min-height: 760px;
  }

  .website-landing-hero-inner {
    align-items: end;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .website-landing-hero-media img {
    object-position: 58% 50%;
    opacity: .72;
  }

  .website-landing-hero::after {
    background:
      linear-gradient(90deg, rgba(14, 17, 16, .98), rgba(14, 17, 16, .78)),
      linear-gradient(0deg, rgba(14, 17, 16, .96) 0%, rgba(14, 17, 16, .52) 52%, rgba(14, 17, 16, .24) 100%);
  }

  .subhero > .section-inner {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .website-landing-hero > .website-landing-hero-inner {
    min-height: 760px;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .subhero h1 {
    max-width: 13ch;
  }

  .subhero p {
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .subhero-copy {
    gap: 0;
  }

  .legal-body p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .legal-hero > .section-inner {
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .legal-hero h1 {
    max-width: none;
    font-size: 2.2rem;
  }

  .legal-hero .subhero-kicker {
    margin-bottom: 9px;
  }

  .legal-section {
    padding: 48px 0 64px;
  }

  .subhero-focus,
  .price-hero-panel {
    min-height: auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    scrollbar-width: none;
  }

  .subhero-focus::-webkit-scrollbar,
  .price-hero-panel::-webkit-scrollbar {
    display: none;
  }

  .subhero-focus article,
  .price-hero-panel a {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 6px 16px;
    flex: 0 0 min(244px, 78vw);
    min-height: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
  }

  .price-hero-panel a + a {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .subhero-focus span,
  .price-hero-panel span {
    font-size: 1.78rem;
  }

  .subhero-focus strong,
  .price-hero-panel strong {
    font-size: 1rem;
  }

  .subhero-focus p,
  .price-hero-panel small {
    font-size: .88rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .website-landing-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    min-height: 50px;
    padding-inline: 18px;
  }

  .button {
    width: 100%;
  }

  .craft-slider {
    gap: 14px;
  }

  .craft-slider-tools {
    justify-content: flex-start;
  }

  .craft-slider-button {
    width: 40px;
    height: 40px;
  }

  .craft-intro {
    gap: 16px;
  }

  .craft-intro h2 {
    font-size: 1.96rem;
  }

  .craft-slider .craft-line {
    display: flex;
    gap: 12px;
    margin-bottom: -72px;
    padding-bottom: 84px;
  }

  .craft-slider .craft-line li {
    grid-template-columns: 1fr;
    gap: 14px;
    flex-basis: 100%;
    min-height: 220px;
    padding: 20px;
  }

  .craft-line {
    gap: 16px;
  }

  .craft-line li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px 16px;
  }

  .craft-line span {
    font-size: 2.5rem;
  }

  .craft-line strong {
    max-width: none;
    font-size: 1rem;
  }

  .craft-line p {
    max-width: 36ch;
    font-size: .94rem;
  }

  .craft-slider .craft-line span,
  .craft-slider .craft-line strong,
  .craft-slider .craft-line p {
    grid-column: auto;
  }

  .craft-slider .craft-line span {
    font-size: 2.7rem;
  }

  .craft-slider .craft-line strong {
    max-width: 12ch;
  }

  .craft-slider .craft-line p {
    max-width: 24ch;
  }

  .multilingual-teaser > div:first-child,
  .language-bento article,
  .multilingual-bento article {
    padding: 22px;
  }

  .language-bento span,
  .multilingual-bento article > span {
    font-size: 2rem;
  }

  .workflow-section .feature-split {
    padding: 46px 0;
  }

  .website-landing-lead-section,
  .website-landing-card-section,
  .website-landing-process-section,
  .website-landing-faq,
  .website-landing-cta-section {
    padding: 50px 0;
  }

  .website-landing-showcase-section {
    padding-bottom: 50px;
  }

  .website-landing-lead,
  .website-landing-process,
  .website-landing-faq-grid,
  .website-landing-showcase,
  .website-landing-cta {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .website-landing-lead h2,
  .website-landing-process h2,
  .website-landing-faq h2 {
    max-width: none;
    font-size: 1.9rem;
  }

  .website-landing-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .website-landing-card-grid article {
    min-height: 0;
    padding: 22px;
  }

  .website-landing-card-grid h2 {
    margin-top: 28px;
  }

  .website-landing-showcase {
    width: min(var(--max), calc(100% - 24px));
    padding: 14px;
    border-radius: var(--radius);
  }

  .website-landing-showcase figure,
  .website-landing-cta figure {
    aspect-ratio: 16 / 10;
  }

  .website-landing-showcase h2,
  .website-landing-cta h2 {
    max-width: none;
    font-size: 1.9rem;
  }

  .website-landing-process-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .website-landing-process-grid::before {
    left: 25px;
  }

  .website-landing-card-grid span,
  .website-landing-process-grid span {
    font-size: 2rem;
  }

  .website-landing-faq .richtext {
    gap: 14px;
  }

  .website-landing-faq .richtext h2:not(:first-child) {
    margin-top: 12px;
  }

  .solutions-editorial {
    padding-bottom: 34px;
  }

  .solutions-editorial + .workflow-section .feature-split {
    padding-top: 28px;
  }

  .workflow-media {
    order: 2;
  }

  .workflow-section .feature-split > div {
    order: 1;
  }

  .feature-split div,
  .project-stage-copy {
    gap: 18px;
  }

  .project-stage-content {
    padding: 60px 0;
  }

  .project-stage-copy h2 {
    max-width: none;
  }

  .about-hero .subhero-grid {
    gap: 24px;
  }

  .about-hero img {
    width: 100%;
    height: clamp(360px, 76vw, 460px);
    object-fit: cover;
    object-position: center 30%;
  }

  .detail-row,
  .project-wide {
    gap: 18px;
    padding: 14px;
  }

  .solution-list {
    gap: 18px;
  }

  .solution-list .detail-row {
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .detail-row img {
    min-height: 230px;
  }

  .solution-list .detail-row img {
    height: 184px;
    min-height: 0;
    border-radius: 0;
  }

  .detail-row > div,
  .project-copy {
    gap: 18px;
    padding: 8px 0;
  }

  .solution-list .detail-row > div {
    gap: 14px;
    padding: 18px;
  }

  .solution-list .detail-row h2 {
    font-size: 1.52rem;
    line-height: 1.06;
  }

  .solution-list .detail-row > div > p {
    font-size: .94rem;
    line-height: 1.5;
  }

  .detail-pair,
  .detail-grid {
    gap: 12px;
  }

  .solution-list .detail-pair {
    gap: 12px;
  }

  .detail-pair div,
  .detail-grid div {
    padding: 15px;
  }

  .solution-list .detail-pair div {
    padding: 0 0 0 12px;
    border: 0;
    border-left: 2px solid rgba(22, 192, 150, .45);
    border-radius: 0;
    background: transparent;
  }

  .solution-list .richtext ul {
    padding-left: 1rem;
  }

  .project-browser {
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(14, 17, 16, .16);
  }

  .browser-chrome {
    min-height: 36px;
    padding-inline: 12px;
  }

  .price-hero {
    padding-bottom: 0;
  }

  .price-hero-grid {
    gap: 36px;
  }

  .price-hero-panel {
    border-radius: 18px;
  }

  .price-hero-panel small {
    grid-column: 2;
    white-space: normal;
  }

  .pricing-section {
    padding-top: 56px;
  }

  .pricing-package {
    gap: 20px;
    padding: 22px;
    border-radius: 14px;
  }

  .pricing-intro h2,
  .pricing-care h2,
  .pricing-closing h2 {
    max-width: none;
    font-size: 1.9rem;
    line-height: 1.06;
  }

  .pricing-intro > span {
    margin-bottom: 16px;
    font-size: 2.45rem;
  }

  .pricing-intro p {
    margin-top: 14px;
  }

  .pricing-money strong {
    font-size: 1.65rem;
  }

  .pricing-care,
  .pricing-closing {
    gap: 22px;
  }

  .pricing-care p,
  .pricing-closing p {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .care-list span {
    width: 100%;
  }

  .solution-editorial-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .solution-editorial-list span {
    font-size: 2.5rem;
  }

  .solution-editorial-list h3,
  .solution-editorial-list p {
    grid-column: auto;
  }

  .project-rail-item {
    min-height: 0;
    padding: 22px;
  }

  .process-section h2 {
    margin-bottom: 28px;
  }

  .process-section .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article span {
    margin-bottom: 22px;
    font-size: 2.5rem;
  }

  .process-section .process-grid article:nth-child(3) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .process-section .process-grid article:nth-child(3) span {
    grid-row: auto;
    margin-bottom: 22px;
  }

  .contact-card,
  .contact-note {
    gap: 16px;
    padding: 22px;
  }

  .contact-card h2,
  .contact-note h2 {
    max-width: none;
    font-size: 1.9rem;
    line-height: 1.06;
  }

  .contact-actions {
    gap: 10px;
  }

  .contact-card .contact-action {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 15px;
  }

  .contact-action-icon {
    width: 2.85rem;
    height: 2.85rem;
    font-size: 1.05rem;
  }

  .contact-action-note {
    grid-column: 2;
    justify-self: start;
    min-height: 2rem;
    padding: 0 .65rem;
  }

  .contact-note .contact-step-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
  }

  .contact-note .contact-step-list span {
    font-size: 1.72rem;
  }

  .footer-cta {
    padding: 52px 0;
  }

  .cta-panel {
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .footer-about {
    grid-column: 1 / -1;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 254, 250, .16);
  }

  .footer-brand {
    margin-bottom: 14px;
  }

  .footer-address {
    margin-top: 16px;
  }

  .footer-contact-links {
    grid-template-columns: max-content max-content;
    gap: 8px 20px;
    margin-top: 18px;
  }

  .footer-contact-links a:last-child:nth-child(3) {
    grid-column: 1 / -1;
  }

  .footer-link-group {
    gap: 10px;
  }

  .footer-link-group h3 {
    margin-bottom: 2px;
  }

  .footer-resource-group {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    padding-block: 28px;
    border-block: 1px solid rgba(255, 254, 250, .16);
  }

  .footer-resource-group h3 {
    grid-column: 1 / -1;
  }

  .footer-legal-group {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
  }

  .footer-legal-group h3 {
    width: 100%;
    margin-bottom: 0;
  }

  .footer-legal-group a {
    color: rgba(255, 254, 250, .58);
  }

  .site-footer {
    padding: 46px 0 38px;
  }
}

@keyframes nuweb-subhero-grid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 96px 0, 0 72px;
  }
}

@keyframes nuweb-subhero-sheen {
  from {
    background-position: 120% 0;
  }

  to {
    background-position: -40% 0;
  }
}

@keyframes nuweb-image-settle {
  from {
    opacity: .82;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes nuweb-landing-hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.6%, .9%, 0);
  }
}

@keyframes nuweb-landing-image-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

@keyframes nuweb-browser-scroll-cue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  16% {
    opacity: .78;
  }

  58% {
    opacity: .78;
    transform: translate(-50%, 12px);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 560px) {
  #content p:not(.eyebrow):not(.subhero-kicker):not(.contact-kicker):not(.error-kicker):not(.meta):not(.ip-status):not(.support-action-status):not(.support-privacy):not(.support-noscript):not(.t3s-public-login-error) {
    font-size: 1.125rem;
    line-height: 1.62;
  }

  .project-link-row {
    align-items: stretch;
  }

  .project-link-row .project-action {
    width: 100%;
  }

  .project-share-box .blog-share-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
  }

  .project-share-box .blog-share-actions :is(a, button) {
    justify-content: flex-start;
    min-height: 3rem;
    padding: .55rem .65rem;
    font-size: .76rem;
  }

  .project-share-box .blog-share-actions :is(a, button) span {
    width: 1.35rem;
    height: 1.35rem;
    font-size: .66rem;
  }
}

/* --------------------------------------------------------------------------
   Light home concept · RC17
   The project/detail templates intentionally keep their existing treatment.
   -------------------------------------------------------------------------- */

.page-home-da,
.page-home-de {
  --paper: #f5f6f2;
  --white: #fff;
  --ink: #111513;
  --muted: #656b67;
  --line: #dfe3dd;
  --logo-green: #0ac18e;
  --accent: var(--logo-green);
  --accent-2: var(--logo-green);
  --green-deep: var(--logo-green);
  --green-text: var(--logo-green);
  --home-soft-green: #e8f7f1;
  --home-shadow: 0 28px 80px rgba(19, 29, 25, .11);
  background: var(--paper);
}

.page-home-da main,
.page-home-de main {
  overflow: clip;
}

.page-home-da h1,
.page-home-da h2,
.page-home-da h3,
.page-home-de h1,
.page-home-de h2,
.page-home-de h3 {
  letter-spacing: -.018em;
}

.page-home-da h1,
.page-home-de h1 {
  font-weight: 790;
}

.page-home-da h2,
.page-home-de h2 {
  font-weight: 780;
}

.page-home-da h3,
.page-home-de h3 {
  font-weight: 760;
}

.page-home-da .site-header,
.page-home-de .site-header {
  height: 84px;
  border-color: transparent;
  color: var(--ink);
}

.page-home-da .site-header[data-scrolled],
.page-home-de .site-header[data-scrolled],
.page-home-da .site-header[data-menu-open],
.page-home-de .site-header[data-menu-open] {
  border-color: rgba(17, 21, 19, .08);
  background: rgba(249, 250, 247, .86);
  box-shadow: 0 12px 40px rgba(17, 21, 19, .045);
  backdrop-filter: blur(22px) saturate(140%);
}

.page-home-da .site-header .brand-logo,
.page-home-de .site-header .brand-logo {
  width: clamp(112px, 11vw, 142px);
}

.page-home-da .site-header .brand-logo path[style*="fill:#fff"],
.page-home-de .site-header .brand-logo path[style*="fill:#fff"] {
  fill: var(--ink) !important;
}

.page-home-da .site-header .nav-links,
.page-home-de .site-header .nav-links {
  color: #393e3b;
  gap: clamp(20px, 2.2vw, 34px);
  font-size: .86rem;
  font-weight: 650;
}

.page-home-da .site-header .nav-links a,
.page-home-de .site-header .nav-links a {
  position: relative;
}

.page-home-da .site-header .nav-links > a::after,
.page-home-de .site-header .nav-links > a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--logo-green);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .3s var(--motion-ease);
}

.page-home-da .site-header .nav-links > a:hover::after,
.page-home-da .site-header .nav-links > a.is-active::after,
.page-home-de .site-header .nav-links > a:hover::after,
.page-home-de .site-header .nav-links > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.page-home-da .site-header .nav-links a:hover,
.page-home-da .site-header .nav-links a.is-active,
.page-home-de .site-header .nav-links a:hover,
.page-home-de .site-header .nav-links a.is-active {
  color: var(--ink);
}

.page-home-da .site-header .language-link,
.page-home-de .site-header .language-link {
  border-color: rgba(17, 21, 19, .14);
  background: rgba(255, 255, 255, .56);
  color: var(--ink);
}

.page-home-da .site-header .language-link.is-current,
.page-home-de .site-header .language-link.is-current {
  border-color: rgba(10, 193, 142, .34);
  background: rgba(10, 193, 142, .08);
}

.page-home-da .site-header .nav-toggle,
.page-home-de .site-header .nav-toggle {
  border-color: rgba(17, 21, 19, .14);
  background: rgba(255, 255, 255, .7);
  color: var(--ink);
}

.page-home-da .button,
.page-home-de .button {
  min-height: 52px;
  border-color: var(--ink);
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(17, 21, 19, .13);
  font-size: .9rem;
  font-weight: 700;
}

.page-home-da .button::after,
.page-home-de .button::after {
  color: var(--logo-green);
}

.page-home-da .button:hover,
.page-home-de .button:hover {
  border-color: #222825;
  background: #222825;
  box-shadow: 0 18px 34px rgba(17, 21, 19, .18);
}

.page-home-da .button-ghost,
.page-home-de .button-ghost {
  border-color: rgba(17, 21, 19, .18);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.page-home-da .button-ghost:hover,
.page-home-de .button-ghost:hover {
  border-color: rgba(17, 21, 19, .36);
  background: var(--white);
}

.page-home-da .text-link,
.page-home-de .text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: .55rem;
  color: var(--ink);
  text-decoration: none;
}

.page-home-da .text-link::after,
.page-home-de .text-link::after {
  color: var(--logo-green);
  content: "↗";
  transition: transform .25s var(--motion-ease);
}

.page-home-da .text-link:hover::after,
.page-home-de .text-link:hover::after {
  transform: translate(3px, -3px);
}

.page-home-da .home-hero,
.page-home-de .home-hero {
  --scene-progress: .35;
  min-height: min(900px, 94vh);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 40%, rgba(10, 193, 142, .045), transparent 27%),
    linear-gradient(180deg, #fbfcf9 0%, #f7f8f5 100%);
  color: var(--ink);
}

.home-hero .hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-hero .hero-orbit {
  position: absolute;
  top: 16%;
  left: 55%;
  width: clamp(390px, 40vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(10, 193, 142, .1);
  border-radius: 50%;
  background: rgba(10, 193, 142, .038);
  transform: translate3d(0, calc((var(--scene-progress) - .35) * -46px), 0);
}

.home-hero .hero-orbit::after {
  display: none;
}

.home-hero .hero-dot-grid {
  position: absolute;
  top: 32%;
  right: -1%;
  width: min(24vw, 320px);
  height: 224px;
  background-image: radial-gradient(circle, rgba(17, 21, 19, .78) 2.2px, transparent 2.45px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 20%, rgba(0, 0, 0, .78) 48%, #000 68%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 20%, rgba(0, 0, 0, .78) 48%, #000 68%, #000 100%);
  opacity: .8;
  transform: translate3d(0, calc((var(--scene-progress) - .35) * 30px), 0);
}

.home-hero .hero-stage {
  display: grid;
  grid-template-columns: minmax(350px, .87fr) minmax(520px, 1.13fr);
  gap: clamp(40px, 4vw, 72px);
  min-height: min(900px, 94vh);
  padding-top: 130px;
  padding-bottom: 74px;
}

.home-hero .hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 590px;
  gap: 27px;
}

.home-hero .hero-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(3.55rem, 5.25vw, 5.7rem);
  line-height: .98;
}

.home-hero .hero-copy p {
  max-width: 43ch;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.28vw, 1.22rem);
  line-height: 1.62;
}

.home-hero .hero-projects {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: clamp(460px, 45vw, 620px);
  perspective: 1200px;
}

.home-hero .hero-project-card {
  position: absolute;
  display: block;
  filter: drop-shadow(0 28px 34px rgba(22, 30, 27, .14));
  transform-origin: center;
  transition: filter .4s ease;
}

.home-hero .hero-project-card:hover {
  filter: drop-shadow(0 38px 46px rgba(22, 30, 27, .19));
}

.home-hero .hero-project-card-primary {
  z-index: 2;
  top: 7%;
  left: 4%;
  width: min(88%, 610px);
  transform: translate3d(0, calc((var(--scene-progress) - .35) * -30px), 0) rotate(-2.2deg);
}

.home-hero .hero-project-card-secondary {
  z-index: 1;
  right: -4%;
  bottom: 3%;
  width: min(69%, 470px);
  transform: translate3d(0, calc((var(--scene-progress) - .35) * 38px), -20px) rotate(2.6deg);
}

.home-hero .project-window {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 19, .12);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .78);
}

.home-hero .project-window-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding-inline: 10px;
  border-bottom: 1px solid rgba(17, 21, 19, .08);
  background: #fafbf8;
}

.home-hero .project-window-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(17, 21, 19, .27);
}

.home-hero .project-window img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  transition: transform .75s var(--motion-ease);
}

.home-hero .hero-project-card:hover img {
  transform: scale(1.025);
}

.home-hero .hero-project-badge {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 11%;
  display: grid;
  place-content: center;
  width: clamp(112px, 10vw, 146px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 20px 52px rgba(17, 21, 19, .22);
  font-size: clamp(.78rem, .9vw, .9rem);
  font-style: normal;
  font-weight: 670;
  line-height: 1.42;
  transform: translate3d(0, calc((var(--scene-progress) - .35) * -22px), 0);
}

.home-hero .hero-project-badge i {
  color: var(--logo-green);
  font-style: normal;
}

.client-proof {
  background: #fbfcf9;
  border-bottom: 1px solid var(--line);
}

.client-proof-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  min-height: 94px;
  align-items: center;
}

.client-proof-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #666d68;
  font-size: clamp(.72rem, .86vw, .84rem);
  font-weight: 720;
  letter-spacing: .015em;
  text-align: center;
}

.client-proof-mark i {
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--logo-green);
}

.page-home-da .craft-section,
.page-home-de .craft-section {
  position: relative;
  min-height: 1180px;
  padding: clamp(100px, 11vw, 152px) 0;
  background: var(--paper);
}

.page-home-da .craft-section::after,
.page-home-de .craft-section::after {
  position: absolute;
  right: -130px;
  bottom: -160px;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 193, 142, .11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-home-da .craft-grid,
.page-home-de .craft-grid {
  grid-template-columns: minmax(300px, .86fr) minmax(380px, 1.14fr);
  gap: clamp(80px, 10vw, 150px);
  align-items: start;
}

.page-home-da .craft-intro,
.page-home-de .craft-intro {
  position: sticky;
  top: 136px;
  gap: 28px;
}

.page-home-da .craft-intro::before,
.page-home-de .craft-intro::before {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--logo-green);
  content: "";
}

.page-home-da .craft-intro h2,
.page-home-de .craft-intro h2 {
  max-width: 14ch;
  font-size: clamp(2.65rem, 4.1vw, 4.35rem);
  line-height: 1.01;
}

.page-home-da .craft-intro p,
.page-home-de .craft-intro p {
  max-width: 45ch;
  font-size: 1.08rem;
  line-height: 1.7;
}

.page-home-da .craft-line,
.page-home-de .craft-line {
  display: grid;
  gap: 0;
  overflow: visible;
  margin: 0;
  padding: 0;
  scroll-snap-type: none;
}

.page-home-da .craft-line li,
.page-home-de .craft-line li {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 185px;
  align-content: center;
  padding: 38px 8px 38px 42px;
  border-top: 1px solid var(--line);
}

.page-home-da .craft-line li:last-child,
.page-home-de .craft-line li:last-child {
  border-bottom: 1px solid var(--line);
}

.page-home-da .craft-line li::before,
.page-home-de .craft-line li::before {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 8px;
  height: 8px;
  border: 3px solid rgba(10, 193, 142, .18);
  border-radius: 50%;
  background: var(--logo-green);
  box-shadow: 0 0 0 8px rgba(10, 193, 142, .055);
  content: "";
  transform: translateY(-50%);
}

.page-home-da .craft-line strong,
.page-home-de .craft-line strong {
  color: var(--ink);
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  line-height: 1.18;
}

.page-home-da .craft-line p,
.page-home-de .craft-line p {
  max-width: 45ch;
  font-size: .98rem;
  line-height: 1.6;
}

.page-home-da .competence-proof-section,
.page-home-de .competence-proof-section {
  padding: clamp(90px, 10vw, 138px) 0;
  background: var(--white);
}

.page-home-da .competence-proof,
.page-home-de .competence-proof {
  grid-template-columns: minmax(340px, .88fr) minmax(380px, 1fr);
  gap: clamp(64px, 10vw, 148px);
  padding-top: 0;
  border-top: 0;
}

.page-home-da .competence-icon-cloud,
.page-home-de .competence-icon-cloud {
  width: min(470px, 100%);
}

.page-home-da .competence-icon-cloud::before,
.page-home-de .competence-icon-cloud::before {
  inset: -20% -12% -22% -10%;
  border: 1px solid rgba(10, 193, 142, .09);
  border-radius: 50%;
  background: var(--home-soft-green);
  filter: none;
  opacity: .8;
}

.page-home-da .competence-icon-shell,
.page-home-de .competence-icon-shell {
  width: clamp(76px, 8vw, 112px);
  border: 8px solid var(--white);
  border-radius: 26px;
  box-shadow: 0 20px 46px rgba(17, 21, 19, .13);
}

.page-home-da .icon-dotflow,
.page-home-de .icon-dotflow {
  width: clamp(88px, 9vw, 126px);
}

.page-home-da .icon-beam,
.page-home-de .icon-beam {
  width: clamp(94px, 10vw, 138px);
}

.page-home-da .competence-proof-copy,
.page-home-de .competence-proof-copy {
  max-width: 620px;
}

.page-home-da .competence-proof .eyebrow,
.page-home-de .competence-proof .eyebrow {
  color: var(--green-text);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.page-home-da .competence-proof h2,
.page-home-de .competence-proof h2 {
  max-width: 16ch;
  margin-top: 16px;
  font-size: clamp(2.65rem, 4.1vw, 4.3rem);
  line-height: 1.01;
}

.page-home-da .competence-proof p:not(.eyebrow),
.page-home-de .competence-proof p:not(.eyebrow) {
  margin-top: 28px;
  font-size: 1.06rem;
  line-height: 1.72;
}

.page-home-da .solutions-editorial,
.page-home-de .solutions-editorial {
  min-height: 980px;
  padding: clamp(100px, 11vw, 150px) 0;
  background: var(--paper);
  color: var(--ink);
}

.page-home-da .editorial-grid,
.page-home-de .editorial-grid {
  grid-template-columns: minmax(320px, .88fr) minmax(420px, 1.12fr);
  gap: clamp(74px, 10vw, 150px);
}

.page-home-da .editorial-heading,
.page-home-de .editorial-heading {
  top: 136px;
  gap: 30px;
}

.page-home-da .editorial-heading::before,
.page-home-de .editorial-heading::before {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--logo-green);
  content: "";
}

.page-home-da .editorial-heading h2,
.page-home-de .editorial-heading h2 {
  max-width: 15ch;
  font-size: clamp(2.65rem, 4vw, 4.2rem);
  line-height: 1.01;
}

.page-home-da .solution-editorial-list,
.page-home-de .solution-editorial-list {
  gap: 22px;
}

.page-home-da .solution-editorial-list article,
.page-home-de .solution-editorial-list article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  min-height: 215px;
  align-content: center;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .73);
  box-shadow: 0 18px 54px rgba(17, 21, 19, .045);
}

.page-home-da .solution-editorial-list article:last-child,
.page-home-de .solution-editorial-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.page-home-da .solution-editorial-list article::before,
.page-home-de .solution-editorial-list article::before {
  width: 7px;
  height: 7px;
  margin-bottom: 4px;
  border-radius: 50%;
  background: var(--logo-green);
  box-shadow: 0 0 0 7px rgba(10, 193, 142, .06);
  content: "";
}

.page-home-da .solution-editorial-list h3,
.page-home-de .solution-editorial-list h3 {
  grid-column: 1;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.page-home-da .solution-editorial-list p,
.page-home-de .solution-editorial-list p {
  grid-column: 1;
  color: var(--muted);
  font-size: 1rem;
}

.page-home-da .workflow-section.dark-band,
.page-home-de .workflow-section.dark-band {
  position: relative;
  background: var(--white);
  color: var(--ink);
}

.page-home-da .workflow-section.dark-band::before,
.page-home-de .workflow-section.dark-band::before {
  position: absolute;
  top: 11%;
  left: -170px;
  width: 440px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--home-soft-green);
  content: "";
  opacity: .75;
  pointer-events: none;
}

.page-home-da .solutions-editorial + .workflow-section .feature-split,
.page-home-de .solutions-editorial + .workflow-section .feature-split {
  padding-top: clamp(100px, 11vw, 150px);
}

.page-home-da .workflow-section .feature-split,
.page-home-de .workflow-section .feature-split {
  position: relative;
  grid-template-columns: minmax(430px, 1fr) minmax(350px, .82fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
  padding-bottom: clamp(100px, 11vw, 150px);
}

.page-home-da .workflow-media,
.page-home-de .workflow-media {
  position: sticky;
  top: 128px;
  border: 9px solid var(--white);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--home-shadow);
  transform: rotate(-2deg);
}

.page-home-da .workflow-media img,
.page-home-de .workflow-media img {
  filter: none;
}

.page-home-da .workflow-section .feature-split > div,
.page-home-de .workflow-section .feature-split > div {
  position: relative;
  z-index: 1;
  gap: 28px;
}

.page-home-da .workflow-section h2,
.page-home-de .workflow-section h2 {
  max-width: 16ch;
  font-size: clamp(2.65rem, 4vw, 4.2rem);
  line-height: 1.01;
}

.page-home-da .workflow-section.dark-band p,
.page-home-de .workflow-section.dark-band p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.page-home-da .workflow-section .button-light,
.page-home-de .workflow-section .button-light {
  width: fit-content;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.page-home-da .project-stage,
.page-home-de .project-stage {
  min-height: 0;
  align-items: start;
  padding: clamp(100px, 11vw, 150px) 0;
  background: var(--paper);
  color: var(--ink);
  overflow: visible;
}

.page-home-da .project-stage::after,
.page-home-de .project-stage::after {
  display: none;
}

.page-home-da .project-stage-content,
.page-home-de .project-stage-content {
  grid-template-columns: minmax(280px, .63fr) minmax(600px, 1.37fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
  padding: 0;
}

.page-home-da .project-stage-copy,
.page-home-de .project-stage-copy {
  position: sticky;
  top: 136px;
  gap: 25px;
}

.page-home-da .project-stage-copy::before,
.page-home-de .project-stage-copy::before {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--logo-green);
  content: "";
}

.page-home-da .project-stage-copy h2,
.page-home-de .project-stage-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 3.75vw, 4rem);
  line-height: 1.01;
}

.page-home-da .project-stage-copy p,
.page-home-de .project-stage-copy p {
  color: var(--muted);
  line-height: 1.66;
}

.page-home-da .project-rail,
.page-home-de .project-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.page-home-da .project-rail-item,
.page-home-de .project-rail-item {
  display: grid;
  min-height: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 55px rgba(17, 21, 19, .06);
}

.page-home-da .project-rail-item:first-child,
.page-home-de .project-rail-item:first-child {
  grid-column: 1 / -1;
}

.page-home-da .project-rail-item::before,
.page-home-de .project-rail-item::before {
  display: none;
}

.page-home-da .project-rail-item figure,
.page-home-de .project-rail-item figure {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-radius: 9px 9px 0 0;
}

.page-home-da .project-rail-item figure img,
.page-home-de .project-rail-item figure img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  transition: transform .72s var(--motion-ease);
}

.page-home-da .project-rail-item:hover figure img,
.page-home-de .project-rail-item:hover figure img {
  transform: scale(1.025);
}

.page-home-da .project-rail-item > div,
.page-home-de .project-rail-item > div {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px;
}

.page-home-da .project-rail p,
.page-home-de .project-rail p {
  color: var(--muted);
}

.page-home-da .project-rail-item .meta,
.page-home-de .project-rail-item .meta {
  color: var(--green-text);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-home-da .project-rail-item h3,
.page-home-de .project-rail-item h3 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.page-home-da .project-rail-item > div > p:not(.meta),
.page-home-de .project-rail-item > div > p:not(.meta) {
  font-size: .92rem;
  line-height: 1.58;
}

.page-home-da .project-rail-item > div > span,
.page-home-de .project-rail-item > div > span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 750;
}

.page-home-da .project-rail-item > div > span::after,
.page-home-de .project-rail-item > div > span::after {
  color: var(--logo-green);
  content: "↗";
}

.page-home-da .process-section,
.page-home-de .process-section {
  padding: clamp(100px, 11vw, 140px) 0;
  background: var(--white);
}

.page-home-da .process-section h2,
.page-home-de .process-section h2 {
  max-width: 18ch;
  margin-bottom: clamp(55px, 7vw, 88px);
  font-size: clamp(2.6rem, 4vw, 4.15rem);
  line-height: 1.01;
}

.page-home-da .process-section .process-grid,
.page-home-de .process-section .process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.page-home-da .process-section .process-grid article,
.page-home-de .process-section .process-grid article,
.page-home-da .process-section .process-grid article:nth-child(3),
.page-home-de .process-section .process-grid article:nth-child(3) {
  display: grid;
  grid-column: auto;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 230px;
  padding: 34px clamp(24px, 3vw, 42px) 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-home-da .process-section .process-grid article:first-child,
.page-home-de .process-section .process-grid article:first-child {
  padding-left: 0;
}

.page-home-da .process-section .process-grid article:last-child,
.page-home-de .process-section .process-grid article:last-child {
  border-right: 0;
}

.page-home-da .process-grid article::before,
.page-home-de .process-grid article::before {
  width: 7px;
  height: 7px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--logo-green);
  content: "";
}

.page-home-da .process-grid article h3 + p,
.page-home-de .process-grid article h3 + p {
  margin-top: 15px;
}

.page-home-da .footer-cta,
.page-home-de .footer-cta {
  padding: clamp(70px, 8vw, 104px) 0;
  border-top: 1px solid rgba(10, 193, 142, .14);
  background:
    radial-gradient(circle at 74% 50%, rgba(10, 193, 142, .085), transparent 22%),
    #ecf8f3;
  color: var(--ink);
}

.page-home-da .footer-cta .cta-panel,
.page-home-de .footer-cta .cta-panel {
  position: relative;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(10, 193, 142, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .48);
  overflow: hidden;
}

.page-home-da .footer-cta .cta-panel::after,
.page-home-de .footer-cta .cta-panel::after {
  position: absolute;
  right: -50px;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 193, 142, .18);
  border-radius: 50%;
  content: "";
}

.page-home-da .footer-cta h2,
.page-home-de .footer-cta h2 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 3.5vw, 3.75rem);
}

.page-home-da .footer-cta .cta-panel p,
.page-home-de .footer-cta .cta-panel p {
  max-width: 56ch;
  color: var(--muted);
}

.page-home-da .footer-cta .button-light,
.page-home-de .footer-cta .button-light {
  position: relative;
  z-index: 1;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero .hero-project-card,
  .home-hero .hero-orbit,
  .home-hero .hero-dot-grid,
  .home-hero .hero-project-badge {
    will-change: transform;
  }

  .home-hero .hero-project-card-primary {
    animation: nuweb-home-float-primary 8s ease-in-out infinite alternate;
  }

  .home-hero .hero-project-card-secondary {
    animation: nuweb-home-float-secondary 9.5s ease-in-out -2s infinite alternate;
  }
}

@keyframes nuweb-home-float-primary {
  from { margin-top: 0; }
  to { margin-top: -9px; }
}

@keyframes nuweb-home-float-secondary {
  from { margin-bottom: 0; }
  to { margin-bottom: -11px; }
}

@media (max-width: 1080px) {
  .home-hero .hero-stage {
    grid-template-columns: minmax(310px, .8fr) minmax(430px, 1.2fr);
    gap: 28px;
  }

  .page-home-da .project-stage-content,
  .page-home-de .project-stage-content {
    grid-template-columns: minmax(250px, .56fr) minmax(500px, 1.44fr);
    gap: 52px;
  }
}

@media (max-width: 900px) {
  .page-home-da .site-header,
  .page-home-de .site-header {
    height: 72px;
  }

  .page-home-da .site-header .nav-links,
  .page-home-de .site-header .nav-links {
    top: 72px;
    color: var(--ink);
    border-color: rgba(17, 21, 19, .08);
    background: #fbfcf9;
    box-shadow: 0 22px 42px rgba(17, 21, 19, .09);
  }

  .home-hero .hero-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 35px;
    padding-top: 130px;
    padding-bottom: 82px;
  }

  .home-hero .hero-copy {
    max-width: 710px;
  }

  .home-hero .hero-copy h1 {
    max-width: 13ch;
  }

  .home-hero .hero-projects {
    width: min(720px, 100%);
    min-height: clamp(430px, 66vw, 560px);
    margin-inline: auto;
  }

  .home-hero .hero-project-card-secondary {
    right: 0;
  }

  .client-proof-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-block: 24px;
  }

  .page-home-da .craft-section,
  .page-home-de .craft-section,
  .page-home-da .solutions-editorial,
  .page-home-de .solutions-editorial {
    min-height: 0;
  }

  .page-home-da .craft-grid,
  .page-home-de .craft-grid,
  .page-home-da .editorial-grid,
  .page-home-de .editorial-grid,
  .page-home-da .project-stage-content,
  .page-home-de .project-stage-content {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .page-home-da .craft-intro,
  .page-home-de .craft-intro,
  .page-home-da .editorial-heading,
  .page-home-de .editorial-heading,
  .page-home-da .project-stage-copy,
  .page-home-de .project-stage-copy,
  .page-home-da .workflow-media,
  .page-home-de .workflow-media {
    position: static;
  }

  .page-home-da .craft-intro h2,
  .page-home-de .craft-intro h2,
  .page-home-da .editorial-heading h2,
  .page-home-de .editorial-heading h2,
  .page-home-da .project-stage-copy h2,
  .page-home-de .project-stage-copy h2 {
    max-width: 17ch;
  }

  .page-home-da .craft-line,
  .page-home-de .craft-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
  }

  .page-home-da .craft-line li,
  .page-home-de .craft-line li {
    min-height: 180px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-home-da .competence-proof,
  .page-home-de .competence-proof {
    grid-template-columns: minmax(280px, .78fr) minmax(340px, 1fr);
    gap: 54px;
  }

  .page-home-da .workflow-section .feature-split,
  .page-home-de .workflow-section .feature-split {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .page-home-da .workflow-media,
  .page-home-de .workflow-media {
    width: min(680px, 94%);
  }
}

@media (max-width: 700px) {
  .home-hero .hero-copy h1 {
    font-size: clamp(2.25rem, 11.4vw, 3rem);
  }

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

  .page-home-da .competence-proof,
  .page-home-de .competence-proof {
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .page-home-da .competence-icon-cloud,
  .page-home-de .competence-icon-cloud {
    width: min(420px, 88vw);
    margin-inline: auto;
  }

  .page-home-da .project-rail,
  .page-home-de .project-rail {
    grid-template-columns: 1fr;
  }

  .page-home-da .project-rail-item:first-child,
  .page-home-de .project-rail-item:first-child {
    grid-column: auto;
  }

  .page-home-da .process-section .process-grid,
  .page-home-de .process-section .process-grid {
    grid-template-columns: 1fr;
  }

  .page-home-da .process-section .process-grid article,
  .page-home-de .process-section .process-grid article,
  .page-home-da .process-section .process-grid article:nth-child(3),
  .page-home-de .process-section .process-grid article:nth-child(3) {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-home-da .process-grid article::before,
  .page-home-de .process-grid article::before {
    margin-bottom: 17px;
  }

  .page-home-da .footer-cta .cta-panel,
  .page-home-de .footer-cta .cta-panel {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .page-home-da .site-header .brand-logo,
  .page-home-de .site-header .brand-logo {
    width: 108px;
  }

  .home-hero .hero-stage {
    padding-top: 92px;
    padding-bottom: 60px;
  }

  .home-hero .hero-copy {
    gap: 22px;
  }

  .home-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-hero .hero-actions .button {
    width: 100%;
  }

  .home-hero .hero-projects {
    min-height: 340px;
  }

  .home-hero .hero-project-card-primary {
    top: 3%;
    left: 1%;
    width: 92%;
  }

  .home-hero .hero-project-card-secondary {
    right: 0;
    bottom: 2%;
    width: 67%;
  }

  .home-hero .hero-project-badge {
    right: 1%;
    bottom: 9%;
    width: 94px;
    font-size: .68rem;
  }

  .home-hero .hero-dot-grid {
    display: none;
  }

  .client-proof-track {
    gap: 14px 8px;
  }

  .page-home-da .craft-section,
  .page-home-de .craft-section,
  .page-home-da .competence-proof-section,
  .page-home-de .competence-proof-section,
  .page-home-da .solutions-editorial,
  .page-home-de .solutions-editorial,
  .page-home-da .project-stage,
  .page-home-de .project-stage,
  .page-home-da .process-section,
  .page-home-de .process-section {
    padding-block: 82px;
  }

  .page-home-da .craft-line,
  .page-home-de .craft-line {
    grid-template-columns: 1fr;
  }

  .page-home-da .craft-line li,
  .page-home-de .craft-line li {
    min-height: 155px;
  }

  .page-home-da .competence-proof h2,
  .page-home-de .competence-proof h2,
  .page-home-da .workflow-section h2,
  .page-home-de .workflow-section h2,
  .page-home-da .footer-cta h2,
  .page-home-de .footer-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .page-home-da .process-section h2,
  .page-home-de .process-section h2 {
    font-size: clamp(2.25rem, 9.5vw, 2.65rem);
    overflow-wrap: anywhere;
  }

  .page-home-da .workflow-section .feature-split,
  .page-home-de .workflow-section .feature-split {
    gap: 54px;
    padding-block: 82px;
  }

  .page-home-da .project-rail-item > div,
  .page-home-de .project-rail-item > div {
    min-height: 0;
  }

  .page-home-da .footer-cta,
  .page-home-de .footer-cta {
    padding-block: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-project-card,
  .home-hero .hero-orbit,
  .home-hero .hero-dot-grid,
  .home-hero .hero-project-badge,
  .page-home-da .workflow-media,
  .page-home-de .workflow-media {
    transform: none !important;
    will-change: auto;
  }
}

/* --------------------------------------------------------------------------
   Home concept refinement · purposeful accents and varied motion
   -------------------------------------------------------------------------- */

.page-home-da .client-proof-mark i,
.page-home-de .client-proof-mark i,
.page-home-da .craft-section::after,
.page-home-de .craft-section::after,
.page-home-da .craft-intro::before,
.page-home-de .craft-intro::before,
.page-home-da .craft-line li::before,
.page-home-de .craft-line li::before,
.page-home-da .editorial-heading::before,
.page-home-de .editorial-heading::before,
.page-home-da .solution-editorial-list article::before,
.page-home-de .solution-editorial-list article::before,
.page-home-da .project-stage-copy::before,
.page-home-de .project-stage-copy::before,
.page-home-da .process-grid article::before,
.page-home-de .process-grid article::before,
.page-home-da .footer-cta .cta-panel::after,
.page-home-de .footer-cta .cta-panel::after {
  display: none;
}

.page-home-da .client-proof-mark,
.page-home-de .client-proof-mark {
  color: #737975;
  letter-spacing: .025em;
}

/* Editorial overview: open composition, no fake progress markers. */
.page-home-da .craft-section,
.page-home-de .craft-section {
  min-height: 0;
  padding: clamp(90px, 9vw, 126px) 0;
}

.page-home-da .craft-grid,
.page-home-de .craft-grid {
  grid-template-columns: 1fr;
  gap: clamp(64px, 7vw, 92px);
}

.page-home-da .craft-intro,
.page-home-de .craft-intro {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .7fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.page-home-da .craft-intro h2,
.page-home-de .craft-intro h2 {
  max-width: 17ch;
  font-size: clamp(2.55rem, 3.55vw, 3.8rem);
  line-height: 1.02;
}

.page-home-da .craft-intro p,
.page-home-de .craft-intro p {
  align-self: end;
  padding-bottom: .3rem;
}

.page-home-da .craft-line,
.page-home-de .craft-line {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 clamp(26px, 4vw, 58px);
  border-top: 1px solid var(--line);
}

.page-home-da .craft-line li,
.page-home-de .craft-line li {
  min-height: 190px;
  padding: 34px 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  transition: color .3s ease, opacity .3s ease, translate .35s var(--motion-ease);
}

.page-home-da .craft-line li:nth-child(1),
.page-home-de .craft-line li:nth-child(1),
.page-home-da .craft-line li:nth-child(2),
.page-home-de .craft-line li:nth-child(2),
.page-home-da .craft-line li:nth-child(3),
.page-home-de .craft-line li:nth-child(3) {
  grid-column: span 4;
}

.page-home-da .craft-line li:nth-child(4),
.page-home-de .craft-line li:nth-child(4) {
  grid-column: 3 / span 4;
}

.page-home-da .craft-line li:nth-child(5),
.page-home-de .craft-line li:nth-child(5) {
  grid-column: 7 / span 4;
}

.page-home-da .craft-line li:hover,
.page-home-de .craft-line li:hover {
  translate: 0 -5px;
}

.page-home-da .craft-line strong,
.page-home-de .craft-line strong {
  font-size: clamp(1.35rem, 1.75vw, 1.72rem);
}

/* Tools: a real circle and an adaptive layout. Icons react to the scene. */
.page-home-da .competence-proof-section,
.page-home-de .competence-proof-section {
  --scene-progress: .5;
  padding: clamp(92px, 9vw, 128px) 0;
}

.page-home-da .competence-proof,
.page-home-de .competence-proof {
  grid-template-columns: minmax(360px, .86fr) minmax(390px, 1fr);
  gap: clamp(72px, 8vw, 116px);
  align-items: center;
}

.page-home-da .competence-icon-cloud,
.page-home-de .competence-icon-cloud {
  width: min(460px, 40vw);
  aspect-ratio: 1;
  margin-inline: auto;
}

.page-home-da .competence-icon-cloud::before,
.page-home-de .competence-icon-cloud::before {
  inset: 0;
  border: 1px solid rgba(10, 193, 142, .1);
  border-radius: 50%;
  background: #e9f7f2;
  opacity: 1;
  transform: none;
}

.page-home-da .competence-icon-cloud::after,
.page-home-de .competence-icon-cloud::after {
  display: none;
}

.page-home-da .competence-icon-shell,
.page-home-de .competence-icon-shell {
  width: clamp(74px, 7vw, 96px);
  border: 7px solid var(--white);
  border-radius: 23px;
  animation: none;
  transition: box-shadow .35s ease;
  will-change: transform;
}

.page-home-da .competence-icon-shell:hover,
.page-home-de .competence-icon-shell:hover {
  box-shadow: 0 27px 52px rgba(17, 21, 19, .2);
}

.page-home-da .icon-socialdock,
.page-home-de .icon-socialdock {
  top: 18%;
  left: 8%;
  transform: translate3d(calc((var(--scene-progress) - .5) * -22px), calc((var(--scene-progress) - .5) * 16px), 0) rotate(-7deg);
}

.page-home-da .icon-dotflow,
.page-home-de .icon-dotflow {
  top: 7%;
  right: 19%;
  width: clamp(82px, 7.8vw, 108px);
  transform: translate3d(calc((var(--scene-progress) - .5) * 15px), calc((var(--scene-progress) - .5) * -20px), 0) rotate(5deg);
}

.page-home-da .icon-mapmax,
.page-home-de .icon-mapmax {
  bottom: 14%;
  left: 20%;
  width: clamp(76px, 7.3vw, 101px);
  transform: translate3d(calc((var(--scene-progress) - .5) * -18px), calc((var(--scene-progress) - .5) * 22px), 0) rotate(5deg);
}

.page-home-da .icon-beam,
.page-home-de .icon-beam {
  right: 8%;
  bottom: 22%;
  width: clamp(92px, 8.8vw, 122px);
  transform: translate3d(calc((var(--scene-progress) - .5) * 24px), calc((var(--scene-progress) - .5) * 14px), 0) rotate(-4deg);
}

.page-home-da .competence-proof h2,
.page-home-de .competence-proof h2 {
  max-width: 16ch;
  font-size: clamp(2.5rem, 3.45vw, 3.7rem);
  line-height: 1.02;
}

/* Solutions: one composition instead of three vertical list cards. */
.page-home-da .solutions-editorial,
.page-home-de .solutions-editorial {
  min-height: 0;
  padding: clamp(96px, 9vw, 130px) 0;
}

.page-home-da .editorial-grid,
.page-home-de .editorial-grid {
  display: block;
}

.page-home-da .editorial-heading,
.page-home-de .editorial-heading {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 105px);
}

.page-home-da .editorial-heading h2,
.page-home-de .editorial-heading h2 {
  max-width: 18ch;
  font-size: clamp(2.55rem, 3.55vw, 3.8rem);
  line-height: 1.02;
}

.page-home-da .solution-editorial-list,
.page-home-de .solution-editorial-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.page-home-da .solution-editorial-list article,
.page-home-de .solution-editorial-list article {
  min-height: 300px;
  padding: clamp(32px, 3.5vw, 46px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(17, 21, 19, .055);
  translate: 0 calc((var(--scene-progress, .5) - .5) * -28px);
  rotate: -.55deg;
}

.page-home-da .solution-editorial-list article:nth-child(2),
.page-home-de .solution-editorial-list article:nth-child(2) {
  margin-top: -30px;
  background: #e8f7f1;
  translate: 0 calc((var(--scene-progress, .5) - .5) * 34px);
  rotate: .45deg;
}

.page-home-da .solution-editorial-list article:nth-child(3),
.page-home-de .solution-editorial-list article:nth-child(3) {
  translate: 0 calc((var(--scene-progress, .5) - .5) * -20px);
  rotate: .7deg;
}

.page-home-da .solution-editorial-list h3,
.page-home-de .solution-editorial-list h3 {
  font-size: clamp(1.55rem, 2vw, 1.9rem);
}

/* Workflow: normal flow with a restrained image parallax, no sticky copy. */
.page-home-da .solutions-editorial + .workflow-section .feature-split,
.page-home-de .solutions-editorial + .workflow-section .feature-split,
.page-home-da .workflow-section .feature-split,
.page-home-de .workflow-section .feature-split {
  grid-template-columns: minmax(430px, 1.05fr) minmax(360px, .8fr);
  gap: clamp(70px, 9vw, 130px);
  padding: clamp(100px, 9vw, 132px) 0;
}

.page-home-da .workflow-media,
.page-home-de .workflow-media {
  position: static;
  top: auto;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(17, 21, 19, .13);
  overflow: hidden;
  translate: 0 calc((var(--scene-progress, .5) - .5) * -24px);
  rotate: -1deg;
}

.page-home-da .workflow-media img,
.page-home-de .workflow-media img {
  transform: scale(1.05) translate3d(0, calc((var(--scene-progress, .5) - .5) * 22px), 0);
}

.page-home-da .workflow-section h2,
.page-home-de .workflow-section h2 {
  font-size: clamp(2.5rem, 3.45vw, 3.7rem);
}

/* References: equal project value, shared baselines, no arbitrary hero card. */
.page-home-da .project-stage,
.page-home-de .project-stage {
  padding: clamp(96px, 9vw, 130px) 0;
}

.page-home-da .project-stage-content,
.page-home-de .project-stage-content {
  display: block;
}

.page-home-da .project-stage-copy,
.page-home-de .project-stage-copy {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .68fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 84px);
}

.page-home-da .project-stage-copy h2,
.page-home-de .project-stage-copy h2 {
  grid-row: 1 / span 2;
  max-width: 18ch;
  font-size: clamp(2.55rem, 3.55vw, 3.8rem);
  line-height: 1.02;
}

.page-home-da .project-stage-copy p,
.page-home-de .project-stage-copy p {
  align-self: end;
}

.page-home-da .project-rail,
.page-home-de .project-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.page-home-da .project-rail-item:first-child,
.page-home-de .project-rail-item:first-child {
  grid-column: auto;
}

.page-home-da .project-rail-item,
.page-home-de .project-rail-item {
  border-radius: 7px;
  box-shadow: 0 20px 54px rgba(17, 21, 19, .065);
  translate: 0 calc((var(--scene-progress, .5) - .5) * -22px);
}

.page-home-da .project-rail-item:nth-child(2),
.page-home-de .project-rail-item:nth-child(2) {
  translate: 0 calc((var(--scene-progress, .5) - .5) * 28px);
}

.page-home-da .project-rail-item:nth-child(3),
.page-home-de .project-rail-item:nth-child(3) {
  translate: 0 calc((var(--scene-progress, .5) - .5) * -16px);
}

.page-home-da .project-rail-item figure,
.page-home-de .project-rail-item figure {
  border-radius: 6px 6px 0 0;
}

.page-home-da .project-rail-item > div,
.page-home-de .project-rail-item > div {
  min-height: 300px;
  padding: 28px 26px;
}

/* One deliberate sticky effect: content layers assemble into a stack. */
.page-home-da .process-section,
.page-home-de .process-section {
  padding: clamp(100px, 10vw, 144px) 0 clamp(130px, 14vw, 200px);
  background: #edf2ee;
}

.page-home-da .process-section h2,
.page-home-de .process-section h2 {
  max-width: 19ch;
  margin-bottom: clamp(68px, 8vw, 110px);
  font-size: clamp(2.6rem, 3.7vw, 4rem);
}

.page-home-da .process-section .process-grid,
.page-home-de .process-section .process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: min(920px, 100%);
  margin-left: auto;
  border-top: 0;
}

.page-home-da .process-section .process-grid article,
.page-home-de .process-section .process-grid article,
.page-home-da .process-section .process-grid article:nth-child(3),
.page-home-de .process-section .process-grid article:nth-child(3) {
  position: sticky;
  top: 120px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, .5fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  min-height: 310px;
  padding: clamp(38px, 5vw, 62px);
  border: 1px solid rgba(17, 21, 19, .1);
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 30px 80px rgba(17, 21, 19, .14);
}

.page-home-da .process-section .process-grid article:nth-child(2),
.page-home-de .process-section .process-grid article:nth-child(2) {
  top: 150px;
  z-index: 2;
  background: #dff3eb;
  color: var(--ink);
}

.page-home-da .process-section .process-grid article:nth-child(3),
.page-home-de .process-section .process-grid article:nth-child(3) {
  top: 180px;
  z-index: 3;
  background: var(--white);
  color: var(--ink);
}

.page-home-da .process-section .process-grid h3,
.page-home-de .process-section .process-grid h3 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.02;
}

.page-home-da .process-section .process-grid article p,
.page-home-de .process-section .process-grid article p {
  margin-top: 0;
  font-size: 1.06rem;
  line-height: 1.7;
}

.page-home-da .process-section .process-grid article:first-child p,
.page-home-de .process-section .process-grid article:first-child p {
  color: rgba(255, 255, 255, .74);
}

/* Full-width closing statement, without a second box inside the section. */
.page-home-da .footer-cta,
.page-home-de .footer-cta {
  padding: clamp(88px, 9vw, 126px) 0;
  border-top: 0;
  background: #e7f6f0;
}

.page-home-da .footer-cta .cta-panel,
.page-home-de .footer-cta .cta-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.page-home-da .footer-cta h2,
.page-home-de .footer-cta h2 {
  max-width: 17ch;
}

@media (max-width: 980px) {
  .page-home-da .craft-intro,
  .page-home-de .craft-intro,
  .page-home-da .project-stage-copy,
  .page-home-de .project-stage-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-home-da .project-stage-copy h2,
  .page-home-de .project-stage-copy h2 {
    grid-row: auto;
  }

  .page-home-da .competence-proof,
  .page-home-de .competence-proof {
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .page-home-da .competence-icon-cloud,
  .page-home-de .competence-icon-cloud {
    width: min(460px, 86vw);
  }

  .page-home-da .competence-proof-copy,
  .page-home-de .competence-proof-copy {
    max-width: 680px;
  }

  .page-home-da .solution-editorial-list,
  .page-home-de .solution-editorial-list,
  .page-home-da .project-rail,
  .page-home-de .project-rail {
    grid-template-columns: 1fr 1fr;
  }

  .page-home-da .solution-editorial-list article:nth-child(3),
  .page-home-de .solution-editorial-list article:nth-child(3),
  .page-home-da .project-rail-item:nth-child(3),
  .page-home-de .project-rail-item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .page-home-da .workflow-section .feature-split,
  .page-home-de .workflow-section .feature-split,
  .page-home-da .solutions-editorial + .workflow-section .feature-split,
  .page-home-de .solutions-editorial + .workflow-section .feature-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .page-home-da .craft-line,
  .page-home-de .craft-line {
    grid-template-columns: 1fr;
  }

  .page-home-da .craft-line li:nth-child(n),
  .page-home-de .craft-line li:nth-child(n) {
    grid-column: 1;
    min-height: 0;
    padding: 28px 0;
  }

  .page-home-da .editorial-heading,
  .page-home-de .editorial-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-home-da .solution-editorial-list,
  .page-home-de .solution-editorial-list,
  .page-home-da .project-rail,
  .page-home-de .project-rail {
    grid-template-columns: 1fr;
  }

  .page-home-da .solution-editorial-list article:nth-child(n),
  .page-home-de .solution-editorial-list article:nth-child(n),
  .page-home-da .project-rail-item:nth-child(n),
  .page-home-de .project-rail-item:nth-child(n) {
    grid-column: 1;
    margin-top: 0;
    translate: none;
    rotate: none;
  }

  .page-home-da .process-section .process-grid,
  .page-home-de .process-section .process-grid {
    gap: 18px;
  }

  .page-home-da .process-section .process-grid article,
  .page-home-de .process-section .process-grid article,
  .page-home-da .process-section .process-grid article:nth-child(2),
  .page-home-de .process-section .process-grid article:nth-child(2),
  .page-home-da .process-section .process-grid article:nth-child(3),
  .page-home-de .process-section .process-grid article:nth-child(3) {
    position: static;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 34px 28px;
  }

  .page-home-da .footer-cta .cta-panel,
  .page-home-de .footer-cta .cta-panel {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home-da .competence-icon-shell,
  .page-home-de .competence-icon-shell,
  .page-home-da .solution-editorial-list article,
  .page-home-de .solution-editorial-list article,
  .page-home-da .workflow-media,
  .page-home-de .workflow-media,
  .page-home-da .workflow-media img,
  .page-home-de .workflow-media img,
  .page-home-da .project-rail-item,
  .page-home-de .project-rail-item {
    translate: none !important;
    rotate: none !important;
    transform: none !important;
  }
}

/* Firefox-friendly hero compositing: no layout animation or moving filters. */
.page-home-da .home-hero .hero-project-card,
.page-home-de .home-hero .hero-project-card,
.page-home-da .home-hero .hero-project-card:hover,
.page-home-de .home-hero .hero-project-card:hover {
  filter: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.page-home-da .home-hero .project-window,
.page-home-de .home-hero .project-window {
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, .82),
    0 26px 52px rgba(22, 30, 27, .14);
}

@media (prefers-reduced-motion: no-preference) {
  .page-home-da .home-hero .hero-project-card-primary,
  .page-home-de .home-hero .hero-project-card-primary,
  .page-home-da .home-hero .hero-project-card-secondary,
  .page-home-de .home-hero .hero-project-card-secondary {
    animation: none;
  }

  .page-home-da .home-hero .hero-project-card-primary .project-window,
  .page-home-de .home-hero .hero-project-card-primary .project-window {
    animation: nuweb-window-float-a 7.5s ease-in-out infinite alternate;
    will-change: transform;
  }

  .page-home-da .home-hero .hero-project-card-secondary .project-window,
  .page-home-de .home-hero .hero-project-card-secondary .project-window {
    animation: nuweb-window-float-b 9s ease-in-out -2.5s infinite alternate;
    will-change: transform;
  }

  .page-home-da .home-hero .hero-project-badge,
  .page-home-de .home-hero .hero-project-badge {
    animation: nuweb-badge-float 6.5s ease-in-out -1s infinite alternate;
    will-change: transform, translate;
  }

  .page-home-da .home-hero .hero-orbit,
  .page-home-de .home-hero .hero-orbit {
    animation: nuweb-orbit-breathe 10s ease-in-out infinite alternate;
    will-change: transform, scale;
  }
}

@keyframes nuweb-window-float-a {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -8px, 0); }
}

@keyframes nuweb-window-float-b {
  from { transform: translate3d(0, 4px, 0); }
  to { transform: translate3d(0, -6px, 0); }
}

@keyframes nuweb-badge-float {
  from { translate: 0 0; }
  to { translate: 0 -7px; }
}

@keyframes nuweb-orbit-breathe {
  from { scale: 1; }
  to { scale: 1.018; }
}

/* Tighter, larger tool cluster. */
.page-home-da .competence-icon-shell,
.page-home-de .competence-icon-shell {
  width: clamp(92px, 7.8vw, 112px);
  border-width: 8px;
  border-radius: 25px;
}

.page-home-da .icon-socialdock,
.page-home-de .icon-socialdock {
  top: 22%;
  left: 18%;
  transform: translate3d(calc((var(--scene-progress) - .5) * -12px), calc((var(--scene-progress) - .5) * 9px), 0) rotate(-7deg);
}

.page-home-da .icon-dotflow,
.page-home-de .icon-dotflow {
  top: 12%;
  right: 24%;
  width: clamp(105px, 8.8vw, 126px);
  transform: translate3d(calc((var(--scene-progress) - .5) * 9px), calc((var(--scene-progress) - .5) * -11px), 0) rotate(5deg);
}

.page-home-da .icon-mapmax,
.page-home-de .icon-mapmax {
  bottom: 18%;
  left: 26%;
  width: clamp(96px, 8.2vw, 116px);
  transform: translate3d(calc((var(--scene-progress) - .5) * -10px), calc((var(--scene-progress) - .5) * 12px), 0) rotate(5deg);
}

.page-home-da .icon-beam,
.page-home-de .icon-beam {
  right: 15%;
  bottom: 22%;
  width: clamp(118px, 10vw, 142px);
  transform: translate3d(calc((var(--scene-progress) - .5) * 13px), calc((var(--scene-progress) - .5) * 8px), 0) rotate(-4deg);
}

/* Kinetic typography instead of another feature grid. */
.page-home-da .craft-section,
.page-home-de .craft-section {
  --scene-progress: .5;
  overflow: clip;
  padding: clamp(96px, 9vw, 128px) 0 clamp(110px, 11vw, 160px);
}

.page-home-da .craft-grid,
.page-home-de .craft-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(76px, 8vw, 112px);
  min-width: 0;
}

.page-home-da .craft-intro,
.page-home-de .craft-intro {
  width: 100%;
  min-width: 0;
}

.page-home-da .craft-line,
.page-home-de .craft-line {
  display: flex;
  width: max-content;
  max-width: none;
  gap: clamp(60px, 7vw, 120px);
  margin-left: calc((100% - 100vw) / 2);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border: 0;
  transform: translate3d(calc((var(--scene-progress) - .5) * -280px), 0, 0);
  will-change: transform;
  justify-self: start;
}

.page-home-da .craft-line li:nth-child(n),
.page-home-de .craft-line li:nth-child(n) {
  display: grid;
  flex: 0 0 clamp(290px, 25vw, 410px);
  grid-column: auto;
  gap: 20px;
  min-height: 220px;
  align-content: start;
  padding: 0;
  border: 0;
}

.page-home-da .craft-line li:nth-child(even),
.page-home-de .craft-line li:nth-child(even) {
  translate: 0 52px;
}

.page-home-da .craft-line li:hover,
.page-home-de .craft-line li:hover {
  translate: 0 -5px;
}

.page-home-da .craft-line li:nth-child(even):hover,
.page-home-de .craft-line li:nth-child(even):hover {
  translate: 0 47px;
}

.page-home-da .craft-line strong,
.page-home-de .craft-line strong {
  max-width: 12ch;
  font-size: clamp(2.15rem, 3.2vw, 3.45rem);
  font-weight: 780;
  letter-spacing: -.02em;
  line-height: .98;
}

.page-home-da .craft-line p,
.page-home-de .craft-line p {
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .page-home-da .craft-line,
  .page-home-de .craft-line {
    width: auto;
    gap: 0;
    margin-left: 0;
    padding: 0;
    transform: none;
  }

  .page-home-da .craft-line li:nth-child(n),
  .page-home-de .craft-line li:nth-child(n),
  .page-home-da .craft-line li:nth-child(n):hover,
  .page-home-de .craft-line li:nth-child(n):hover {
    flex-basis: auto;
    min-height: 0;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    translate: none;
  }

  .page-home-da .craft-line strong,
  .page-home-de .craft-line strong {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home-da .craft-line,
  .page-home-de .craft-line {
    transform: none;
    will-change: auto;
  }
}

/* Layered icon cloud: symbols may overlap and recede. */
.page-home-da .icon-socialdock,
.page-home-de .icon-socialdock {
  z-index: 3;
  top: 26%;
  left: 20%;
  width: clamp(104px, 9vw, 124px);
}

.page-home-da .icon-dotflow,
.page-home-de .icon-dotflow {
  z-index: 2;
  top: 14%;
  right: 26%;
  width: clamp(120px, 10.2vw, 142px);
}

.page-home-da .icon-mapmax,
.page-home-de .icon-mapmax {
  z-index: 1;
  bottom: 21%;
  left: 30%;
  width: clamp(108px, 9.2vw, 128px);
}

.page-home-da .icon-beam,
.page-home-de .icon-beam {
  z-index: 4;
  right: 18%;
  bottom: 25%;
  width: clamp(132px, 11.4vw, 158px);
}

/* Balanced hero expertise badge. */
.page-home-da .home-hero .hero-project-badge,
.page-home-de .home-hero .hero-project-badge {
  display: block;
  width: clamp(142px, 11vw, 162px);
  padding: 27px 30px;
  font-size: clamp(.78rem, .85vw, .9rem);
  line-height: 1.48;
  text-align: left;
}

.page-home-da .home-hero .hero-project-badge > span,
.page-home-de .home-hero .hero-project-badge > span {
  display: block;
}

.page-home-da .home-hero .hero-project-badge i,
.page-home-de .home-hero .hero-project-badge i {
  position: absolute;
  right: 29px;
  bottom: 26px;
  line-height: 1;
}

@media (max-width: 560px) {
  .page-home-da .home-hero .hero-project-badge,
  .page-home-de .home-hero .hero-project-badge {
    width: 106px;
    padding: 19px 21px;
    font-size: .66rem;
  }

  .page-home-da .home-hero .hero-project-badge i,
  .page-home-de .home-hero .hero-project-badge i {
    right: 20px;
    bottom: 18px;
  }
}

.page-home-da .home-hero .hero-project-card:hover img,
.page-home-de .home-hero .hero-project-card:hover img {
  transform: none;
}

/* Keep the first stacked process card aligned with the other cards. */
.page-home-da .process-section .process-grid article:first-child,
.page-home-de .process-section .process-grid article:first-child {
  padding-left: clamp(38px, 5vw, 62px);
}

@media (max-width: 900px) {
  .page-home-da .process-section .process-grid article:first-child,
  .page-home-de .process-section .process-grid article:first-child {
    padding-left: 28px;
  }
}

@media (max-width: 560px) {
  .page-home-da .process-section h2,
  .page-home-de .process-section h2 {
    font-size: 2.25rem;
    line-height: 1.03;
    letter-spacing: -.015em;
  }
}

/* Finished sticky stack: staggered layers with content-derived typography. */
.page-home-da .process-section .process-grid,
.page-home-de .process-section .process-grid {
  width: min(1060px, 100%);
  gap: 26px;
}

.page-home-da .process-section .process-grid article,
.page-home-de .process-section .process-grid article,
.page-home-da .process-section .process-grid article:nth-child(3),
.page-home-de .process-section .process-grid article:nth-child(3) {
  isolation: isolate;
  grid-template-columns: minmax(250px, .68fr) minmax(320px, 1fr);
  min-height: 360px;
  overflow: hidden;
  padding: clamp(48px, 5.4vw, 68px);
  border-color: rgba(255, 255, 255, .1);
  border-radius: 20px 20px 58px 20px;
  box-shadow:
    0 34px 90px rgba(17, 21, 19, .16),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}

.page-home-da .process-section .process-grid article:nth-child(1),
.page-home-de .process-section .process-grid article:nth-child(1) {
  justify-self: start;
  width: 94%;
}

.page-home-da .process-section .process-grid article:nth-child(2),
.page-home-de .process-section .process-grid article:nth-child(2) {
  justify-self: end;
  width: 94%;
  border-color: rgba(10, 193, 142, .18);
  border-radius: 20px 58px 20px 20px;
  box-shadow:
    0 34px 90px rgba(17, 21, 19, .13),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}

.page-home-da .process-section .process-grid article:nth-child(3),
.page-home-de .process-section .process-grid article:nth-child(3) {
  justify-self: center;
  width: 97%;
  border-color: rgba(17, 21, 19, .08);
  border-radius: 58px 20px 20px 20px;
}

.page-home-da .process-section .process-grid article::after,
.page-home-de .process-section .process-grid article::after {
  position: absolute;
  right: clamp(24px, 4vw, 54px);
  bottom: -.22em;
  z-index: -1;
  color: transparent;
  font-size: clamp(8rem, 15vw, 12.5rem);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.075em;
  white-space: nowrap;
  content: attr(data-mark);
  -webkit-text-stroke: 1px rgba(255, 255, 255, .19);
}

.page-home-da .process-section .process-grid article:nth-child(2)::after,
.page-home-de .process-section .process-grid article:nth-child(2)::after,
.page-home-da .process-section .process-grid article:nth-child(3)::after,
.page-home-de .process-section .process-grid article:nth-child(3)::after {
  color: rgba(17, 21, 19, .045);
  -webkit-text-stroke: 0;
}

.page-home-da .process-section .process-grid h3,
.page-home-de .process-section .process-grid h3 {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 8ch;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: .96;
  letter-spacing: -.035em;
}

.page-home-da .process-section .process-grid article p,
.page-home-de .process-section .process-grid article p {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  max-width: 42ch;
  margin: 0 0 4px;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .page-home-da .process-section .process-grid article,
  .page-home-de .process-section .process-grid article,
  .page-home-da .process-section .process-grid article:nth-child(n),
  .page-home-de .process-section .process-grid article:nth-child(n) {
    justify-self: stretch;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 240px;
    padding: 36px 28px;
    border-radius: 16px 16px 34px 16px;
  }

  .page-home-da .process-section .process-grid h3,
  .page-home-de .process-section .process-grid h3 {
    max-width: 11ch;
    font-size: 2rem;
  }

  .page-home-da .process-section .process-grid article p,
  .page-home-de .process-section .process-grid article p {
    justify-self: start;
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.65;
  }

  .page-home-da .process-section .process-grid article::after,
  .page-home-de .process-section .process-grid article::after {
    right: 16px;
    bottom: -.18em;
    font-size: clamp(6rem, 29vw, 7.2rem);
  }
}

/* Final shared-control corrections for the inner-page cascade. */
body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links > a.is-active {
  color: var(--ink);
}

body:not(.page-home-da):not(.page-home-de) .project-action-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

body:not(.page-home-da):not(.page-home-de) .project-action-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

html[data-theme="dark"] body:not(.page-home-da):not(.page-home-de) .project-action-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* Solutions overview: restore the complete image-and-copy service blocks. */
.solution-list {
  gap: 26px;
}

.solution-list .detail-row,
.solution-list .detail-row:first-child {
  min-height: 0;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-elevated);
  box-shadow: 0 20px 54px rgba(17, 21, 19, .06);
}

.solution-list .detail-row > img,
.solution-list .detail-row:nth-child(even) > img {
  position: relative;
  top: auto;
  order: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
  border: 0;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: none;
  translate: none;
}

.solution-list .detail-row > div {
  gap: 20px;
  padding: clamp(8px, 1.8vw, 22px) 0;
}

.solution-list .detail-row h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -.03em;
}

.solution-list .detail-row > div > p {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.65;
}

.solution-list .detail-pair {
  gap: 14px;
  margin-top: 0;
}

.solution-list .detail-pair > div {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.solution-list .detail-pair strong {
  margin-bottom: 7px;
}

.solution-list .detail-pair p,
.solution-list .richtext :is(p, li) {
  font-size: .98rem;
  line-height: 1.58;
}

.solution-multilingual-service .eyebrow {
  margin: 0;
  color: var(--green-text) !important;
  font-size: .73rem !important;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

html[data-theme="dark"] .solution-list .detail-row {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .22);
}

html[data-theme="dark"] .solution-list .detail-pair > div {
  background: var(--surface-soft);
}

@media (max-width: 900px) {
  .solution-list {
    gap: 18px;
  }

  .solution-list .detail-row,
  .solution-list .detail-row:first-child {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .solution-list .detail-row > img,
  .solution-list .detail-row:nth-child(even) > img {
    height: clamp(230px, 58vw, 390px);
    min-height: 0;
    border-radius: 0;
  }

  .solution-list .detail-row > div {
    gap: 16px;
    padding: 24px;
  }

  .solution-list .detail-row h2 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .solution-list .detail-pair {
    grid-template-columns: 1fr;
  }
}

/* Project overview: reunite every screenshot with its project story. */
.project-list {
  gap: 28px;
}

.project-list .project-wide,
.project-list .project-wide:first-child {
  min-height: 0;
  grid-template-columns: minmax(390px, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 4.5vw, 64px);
  align-items: center;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-elevated);
  box-shadow: 0 20px 58px rgba(17, 21, 19, .07);
}

.project-list .project-wide:nth-child(even) .project-browser {
  order: 0;
}

.project-list .project-browser {
  position: relative;
  top: auto;
  border-radius: 12px;
  translate: none;
}

.project-list .browser-viewport {
  height: clamp(500px, 45vw, 640px);
}

.project-list .project-copy {
  align-self: center;
  gap: 20px;
  padding: clamp(8px, 1.5vw, 20px) 0;
}

.project-list .project-wide h2 {
  max-width: 16ch;
  font-size: clamp(2.65rem, 4vw, 4.15rem);
  line-height: 1.01;
}

.project-list .project-copy > p:not(.meta) {
  max-width: 58ch;
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.62;
}

.project-list .project-wide .detail-pair {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 62ch;
}

.project-list .project-wide .detail-pair div {
  padding: 0 0 0 18px;
  border: 0;
  border-left: 2px solid color-mix(in srgb, var(--green-text) 55%, transparent);
  border-radius: 0;
  background: transparent;
}

.project-list .project-wide .detail-pair strong {
  color: var(--green-text);
}

html[data-theme="dark"] .project-list .project-wide {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
}

@media (max-width: 900px) {
  .project-list {
    gap: 20px;
  }

  .project-list .project-wide,
  .project-list .project-wide:first-child {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
  }

  .project-list .project-wide:nth-child(even) .project-browser {
    order: 0;
  }

  .project-list .browser-viewport {
    height: clamp(360px, 70vh, 520px);
  }

  .project-list .project-copy {
    padding: 28px 10px 14px;
  }

  .project-list .project-wide h2 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
  }
}

/* Cascade consolidation: navigation, contact and blog end state. */
@media (max-width: 900px) {
  html[data-menu-open] {
    overflow: hidden;
  }

  .site-header[data-menu-open],
  .site-header[data-scrolled][data-menu-open],
  .page-home-da .site-header[data-menu-open],
  .page-home-de .site-header[data-menu-open],
  html[data-theme="dark"] .site-header[data-menu-open] {
    border-color: var(--line);
    color: var(--ink);
    background: color-mix(in srgb, var(--surface-elevated) 92%, transparent);
    box-shadow: none;
  }

  .site-header[data-menu-open]::after {
    display: none;
  }

  .site-header[data-menu-open] .brand-logo path[style*="fill:#fff"] {
    fill: var(--ink) !important;
  }

  .site-header[data-menu-open] :where(.language-link, .theme-picker-summary, .nav-toggle) {
    border-color: var(--line);
    color: var(--ink);
    background: var(--surface-elevated);
  }

  .site-header .nav-links,
  .page-home-da .site-header .nav-links,
  .page-home-de .site-header .nav-links,
  body:not(.page-home-da):not(.page-home-de) .site-header .nav-links,
  html[data-theme="dark"] .site-header .nav-links {
    inset: 72px 0 0;
    width: auto;
    height: calc(100dvh - 72px);
    margin: 0;
    padding: clamp(26px, 5svh, 48px) max(22px, calc((100vw - var(--max)) / 2 + 20px)) 26px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background:
      radial-gradient(circle at 96% 8%, color-mix(in srgb, var(--logo-green) 10%, transparent), transparent 34%),
      var(--surface-elevated);
    box-shadow: none;
  }

  .site-header .nav-links > a,
  .page-home-da .site-header .nav-links > a,
  .page-home-de .site-header .nav-links > a,
  body:not(.page-home-da):not(.page-home-de) .site-header .nav-links > a {
    min-height: 0;
    padding: clamp(12px, 2.15svh, 18px) 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    font-size: clamp(1.75rem, 6.3vw, 2.8rem);
    font-weight: 830;
    line-height: 1;
    letter-spacing: -.04em;
  }

  .site-header .nav-links > a:last-of-type {
    margin-top: clamp(18px, 3svh, 28px);
    padding: 17px 20px;
    border-bottom: 0;
    border-radius: 12px;
    color: var(--paper);
    background: var(--ink);
    font-size: clamp(1.25rem, 4.8vw, 1.65rem);
  }

  .site-header .nav-links > a:last-of-type:hover,
  .site-header .nav-links > a:last-of-type:focus-visible,
  .site-header .nav-links > a:last-of-type.is-active {
    color: var(--paper);
    background: color-mix(in srgb, var(--ink) 90%, var(--logo-green));
  }
}

body:is(.page-contact-da, .page-contact-de) .contact-experience {
  min-height: 0;
  padding-block: clamp(72px, 8vw, 112px);
}

body:is(.page-contact-da, .page-contact-de) .contact-stage {
  position: relative;
  top: auto;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: clamp(48px, 6vw, 88px);
  height: auto;
  min-height: 0;
  padding-block: 0;
}

body:is(.page-contact-da, .page-contact-de) .contact-stage-copy h2 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 3.15vw, 3.55rem);
  line-height: 1.045;
  text-wrap: initial;
}

body:is(.page-contact-da, .page-contact-de) .contact-stage-copy h2 > span {
  display: block;
}

body:is(.page-contact-da, .page-contact-de) .contact-stage-copy h2 > span + span {
  margin-top: .08em;
}

.motion-ready body:is(.page-contact-da, .page-contact-de) .contact-experience .contact-path:nth-child(n),
.motion-ready .contact-experience .contact-path:nth-child(n) {
  opacity: 1;
  transform: none;
}

body:is(.page-contact-da, .page-contact-de) .contact-prep-section {
  margin-top: 0;
}

body:is(.page-blog-da, .page-blog-de) .blog-cta-section {
  margin-top: 0;
}

body:is(.page-blog-da, .page-blog-de) .blog-story-panel:nth-last-child(2) {
  margin-bottom: clamp(280px, 42svh, 460px);
}

@media (max-width: 900px) {
  body:is(.page-contact-da, .page-contact-de) .contact-stage {
    grid-template-columns: 1fr;
  }
}

/* Final mobile navigation: an editorial menu surface instead of a card list. */
.mobile-menu-intro,
.mobile-menu-direct,
.nav-links > a > small {
  display: none;
}

@media (max-width: 900px) {
  html[data-menu-open] {
    overflow: hidden;
  }

  .site-header[data-menu-open],
  .site-header[data-scrolled][data-menu-open],
  .page-home-da .site-header[data-menu-open],
  .page-home-de .site-header[data-menu-open],
  html[data-theme="dark"] .site-header[data-menu-open] {
    border-color: var(--line);
    color: var(--ink);
    background: color-mix(in srgb, var(--surface-elevated) 92%, transparent);
    box-shadow: none;
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);
  }

  .site-header[data-menu-open]::after {
    display: none;
  }

  .site-header[data-menu-open] .brand-logo path[style*="fill:#fff"] {
    fill: var(--ink) !important;
  }

  .site-header[data-menu-open] :where(.language-link, .theme-picker-summary, .nav-toggle) {
    border-color: var(--line);
    color: var(--ink);
    background: var(--surface-elevated);
  }

  .site-header .nav-links,
  .page-home-da .site-header .nav-links,
  .page-home-de .site-header .nav-links,
  body:not(.page-home-da):not(.page-home-de) .site-header .nav-links,
  html[data-theme="dark"] .site-header .nav-links {
    position: fixed;
    inset: 72px 0 0;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 0;
    width: auto;
    height: calc(100dvh - 72px);
    margin: 0;
    padding: clamp(26px, 5svh, 48px) max(22px, calc((100vw - var(--max)) / 2 + 20px)) 26px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background:
      radial-gradient(circle at 96% 8%, color-mix(in srgb, var(--logo-green) 10%, transparent), transparent 34%),
      var(--surface-elevated);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    transform-origin: top center;
    transition:
      opacity .28s ease,
      transform .42s cubic-bezier(.16, 1, .3, 1),
      visibility 0s linear .42s;
  }

  .site-header .nav-links::before {
    top: auto;
    right: -0.06em;
    bottom: -0.18em;
    left: auto;
    width: auto;
    height: auto;
    color: color-mix(in srgb, var(--ink) 5.5%, transparent);
    background: none;
    content: "nu";
    font-size: clamp(14rem, 54vw, 28rem);
    font-weight: 850;
    line-height: .72;
    letter-spacing: -.12em;
    pointer-events: none;
  }

  .site-header .nav-links > * {
    position: relative;
    z-index: 1;
  }

  .mobile-menu-intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
    padding-bottom: clamp(18px, 3svh, 28px);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: opacity .28s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-menu-intro span {
    color: var(--green-text);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .mobile-menu-intro strong {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 670;
    text-align: right;
  }

  .site-header .nav-links > a,
  .page-home-da .site-header .nav-links > a,
  .page-home-de .site-header .nav-links > a,
  body:not(.page-home-da):not(.page-home-de) .site-header .nav-links > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 0;
    padding: clamp(12px, 2.15svh, 18px) 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    font-size: clamp(1.75rem, 6.3vw, 2.8rem);
    font-weight: 830;
    line-height: 1;
    letter-spacing: -.04em;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
      color .3s ease,
      padding-left .36s cubic-bezier(.16, 1, .3, 1),
      opacity .28s ease,
      transform .46s cubic-bezier(.16, 1, .3, 1);
  }

  .site-header .nav-links > a::before,
  .site-header .nav-links > a::after {
    display: none;
  }

  .site-header .nav-links > a:hover,
  .site-header .nav-links > a:focus-visible,
  .site-header .nav-links > a.is-active,
  .page-home-da .site-header .nav-links > a:hover,
  .page-home-de .site-header .nav-links > a:hover {
    padding-left: 16px;
    color: var(--green-text);
    background: transparent;
  }

  .site-header .nav-links > a:last-of-type {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    margin-top: clamp(18px, 3svh, 28px);
    padding: 17px 20px;
    border-bottom: 0;
    border-radius: 12px;
    color: var(--paper);
    background: var(--ink);
    font-size: clamp(1.25rem, 4.8vw, 1.65rem);
    letter-spacing: -.025em;
  }

  .site-header .nav-links > a:last-of-type:hover,
  .site-header .nav-links > a:last-of-type:focus-visible,
  .site-header .nav-links > a:last-of-type.is-active {
    padding-left: 24px;
    color: var(--paper);
    background: color-mix(in srgb, var(--ink) 90%, var(--logo-green));
  }

  .nav-links > a > small {
    display: block;
    max-width: 25ch;
    color: color-mix(in srgb, var(--paper) 68%, transparent);
    font-size: .72rem;
    font-weight: 620;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: right;
  }

  .mobile-menu-direct {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: baseline;
    padding-top: 20px;
    color: var(--muted);
    font-size: .78rem;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity .3s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-menu-direct > span {
    font-weight: 760;
  }

  .mobile-menu-direct > a,
  .mobile-menu-direct > a:hover,
  .mobile-menu-direct > a:focus-visible {
    min-height: 0;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: .85rem;
    font-weight: 760;
    letter-spacing: 0;
    opacity: 1;
    transform: none;
  }

  .site-header .nav-links[data-open] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .site-header .nav-links[data-open] .mobile-menu-intro,
  .site-header .nav-links[data-open] .mobile-menu-direct,
  .site-header .nav-links[data-open] > a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .site-header .nav-links[data-open] .mobile-menu-intro { transition-delay: .03s; }
  .site-header .nav-links[data-open] > a:nth-of-type(1) { transition-delay: .05s; }
  .site-header .nav-links[data-open] > a:nth-of-type(2) { transition-delay: .075s; }
  .site-header .nav-links[data-open] > a:nth-of-type(3) { transition-delay: .1s; }
  .site-header .nav-links[data-open] > a:nth-of-type(4) { transition-delay: .125s; }
  .site-header .nav-links[data-open] > a:nth-of-type(5) { transition-delay: .15s; }
  .site-header .nav-links[data-open] > a:nth-of-type(6) { transition-delay: .175s; }
  .site-header .nav-links[data-open] .mobile-menu-direct { transition-delay: .2s; }
}

@media (max-width: 520px) {
  .site-header .nav-links,
  .page-home-da .site-header .nav-links,
  .page-home-de .site-header .nav-links {
    padding-top: 22px;
    padding-inline: 18px;
  }

  .site-header .nav-links > a,
  .page-home-da .site-header .nav-links > a,
  .page-home-de .site-header .nav-links > a {
    font-size: clamp(1.58rem, 8.1vw, 2.15rem);
  }

  .nav-links > a > small {
    max-width: 18ch;
    font-size: .67rem;
  }

  .mobile-menu-direct {
    align-items: flex-start;
  }
}

/* Contact: every direct path is visible immediately; no scroll guessing. */
.contact-experience {
  min-height: 0;
  padding-block: clamp(72px, 8vw, 112px);
}

.contact-stage {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  padding-block: 0;
}

.motion-ready .contact-experience .contact-path:nth-child(n) {
  opacity: 1;
  transform: none;
}

.contact-prep-section {
  margin-top: 0;
}

/* Blog ending: hold the final story in place, then let the CTA enter normally. */
body:is(.page-blog-da, .page-blog-de) .blog-cta-section {
  margin-top: 0;
}

.blog-story-panel:nth-last-child(2) {
  margin-bottom: clamp(280px, 42svh, 460px);
}

/* ========================================================================== 
   Contact · personal invitation, sequential contact paths and mobile parity
   ========================================================================== */

body:is(.page-contact-da, .page-contact-de) .contact-hero .subhero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(340px, .58fr);
  gap: clamp(56px, 8vw, 120px);
}

body:is(.page-contact-da, .page-contact-de) .contact-hero .subhero-copy {
  max-width: 680px;
}

.contact-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  margin: 0 auto;
  padding: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-elevated);
  box-shadow: 0 30px 82px rgba(17, 21, 19, .13);
}

.contact-portrait picture {
  display: block;
}

.contact-portrait img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 30%;
}

.contact-portrait figcaption {
  position: absolute;
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  left: clamp(18px, 3vw, 28px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  color: #fffefa;
  background: rgba(8, 13, 11, .84);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.contact-portrait figcaption > span:last-child {
  display: grid;
  gap: 1px;
}

.contact-portrait figcaption strong {
  font-size: .92rem;
  line-height: 1.2;
}

.contact-portrait figcaption small {
  color: rgba(255, 254, 250, .7);
  font-size: .8rem;
  line-height: 1.35;
}

.contact-presence {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--logo-green);
  box-shadow: 0 0 0 7px rgba(10, 193, 142, .14);
}

.contact-experience {
  --contact-path-1: 1;
  --contact-path-2: 0;
  --contact-path-3: 0;
  position: relative;
  min-height: 160svh;
  padding: 0;
  background: var(--paper) !important;
}

.contact-stage {
  position: sticky;
  top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(520px, 1.16fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  padding-block: clamp(52px, 8svh, 88px);
}

.contact-stage-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  max-width: 540px;
}

.contact-stage-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 3.55vw, 4.2rem);
  font-weight: 830;
  line-height: 1.015;
  letter-spacing: -.038em;
  text-wrap: balance;
}

.contact-stage-copy > p:not(.contact-kicker) {
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.28vw, 1.22rem);
  line-height: 1.68;
}

.contact-direct-note {
  display: grid;
  gap: 3px;
  max-width: 38ch;
  margin-top: 6px;
  padding: 17px 0 0 22px;
  border-left: 3px solid var(--logo-green);
}

.contact-direct-note strong {
  color: var(--ink);
  font-size: .95rem;
}

.contact-direct-note span {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.5;
}

.contact-stage-panel {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 0;
  padding: clamp(26px, 3.2vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  color: #fffefa;
  background:
    radial-gradient(circle at 88% 8%, rgba(10, 193, 142, .15), transparent 32%),
    linear-gradient(145deg, #0b100e 0%, #121a17 100%);
  box-shadow: 0 30px 82px rgba(17, 21, 19, .16);
}

.contact-stage-panel::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(10, 193, 142, .2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-stage-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
}

.contact-stage-panel-head strong {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.2;
}

.contact-stage-panel-head span {
  color: rgba(255, 254, 250, .58);
  font-size: .88rem;
  text-align: right;
}

.contact-paths {
  position: relative;
  z-index: 1;
  display: grid;
}

.contact-path,
.contact-path:visited {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 96px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 254, 250, .15);
  color: #fffefa !important;
  -webkit-text-fill-color: currentColor;
  text-decoration: none;
  transition:
    color .34s var(--motion-ease),
    border-color .34s ease,
    transform .42s var(--motion-ease),
    opacity .42s var(--motion-ease);
}

.contact-path:hover {
  border-color: rgba(10, 193, 142, .5);
}

.contact-path-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--logo-green);
  transition: transform .38s var(--motion-ease);
}

.contact-path:hover .contact-path-icon {
  transform: translate3d(4px, -2px, 0);
}

.contact-path-icon svg {
  width: 30px;
  height: 30px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.contact-path-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.contact-path-copy > span {
  color: rgba(255, 254, 250, .54);
  -webkit-text-fill-color: rgba(255, 254, 250, .54);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .11em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-path-copy strong {
  color: #fffefa;
  -webkit-text-fill-color: #fffefa;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-path-cta {
  color: rgba(255, 254, 250, .72);
  -webkit-text-fill-color: rgba(255, 254, 250, .72);
  font-size: .84rem;
  font-weight: 760;
  white-space: nowrap;
  transition: color .3s ease;
}

.contact-path:hover .contact-path-cta {
  color: var(--logo-green);
  -webkit-text-fill-color: var(--logo-green);
}

.motion-ready [data-contact-scroll] .contact-path:nth-child(1) {
  opacity: var(--contact-path-1);
  transform: translate3d(calc((1 - var(--contact-path-1)) * 44px), 0, 0);
}

.motion-ready [data-contact-scroll] .contact-path:nth-child(2) {
  opacity: var(--contact-path-2);
  transform: translate3d(calc((1 - var(--contact-path-2)) * 44px), 0, 0);
}

.motion-ready [data-contact-scroll] .contact-path:nth-child(3) {
  opacity: var(--contact-path-3);
  transform: translate3d(calc((1 - var(--contact-path-3)) * 44px), 0, 0);
}

.contact-prep-section {
  position: relative;
  z-index: 3;
  margin-top: calc(-1 * clamp(180px, 26svh, 320px));
  padding-block: clamp(96px, 12vw, 170px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-green) 78%, transparent), transparent 58%),
    var(--paper) !important;
}

.contact-prep-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(520px, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.contact-prep-heading {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 20px;
}

.contact-prep-heading h2 {
  max-width: 8ch;
  font-size: clamp(3rem, 4.7vw, 5rem);
  line-height: 1.01;
}

.contact-prep-heading > p:last-child {
  max-width: 35ch;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.68;
}

.contact-prompts {
  display: grid;
}

.contact-prompts article {
  display: grid;
  grid-template-columns: minmax(190px, .58fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: baseline;
  min-height: 176px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.contact-prompts article:last-of-type {
  border-bottom: 1px solid var(--line);
}

.contact-prompts h3 {
  max-width: 14ch;
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.12;
}

.contact-prompts p {
  max-width: 43ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.contact-prompts .text-link {
  margin-top: 28px;
}

html[data-theme="dark"] .contact-portrait {
  border-color: #303936;
  background: #202724;
  box-shadow: 0 30px 84px rgba(0, 0, 0, .3);
}

html[data-theme="dark"] .contact-experience,
html[data-theme="dark"] .contact-prep-section {
  background-color: var(--paper) !important;
}

html[data-theme="dark"] .contact-stage-panel {
  border-color: #303936;
  box-shadow: 0 30px 86px rgba(0, 0, 0, .3);
}

@media (max-width: 900px) {
  body:is(.page-contact-da, .page-contact-de) .contact-hero .subhero-grid,
  .contact-stage,
  .contact-prep-grid {
    grid-template-columns: 1fr;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-hero .subhero-grid {
    gap: 44px;
  }

  .contact-portrait {
    width: min(100%, 620px);
    margin-left: 0;
  }

  .contact-experience {
    min-height: 0;
    padding-block: 72px;
  }

  .contact-stage {
    position: relative;
    top: auto;
    height: auto;
    gap: 46px;
    min-height: 0;
    padding-block: 0;
  }

  .contact-stage-copy {
    max-width: 650px;
  }

  .contact-stage-copy h2 {
    max-width: 13ch;
  }

  .contact-stage-panel {
    min-height: 0;
  }

  .motion-ready [data-contact-scroll] .contact-path:nth-child(n) {
    opacity: 1;
    transform: none;
  }

  .contact-prep-grid {
    gap: 46px;
  }

  .contact-prep-section {
    margin-top: 0;
  }

  .contact-prep-heading {
    position: static;
    max-width: 650px;
  }

  .contact-prep-heading h2 {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .contact-portrait {
    padding: 5px;
    border-radius: 14px;
  }

  .contact-portrait img {
    border-radius: 9px;
  }

  .contact-portrait figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 13px 14px;
  }

  .contact-experience {
    padding-block: 58px;
  }

  .contact-stage {
    gap: 34px;
  }

  .contact-stage-copy {
    gap: 18px;
  }

  .contact-stage-copy h2,
  .contact-prep-heading h2 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .contact-stage-panel {
    margin-inline: -6px;
    padding: 24px 20px;
    border-radius: 14px;
  }

  .contact-stage-panel-head {
    display: grid;
    gap: 5px;
    padding-bottom: 15px;
  }

  .contact-stage-panel-head span {
    text-align: left;
  }

  .contact-path,
  .contact-path:visited {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 21px 0;
    color: #fffefa !important;
    -webkit-text-fill-color: #fffefa;
  }

  .contact-path-icon {
    width: 32px;
    height: 32px;
    color: var(--logo-green);
    -webkit-text-fill-color: var(--logo-green);
  }

  .contact-path-icon svg {
    width: 27px;
    height: 27px;
  }

  .contact-path-cta {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }

  .contact-prep-section {
    padding-block: 72px;
  }

  .contact-prep-grid {
    gap: 34px;
  }

  .contact-prompts article {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 27px 0;
  }

  .contact-prompts h3 {
    max-width: none;
  }
}

/* Final about principles: carry the homepage card composition into the about page. */
.about-process-section > .section-inner {
  display: block;
}

.about-process-section {
  padding-bottom: clamp(54px, 7vw, 88px);
}

.about-process-section > .section-inner > h2 {
  position: relative;
  top: auto;
  max-width: 12ch;
  margin: 0 0 clamp(58px, 7vw, 96px);
}

.about-process-section .process-grid.about-principle-list {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 1060px);
  gap: 0;
  margin: 0 0 0 auto;
  padding-bottom: 0;
  border: 0;
}

.about-process-section .about-principle-list article:nth-child(n) {
  position: sticky;
  top: 104px;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: 270px;
  margin-bottom: clamp(46px, 8svh, 76px);
  padding: clamp(38px, 4.5vw, 62px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-elevated);
  box-shadow: 0 18px 48px rgba(17, 21, 19, .055);
}

.about-process-section .about-principle-list article:nth-child(1) {
  z-index: 1;
}

.about-process-section .about-principle-list article:nth-child(2) {
  z-index: 2;
}

.about-process-section .about-principle-list article:nth-child(3) {
  z-index: 3;
  margin-bottom: 0;
}

.about-process-section .about-principle-list article:first-child {
  border-color: #16201c;
  color: #fffefa;
  background: #0c1511;
}

.about-process-section .about-principle-list article:nth-child(2) {
  background: var(--surface-green);
}

.about-process-section .about-principle-list article::before {
  display: none;
}

.about-process-section .about-principle-list article::after {
  display: block;
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: -.22em;
  content: attr(data-word);
  color: color-mix(in srgb, var(--ink) 8%, transparent);
  font-size: clamp(5rem, 9.5vw, 9.5rem);
  font-weight: 760;
  line-height: .8;
  letter-spacing: -.065em;
  pointer-events: none;
}

.about-process-section .about-principle-list article:first-child::after {
  color: rgba(255, 254, 250, .1);
}

.about-process-section .about-principle-list h3,
.about-process-section .about-principle-list p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.about-process-section .about-principle-list h3 {
  max-width: 12ch;
  color: inherit;
  font-size: clamp(2.15rem, 3.35vw, 3.45rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.about-process-section .about-principle-list p {
  max-width: 53ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.28vw, 1.2rem);
  line-height: 1.62;
}

.about-process-section .about-principle-list article:first-child p {
  color: rgba(255, 254, 250, .76);
}

html[data-theme="dark"] .about-process-section .about-principle-list article:nth-child(n) {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .18);
}

html[data-theme="dark"] .about-process-section .about-principle-list article:first-child {
  background: #070d0a;
}

html[data-theme="dark"] .about-process-section .about-principle-list article:nth-child(2) {
  background: var(--surface-green);
}

@media (max-width: 760px) {
  .about-process-section .process-grid.about-principle-list {
    width: 100%;
  }

  .about-process-section .about-principle-list article:nth-child(n) {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    margin-bottom: 18px;
    padding: 32px 28px 44px;
  }

  .about-process-section .about-principle-list article:nth-child(3) {
    margin-bottom: 0;
  }

  .about-process-section .about-principle-list h3 {
    max-width: 14ch;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .about-process-section .about-principle-list article::after {
    right: 18px;
    font-size: clamp(4.5rem, 24vw, 7rem);
  }
}

/* About principles: the same composed card language as the homepage. */
.about-process-section > .section-inner {
  display: block;
}

.about-process-section > .section-inner > h2 {
  position: relative;
  top: auto;
  max-width: 12ch;
  margin: 0 0 clamp(58px, 7vw, 96px);
}

.about-process-section .process-grid.about-principle-list {
  display: grid;
  width: min(100%, 1060px);
  gap: clamp(18px, 2.2vw, 28px);
  margin: 0 0 0 auto;
  border: 0;
}

.about-process-section .about-principle-list article:nth-child(n) {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: 270px;
  padding: clamp(38px, 4.5vw, 62px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-elevated);
  box-shadow: 0 18px 48px rgba(17, 21, 19, .055);
}

.about-process-section .about-principle-list article:first-child {
  border-color: #16201c;
  color: #fffefa;
  background: #0c1511;
}

.about-process-section .about-principle-list article:nth-child(2) {
  background: var(--surface-green);
}

.about-process-section .about-principle-list article::before {
  display: none;
}

.about-process-section .about-principle-list article::after {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: -0.22em;
  color: color-mix(in srgb, var(--ink) 7%, transparent);
  content: attr(data-word);
  font-size: clamp(5rem, 10vw, 9.5rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.065em;
  pointer-events: none;
}

.about-process-section .about-principle-list article:first-child::after {
  color: rgba(255, 254, 250, .1);
}

.about-process-section .about-principle-list h3,
.about-process-section .about-principle-list p {
  position: relative;
  z-index: 1;
}

.about-process-section .about-principle-list h3 {
  max-width: 12ch;
  color: inherit;
  font-size: clamp(2.15rem, 3.35vw, 3.45rem);
  line-height: 1.01;
  letter-spacing: -.04em;
}

.about-process-section .about-principle-list p {
  max-width: 53ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.28vw, 1.2rem);
  line-height: 1.62;
}

.about-process-section .about-principle-list article:first-child p {
  color: rgba(255, 254, 250, .76);
}

html[data-theme="dark"] .about-process-section .about-principle-list article:nth-child(n) {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .18);
}

html[data-theme="dark"] .about-process-section .about-principle-list article:first-child {
  background: #070d0a;
}

html[data-theme="dark"] .about-process-section .about-principle-list article:nth-child(2) {
  background: var(--surface-green);
}

@media (max-width: 760px) {
  .about-process-section .process-grid.about-principle-list {
    width: 100%;
  }

  .about-process-section .about-principle-list article:nth-child(n) {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 32px 28px 44px;
  }

  .about-process-section .about-principle-list h3 {
    max-width: 14ch;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .about-process-section .about-principle-list article::after {
    right: 18px;
    font-size: clamp(4.5rem, 24vw, 7rem);
  }
}

/* Blog overview: one continuous, full-viewport editorial scroll sequence. */
.page-blog-da .blog-index-hero,
.page-blog-de .blog-index-hero {
  min-height: clamp(620px, 78svh, 820px);
}

.page-blog-da .blog-index-hero .subhero-media,
.page-blog-de .blog-index-hero .subhero-media {
  aspect-ratio: 1.38;
}

.blog-story-section {
  position: relative;
  padding: 0;
  background: var(--night);
}

.blog-story-list {
  position: relative;
  width: 100%;
  padding-bottom: clamp(400px, 68svh, 720px);
}

.blog-story-panel {
  position: sticky;
  top: 70px;
  z-index: calc(1 + var(--blog-index, 0));
  display: grid;
  align-items: start;
  width: 100%;
  height: calc(100svh - 70px);
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  color: #fffefa;
  background: var(--night);
  box-shadow: 0 -1px rgba(255, 255, 255, .14);
}

.blog-story-panel:not(:last-child) {
  margin-bottom: clamp(180px, 28svh, 300px);
}

.blog-story-image,
.blog-story-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-story-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  scale: var(--blog-image-scale, 1.025);
  will-change: scale;
}

.blog-story-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 10, 8, .9) 0%, rgba(5, 10, 8, .69) 38%, rgba(5, 10, 8, .16) 72%, rgba(5, 10, 8, .08) 100%),
    linear-gradient(0deg, rgba(5, 10, 8, .62) 0%, transparent 45%);
}

.blog-story-copy {
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
  width: min(100%, 1480px);
  margin-inline: auto;
  padding: clamp(64px, 9svh, 96px) clamp(28px, 7vw, 112px);
}

.blog-story-copy .meta {
  margin: 0;
  color: var(--logo-green);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.blog-story-copy :is(.meta, h2) {
  opacity: var(--blog-heading-progress, 1);
  translate: 0 var(--blog-heading-offset, 0px);
  will-change: opacity, translate;
}

.blog-story-copy h2 {
  max-width: 18ch;
  margin: 0;
  color: #fffefa;
  font-size: clamp(2.65rem, 4.7vw, 5rem);
  line-height: 1;
  letter-spacing: -.038em;
  text-wrap: balance;
}

.blog-story-copy > p:not(.meta) {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 254, 250, .82);
  font-size: clamp(1.06rem, 1.35vw, 1.24rem);
  line-height: 1.58;
  opacity: var(--blog-copy-progress, 1);
  translate: 0 var(--blog-copy-offset, 0px);
  will-change: opacity, translate;
}

.blog-story-link {
  justify-self: start;
  margin-top: 4px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 7px;
  color: #fffefa;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  opacity: var(--blog-link-progress, 1);
  translate: 0 var(--blog-link-offset, 0px);
  will-change: opacity, translate;
  transition:
    color .32s cubic-bezier(.16, 1, .3, 1),
    background-color .32s cubic-bezier(.16, 1, .3, 1),
    border-color .32s cubic-bezier(.16, 1, .3, 1);
}

.blog-story-link:hover,
.blog-story-link:focus-visible {
  border-color: #fffefa;
  color: #07100c;
  background: #fffefa;
}

html[data-theme="dark"] .blog-story-section,
html[data-theme="dark"] .blog-story-panel {
  background: #050907;
}

@media (max-width: 700px) {
  .page-blog-da .blog-index-hero,
  .page-blog-de .blog-index-hero {
    min-height: auto;
  }

  .blog-story-panel {
    top: 66px;
    height: calc(100svh - 66px);
    min-height: 600px;
  }

  .blog-story-panel:not(:last-child) {
    margin-bottom: clamp(150px, 24svh, 210px);
  }

  .blog-story-list {
    padding-bottom: clamp(300px, 50svh, 440px);
  }

  .blog-story-shade {
    background:
      linear-gradient(0deg, rgba(5, 10, 8, .94) 0%, rgba(5, 10, 8, .69) 54%, rgba(5, 10, 8, .18) 100%);
  }

  .blog-story-copy {
    gap: 14px;
    padding: clamp(44px, 7svh, 64px) 24px;
  }

  .blog-story-copy h2 {
    max-width: 16ch;
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
  }

  .blog-story-copy > p:not(.meta) {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-story-panel {
    --blog-heading-progress: 1 !important;
    --blog-copy-progress: 1 !important;
    --blog-link-progress: 1 !important;
    --blog-heading-offset: 0px !important;
    --blog-copy-offset: 0px !important;
    --blog-link-offset: 0px !important;
  }

  .blog-story-image {
    scale: 1;
  }
}

/* ========================================================================== 
   Final text-led subpage hero · one strong CMS image, decoration behind it
   ========================================================================== */

.subhero:has(.subhero-visual) .subhero-grid {
  grid-template-columns: minmax(0, .72fr) minmax(520px, .9fr);
  gap: clamp(44px, 5vw, 76px);
}

.subhero:has(.subhero-visual) h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.15vw, 4.05rem);
  line-height: 1.04;
}

.subhero:has(.subhero-visual)::before {
  right: -2%;
  bottom: -16%;
  width: clamp(300px, 33vw, 490px);
  height: clamp(300px, 33vw, 490px);
  opacity: .72;
}

.subhero:has(.subhero-visual)::after {
  top: 26%;
  right: -2%;
  width: clamp(170px, 20vw, 290px);
  height: clamp(170px, 19vw, 270px);
  background-image: radial-gradient(circle, rgba(17, 21, 19, .62) 1.8px, transparent 2.15px);
  background-size: 29px 29px;
  opacity: .48;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
}

.subhero-visual {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 100%;
  animation: nuweb-subhero-media-in .82s cubic-bezier(.22, .8, .3, 1) .08s both;
}

.subhero-media {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-elevated);
  box-shadow: 0 30px 82px rgba(17, 21, 19, .14);
}

.subhero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.subhero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.34;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
}

body:is(.page-solutions-da, .page-solutions-de, .page-projects-da, .page-projects-de, [class*="page-project-detail-"]) .subhero-media img {
  object-position: top center;
}

.subhero-media-contact img {
  object-position: center 48%;
}

.subhero-media-projects img {
  object-fit: contain;
  object-position: center;
}

html[data-theme="dark"] .subhero:has(.subhero-visual)::after {
  background-image: radial-gradient(circle, rgba(229, 235, 232, .54) 1.8px, transparent 2.15px);
}

html[data-theme="dark"] .subhero-media {
  border-color: #303936;
  background: #202724;
  box-shadow: 0 32px 86px rgba(0, 0, 0, .3);
}

@keyframes nuweb-subhero-media-in {
  from {
    opacity: 0;
    transform: translate3d(42px, 0, 0) scale(.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .subhero-visual {
    animation: none;
  }
}

@media (max-width: 900px) {
  .subhero:has(.subhero-visual) .subhero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .subhero:has(.subhero-visual)::before {
    right: -20%;
    bottom: -7%;
    width: 390px;
    height: 390px;
  }

  .subhero:has(.subhero-visual)::after {
    top: auto;
    right: -7%;
    bottom: 8%;
  }

  .subhero-visual {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .subhero:has(.subhero-visual) .subhero-grid {
    gap: 38px;
  }

  .subhero:has(.subhero-visual)::after {
    display: none;
  }

  .subhero-media {
    padding: 5px;
    border-radius: 13px;
  }

  .subhero-media img {
    border-radius: 9px;
  }
}

/* ========================================================================== 
   Editorial subpage heroes · content lives in front of the decoration
   ========================================================================== */

/* Only the shared text-led hero is affected. Image, pricing and tool heroes
   keep their own compositions. */
.subhero:has(.subhero-focus) .subhero-grid {
  grid-template-columns: minmax(0, .82fr) minmax(430px, .7fr);
  gap: clamp(58px, 7vw, 108px);
}

.subhero:has(.subhero-focus)::before {
  right: -3%;
  bottom: -17%;
  width: clamp(300px, 32vw, 480px);
  height: clamp(300px, 32vw, 480px);
  opacity: .72;
}

.subhero:has(.subhero-focus)::after {
  top: 25%;
  right: -2%;
  width: clamp(170px, 20vw, 290px);
  height: clamp(170px, 19vw, 270px);
  background-image: radial-gradient(circle, rgba(17, 21, 19, .62) 1.8px, transparent 2.15px);
  background-size: 29px 29px;
  opacity: .48;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
}

.subhero:not(.website-landing-hero) .subhero-focus {
  position: relative;
  z-index: 3;
  display: grid;
  align-self: center;
  width: 100%;
  min-height: 0;
  padding: clamp(10px, 1.15vw, 16px) clamp(24px, 2.35vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-elevated);
  box-shadow: 0 28px 76px rgba(17, 21, 19, .11);
}

.subhero:not(.website-landing-hero) .subhero-focus::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 3px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--logo-green) 72%, transparent));
  content: "";
  pointer-events: none;
}

.subhero:not(.website-landing-hero) .subhero-focus article,
body:not(.page-home-da):not(.page-home-de) .subhero:not(.website-landing-hero) .subhero-focus article {
  display: grid;
  grid-template-columns: minmax(118px, .42fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  min-height: 0;
  padding: clamp(24px, 2.4vw, 32px) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.subhero:not(.website-landing-hero) .subhero-focus article:first-child {
  border-top: 0;
}

.subhero:not(.website-landing-hero) .subhero-focus article:last-child {
  border-bottom: 0;
}

.subhero:not(.website-landing-hero) .subhero-focus strong {
  color: var(--ink);
  font-size: clamp(1.04rem, 1.15vw, 1.16rem);
  font-weight: 780;
  letter-spacing: -.018em;
  line-height: 1.25;
}

.subhero:not(.website-landing-hero) .subhero-focus p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1.08vw, 1.08rem);
  line-height: 1.55;
}

html[data-theme="dark"] .subhero:has(.subhero-focus)::after {
  background-image: radial-gradient(circle, rgba(229, 235, 232, .55) 1.8px, transparent 2.15px);
}

html[data-theme="dark"] .subhero:not(.website-landing-hero) .subhero-focus {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 30px 82px rgba(0, 0, 0, .26);
}

@media (max-width: 900px) {
  .subhero:has(.subhero-focus) .subhero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .subhero:has(.subhero-focus)::before {
    right: -22%;
    bottom: -8%;
    width: 390px;
    height: 390px;
  }

  .subhero:has(.subhero-focus)::after {
    top: auto;
    right: -7%;
    bottom: 7%;
  }

  .subhero:not(.website-landing-hero) .subhero-focus {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .subhero:has(.subhero-focus) .subhero-grid {
    gap: 38px;
  }

  .subhero:has(.subhero-focus)::after {
    display: none;
  }

  .subhero:not(.website-landing-hero) .subhero-focus {
    padding: 6px 22px;
    border-radius: 14px;
  }

  .subhero:not(.website-landing-hero) .subhero-focus article,
  body:not(.page-home-da):not(.page-home-de) .subhero:not(.website-landing-hero) .subhero-focus article {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 22px 0;
  }

  .subhero:not(.website-landing-hero) .subhero-focus p {
    max-width: 40ch;
  }
}

/* About page: one deliberate scroll narrative instead of an uneven card grid. */
.about-process-section {
  padding-block: clamp(92px, 10vw, 148px);
}

.about-process-section > .section-inner {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 9vw, 138px);
  align-items: start;
}

.about-process-section > .section-inner > h2 {
  position: sticky;
  top: 128px;
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.15rem, 5.2vw, 5.35rem);
  line-height: .99;
  letter-spacing: -.045em;
}

.about-process-section .process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.about-process-section .process-grid article,
.about-process-section .process-grid article:nth-child(n) {
  display: grid;
  grid-template-columns: minmax(190px, .48fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  min-height: 0;
  padding: clamp(42px, 5vw, 68px) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-process-section .process-grid article::before,
.about-process-section .process-grid article::after {
  display: none;
}

.about-process-section .process-grid h3 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.about-process-section .process-grid p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.28vw, 1.18rem);
  line-height: 1.66;
}

html[data-theme="dark"] .about-process-section .process-grid article:nth-child(n) {
  background: transparent;
}

@media (max-width: 900px) {
  .about-process-section > .section-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-process-section > .section-inner > h2 {
    position: relative;
    top: auto;
    max-width: 12ch;
  }

  .about-process-section .process-grid article,
  .about-process-section .process-grid article:nth-child(n) {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 38px;
  }

  .about-process-section .process-grid h3 {
    max-width: none;
  }
}

.solution-consulting-section {
  padding-block: clamp(92px, 11vw, 152px);
  background: var(--paper) !important;
}

.solution-consulting {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.solution-consulting-card,
.solution-capabilities {
  min-height: 300px;
  padding: clamp(34px, 4vw, 54px);
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solution-consulting-card:nth-child(2) {
  border-right: 0;
  background: var(--surface-green);
}

.solution-consulting-card > span,
.solution-capabilities > span {
  color: var(--green-text);
}

.solution-consulting-card h2,
.solution-capabilities h2 {
  color: var(--ink);
}

.solution-consulting-card p,
.solution-capabilities :is(p, li) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.68;
}

.solution-capabilities {
  grid-column: 1 / -1;
  min-height: 250px;
  border-top: 1px solid var(--line);
  border-right: 0;
}

.solution-capabilities ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

html[data-theme="dark"] .solution-consulting-section {
  background: var(--paper) !important;
}

html[data-theme="dark"] .solution-consulting-card,
html[data-theme="dark"] .solution-capabilities {
  border-color: var(--line);
  background: transparent;
}

html[data-theme="dark"] .solution-consulting-card:nth-child(2) {
  background: var(--surface-green);
}

@media (max-width: 700px) {
  .solution-consulting {
    grid-template-columns: 1fr;
  }

  .solution-consulting-card,
  .solution-capabilities {
    grid-column: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

/* Project overview: retain the established complete project-block layout. */
.project-list {
  gap: 26px;
}

.project-list .project-wide {
  min-height: 0;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-elevated);
  box-shadow: 0 18px 58px rgba(17, 21, 19, .07);
}

.project-list .project-wide:first-child {
  border-top: 1px solid var(--line);
}

.project-list .project-wide:nth-child(even) .project-browser {
  order: initial;
}

.project-list .project-browser {
  position: relative;
  top: auto;
  translate: none;
}

.project-list .browser-viewport {
  height: clamp(460px, 44vw, 600px);
}

.project-list .project-copy {
  padding: clamp(8px, 1.8vw, 22px) 0;
}

html[data-theme="dark"] .project-list .project-wide {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 20px 62px rgba(0, 0, 0, .2);
}

@media (max-width: 900px) {
  .project-list .project-wide {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* No decorative 01/02/03 system: hierarchy comes from language and spacing. */
body:not(.page-home-da):not(.page-home-de) :is(
  .subhero-focus article > span:first-child,
  .price-hero-panel a > span:first-child,
  .pricing-intro > span:first-child,
  .contact-step-list li > span:first-child,
  .process-grid article > span:first-child,
  .ip-fact-card > span:first-child,
  .website-landing-card-grid article > span:first-child,
  .website-landing-process-grid article > span:first-child,
  .multilingual-bento article > span:first-child
) {
  display: none;
}

body:not(.page-home-da):not(.page-home-de) :is(.subhero-focus article, .price-hero-panel a) {
  grid-template-columns: 1fr;
  gap: 5px;
}

body:not(.page-home-da):not(.page-home-de) .contact-step-list li,
body:not(.page-home-da):not(.page-home-de) .website-landing-process-grid article {
  grid-template-columns: 1fr;
}

body:not(.page-home-da):not(.page-home-de) .pricing-intro h2 {
  margin-top: 0;
}

/* ========================================================================== 
   Unified subpages · the homepage design language carried across the site
   ========================================================================== */

/* Light subpage header; image-led landing and article heroes keep their overlay header. */
body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header {
  height: 84px;
  border-color: transparent;
  color: var(--ink);
}

body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header[data-scrolled],
body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header[data-menu-open] {
  border-color: var(--line);
  background: var(--header-surface);
  box-shadow: 0 12px 40px rgba(17, 21, 19, .045);
  backdrop-filter: blur(22px) saturate(140%);
}

body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .brand-logo {
  width: clamp(112px, 11vw, 142px);
}

body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .brand-logo path[style*="fill:#fff"] {
  fill: var(--ink) !important;
}

body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links {
  gap: clamp(20px, 2.2vw, 34px);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 650;
}

body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links > a {
  position: relative;
}

body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links > a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--logo-green);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .3s var(--motion-ease);
}

body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links > a:hover::after,
body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header :where(.language-link, .theme-picker-summary, .nav-toggle) {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface-elevated) 72%, transparent);
  color: var(--ink);
}

/* Article pages use the same header proportions as every other public page. */
body[class*="page-blog-post-"] .site-header {
  height: var(--header-height);
}

body[class*="page-blog-post-"] .site-header .brand-logo {
  width: clamp(112px, 11vw, 142px);
}

body[class*="page-blog-post-"] .site-header .nav-links {
  gap: clamp(20px, 2.2vw, 34px);
  font-size: .86rem;
  font-weight: 650;
}

/* Open, friendly subpage hero instead of the former technical dark grid. */
.subhero:not(.website-landing-hero) {
  --subhero-height: clamp(560px, 78vh, 720px);
  min-height: var(--subhero-height);
  background:
    radial-gradient(circle at 72% 36%, rgba(10, 193, 142, .045), transparent 26%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  color: var(--ink);
}

.subhero:not(.website-landing-hero)::before {
  inset: auto 5% 7% auto;
  width: clamp(320px, 38vw, 560px);
  height: clamp(320px, 38vw, 560px);
  border: 1px solid rgba(10, 193, 142, .18);
  border-radius: 50%;
  background: var(--surface-green);
  opacity: .82;
  -webkit-mask-image: none;
  mask-image: none;
  animation: none;
}

.subhero:not(.website-landing-hero)::after {
  inset: 30% -1% auto auto;
  width: clamp(220px, 28vw, 390px);
  height: 230px;
  background: radial-gradient(circle, rgba(17, 21, 19, .42) 1.65px, transparent 1.9px);
  background-size: 27px 27px;
  mix-blend-mode: normal;
  opacity: .46;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 36%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 36%, #000 86%, transparent);
  animation: none;
}

.subhero:not(.website-landing-hero) > .section-inner {
  min-height: var(--subhero-height);
  padding-top: 122px;
  padding-bottom: 68px;
}

.subhero:not(.website-landing-hero) .subhero-grid,
.subhero:not(.website-landing-hero).about-hero > .section-inner {
  grid-template-columns: minmax(0, .9fr) minmax(340px, .62fr);
  gap: clamp(64px, 8vw, 124px);
  align-items: center;
}

.subhero:not(.website-landing-hero) .subhero-copy {
  max-width: 760px;
}

.subhero:not(.website-landing-hero) h1 {
  max-width: 11.5ch;
  font-size: clamp(3.15rem, 5.25vw, 4.85rem);
  font-weight: 830;
  line-height: 1.02;
  letter-spacing: -.036em;
}

.subhero:not(.website-landing-hero) .subhero-kicker {
  color: var(--green-text);
  font-size: .74rem;
  letter-spacing: .13em;
}

.subhero:not(.website-landing-hero) .subhero-copy > h1 + p {
  margin-top: 28px;
}

.subhero:not(.website-landing-hero) p {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

/* The right-side proof becomes editorial information instead of a box in a box. */
.subhero:not(.website-landing-hero) .subhero-focus,
.subhero:not(.website-landing-hero) .price-hero-panel,
.subhero:not(.website-landing-hero) .blog-topic-list {
  position: relative;
  z-index: 2;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.subhero:not(.website-landing-hero) .subhero-focus article,
.subhero:not(.website-landing-hero) .price-hero-panel a {
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 7px 20px;
  min-height: 0;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.subhero:not(.website-landing-hero) .subhero-focus article:first-child,
.subhero:not(.website-landing-hero) .price-hero-panel a:first-child {
  border-top: 0;
}

.subhero:not(.website-landing-hero) :is(.subhero-focus, .price-hero-panel) span {
  color: var(--ink);
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  font-weight: 820;
  letter-spacing: -.05em;
}

.subhero:not(.website-landing-hero) :is(.subhero-focus, .price-hero-panel) strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.subhero:not(.website-landing-hero) :is(.subhero-focus, .price-hero-panel) :is(p, small) {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.48;
}

.subhero:not(.website-landing-hero) .price-hero-copy .button {
  width: fit-content;
  margin-top: 30px;
}

.subhero:not(.website-landing-hero) .blog-topic-list {
  display: grid;
  align-self: center;
}

.subhero:not(.website-landing-hero) .blog-topic-list a {
  min-height: 0;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.subhero:not(.website-landing-hero) .blog-topic-list a:first-child {
  border-top: 0;
}

.subhero:not(.website-landing-hero).about-hero img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1.18;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: transparent;
  object-fit: cover;
  box-shadow: none;
}

/* Support and IP tools keep a panel, but use the shared surfaces in both modes. */
.subhero:not(.website-landing-hero) .ip-tool-card {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface-elevated) 88%, transparent);
  box-shadow: 0 24px 64px rgba(17, 21, 19, .09);
}

.subhero:not(.website-landing-hero) .ip-tool-card::before {
  background-image: radial-gradient(circle, rgba(17, 21, 19, .2) 1.35px, transparent 1.6px);
  background-size: 25px 25px;
  opacity: .35;
}

.subhero:not(.website-landing-hero) .ip-value {
  color: var(--ink);
}

.subhero:not(.website-landing-hero) :is(.ip-meta span, .ip-copy-button) {
  border-color: var(--line);
}

.subhero:not(.website-landing-hero) .ip-meta span,
.subhero:not(.website-landing-hero) .ip-secondary,
.subhero:not(.website-landing-hero) .ip-secondary span {
  color: var(--muted);
}

.subhero:not(.website-landing-hero) .ip-copy-button {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

/* Shared controls and section rhythm. */
body:not(.page-home-da):not(.page-home-de) .button:not(.button-ghost) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

body:not(.page-home-da):not(.page-home-de) .button-ghost {
  border-color: var(--line);
  background: transparent;
  color: currentColor;
}

body:not(.page-home-da):not(.page-home-de) :is(.section, .legal-section) {
  background-color: var(--paper);
}

body:not(.page-home-da):not(.page-home-de) :is(.section, .legal-section) h2 {
  letter-spacing: -.032em;
}

html[data-theme="dark"] .subhero:not(.website-landing-hero) {
  background:
    radial-gradient(circle at 72% 36%, rgba(10, 193, 142, .05), transparent 26%),
    linear-gradient(180deg, var(--paper) 0%, var(--surface-soft) 100%);
}

html[data-theme="dark"] .subhero:not(.website-landing-hero)::before {
  border-color: rgba(10, 193, 142, .2);
  background: var(--surface-green);
}

html[data-theme="dark"] .subhero:not(.website-landing-hero)::after {
  background-image: radial-gradient(circle, rgba(241, 245, 242, .52) 1.65px, transparent 1.9px);
}

html[data-theme="dark"] .subhero:not(.website-landing-hero) .ip-tool-card {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .26);
}

html[data-theme="dark"] body:not(.page-home-da):not(.page-home-de) .button:not(.button-ghost) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 900px) {
  body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header {
    height: 72px;
  }

  body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links {
    top: 72px;
    border-color: var(--line);
    background: var(--surface-elevated);
    color: var(--ink);
  }

  .subhero:not(.website-landing-hero) {
    --subhero-height: auto;
    min-height: 0;
  }

  .subhero:not(.website-landing-hero) > .section-inner {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 78px;
  }

  .subhero:not(.website-landing-hero) .subhero-grid,
  .subhero:not(.website-landing-hero).about-hero > .section-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .subhero:not(.website-landing-hero)::before {
    right: -16%;
    bottom: 4%;
    width: 420px;
    height: 420px;
  }

  .subhero:not(.website-landing-hero)::after {
    top: auto;
    bottom: 10%;
  }

  .subhero:not(.website-landing-hero) :is(.subhero-focus, .price-hero-panel, .blog-topic-list) {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .subhero:not(.website-landing-hero) > .section-inner {
    padding-top: 104px;
    padding-bottom: 62px;
  }

  .subhero:not(.website-landing-hero) h1 {
    font-size: clamp(2.65rem, 12vw, 3.45rem);
    line-height: 1.01;
  }

  .subhero:not(.website-landing-hero) p {
    font-size: 1.02rem;
  }

  .subhero:not(.website-landing-hero) .subhero-focus article,
  .subhero:not(.website-landing-hero) .price-hero-panel a {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 20px 0;
  }
}

/* ========================================================================== 
   Unified inner pages · editorial rhythm, purposeful scroll and dark parity
   ========================================================================== */

body:not(.page-home-da):not(.page-home-de) main {
  overflow: clip;
}

.subhero:not(.website-landing-hero) h1 {
  font-size: clamp(3rem, 4.85vw, 4.55rem);
  line-height: 1.035;
}

body:not(.page-home-da):not(.page-home-de) :is(.solution-story-section, .project-story-section, .blog-index-list-section) {
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(88px, 11vw, 156px);
}

/* Solutions: one calm image/text chapter at a time. */
.solution-list {
  gap: 0;
}

.solution-list .detail-row {
  min-height: clamp(620px, 72vh, 780px);
  padding: clamp(76px, 9vw, 132px) 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solution-list .detail-row:first-child {
  border-top: 0;
}

.solution-list .detail-row > img {
  position: sticky;
  top: 116px;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.28;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(17, 21, 19, .1);
  translate: 0 calc((var(--scene-progress, .5) - .5) * -24px);
}

.solution-list .detail-row:nth-child(even) > img {
  order: 2;
}

.solution-list .detail-row > div {
  gap: 22px;
  padding-inline: clamp(4px, 2vw, 26px);
}

.solution-list .detail-row h2 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.2vw, 4.25rem);
  line-height: 1.01;
  letter-spacing: -.038em;
}

.solution-list .detail-row > div > p {
  max-width: 44ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.66;
}

.solution-list .detail-pair {
  gap: 22px;
  margin-top: 8px;
}

.solution-list .detail-pair > div {
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.solution-list .detail-pair strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-text);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.solution-list .detail-pair p,
.solution-list .richtext :is(p, li) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

/* Projects: large browser proof, paired with readable outcomes. */
.project-list {
  gap: 0;
}

.project-list .project-wide {
  min-height: clamp(650px, 78vh, 840px);
  padding: clamp(82px, 9vw, 136px) 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.project-list .project-wide:first-child {
  border-top: 0;
}

.project-list .project-wide:nth-child(even) .project-browser {
  order: 2;
}

.project-list .project-browser,
.project-detail-story .project-browser {
  position: sticky;
  top: 110px;
  border-color: color-mix(in srgb, var(--ink) 22%, transparent);
  border-radius: 14px;
  box-shadow: 0 28px 76px rgba(17, 21, 19, .14);
  translate: 0 calc((var(--scene-progress, .5) - .5) * -18px);
}

.project-list .browser-viewport,
.project-detail-story .browser-viewport {
  height: clamp(390px, 42vw, 560px);
  scrollbar-width: none;
}

.project-list .browser-viewport::-webkit-scrollbar,
.project-detail-story .browser-viewport::-webkit-scrollbar {
  display: none;
}

.project-list :is(.browser-scroll-cue, .browser-screen::after),
.project-detail-story :is(.browser-scroll-cue, .browser-screen::after) {
  display: none;
}

.project-list .project-copy {
  align-self: center;
  gap: 22px;
  padding-inline: clamp(4px, 2vw, 28px);
}

.project-list .project-copy > p:not(.meta) {
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
}

.project-list .project-wide .detail-pair div {
  padding-left: 0;
  padding-top: 14px;
  border-left: 0;
  border-top: 1px solid var(--line);
}

.project-list .project-wide .detail-pair strong {
  color: var(--green-text);
}

.project-action,
.detail-return-link {
  box-shadow: none;
}

/* The individual project keeps the browser in view while its story is read. */
.project-detail-story {
  padding-block: clamp(88px, 10vw, 144px);
}

.project-detail-story .project-detail-layout {
  gap: clamp(54px, 7vw, 104px);
}

.project-detail-story .project-detail-copy {
  padding-top: 4px;
}

.project-detail-story .blog-aside-box {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Pricing becomes a deliberate sticky stack instead of a row of static boxes. */
.pricing-section {
  padding-top: clamp(68px, 8vw, 112px);
  padding-bottom: clamp(140px, 17vw, 250px);
}

.pricing-stack {
  gap: clamp(24px, 3vw, 40px);
}

.pricing-package {
  position: sticky;
  top: calc(96px + var(--package-index, 0) * 11px);
  min-height: 390px;
  border-color: var(--line);
  border-radius: 20px;
  background: var(--surface-elevated);
  box-shadow: 0 26px 72px rgba(17, 21, 19, .1);
}

.pricing-package.is-featured {
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .15), transparent 38%),
    #0e1512;
}

.pricing-package > * {
  align-self: start;
}

.pricing-package .pricing-intro > span {
  color: var(--logo-green);
  opacity: .78;
}

.pricing-care-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 42%, rgba(10, 193, 142, .14), transparent 30%),
    var(--night) !important;
}

.pricing-care-section::after {
  position: absolute;
  inset: 12% 4% 12% auto;
  z-index: -1;
  width: min(420px, 34vw);
  background-image: radial-gradient(circle, rgba(255, 255, 255, .38) 1.4px, transparent 1.7px);
  background-size: 27px 27px;
  content: "";
  opacity: .22;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 35%, transparent);
}

/* About: editorial introduction and a compact, contemporary process. */
.about-intro-section {
  padding-block: clamp(100px, 12vw, 174px);
}

.about-intro-section .two-col {
  gap: clamp(64px, 10vw, 150px);
  align-items: start;
}

.about-intro-section h2 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 4.6vw, 4.8rem);
  line-height: 1.01;
}

.about-intro-section .lead-stack {
  padding-top: 10px;
}

.about-intro-section .lead-stack p {
  font-size: clamp(1.14rem, 1.5vw, 1.34rem);
  line-height: 1.68;
}

.about-tool-section {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.about-tool-band {
  min-height: 190px;
  padding-block: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-process-section {
  padding-block: clamp(96px, 12vw, 170px);
}

.about-process-section > .section-inner > h2 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}

.about-process-section .process-grid {
  margin-top: clamp(58px, 8vw, 100px);
  gap: 0;
  border-top: 1px solid var(--line);
}

.about-process-section .process-grid article:nth-child(n) {
  min-height: 360px;
  padding: clamp(30px, 3.5vw, 48px);
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-process-section .process-grid article:last-child {
  border-right: 0;
}

.about-process-section .process-grid article:nth-child(2) {
  background: var(--surface-green);
}

/* Contact keeps contrast, but the secondary side is open and less boxy. */
.contact-section {
  padding-block: clamp(92px, 11vw, 150px);
  background: var(--paper) !important;
}

.contact-bento {
  gap: clamp(42px, 7vw, 96px);
}

.contact-card-primary {
  border-radius: 18px;
  box-shadow: 0 28px 72px rgba(17, 21, 19, .14);
}

.contact-note-steps {
  padding: clamp(24px, 2vw, 34px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Blog: magazine-like hierarchy, without a field of identical cards. */
.blog-featured-section {
  padding-block: clamp(92px, 11vw, 150px);
}

.blog-featured {
  gap: clamp(54px, 8vw, 116px);
  align-items: center;
}

.blog-featured figure {
  border: 0;
  border-radius: 14px;
  background: var(--surface-elevated);
  box-shadow: 0 28px 76px rgba(17, 21, 19, .12);
  translate: 0 calc((var(--scene-progress, .5) - .5) * -22px);
}

.blog-featured h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  line-height: 1.01;
}

.blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(62px, 8vw, 112px) clamp(28px, 4vw, 58px);
}

.blog-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-card > img {
  aspect-ratio: 1.55;
  border: 1px solid var(--line);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 54px rgba(17, 21, 19, .08);
}

.blog-card-copy {
  padding: 28px 0 0;
}

.blog-card h2 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  line-height: 1.08;
}

.blog-cta-section {
  padding-block: clamp(72px, 9vw, 120px);
}

.blog-cta {
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 42%, rgba(10, 193, 142, .18), transparent 28%),
    var(--night);
  box-shadow: none;
}

/* Website landing: the process is the main pinned narrative on this page. */
.website-landing-lead-section,
.website-landing-card-section,
.website-landing-faq {
  background: var(--paper) !important;
}

.website-landing-showcase-section {
  background: var(--surface-soft) !important;
}

.website-landing-showcase figure,
.website-landing-cta figure {
  border-radius: 14px;
  box-shadow: 0 26px 72px rgba(17, 21, 19, .12);
}

.website-landing-card-grid {
  gap: 0;
  border-block: 1px solid var(--line);
}

.website-landing-card-grid article {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.website-landing-card-grid article:last-child {
  border-right: 0;
}

.website-landing-process-section {
  min-height: 150vh;
  padding-block: clamp(104px, 12vw, 172px);
  background: var(--surface-soft) !important;
  color: var(--ink);
}

.website-landing-process {
  align-items: start;
  gap: clamp(64px, 9vw, 132px);
}

.website-landing-process-copy {
  position: sticky;
  top: 126px;
}

.website-landing-process-grid {
  gap: 0;
  padding-left: 0;
}

.website-landing-process-grid::before {
  display: none;
}

.website-landing-process-grid article {
  min-height: 270px;
  padding: 42px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.website-landing-process-grid article:first-child {
  border-top: 0;
}

.website-landing-process-grid span {
  color: var(--green-text);
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.website-landing-process-copy > p:last-child,
.website-landing-process-grid article p {
  color: var(--muted);
}

.website-landing-cta-section {
  background: var(--paper) !important;
}

/* The Denmark-only multilingual service page uses the same open hierarchy. */
.multilingual-section {
  padding-block: clamp(92px, 11vw, 150px);
  background: var(--paper) !important;
}

.multilingual-bento {
  gap: 0;
  border-block: 1px solid var(--line);
}

.multilingual-bento article,
.multilingual-bento .multilingual-lead {
  min-height: 310px;
  padding: clamp(32px, 4vw, 54px);
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.multilingual-bento article:last-child {
  border-right: 0;
}

.multilingual-bento article:nth-child(3) {
  background: var(--surface-green);
}

.multilingual-dark {
  background: var(--night) !important;
}

/* Utility and legal pages stay calmer, but share the same surfaces. */
.ip-service-section,
.support-help-section,
.legal-section {
  background: var(--paper) !important;
}

.ip-fact-card,
.support-panel {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: none;
}

/* Dark mode is the same composition, with quieter frames and shadows. */
html[data-theme="dark"] :is(
  .solution-list .detail-row,
  .project-list .project-wide,
  .contact-note-steps,
  .blog-card,
  .multilingual-bento article,
  .website-landing-card-grid article,
  .website-landing-process-grid article,
  .project-detail-story .blog-aside-box
) {
  background: transparent;
  color: var(--ink);
}

html[data-theme="dark"] .solution-list .detail-row > img,
html[data-theme="dark"] .blog-card > img,
html[data-theme="dark"] .website-landing-showcase figure,
html[data-theme="dark"] .website-landing-cta figure {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .26);
}

html[data-theme="dark"] .project-list .project-browser,
html[data-theme="dark"] .project-detail-story .project-browser {
  border-color: #39423e;
  background: #171c1a;
  box-shadow: 0 28px 76px rgba(0, 0, 0, .3);
}

html[data-theme="dark"] .project-list .browser-chrome,
html[data-theme="dark"] .project-detail-story .browser-chrome {
  background: #222925;
}

html[data-theme="dark"] .pricing-package {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

html[data-theme="dark"] .pricing-package.is-featured {
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .14), transparent 38%),
    #080c0a;
}

html[data-theme="dark"] :is(.about-tool-section, .website-landing-showcase-section, .website-landing-process-section) {
  border-color: var(--line);
  background: var(--surface-soft) !important;
}

html[data-theme="dark"] :is(.website-landing-lead-section, .website-landing-card-section, .website-landing-faq, .website-landing-cta-section, .multilingual-section, .contact-section, .ip-service-section, .support-help-section, .legal-section) {
  background: var(--paper) !important;
}

html[data-theme="dark"] .about-process-section .process-grid article:nth-child(2),
html[data-theme="dark"] .multilingual-bento article:nth-child(3) {
  background: var(--surface-green);
}

@media (max-width: 1000px) {
  .pricing-package {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    gap: 72px 28px;
  }
}

@media (max-width: 900px) {
  .solution-list .detail-row,
  .project-list .project-wide {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 72px;
  }

  .solution-list .detail-row:nth-child(even) > img,
  .project-list .project-wide:nth-child(even) .project-browser {
    order: 0;
  }

  .solution-list .detail-row > img,
  .project-list .project-browser,
  .project-detail-story .project-browser,
  .website-landing-process-copy {
    position: relative;
    top: auto;
    translate: none;
  }

  .project-detail-story .project-detail-layout {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding-bottom: 110px;
  }

  .pricing-package {
    position: relative;
    top: auto;
  }

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

  .about-process-section .process-grid article:nth-child(n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .website-landing-process-section {
    min-height: 0;
  }

  .multilingual-bento {
    grid-template-columns: 1fr 1fr;
  }

  .multilingual-bento article:nth-child(n) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .subhero:not(.website-landing-hero) h1 {
    font-size: clamp(2.55rem, 11vw, 3.25rem);
  }

  .pricing-package,
  .blog-grid,
  .multilingual-bento {
    grid-template-columns: 1fr;
  }

  .pricing-package {
    min-height: 0;
    padding: 28px 22px;
  }

  .blog-card-copy {
    padding-top: 22px;
  }

  .website-landing-card-grid {
    grid-template-columns: 1fr;
  }

  .website-landing-card-grid article,
  .multilingual-bento article:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (min-width: 901px) {
  .page-home-da .process-section .process-grid article:nth-child(n),
  .page-home-de .process-section .process-grid article:nth-child(n) {
    justify-self: stretch;
    width: 100%;
    border-radius: 20px;
  }
}

@media (min-width: 701px) {
  .page-home-da .craft-line li > p,
  .page-home-de .craft-line li > p {
    max-width: 27ch;
    font-size: clamp(1.25rem, 1.55vw, 1.42rem);
    line-height: 1.56;
  }
}

/* Tool composition: the icons lead, the green circle only anchors them. */
.page-home-da .competence-icon-cloud,
.page-home-de .competence-icon-cloud {
  width: min(440px, 38vw);
}

.page-home-de .hero-title-line {
  display: block;
  white-space: nowrap;
}

.page-home-da .competence-icon-cloud::before,
.page-home-de .competence-icon-cloud::before {
  inset: 8%;
}

.page-home-da .competence-icon-shell,
.page-home-de .competence-icon-shell {
  width: clamp(112px, 9.5vw, 138px);
  border-width: 0;
  border-radius: 28px;
}

.page-home-da .icon-socialdock,
.page-home-de .icon-socialdock {
  top: 16%;
  left: 2%;
}

.page-home-da .icon-dotflow,
.page-home-de .icon-dotflow {
  top: -1%;
  right: 9%;
  width: clamp(128px, 10.5vw, 154px);
}

.page-home-da .icon-mapmax,
.page-home-de .icon-mapmax {
  bottom: 1%;
  left: 18%;
  width: clamp(116px, 9.8vw, 142px);
}

.page-home-da .icon-beam,
.page-home-de .icon-beam {
  right: -3%;
  bottom: 12%;
  width: clamp(144px, 12vw, 170px);
}

@media (max-width: 900px) {
  .page-home-da .competence-icon-cloud,
  .page-home-de .competence-icon-cloud {
    width: min(410px, 86vw);
  }

  .page-home-da .competence-icon-shell,
  .page-home-de .competence-icon-shell {
    width: clamp(96px, 24vw, 118px);
    border-radius: 24px;
  }

  .page-home-da .icon-dotflow,
  .page-home-de .icon-dotflow {
    width: clamp(106px, 27vw, 132px);
  }

  .page-home-da .icon-mapmax,
  .page-home-de .icon-mapmax {
    width: clamp(100px, 25vw, 122px);
  }

  .page-home-da .icon-beam,
  .page-home-de .icon-beam {
    width: clamp(122px, 31vw, 148px);
  }
}

/* The former hero image becomes the single, full-bleed closing scene. */
.page-home-da .footer-cta,
.page-home-de .footer-cta {
  position: relative;
  display: grid;
  min-height: clamp(470px, 43vw, 620px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #111513;
  color: var(--white);
}

.page-home-da .footer-cta::before,
.page-home-de .footer-cta::before {
  position: absolute;
  inset: -42px 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 13, 12, .94) 0%, rgba(10, 13, 12, .84) 43%, rgba(10, 13, 12, .52) 72%, rgba(10, 13, 12, .38) 100%),
    var(--home-cta-image);
  background-position: center;
  background-size: cover;
  content: "";
  transform: translate3d(0, calc((var(--scene-progress, .5) - .5) * -34px), 0) scale(1.04);
  will-change: transform;
}

.page-home-da .footer-cta .cta-panel,
.page-home-de .footer-cta .cta-panel {
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}

.page-home-da .footer-cta .cta-panel > div,
.page-home-de .footer-cta .cta-panel > div {
  width: min(680px, 100%);
}

.page-home-da .footer-cta h2,
.page-home-de .footer-cta h2 {
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0, 0, 0, .2);
}

.page-home-da .footer-cta .cta-panel p,
.page-home-de .footer-cta .cta-panel p {
  color: rgba(255, 255, 255, .82);
}

.footer-cta .cta-copy-line {
  display: block;
}

.footer-cta .cta-copy-line + .cta-copy-line {
  margin-top: .12em;
}

.page-home-da .footer-cta .button-light,
.page-home-de .footer-cta .button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.page-home-da .footer-cta .button-light:hover,
.page-home-de .footer-cta .button-light:hover {
  border-color: #f1f5f2;
  background: #f1f5f2;
  color: var(--ink);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
}

@media (max-width: 700px) {
  .page-home-da .footer-cta,
  .page-home-de .footer-cta {
    min-height: 520px;
  }

  .page-home-da .footer-cta::before,
  .page-home-de .footer-cta::before {
    background-image:
      linear-gradient(180deg, rgba(10, 13, 12, .84) 0%, rgba(10, 13, 12, .76) 100%),
      var(--home-cta-mobile-image);
    background-position: 58% center;
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home-da .footer-cta::before,
  .page-home-de .footer-cta::before {
    transform: scale(1.04);
    will-change: auto;
  }
}

@keyframes nuweb-hero-fan-deal {
  0% {
    left: 17%;
    bottom: 16%;
    transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * 3px), 0) rotate(13deg);
  }

  100% {
    left: var(--fan-final-left);
    bottom: var(--fan-final-bottom);
    transform: var(--fan-final-transform);
  }
}

@keyframes nuweb-hero-fan-arrive {
  0% {
    translate: calc(var(--hero-fan-x) + clamp(92px, 9vw, 150px)) var(--hero-fan-y);
  }

  100% {
    translate: var(--hero-fan-x) var(--hero-fan-y);
  }
}

@keyframes nuweb-hero-fan-turn {
  0% {
    rotate: calc(var(--hero-fan-rotation) - 10deg);
  }

  100% {
    rotate: var(--hero-fan-rotation);
  }
}

@keyframes nuweb-hero-decor-settle {
  0% {
    translate: var(--hero-decor-start-x) 0;
  }

  100% {
    translate: 0 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-home-da .home-hero .hero-orbit,
  .page-home-de .home-hero .hero-orbit {
    --hero-decor-start-x: -12px;
    animation: nuweb-hero-decor-settle .82s cubic-bezier(.22, 1, .36, 1) .06s backwards;
  }

  .page-home-da .home-hero .hero-dot-grid,
  .page-home-de .home-hero .hero-dot-grid {
    --hero-decor-start-x: -5px;
    animation: nuweb-hero-decor-settle 1.02s cubic-bezier(.22, 1, .36, 1) .06s backwards;
  }

  .page-home-da .home-hero .hero-project-fan,
  .page-home-de .home-hero .hero-project-fan {
    animation:
      nuweb-hero-fan-arrive 1.08s cubic-bezier(.4, 0, .2, 1) .06s backwards,
      nuweb-hero-fan-turn .82s cubic-bezier(.16, 1, .3, 1) .86s both;
    will-change: translate, rotate;
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card,
  .page-home-de .home-hero .hero-project-fan .hero-fan-card {
    animation: none;
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(-n + 4),
  .page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(-n + 4) {
    animation-name: nuweb-hero-fan-deal;
    animation-duration: .82s;
    animation-timing-function: cubic-bezier(.16, 1, .3, 1);
    animation-fill-mode: backwards;
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(4),
  .page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(4) {
    animation-delay: .86s;
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(3),
  .page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(3) {
    animation-delay: .94s;
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(2),
  .page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(2) {
    animation-delay: 1.02s;
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(1),
  .page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(1) {
    animation-delay: 1.1s;
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(5),
  .page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(5) {
    animation: none;
  }
}

/* Consistent heading weight across alternating surfaces. */
.page-home-da :is(h1, h2, h3, .craft-line strong),
.page-home-de :is(h1, h2, h3, .craft-line strong) {
  font-weight: 800;
  font-variation-settings: "wght" 800;
}

/* Compact, balanced project seal. */
.page-home-da .home-hero .hero-project-badge,
.page-home-de .home-hero .hero-project-badge {
  display: grid;
  place-items: center;
  width: clamp(136px, 10.5vw, 152px);
  padding: 0;
  text-align: left;
}

.page-home-da .home-hero .hero-project-badge > span,
.page-home-de .home-hero .hero-project-badge > span {
  display: grid;
  gap: 7px;
}

.page-home-da .home-hero .hero-project-badge strong,
.page-home-de .home-hero .hero-project-badge strong {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.015em;
}

.page-home-da .home-hero .hero-project-badge small,
.page-home-de .home-hero .hero-project-badge small {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .015em;
  white-space: nowrap;
}

.page-home-da .home-hero .hero-project-badge i,
.page-home-de .home-hero .hero-project-badge i {
  position: static;
  display: inline-block;
  margin-left: 4px;
  color: var(--logo-green);
  line-height: 1;
}

@media (max-width: 560px) {
  .page-home-da .home-hero .hero-project-badge,
  .page-home-de .home-hero .hero-project-badge {
    width: 112px;
    padding: 0;
  }

  .page-home-da .home-hero .hero-project-badge > span,
  .page-home-de .home-hero .hero-project-badge > span {
    gap: 5px;
  }

  .page-home-da .home-hero .hero-project-badge strong,
  .page-home-de .home-hero .hero-project-badge strong {
    font-size: .75rem;
  }

  .page-home-da .home-hero .hero-project-badge small,
  .page-home-de .home-hero .hero-project-badge small {
    font-size: .54rem;
  }
}

/* One complete horizontal story: all five points pass through a pinned frame. */
@media (min-width: 701px) {
  .page-home-da .craft-section[data-craft-scroll],
  .page-home-de .craft-section[data-craft-scroll] {
    height: calc(100vh + var(--craft-travel, 900px) + 180px);
    padding: 0;
    overflow: clip;
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-grid,
  .page-home-de .craft-section[data-craft-scroll] .craft-grid {
    position: sticky;
    top: 84px;
    align-content: center;
    min-height: calc(100vh - 84px);
    padding-block: clamp(48px, 6vh, 76px);
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-line,
  .page-home-de .craft-section[data-craft-scroll] .craft-line {
    margin-left: 0;
    padding-inline: 0;
    transform: translate3d(var(--craft-offset, 0px), 0, 0);
  }
}

/* Deliberately calm button motion instead of a quick jump. */
.page-home-da .button,
.page-home-de .button {
  transition:
    transform .42s cubic-bezier(.2, .75, .25, 1),
    border-color .34s ease,
    background-color .34s ease,
    color .34s ease,
    box-shadow .46s cubic-bezier(.2, .75, .25, 1);
}

.page-home-da .button::before,
.page-home-de .button::before {
  opacity: .72;
  transition: transform .78s cubic-bezier(.2, .75, .25, 1);
}

.page-home-da .button::after,
.page-home-de .button::after {
  transition: transform .42s cubic-bezier(.2, .75, .25, 1);
}

.page-home-da .button:hover,
.page-home-de .button:hover {
  transform: translateY(-2px);
}

.page-home-da .button:active,
.page-home-de .button:active {
  transform: translateY(0);
  transition-duration: .14s;
}

@media (prefers-reduced-motion: reduce) {
  .page-home-da .craft-section[data-craft-scroll],
  .page-home-de .craft-section[data-craft-scroll] {
    height: auto;
    padding: clamp(90px, 9vw, 126px) 0;
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-grid,
  .page-home-de .craft-section[data-craft-scroll] .craft-grid {
    position: static;
    min-height: 0;
    padding-block: 0;
  }
}

/* Editorial image panels for the five pinned topics. */
.page-home-da .craft-section[data-craft-scroll] .craft-line li:nth-child(n),
.page-home-de .craft-section[data-craft-scroll] .craft-line li:nth-child(n) {
  flex-basis: clamp(430px, 37vw, 520px);
  grid-template-columns: clamp(132px, 12vw, 164px) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 16px clamp(20px, 2.4vw, 30px);
  align-items: start;
  min-height: 230px;
}

.page-home-da .craft-visual,
.page-home-de .craft-visual {
  position: relative;
  grid-row: 1 / span 2;
  width: 100%;
  height: 218px;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  background: #dfeee8;
  box-shadow: 0 20px 46px rgba(17, 21, 19, .11);
}

.page-home-da .craft-visual::after,
.page-home-de .craft-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(10, 193, 142, .12));
  content: "";
  pointer-events: none;
}

.page-home-da .craft-visual img,
.page-home-de .craft-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) brightness(1.12) contrast(.88);
  transform: scale(1.04);
}

.page-home-da .craft-line li > strong,
.page-home-de .craft-line li > strong,
.page-home-da .craft-line li > p,
.page-home-de .craft-line li > p {
  grid-column: 2;
}

@media (max-width: 700px) {
  .page-home-da .craft-section[data-craft-scroll] .craft-line,
  .page-home-de .craft-section[data-craft-scroll] .craft-line {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-line li:nth-child(n),
  .page-home-de .craft-section[data-craft-scroll] .craft-line li:nth-child(n) {
    grid-column: 1;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 176px;
    padding: 24px 0;
    border-bottom: 0;
  }

  .page-home-da .craft-visual,
  .page-home-de .craft-visual {
    height: 164px;
    border-width: 5px;
  }
}

/* Dynamic desktop stage: text travels, imagery morphs in a fixed canvas. */
@media (min-width: 701px) {
  .page-home-da .craft-story,
  .page-home-de .craft-story {
    position: relative;
    height: clamp(260px, 38vh, 330px);
    min-height: 260px;
    overflow: visible;
  }

  .page-home-da .craft-story::after,
  .page-home-de .craft-story::after {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 58%;
    background: linear-gradient(90deg, #f5f7f3 0 70%, rgba(245, 247, 243, 0));
    content: "";
    pointer-events: none;
  }

  .page-home-da .craft-visual-stage,
  .page-home-de .craft-visual-stage {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 4;
    display: block;
    width: min(48vw, 540px);
    height: 100%;
    background: linear-gradient(90deg, rgba(245, 247, 243, 0), #f5f7f3 16%, #f5f7f3 100%);
    pointer-events: none;
  }

  .page-home-da .craft-visual-stage::before,
  .page-home-de .craft-visual-stage::before {
    position: absolute;
    top: 50%;
    right: 2%;
    width: min(34vw, 390px);
    aspect-ratio: 1;
    border: 1px solid rgba(10, 193, 142, .14);
    border-radius: 50%;
    background: rgba(10, 193, 142, .055);
    content: "";
    transform: translateY(-50%);
  }

  .page-home-da .craft-visual-stage figure,
  .page-home-de .craft-visual-stage figure {
    position: absolute;
    top: 50%;
    right: 3%;
    width: min(39vw, 460px);
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    padding: 7px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(17, 21, 19, .15);
    opacity: 0;
    transform: translate3d(74px, -50%, 0) rotate(3.2deg) scale(.955);
    will-change: transform, opacity;
  }

  .page-home-da .craft-visual-stage figure:first-child,
  .page-home-de .craft-visual-stage figure:first-child {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }

  .page-home-da .craft-visual-stage img,
  .page-home-de .craft-visual-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    filter: none;
    transform: none;
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-line,
  .page-home-de .craft-section[data-craft-scroll] .craft-line {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    transform: translate3d(var(--craft-offset, 0px), -50%, 0);
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-line li:nth-child(n),
  .page-home-de .craft-section[data-craft-scroll] .craft-line li:nth-child(n),
  .page-home-da .craft-section[data-craft-scroll] .craft-line li:nth-child(n):hover,
  .page-home-de .craft-section[data-craft-scroll] .craft-line li:nth-child(n):hover {
    flex-basis: clamp(430px, 38vw, 520px);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    align-content: center;
    min-height: 210px;
    padding: 16px clamp(32px, 4vw, 56px) 16px 0;
    border: 0;
    background: transparent;
    transform-origin: left center;
    translate: none;
    will-change: transform, opacity;
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-line .craft-visual,
  .page-home-de .craft-section[data-craft-scroll] .craft-line .craft-visual {
    display: none;
  }

  .page-home-da .craft-line li > strong,
  .page-home-de .craft-line li > strong,
  .page-home-da .craft-line li > p,
  .page-home-de .craft-line li > p {
    grid-column: 1;
  }

  .page-home-da .craft-line li > strong,
  .page-home-de .craft-line li > strong {
    max-width: 14ch;
    font-size: clamp(2.6rem, 3.55vw, 3.6rem);
    line-height: .98;
  }

  .page-home-da .craft-line li > p,
  .page-home-de .craft-line li > p {
    max-width: 34ch;
    font-size: clamp(1.4rem, 1.65vw, 1.52rem);
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 701px) {
  .page-home-da .craft-section[data-craft-scroll],
  .page-home-de .craft-section[data-craft-scroll] {
    height: auto;
    padding: clamp(90px, 9vw, 126px) 0;
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-grid,
  .page-home-de .craft-section[data-craft-scroll] .craft-grid {
    position: static;
    min-height: 0;
    padding-block: 0;
  }

  .page-home-da .craft-story,
  .page-home-de .craft-story {
    height: auto;
  }

  .page-home-da .craft-visual-stage,
  .page-home-de .craft-visual-stage {
    display: none;
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-line,
  .page-home-de .craft-section[data-craft-scroll] .craft-line {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    transform: none;
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-line li:nth-child(n),
  .page-home-de .craft-section[data-craft-scroll] .craft-line li:nth-child(n) {
    grid-column: auto;
    opacity: 1 !important;
    transform: none !important;
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-line .craft-visual,
  .page-home-de .craft-section[data-craft-scroll] .craft-line .craft-visual {
    display: block;
  }
}

/* A compact pinned frame: long scroll distance, but no oversized empty viewport. */
@media (min-width: 701px) and (prefers-reduced-motion: no-preference) {
  .page-home-da .craft-section[data-craft-scroll],
  .page-home-de .craft-section[data-craft-scroll] {
    --craft-entry-space: clamp(52px, 4.5vw, 72px);
    --craft-exit-space: clamp(72px, 7vh, 96px);
    --craft-stage-shift: clamp(44px, 7vh, 86px);
    height: calc(clamp(580px, calc(100vh - 180px), 780px) + var(--craft-stage-shift) + var(--craft-travel, 900px) + 120px + var(--craft-entry-space) + var(--craft-exit-space));
    padding-top: var(--craft-entry-space);
    padding-bottom: var(--craft-exit-space);
  }

  .page-home-da .craft-section[data-craft-scroll] .craft-grid,
  .page-home-de .craft-section[data-craft-scroll] .craft-grid {
    top: clamp(82px, 10vh, 110px);
    align-content: center;
    min-height: 0;
    height: calc(clamp(580px, calc(100vh - 180px), 780px) + var(--craft-stage-shift));
    gap: clamp(34px, 4vh, 52px);
    padding: calc(28px + var(--craft-stage-shift)) 0 28px;
    translate: none;
  }
}

@media (min-width: 701px) and (min-height: 1000px) and (prefers-reduced-motion: no-preference) {
  .page-home-da .craft-story,
  .page-home-de .craft-story {
    height: 470px;
  }

  .page-home-da .craft-visual-stage figure,
  .page-home-de .craft-visual-stage figure {
    width: min(48vw, 620px);
  }
}

/* Five CMS-sorted projects fan out from one shared corner. */
.page-home-da .home-hero .hero-project-fan,
.page-home-de .home-hero .hero-project-fan {
  --hero-fan-x: 12px;
  --hero-fan-y: -48px;
  --hero-fan-rotation: -3deg;
  isolation: isolate;
  min-height: clamp(480px, 47vw, 630px);
  translate: var(--hero-fan-x) var(--hero-fan-y);
  rotate: var(--hero-fan-rotation);
}

.page-home-da .home-hero .hero-project-fan .hero-fan-card,
.page-home-de .home-hero .hero-project-fan .hero-fan-card {
  top: auto;
  right: auto;
  width: min(76%, 500px);
  transform-origin: 9% 92%;
  translate: 0 0;
  transition:
    transform .9s cubic-bezier(.16, 1, .3, 1),
    translate .9s cubic-bezier(.16, 1, .3, 1),
    scale .82s cubic-bezier(.16, 1, .3, 1),
    opacity .55s ease;
  will-change: transform, translate;
}

.page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(1),
.page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(1) {
  --fan-layer: 1;
  --fan-peek-x: -28px;
  --fan-peek-y: -4px;
  --fan-final-left: 1%;
  --fan-final-bottom: 8%;
  --fan-final-transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * -14px), -48px) rotate(-20deg);
  z-index: 1;
  left: 1%;
  bottom: 8%;
  transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * -14px), -48px) rotate(-20deg);
}

.page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(2),
.page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(2) {
  --fan-layer: 2;
  --fan-peek-x: -26px;
  --fan-peek-y: -4px;
  --fan-final-left: 5%;
  --fan-final-bottom: 10%;
  --fan-final-transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * -10px), -36px) rotate(-10deg);
  z-index: 2;
  left: 5%;
  bottom: 10%;
  transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * -10px), -36px) rotate(-10deg);
}

.page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(3),
.page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(3) {
  --fan-layer: 3;
  --fan-peek-x: -24px;
  --fan-peek-y: -4px;
  --fan-final-left: 9%;
  --fan-final-bottom: 12%;
  --fan-final-transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * -6px), -24px) rotate(0deg);
  z-index: 3;
  left: 9%;
  bottom: 12%;
  transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * -6px), -24px) rotate(0deg);
}

.page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(4),
.page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(4) {
  --fan-layer: 4;
  --fan-peek-x: -22px;
  --fan-peek-y: -4px;
  --fan-final-left: 13%;
  --fan-final-bottom: 14%;
  --fan-final-transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * -2px), -12px) rotate(7deg);
  z-index: 4;
  left: 13%;
  bottom: 14%;
  transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * -2px), -12px) rotate(7deg);
}

.page-home-da .home-hero .hero-project-fan .hero-fan-card:nth-child(5),
.page-home-de .home-hero .hero-project-fan .hero-fan-card:nth-child(5) {
  --fan-layer: 5;
  --fan-peek-x: -18px;
  --fan-peek-y: -4px;
  z-index: 5;
  left: 17%;
  bottom: 16%;
  transform: translate3d(0, calc((var(--scene-progress, .45) - .45) * 3px), 0) rotate(13deg);
}

.page-home-da .home-hero .hero-project-fan .project-window,
.page-home-de .home-hero .hero-project-fan .project-window {
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, .86),
    0 24px 54px rgba(22, 30, 27, .14);
  transition: box-shadow .72s cubic-bezier(.16, 1, .3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .page-home-da .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(1),
  .page-home-de .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(1) {
    transform: translate3d(-18px, -5px, -48px) rotate(-20deg);
  }

  .page-home-da .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(2),
  .page-home-de .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(2) {
    transform: translate3d(-9px, -3px, -36px) rotate(-10deg);
  }

  .page-home-da .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(3),
  .page-home-de .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(3) {
    transform: translate3d(0, 0, -24px) rotate(0);
  }

  .page-home-da .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(4),
  .page-home-de .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(4) {
    transform: translate3d(10px, -3px, -12px) rotate(10deg);
  }

  .page-home-da .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(5),
  .page-home-de .home-hero .hero-project-fan:hover .hero-fan-card:nth-child(5) {
    transform: translate3d(20px, -5px, 0) rotate(20deg);
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card:hover,
  .page-home-de .home-hero .hero-project-fan .hero-fan-card:hover,
  .page-home-da .home-hero .hero-project-fan .hero-fan-card:focus-visible,
  .page-home-de .home-hero .hero-project-fan .hero-fan-card:focus-visible {
    z-index: var(--fan-layer, 1);
    translate: var(--fan-peek-x, 0px) var(--fan-peek-y, -14px);
    scale: 1.015;
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card:hover .project-window,
  .page-home-de .home-hero .hero-project-fan .hero-fan-card:hover .project-window {
    box-shadow:
      0 0 0 7px rgba(255, 255, 255, .94),
      0 30px 66px rgba(22, 30, 27, .2);
  }
}

@media (max-width: 900px) {
  .page-home-da .home-hero .hero-project-fan,
  .page-home-de .home-hero .hero-project-fan {
    --hero-fan-x: 0px;
    --hero-fan-y: -18px;
    --hero-fan-rotation: -2deg;
    min-height: clamp(430px, 68vw, 570px);
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card,
  .page-home-de .home-hero .hero-project-fan .hero-fan-card {
    width: min(74%, 490px);
  }
}

@media (max-width: 560px) {
  .page-home-da .home-hero .hero-project-fan,
  .page-home-de .home-hero .hero-project-fan {
    --hero-fan-y: 0px;
    --hero-fan-rotation: -1deg;
    min-height: clamp(280px, 75vw, 330px);
  }

  .page-home-da .home-hero .hero-project-fan .hero-fan-card,
  .page-home-de .home-hero .hero-project-fan .hero-fan-card {
    width: 76%;
  }

  .page-home-da .home-hero .hero-project-fan .project-window,
  .page-home-de .home-hero .hero-project-fan .project-window {
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, .88),
      0 18px 38px rgba(22, 30, 27, .13);
  }
}

/* Desktop reading sizes: generous body copy, compact metadata. */
@media (min-width: 901px) {
  .page-home-da .home-hero .hero-copy h1,
  .page-home-de .home-hero .hero-copy h1 {
    font-size: clamp(2.95rem, 3.8vw, 4.25rem);
    line-height: 1.07;
  }

  .page-home-da .home-hero .hero-copy p,
  .page-home-de .home-hero .hero-copy p {
    max-width: 44ch;
    font-size: clamp(1.28rem, 1.5vw, 1.38rem);
    line-height: 1.48;
  }

  .page-home-da .craft-intro p,
  .page-home-de .craft-intro p,
  .page-home-da .competence-proof p:not(.eyebrow),
  .page-home-de .competence-proof p:not(.eyebrow),
  .page-home-da .workflow-section.dark-band p,
  .page-home-de .workflow-section.dark-band p,
  .page-home-da .footer-cta .cta-panel p,
  .page-home-de .footer-cta .cta-panel p {
    font-size: 1.25rem;
    line-height: 1.64;
  }

  .page-home-da .solution-editorial-list p,
  .page-home-de .solution-editorial-list p,
  .page-home-da .project-stage-copy p,
  .page-home-de .project-stage-copy p {
    font-size: 1.16rem;
    line-height: 1.62;
  }

  .page-home-da .project-rail-item > div > p:not(.meta),
  .page-home-de .project-rail-item > div > p:not(.meta) {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .page-home-da .process-section .process-grid article p,
  .page-home-de .process-section .process-grid article p {
    font-size: 1.18rem;
    line-height: 1.65;
  }
}

/* Compact tool composition: large symbols overlap a smaller supporting disc. */
.page-home-da .competence-icon-cloud,
.page-home-de .competence-icon-cloud {
  width: min(410px, 35vw);
}

.page-home-da .competence-icon-cloud::before,
.page-home-de .competence-icon-cloud::before {
  inset: auto;
  top: 21%;
  left: 17%;
  width: 58%;
  aspect-ratio: 1;
}

.page-home-da .icon-socialdock,
.page-home-de .icon-socialdock {
  top: 23%;
  left: 7%;
  width: clamp(116px, 9.2vw, 132px);
}

.page-home-da .icon-dotflow,
.page-home-de .icon-dotflow {
  top: 0;
  right: auto;
  left: 33%;
  width: clamp(132px, 10.3vw, 148px);
}

.page-home-da .icon-mapmax,
.page-home-de .icon-mapmax {
  bottom: 5%;
  left: 25%;
  width: clamp(108px, 8.5vw, 122px);
}

.page-home-da .icon-beam,
.page-home-de .icon-beam {
  top: 30%;
  right: 3%;
  bottom: auto;
  width: clamp(156px, 12.5vw, 180px);
}

@media (max-width: 900px) {
  .page-home-da .competence-icon-cloud,
  .page-home-de .competence-icon-cloud {
    width: min(350px, 82vw);
  }
}

/* Closing scroll scene: full image first, reduced CTA second. */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .page-home-da,
  .page-home-de {
    --home-cta-scene-height: calc(100vh + clamp(760px, 104vh, 940px));
  }

  .page-home-da .footer-cta,
  .page-home-de .footer-cta {
    position: relative;
    z-index: 10;
    display: block;
    height: var(--home-cta-scene-height);
    min-height: 0;
    margin-top: 0;
    padding: 0;
    overflow: clip;
    background: #edf2ee;
  }

  .page-home-da .footer-cta::before,
  .page-home-de .footer-cta::before {
    display: none;
  }

  .page-home-da .footer-cta .cta-panel,
  .page-home-de .footer-cta .cta-panel {
    position: sticky;
    top: var(--cta-panel-top, 0px);
    display: flex;
    width: 100%;
    max-width: none;
    height: var(--cta-panel-height, 100vh);
    align-items: flex-start;
    justify-content: center;
    gap: var(--cta-panel-gap, 28px);
    padding: var(--cta-top-inset, 0) max(32px, calc((100vw - 1240px) / 2)) 0;
    overflow: hidden;
    isolation: isolate;
  }

  .page-home-da .footer-cta .cta-panel::before,
  .page-home-de .footer-cta .cta-panel::before,
  .page-home-da .footer-cta .cta-panel::after,
  .page-home-de .footer-cta .cta-panel::after {
    position: absolute;
    inset: 0;
    display: block;
    border: 0;
    border-radius: 0;
    clip-path: inset(var(--cta-top-inset, 0) 0 0 0);
    content: "";
    transform: translateZ(0);
    will-change: clip-path;
  }

  .page-home-da .footer-cta .cta-panel::before,
  .page-home-de .footer-cta .cta-panel::before {
    z-index: 0;
    background-image: var(--home-cta-image);
    background-position: center calc(50% + var(--cta-image-shift, 0px));
    background-repeat: no-repeat;
    background-size: var(--cta-background-width, 100%) auto;
  }

  .page-home-da .footer-cta .cta-panel::after,
  .page-home-de .footer-cta .cta-panel::after {
    z-index: 1;
    background: linear-gradient(90deg, rgba(7, 10, 9, .94) 0%, rgba(7, 10, 9, .78) 48%, rgba(7, 10, 9, .36) 100%);
    opacity: var(--cta-overlay-opacity, .2);
  }

  .page-home-da .footer-cta .cta-panel > div,
  .page-home-de .footer-cta .cta-panel > div {
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    transition: none !important;
  }

  .page-home-da .footer-cta .cta-panel h2,
  .page-home-de .footer-cta .cta-panel h2 {
    font-size: var(--cta-heading-size, clamp(2.4rem, 3.5vw, 3.75rem));
    opacity: var(--cta-heading-progress, 0);
    transform: translate3d(0, var(--cta-heading-offset, 30px), 0);
    will-change: transform, opacity;
    transition: none !important;
  }

  .page-home-da .footer-cta .cta-panel p,
  .page-home-de .footer-cta .cta-panel p {
    font-size: var(--cta-copy-size, 1.25rem);
    opacity: var(--cta-copy-progress, 0);
    transform: translate3d(0, var(--cta-copy-offset, 24px), 0);
    will-change: transform, opacity;
    transition: none !important;
  }

  .page-home-da .footer-cta .cta-panel > .button,
  .page-home-de .footer-cta .cta-panel > .button {
    position: relative;
    z-index: 2;
    opacity: var(--cta-button-progress, 0);
    transform: translate3d(0, var(--cta-button-offset, 20px), 0);
    will-change: transform, opacity;
    transition:
      border-color .34s ease,
      background-color .34s ease,
      color .34s ease,
      box-shadow .46s cubic-bezier(.2, .75, .25, 1) !important;
  }
}

/* Distinct section entrances keep the homepage lively without adding more sticky scenes. */
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .page-home-da .competence-icon-cloud[data-motion="reveal"],
  .motion-ready .page-home-de .competence-icon-cloud[data-motion="reveal"] {
    transform: translate3d(-46px, 18px, 0) scale(.94);
    transition-duration: 1s;
  }

  .motion-ready .page-home-da .competence-proof-copy[data-motion="reveal"],
  .motion-ready .page-home-de .competence-proof-copy[data-motion="reveal"] {
    transform: translate3d(48px, 0, 0);
    transition-duration: .94s;
  }

  .motion-ready .page-home-da .editorial-heading[data-motion="reveal"],
  .motion-ready .page-home-de .editorial-heading[data-motion="reveal"],
  .motion-ready .page-home-da .project-stage-copy[data-motion="reveal"],
  .motion-ready .page-home-de .project-stage-copy[data-motion="reveal"] {
    transform: translate3d(-48px, 0, 0);
    transition-duration: .96s;
  }

  .motion-ready .page-home-da .solution-editorial-list article[data-motion="reveal"],
  .motion-ready .page-home-de .solution-editorial-list article[data-motion="reveal"],
  .motion-ready .page-home-da .project-rail-item[data-motion="reveal"],
  .motion-ready .page-home-de .project-rail-item[data-motion="reveal"] {
    transform: translate3d(0, 52px, 0) scale(.97);
    transition-duration: .92s;
  }

  .motion-ready .page-home-da .workflow-section .feature-split > figure[data-motion="reveal"],
  .motion-ready .page-home-de .workflow-section .feature-split > figure[data-motion="reveal"] {
    transform: translate3d(-54px, 0, 0) scale(.965);
    transition-duration: 1s;
  }

  .motion-ready .page-home-da .workflow-section .feature-split > div[data-motion="reveal"],
  .motion-ready .page-home-de .workflow-section .feature-split > div[data-motion="reveal"] {
    transform: translate3d(50px, 0, 0);
    transition-duration: .96s;
  }

  .motion-ready .page-home-da .process-section > .section-inner > h2[data-motion="reveal"],
  .motion-ready .page-home-de .process-section > .section-inner > h2[data-motion="reveal"] {
    transform: translate3d(0, 46px, 0);
    transition-duration: .96s;
  }

  .motion-ready .page-home-da .competence-icon-cloud[data-motion="reveal"].is-visible,
  .motion-ready .page-home-de .competence-icon-cloud[data-motion="reveal"].is-visible,
  .motion-ready .page-home-da .competence-proof-copy[data-motion="reveal"].is-visible,
  .motion-ready .page-home-de .competence-proof-copy[data-motion="reveal"].is-visible,
  .motion-ready .page-home-da .editorial-heading[data-motion="reveal"].is-visible,
  .motion-ready .page-home-de .editorial-heading[data-motion="reveal"].is-visible,
  .motion-ready .page-home-da .solution-editorial-list article[data-motion="reveal"].is-visible,
  .motion-ready .page-home-de .solution-editorial-list article[data-motion="reveal"].is-visible,
  .motion-ready .page-home-da .workflow-section .feature-split > figure[data-motion="reveal"].is-visible,
  .motion-ready .page-home-de .workflow-section .feature-split > figure[data-motion="reveal"].is-visible,
  .motion-ready .page-home-da .workflow-section .feature-split > div[data-motion="reveal"].is-visible,
  .motion-ready .page-home-de .workflow-section .feature-split > div[data-motion="reveal"].is-visible,
  .motion-ready .page-home-da .project-stage-copy[data-motion="reveal"].is-visible,
  .motion-ready .page-home-de .project-stage-copy[data-motion="reveal"].is-visible,
  .motion-ready .page-home-da .project-rail-item[data-motion="reveal"].is-visible,
  .motion-ready .page-home-de .project-rail-item[data-motion="reveal"].is-visible,
  .motion-ready .page-home-da .process-section > .section-inner > h2[data-motion="reveal"].is-visible,
  .motion-ready .page-home-de .process-section > .section-inner > h2[data-motion="reveal"].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Final alignment polish for the homepage narrative. */
@media (max-width: 700px) {
  .page-home-da .craft-visual-stage,
  .page-home-de .craft-visual-stage {
    display: none;
  }
}

@media (min-width: 901px) {
  .page-home-da .project-stage-copy,
  .page-home-de .project-stage-copy {
    align-items: start;
    column-gap: clamp(60px, 10vw, 150px);
    row-gap: 24px;
  }

  .page-home-da .project-stage-copy h2,
  .page-home-de .project-stage-copy h2,
  .page-home-da .project-stage-copy p,
  .page-home-de .project-stage-copy p,
  .page-home-da .project-stage-copy .text-link,
  .page-home-de .project-stage-copy .text-link {
    align-self: start;
  }
}

/* Flat typographic buttons: no icon slot and no decorative direction glyph. */
.button::before,
.button::after {
  display: none;
  content: none;
}

/* Editorial references: one lead project balanced by two substantial companions. */
.page-home-da .project-rail-item,
.page-home-de .project-rail-item,
.page-home-da .project-rail-item:nth-child(n),
.page-home-de .project-rail-item:nth-child(n) {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  translate: none;
}

.page-home-da .project-rail-item:hover,
.page-home-de .project-rail-item:hover {
  box-shadow: none;
}

.page-home-da .project-rail-item figure,
.page-home-de .project-rail-item figure {
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 10px;
  background: #e7ece8;
  transition: transform .62s cubic-bezier(.16, 1, .3, 1);
}

.page-home-da .project-rail-item figure img,
.page-home-de .project-rail-item figure img,
.page-home-da .project-rail-item:hover figure img,
.page-home-de .project-rail-item:hover figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
}

.page-home-da .project-rail-item:hover figure,
.page-home-de .project-rail-item:hover figure,
.page-home-da .project-rail-item:focus-visible figure,
.page-home-de .project-rail-item:focus-visible figure {
  transform: translate3d(0, -6px, 0);
}

.page-home-da .project-rail-item > div,
.page-home-de .project-rail-item > div {
  min-height: 0;
  padding: 22px 2px 0;
}

@media (min-width: 981px) {
  .page-home-da .project-rail,
  .page-home-de .project-rail {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    grid-template-rows: repeat(2, minmax(0, auto));
    gap: 34px 42px;
    align-items: stretch;
  }

  .page-home-da .project-rail-item:first-child,
  .page-home-de .project-rail-item:first-child {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
  }

  .page-home-da .project-rail-item:first-child figure,
  .page-home-de .project-rail-item:first-child figure {
    aspect-ratio: 16 / 9;
  }

  .page-home-da .project-rail-item:nth-child(2),
  .page-home-de .project-rail-item:nth-child(2),
  .page-home-da .project-rail-item:nth-child(3),
  .page-home-de .project-rail-item:nth-child(3) {
    grid-column: 2;
    display: grid;
    grid-template-columns: minmax(260px, 1.08fr) minmax(0, .92fr);
    gap: 28px;
    align-items: start;
  }

  .page-home-da .project-rail-item:nth-child(2),
  .page-home-de .project-rail-item:nth-child(2) {
    grid-row: 1;
  }

  .page-home-da .project-rail-item:nth-child(3),
  .page-home-de .project-rail-item:nth-child(3) {
    grid-row: 2;
  }

  .page-home-da .project-rail-item:first-child > div,
  .page-home-de .project-rail-item:first-child > div {
    max-width: 600px;
    padding-top: 26px;
  }

  .page-home-da .project-rail-item:nth-child(2) > div,
  .page-home-de .project-rail-item:nth-child(2) > div,
  .page-home-da .project-rail-item:nth-child(3) > div,
  .page-home-de .project-rail-item:nth-child(3) > div {
    padding: 2px 0 0;
  }

  .page-home-da .project-rail-item:nth-child(2) > div > p:not(.meta),
  .page-home-de .project-rail-item:nth-child(2) > div > p:not(.meta),
  .page-home-da .project-rail-item:nth-child(3) > div > p:not(.meta),
  .page-home-de .project-rail-item:nth-child(3) > div > p:not(.meta) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 1.02rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

/* --------------------------------------------------------------------------
   User-selectable colour scheme
   -------------------------------------------------------------------------- */

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .46s;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}

html.theme-transitioning,
html.theme-transitioning body,
html.theme-transitioning body :where(
  header,
  main,
  section,
  article,
  aside,
  nav,
  footer,
  div,
  a,
  button,
  summary,
  p,
  h1,
  h2,
  h3,
  svg,
  path
) {
  transition-property: color, background-color, border-color, box-shadow, fill, stroke !important;
  transition-duration: .46s !important;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
}

.page-home-da .theme-picker,
.page-home-de .theme-picker {
  color: var(--ink);
}

.page-home-da .theme-picker-summary,
.page-home-de .theme-picker-summary {
  border-color: rgba(17, 21, 19, .14);
  background: rgba(255, 255, 255, .56);
}

html[data-theme="dark"] body,
html[data-theme="dark"] main {
  background-color: var(--paper);
  color: var(--ink);
}

html[data-theme="dark"] :is(.page-home-da, .page-home-de) {
  --paper: #0d1110;
  --ink: #f1f5f2;
  --muted: #aeb7b2;
  --line: #303936;
  --green-text: var(--logo-green);
  --home-soft-green: #10241f;
  --home-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  background: var(--paper);
}

html[data-theme="dark"] :where(
  .legal-section,
  .ip-service-section,
  .support-panel,
  .intro-band,
  .contact-note,
  .multilingual-section,
  .multilingual-strip,
  .multilingual-strip-section,
  .website-landing-faq,
  .website-landing-showcase-section,
  .process-section,
  .project-wide,
  .pricing-package,
  .pricing-closing-section,
  .blog-card,
  .related-link
) {
  background: var(--surface);
  color: var(--ink);
}

html[data-theme="dark"] :where(
  .solution-card,
  .project-card,
  .blog-card,
  .blog-aside-box,
  .blog-faq article,
  .pricing-card,
  .website-landing-card-grid article,
  .website-landing-process-grid article,
  .contact-bento article,
  .process-grid article,
  .related-link
) {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

html[data-theme="dark"] .blog-aside-box :is(.blog-aside-label, strong, a, button),
html[data-theme="dark"] .blog-faq article :is(h3, p) {
  color: var(--ink);
}

html[data-theme="dark"] .blog-aside-box p,
html[data-theme="dark"] .blog-faq article p {
  color: var(--muted);
}

html[data-theme="dark"] .support-tool-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}

html[data-theme="dark"] .contact-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}

html[data-theme="dark"] .site-header[data-scrolled],
html[data-theme="dark"] .site-header[data-menu-open],
html[data-theme="dark"] .page-home-da .site-header[data-scrolled],
html[data-theme="dark"] .page-home-de .site-header[data-scrolled],
html[data-theme="dark"] .page-home-da .site-header[data-menu-open],
html[data-theme="dark"] .page-home-de .site-header[data-menu-open] {
  border-color: rgba(255, 255, 255, .08);
  background: var(--header-surface);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
}

html[data-theme="dark"] .page-home-da .site-header,
html[data-theme="dark"] .page-home-de .site-header,
html[data-theme="dark"] .page-home-da .site-header .nav-links,
html[data-theme="dark"] .page-home-de .site-header .nav-links,
html[data-theme="dark"] .page-home-da .theme-picker,
html[data-theme="dark"] .page-home-de .theme-picker {
  color: var(--ink);
}

html[data-theme="dark"] .page-home-da .site-header .brand-logo path[style*="fill:#fff"],
html[data-theme="dark"] .page-home-de .site-header .brand-logo path[style*="fill:#fff"] {
  fill: var(--ink) !important;
}

html[data-theme="dark"] :where(
  .language-link,
  .theme-picker-summary,
  .nav-toggle
),
html[data-theme="dark"] .page-home-da .site-header :where(.language-link, .theme-picker-summary, .nav-toggle),
html[data-theme="dark"] .page-home-de .site-header :where(.language-link, .theme-picker-summary, .nav-toggle) {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
  color: var(--ink);
}

html[data-theme="dark"] .theme-picker-menu {
  border-color: var(--line);
  background: var(--surface-elevated);
  color: var(--ink);
}

html[data-theme="dark"] .page-home-da .home-hero,
html[data-theme="dark"] .page-home-de .home-hero {
  border-color: var(--line);
  color: var(--ink);
}

.page-home-da .home-hero,
.page-home-de .home-hero {
  background-color: var(--paper);
  background-image: radial-gradient(circle at 68% 40%, rgba(10, 193, 142, .075), transparent 30%);
}

html[data-theme="dark"] .home-hero .hero-orbit {
  border-color: rgba(10, 193, 142, .2);
  background: rgba(10, 193, 142, .06);
}

html[data-theme="dark"] .home-hero .hero-dot-grid {
  background-image: radial-gradient(circle, rgba(241, 245, 242, .68) 2.2px, transparent 2.45px);
}

html[data-theme="dark"] :where(.client-proof, .page-home-da .craft-section, .page-home-de .craft-section, .page-home-da .solutions-editorial, .page-home-de .solutions-editorial, .page-home-da .project-stage, .page-home-de .project-stage) {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

html[data-theme="dark"] .client-proof-mark,
html[data-theme="dark"] .page-home-da .client-proof-mark,
html[data-theme="dark"] .page-home-de .client-proof-mark {
  color: var(--muted);
}

html[data-theme="dark"] body.page-home-da .competence-proof-section,
html[data-theme="dark"] body.page-home-de .competence-proof-section,
html[data-theme="dark"] body.page-home-da .workflow-section.dark-band,
html[data-theme="dark"] body.page-home-de .workflow-section.dark-band {
  background: var(--surface);
  color: var(--ink);
}

html[data-theme="dark"] .page-home-da .competence-icon-cloud::before,
html[data-theme="dark"] .page-home-de .competence-icon-cloud::before,
html[data-theme="dark"] .page-home-da .workflow-section.dark-band::before,
html[data-theme="dark"] .page-home-de .workflow-section.dark-band::before {
  border-color: rgba(10, 193, 142, .2);
  background: var(--surface-green);
}

html[data-theme="dark"] .page-home-da .solution-editorial-list article,
html[data-theme="dark"] .page-home-de .solution-editorial-list article {
  border: 1px solid var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

html[data-theme="dark"] .page-home-da .solution-editorial-list article:nth-child(2),
html[data-theme="dark"] .page-home-de .solution-editorial-list article:nth-child(2) {
  background: var(--surface-green);
}

html[data-theme="dark"] body.page-home-da .workflow-media,
html[data-theme="dark"] body.page-home-de .workflow-media {
  background: var(--surface-elevated);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .26);
}

html[data-theme="dark"] .page-home-da .project-rail-item figure,
html[data-theme="dark"] .page-home-de .project-rail-item figure {
  background: var(--surface-elevated);
}

html[data-theme="dark"] .page-home-da .craft-story::after,
html[data-theme="dark"] .page-home-de .craft-story::after {
  background: linear-gradient(90deg, #0d1110 0 70%, rgba(13, 17, 16, 0));
}

html[data-theme="dark"] .page-home-da .craft-visual-stage,
html[data-theme="dark"] .page-home-de .craft-visual-stage {
  background: linear-gradient(90deg, rgba(13, 17, 16, 0), #0d1110 16%, #0d1110 100%);
}

html[data-theme="dark"] .page-home-da .craft-visual-stage figure,
html[data-theme="dark"] .page-home-de .craft-visual-stage figure {
  padding: 1px;
  border: 1px solid rgba(241, 245, 242, .13);
  background: #171c1a;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .38);
}

html[data-theme="dark"] .page-home-da .craft-visual-stage img,
html[data-theme="dark"] .page-home-de .craft-visual-stage img {
  border-radius: 10px;
}

html[data-theme="dark"] .page-home-da .craft-visual,
html[data-theme="dark"] .page-home-de .craft-visual {
  border-color: #171c1a;
  background: #121715;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .3);
}

html[data-theme="dark"] body.page-home-da .home-hero .hero-project-fan .project-window,
html[data-theme="dark"] body.page-home-de .home-hero .hero-project-fan .project-window {
  border-color: rgba(241, 245, 242, .12);
  background: #1b211e;
  box-shadow:
    0 0 0 7px rgba(46, 53, 50, .96),
    0 26px 58px rgba(0, 0, 0, .34);
}

html[data-theme="dark"] body.page-home-da .home-hero .project-window-bar,
html[data-theme="dark"] body.page-home-de .home-hero .project-window-bar {
  border-bottom-color: rgba(241, 245, 242, .09);
  background: #242b28;
}

html[data-theme="dark"] body.page-home-da .home-hero .project-window-bar i,
html[data-theme="dark"] body.page-home-de .home-hero .project-window-bar i {
  background: rgba(241, 245, 242, .42);
}

@media (hover: hover) and (pointer: fine) {
  html[data-theme="dark"] body.page-home-da .home-hero .hero-project-fan .hero-fan-card:hover .project-window,
  html[data-theme="dark"] body.page-home-de .home-hero .hero-project-fan .hero-fan-card:hover .project-window {
    box-shadow:
      0 0 0 7px rgba(58, 67, 63, .98),
      0 32px 70px rgba(0, 0, 0, .42);
  }
}

@media (max-width: 560px) {
  html[data-theme="dark"] body.page-home-da .home-hero .hero-project-fan .project-window,
  html[data-theme="dark"] body.page-home-de .home-hero .hero-project-fan .project-window {
    box-shadow:
      0 0 0 5px rgba(46, 53, 50, .96),
      0 20px 42px rgba(0, 0, 0, .32);
  }
}

html[data-theme="dark"] .page-home-da .process-section,
html[data-theme="dark"] .page-home-de .process-section {
  background: #101513;
  color: var(--ink);
}

html[data-theme="dark"] body.page-home-da .process-section .process-grid article:first-child,
html[data-theme="dark"] body.page-home-de .process-section .process-grid article:first-child {
  border-color: rgba(255, 255, 255, .08);
  background: #080b0a;
  color: #fffefa;
}

html[data-theme="dark"] body.page-home-da .footer-cta,
html[data-theme="dark"] body.page-home-de .footer-cta {
  background-color: var(--paper);
}

html[data-theme="dark"] .page-home-da .process-section .process-grid article:nth-child(2),
html[data-theme="dark"] .page-home-de .process-section .process-grid article:nth-child(2) {
  border-color: rgba(10, 193, 142, .22);
  background: var(--surface-green);
  color: var(--ink);
}

html[data-theme="dark"] .page-home-da .process-section .process-grid article:nth-child(3),
html[data-theme="dark"] .page-home-de .process-section .process-grid article:nth-child(3) {
  border-color: var(--line);
  background: var(--surface-elevated);
  color: var(--ink);
}

html[data-theme="dark"] .page-home-da .button,
html[data-theme="dark"] .page-home-de .button {
  border-color: #edf3ef;
  background: #edf3ef;
  color: #101412;
}

html[data-theme="dark"] .page-home-da .button:hover,
html[data-theme="dark"] .page-home-de .button:hover {
  border-color: #ffffff;
  background: #ffffff;
}

html[data-theme="dark"] .page-home-da .button-ghost,
html[data-theme="dark"] .page-home-de .button-ghost {
  border-color: rgba(241, 245, 242, .28);
  background: transparent;
  color: var(--ink);
}

html[data-theme="dark"] .page-home-da .button-ghost:hover,
html[data-theme="dark"] .page-home-de .button-ghost:hover {
  border-color: rgba(241, 245, 242, .48);
  background: var(--surface-elevated);
}

@media (max-width: 900px) {
  html[data-theme="dark"] .page-home-da .site-header .nav-links,
  html[data-theme="dark"] .page-home-de .site-header .nav-links {
    border-color: var(--line);
    background: var(--surface-elevated);
    color: var(--ink);
  }
}

@media (max-width: 560px) {
  .theme-picker-summary {
    width: 40px;
    height: 40px;
  }

  .theme-picker-menu {
    right: -48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }

  html.theme-transitioning,
  html.theme-transitioning body,
  html.theme-transitioning body * {
    transition: none !important;
  }
}

/* Final compact process stack: solid cards, short offsets and no fade overlap. */
.page-home-da .process-section,
.page-home-de .process-section {
  padding-bottom: clamp(72px, 7vw, 104px);
}

.page-home-da .process-section .process-grid,
.page-home-de .process-section .process-grid {
  gap: 18px;
}

.page-home-da .process-section .process-grid article,
.page-home-de .process-section .process-grid article,
.page-home-da .process-section .process-grid article:nth-child(n),
.page-home-de .process-section .process-grid article:nth-child(n) {
  top: 108px;
  min-height: clamp(270px, 20vw, 292px);
  padding: clamp(38px, 4vw, 50px);
  opacity: 1;
  transform: none;
  transition: none;
}

.page-home-da .process-section .process-grid article:nth-child(2),
.page-home-de .process-section .process-grid article:nth-child(2) {
  top: 130px;
}

.page-home-da .process-section .process-grid article:nth-child(3),
.page-home-de .process-section .process-grid article:nth-child(3) {
  top: 152px;
}

.page-home-da .process-section .process-grid article::after,
.page-home-de .process-section .process-grid article::after {
  -webkit-text-stroke-color: rgba(255, 255, 255, .34);
}

.page-home-da .process-section .process-grid article:nth-child(2)::after,
.page-home-de .process-section .process-grid article:nth-child(2)::after,
.page-home-da .process-section .process-grid article:nth-child(3)::after,
.page-home-de .process-section .process-grid article:nth-child(3)::after {
  color: rgba(17, 21, 19, .075);
}

/* Project previews remain scrollable without a permanent scrollbar or grip. */
.browser-viewport {
  scrollbar-width: none;
}

.browser-viewport::-webkit-scrollbar {
  display: none;
}

.browser-scroll-cue {
  display: none;
}

/* The customer logos float between sections without a separate panel. */
body.page-home-da .client-proof,
body.page-home-de .client-proof,
html[data-theme="dark"] body.page-home-da .client-proof,
html[data-theme="dark"] body.page-home-de .client-proof {
  border: 0;
  background: transparent;
}

body.page-home-da .home-hero,
body.page-home-de .home-hero {
  border-bottom: 0;
}

.client-logo-marquee,
.client-logo-set {
  border: 0;
  background: transparent;
}

/* Denmark-only multilingual offer: a compact service row, not a separate stage. */
.page-home-da .solution-editorial-list .solution-editorial-region,
html[data-theme="dark"] .page-home-da .solution-editorial-list .solution-editorial-region {
  grid-column: 1 / -1;
  min-height: 0;
  margin-top: clamp(18px, 2vw, 28px);
  padding: 0;
  border: 0;
  border-block: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  translate: none;
  rotate: none;
}

.page-home-da .solution-editorial-list .solution-editorial-region::before {
  display: none;
}

.page-home-da .solution-editorial-region > a {
  display: grid;
  grid-template-columns: minmax(170px, .52fr) minmax(250px, .8fr) minmax(310px, 1.1fr) auto;
  gap: clamp(24px, 3vw, 46px);
  align-items: center;
  padding: 30px 0;
}

.page-home-da .solution-editorial-region .solution-region-meta {
  grid-row: auto;
  color: var(--green-text);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.page-home-da .solution-editorial-region h3,
.page-home-da .solution-editorial-region p {
  grid-column: auto;
  margin: 0;
}

.page-home-da .solution-editorial-region h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.12;
}

.page-home-da .solution-editorial-region p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.page-home-da .solution-editorial-region .text-link {
  grid-row: auto;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .page-home-da .solution-editorial-region > a {
    grid-template-columns: minmax(150px, .45fr) minmax(0, 1fr);
  }

  .page-home-da .solution-editorial-region p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .page-home-da .solution-editorial-region > a {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .page-home-da .solution-editorial-region p {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .page-home-da .process-section .process-grid article,
  .page-home-de .process-section .process-grid article,
  .page-home-da .process-section .process-grid article:nth-child(n),
  .page-home-de .process-section .process-grid article:nth-child(n) {
    top: auto;
    min-height: 220px;
    padding: 32px 26px;
  }
}

/* Inner-page final cascade: keep image-led headers distinct, all other controls readable. */
body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links > a.is-active {
  color: var(--ink);
}

body:not(.page-home-da):not(.page-home-de) .project-action-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

body:not(.page-home-da):not(.page-home-de) .project-action-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.website-landing-process-section,
.website-landing-process-section :is(h2, h3) {
  color: var(--ink);
}

.website-landing-process-section :is(.website-landing-process-copy > p:last-child, .website-landing-process-grid article p) {
  color: var(--muted);
}

html[data-theme="dark"] body:not(.page-home-da):not(.page-home-de) .project-action-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* Final solution overview: complete cards that form one controlled stack. */
.solution-list {
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.solution-list .detail-row,
.solution-list .detail-row:first-child {
  position: relative;
  top: auto;
  z-index: calc(1 + var(--solution-index, 0));
  align-self: start;
  min-height: 0;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 58px);
  padding: clamp(26px, 3.2vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-elevated);
  box-shadow: 0 16px 42px rgba(17, 21, 19, .065);
  translate: none;
}

.solution-list .detail-row > img,
.solution-list .detail-row:nth-child(even) > img {
  position: relative;
  top: auto;
  width: 100%;
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
  border: 0;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: none;
  translate: none;
}

.solution-list .detail-row:nth-child(even) > img {
  order: 2;
}

.solution-list .detail-row > div {
  gap: 20px;
  padding: clamp(8px, 1.5vw, 20px) 0;
}

.solution-list .detail-row h2 {
  max-width: 17ch;
  font-size: clamp(2.15rem, 3.3vw, 3.35rem);
  line-height: 1.035;
  letter-spacing: -.032em;
}

.solution-list .detail-row > div > p {
  max-width: 54ch;
  font-size: clamp(1.03rem, 1.18vw, 1.14rem);
  line-height: 1.62;
}

html[data-theme="dark"] .solution-list .detail-row,
html[data-theme="dark"] .solution-list .detail-row:first-child {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

@media (min-width: 981px) and (min-height: 800px) {
  .solution-list {
    padding-bottom: clamp(72px, 8vw, 112px);
  }

  .solution-list .detail-row,
  .solution-list .detail-row:first-child {
    position: sticky;
    top: 106px;
    height: clamp(620px, calc(100svh - 170px), 650px);
  }

  .solution-list .detail-row > div {
    display: grid;
    align-content: center;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  .solution-list {
    gap: 20px;
    padding-bottom: 0;
  }

  .solution-list .detail-row,
  .solution-list .detail-row:first-child {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .solution-list .detail-row > img,
  .solution-list .detail-row:nth-child(even) > img {
    order: 0;
    height: clamp(240px, 60vw, 420px);
    min-height: 0;
    border-radius: 0;
  }

  .solution-list .detail-row > div {
    gap: 16px;
    padding: 26px;
  }

  .solution-list .detail-row h2 {
    font-size: clamp(1.85rem, 7.5vw, 2.55rem);
  }
}

/* Homepage references: hover keeps the browser top edge fully visible. */
.page-home-da .project-rail-item,
.page-home-de .project-rail-item {
  overflow: visible;
}

.page-home-da .project-rail-item:hover,
.page-home-de .project-rail-item:hover {
  transform: none;
}

.page-home-da .project-rail-item figure,
.page-home-de .project-rail-item figure {
  overflow: hidden;
  transition:
    box-shadow .48s cubic-bezier(.16, 1, .3, 1),
    filter .48s ease;
}

.page-home-da .project-rail-item:hover figure,
.page-home-de .project-rail-item:hover figure,
.page-home-da .project-rail-item:focus-visible figure,
.page-home-de .project-rail-item:focus-visible figure {
  transform: none;
  filter: saturate(1.035) contrast(1.01);
  box-shadow: 0 18px 42px rgba(17, 21, 19, .11);
}

/* About page: a focused tool stage instead of an empty logo strip. */
.about-tool-section {
  padding: clamp(54px, 7vw, 94px) 0;
  border: 0;
  background: var(--paper) !important;
}

.about-tool-section .about-tool-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, .65fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  min-height: 250px;
  padding: clamp(38px, 4.8vw, 58px);
  overflow: hidden;
  border: 1px solid #1d2924;
  border-radius: 22px;
  color: #fffefa;
  background:
    radial-gradient(circle at 82% 50%, rgba(10, 193, 142, .2), transparent 29%),
    linear-gradient(125deg, #0a1410 0%, #101b16 68%, #0c1712 100%);
  box-shadow: 0 24px 64px rgba(17, 21, 19, .12);
}

.about-tool-section .about-tool-band::after {
  position: absolute;
  right: clamp(18px, 3vw, 44px);
  bottom: -.2em;
  content: attr(data-word);
  color: rgba(255, 254, 250, .055);
  font-size: clamp(6rem, 13vw, 12rem);
  font-weight: 780;
  line-height: .8;
  letter-spacing: -.07em;
  pointer-events: none;
}

.about-tool-section .about-tool-copy {
  position: relative;
  z-index: 1;
  gap: 14px;
}

.about-tool-section .about-tool-copy .eyebrow {
  color: var(--logo-green);
}

.about-tool-section .about-tool-copy > p:last-child {
  max-width: 22ch;
  margin: 0;
  color: #fffefa;
  font-size: clamp(1.95rem, 3.15vw, 3.25rem);
  font-weight: 740;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.about-tool-section .about-tool-link {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(100%, 208px);
  min-height: 74px;
  padding: 15px 21px;
  border-radius: 999px;
  background: #fffefa;
  opacity: 1;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .2);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.about-tool-section .about-tool-link img {
  width: 100%;
  max-width: 164px;
}

.about-tool-section .about-tool-link:hover,
.about-tool-section .about-tool-link:focus-visible {
  transform: translate3d(-8px, 0, 0) rotate(-1deg);
}

html[data-theme="dark"] .about-tool-section {
  background: var(--paper) !important;
}

/* About page: one strong closing stage rather than two loose text columns. */
body:is(.page-about-da, .page-about-de) .pricing-closing-section {
  padding-block: clamp(76px, 10vw, 132px);
  background: var(--paper);
}

body:is(.page-about-da, .page-about-de) .pricing-closing {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #1d2924;
  border-radius: 22px;
  color: #fffefa;
  background:
    linear-gradient(118deg, rgba(10, 193, 142, .13), transparent 42%),
    #0b1410;
  box-shadow: 0 24px 64px rgba(17, 21, 19, .11);
}

body:is(.page-about-da, .page-about-de) .pricing-closing article {
  position: relative;
  min-height: 390px;
  padding: clamp(46px, 5.5vw, 76px);
  overflow: hidden;
  border: 0;
}

body:is(.page-about-da, .page-about-de) .pricing-closing article + article {
  border-left: 1px solid rgba(255, 255, 255, .13);
}

body:is(.page-about-da, .page-about-de) .pricing-closing article::after {
  position: absolute;
  right: 22px;
  bottom: -.16em;
  content: attr(data-word);
  color: rgba(255, 254, 250, .055);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 780;
  line-height: .8;
  letter-spacing: -.065em;
  pointer-events: none;
}

body:is(.page-about-da, .page-about-de) .pricing-closing h2,
body:is(.page-about-da, .page-about-de) .pricing-closing p {
  position: relative;
  z-index: 1;
}

body:is(.page-about-da, .page-about-de) .pricing-closing h2 {
  max-width: 14ch;
  color: #fffefa;
  font-size: clamp(2.35rem, 3.4vw, 3.65rem);
  line-height: 1;
}

body:is(.page-about-da, .page-about-de) .pricing-closing p {
  max-width: 47ch;
  color: rgba(255, 254, 250, .74);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

/* Blog stories: restore the direct sticky cards and let the CTA cover the hold area. */
body:is(.page-blog-da, .page-blog-de) {
  --blog-end-hold: clamp(400px, 68svh, 720px);
}

.blog-story-list {
  padding-bottom: var(--blog-end-hold);
}

.blog-story-panel {
  position: sticky;
  top: 70px;
  z-index: calc(1 + var(--blog-index, 0));
  display: grid;
  align-items: start;
  width: 100%;
  height: calc(100svh - 70px);
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  color: #fffefa;
  background: var(--night);
  box-shadow: 0 -1px rgba(255, 255, 255, .14);
}

.blog-story-panel:not(:last-child) {
  margin-bottom: clamp(180px, 28svh, 300px);
}

body:is(.page-blog-da, .page-blog-de) .blog-cta-section {
  position: relative;
  margin-top: calc(-1 * var(--blog-end-hold));
  padding-top: 0;
  background: var(--paper);
}

/* Light header hover must keep readable foreground contrast. */
body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links > a:hover,
body:not(.page-home-da):not(.page-home-de):not(.page-website-landing-da):not(.page-website-landing-de):not([class*="page-blog-post-"]) .site-header .nav-links > a.is-active {
  color: var(--ink);
}

@media (max-width: 760px) {
  .about-tool-section .about-tool-band {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    padding: 38px 28px 44px;
  }

  .about-tool-section .about-tool-copy > p:last-child {
    max-width: 18ch;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .about-tool-section .about-tool-link {
    justify-self: start;
    width: min(100%, 190px);
    min-height: 70px;
    padding: 14px 20px;
  }

  body:is(.page-about-da, .page-about-de) .pricing-closing {
    grid-template-columns: 1fr;
  }

  body:is(.page-about-da, .page-about-de) .pricing-closing article {
    min-height: 330px;
    padding: 38px 28px 48px;
  }

  body:is(.page-about-da, .page-about-de) .pricing-closing article + article {
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-left: 0;
  }

  body:is(.page-blog-da, .page-blog-de) {
    --blog-end-hold: clamp(300px, 50svh, 440px);
  }

  .blog-story-panel {
    top: 66px;
    height: calc(100svh - 66px);
    min-height: 600px;
  }

  .blog-story-panel:not(:last-child) {
    margin-bottom: clamp(150px, 24svh, 210px);
  }
}

/* About principles — final cascade override. */
.about-process-section > .section-inner {
  display: block;
}

.about-process-section > .section-inner > h2 {
  position: relative;
  top: auto;
  max-width: 12ch;
  margin: 0 0 clamp(58px, 7vw, 96px);
}

.about-process-section .process-grid.about-principle-list {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 1060px);
  gap: 0;
  margin: 0 0 0 auto;
  padding-bottom: clamp(48px, 8svh, 82px);
  border: 0;
}

.about-process-section .about-principle-list article:nth-child(n) {
  position: sticky;
  top: 104px;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: 270px;
  margin-bottom: clamp(46px, 8svh, 76px);
  padding: clamp(38px, 4.5vw, 62px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-elevated);
  box-shadow: 0 18px 48px rgba(17, 21, 19, .055);
}

.about-process-section .about-principle-list article:nth-child(1) {
  z-index: 1;
}

.about-process-section .about-principle-list article:nth-child(2) {
  z-index: 2;
}

.about-process-section .about-principle-list article:nth-child(3) {
  z-index: 3;
  margin-bottom: 0;
}

.about-process-section .about-principle-list article:first-child {
  border-color: #16201c;
  color: #fffefa;
  background: #0c1511;
}

.about-process-section .about-principle-list article:nth-child(2) {
  background: var(--surface-green);
}

.about-process-section .about-principle-list article::before {
  display: none;
}

.about-process-section .about-principle-list article::after {
  display: block;
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: -.22em;
  content: attr(data-word);
  color: color-mix(in srgb, var(--ink) 8%, transparent);
  font-size: clamp(5rem, 9.5vw, 9.5rem);
  font-weight: 760;
  line-height: .8;
  letter-spacing: -.065em;
  pointer-events: none;
}

.about-process-section .about-principle-list article:first-child::after {
  color: rgba(255, 254, 250, .1);
}

.about-process-section .about-principle-list h3,
.about-process-section .about-principle-list p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.about-process-section .about-principle-list h3 {
  max-width: 12ch;
  color: inherit;
  font-size: clamp(2.15rem, 3.35vw, 3.45rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.about-process-section .about-principle-list p {
  max-width: 53ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.28vw, 1.2rem);
  line-height: 1.62;
}

.about-process-section .about-principle-list article:first-child p {
  color: rgba(255, 254, 250, .76);
}

html[data-theme="dark"] .about-process-section .about-principle-list article:nth-child(n) {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .18);
}

html[data-theme="dark"] .about-process-section .about-principle-list article:first-child {
  background: #070d0a;
}

html[data-theme="dark"] .about-process-section .about-principle-list article:nth-child(2) {
  background: var(--surface-green);
}

@media (max-width: 760px) {
  .about-process-section .process-grid.about-principle-list {
    width: 100%;
  }

  .about-process-section .about-principle-list article:nth-child(n) {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    margin-bottom: 18px;
    padding: 32px 28px 44px;
  }

  .about-process-section .about-principle-list article:nth-child(3) {
    margin-bottom: 0;
  }

  .about-process-section .about-principle-list h3 {
    max-width: 14ch;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .about-process-section .about-principle-list article::after {
    right: 18px;
    font-size: clamp(4.5rem, 24vw, 7rem);
  }
}

/* Keep the stacked about cards close to the following section. */
.about-process-section {
  padding-bottom: clamp(54px, 7vw, 88px);
}

.about-process-section .process-grid.about-principle-list {
  padding-bottom: 0;
}

/* Final subpage hero proportions: visual first, copy in supporting scale. */
.subhero:has(.subhero-visual) .subhero-grid {
  grid-template-columns: minmax(0, .72fr) minmax(520px, .9fr);
  gap: clamp(44px, 5vw, 76px);
}

.subhero:has(.subhero-visual) h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.15vw, 4.05rem);
  line-height: 1.04;
}

@media (max-width: 900px) {
  .subhero:has(.subhero-visual) .subhero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .subhero:has(.subhero-visual) .subhero-grid {
    gap: 38px;
  }

  .subhero:has(.subhero-visual) h1 {
    font-size: clamp(2.55rem, 11vw, 3.25rem);
  }
}

/* Final project overview: complete cards form one calm, aligned sticky stack. */
.project-list {
  display: grid;
  gap: 0;
  padding-bottom: clamp(74px, 11svh, 128px);
}

.project-list .project-wide,
.project-list .project-wide:first-child {
  position: sticky;
  top: 104px;
  z-index: calc(1 + var(--project-index, 0));
  height: clamp(580px, calc(100svh - 160px), 640px);
  min-height: 0;
  grid-template-columns: minmax(390px, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 4.5vw, 64px);
  align-items: center;
  margin-bottom: clamp(58px, 10svh, 98px);
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-elevated);
  box-shadow: 0 22px 62px rgba(17, 21, 19, .09);
}

.project-list .project-wide:last-child {
  margin-bottom: 0;
}

.project-list .project-wide:nth-child(even) .project-browser {
  order: 0;
}

.project-list .project-browser {
  position: relative;
  top: auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  min-height: 0;
  border-radius: 12px;
  translate: none;
}

.project-list .browser-screen {
  height: 100%;
  min-height: 0;
}

.project-list .browser-viewport {
  height: 100%;
  min-height: 0;
}

.project-list .project-copy {
  align-self: center;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: clamp(12px, 1.5vw, 18px);
  height: 100%;
  min-height: 0;
  padding: clamp(8px, 1.5vw, 20px) 0;
}

.project-list .project-wide h2 {
  max-width: 16ch;
  font-size: clamp(2.65rem, 4vw, 4.15rem);
  line-height: 1.01;
}

.project-list .project-copy > p:not(.meta) {
  max-width: 58ch;
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.62;
}

.project-list .project-wide .detail-pair {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 62ch;
}

.project-list .project-wide .detail-pair div {
  padding: 0 0 0 18px;
  border: 0;
  border-left: 2px solid color-mix(in srgb, var(--green-text) 55%, transparent);
  border-radius: 0;
  background: transparent;
}

.project-list .project-wide .detail-pair strong {
  color: var(--green-text);
}

html[data-theme="dark"] .project-list .project-wide {
  border-color: var(--line);
  background: var(--surface-elevated);
  box-shadow: 0 26px 68px rgba(0, 0, 0, .26);
}

@media (max-width: 900px) {
  .project-list {
    gap: 20px;
    padding-bottom: 40px;
  }

  .project-list .project-wide,
  .project-list .project-wide:first-child {
    position: relative;
    top: auto;
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
    padding: 14px;
  }

  .project-list .project-wide:nth-child(even) .project-browser {
    order: 0;
  }

  .project-list .browser-viewport {
    height: clamp(360px, 70vh, 520px);
  }

  .project-list .project-copy {
    display: grid;
    grid-template-rows: none;
    height: auto;
    padding: 28px 10px 14px;
  }

  .project-list .project-wide h2 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
  }
}

/* Final cascade for the navigation, contact and blog scroll sequence. */

@media (max-width: 900px) {
  html[data-menu-open] {
    overflow: hidden;
  }

  .site-header[data-menu-open],
  .site-header[data-scrolled][data-menu-open],
  .page-home-da .site-header[data-menu-open],
  .page-home-de .site-header[data-menu-open],
  html[data-theme="dark"] .site-header[data-menu-open] {
    border-color: var(--line);
    color: var(--ink);
    background: color-mix(in srgb, var(--surface-elevated) 92%, transparent);
    box-shadow: none;
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);
  }

  .site-header[data-menu-open]::after {
    display: none;
  }

  .site-header[data-menu-open] .brand-logo path[style*="fill:#fff"] {
    fill: var(--ink) !important;
  }

  .site-header[data-menu-open] :where(.language-link, .theme-picker-summary, .nav-toggle) {
    border-color: var(--line);
    color: var(--ink);
    background: var(--surface-elevated);
  }

  .site-header .nav-links,
  .page-home-da .site-header .nav-links,
  .page-home-de .site-header .nav-links,
  body:not(.page-home-da):not(.page-home-de) .site-header .nav-links,
  html[data-theme="dark"] .site-header .nav-links {
    position: fixed;
    inset: 72px 0 0;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 0;
    width: auto;
    height: calc(100dvh - 72px);
    margin: 0;
    padding: clamp(26px, 5svh, 48px) max(22px, calc((100vw - var(--max)) / 2 + 20px)) 26px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background:
      linear-gradient(138deg, var(--surface-elevated) 0%, var(--surface-elevated) 64%, color-mix(in srgb, var(--logo-green) 7%, var(--surface-elevated)) 100%);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    transform-origin: top center;
    transition:
      opacity .28s ease,
      transform .42s cubic-bezier(.16, 1, .3, 1),
      visibility 0s linear .42s;
  }

  .site-header .nav-links::before {
    position: absolute;
    top: auto;
    right: -0.06em;
    bottom: -0.18em;
    left: auto;
    width: auto;
    height: auto;
    color: color-mix(in srgb, var(--ink) 5.5%, transparent);
    background: none;
    content: "nu";
    font-size: clamp(14rem, 54vw, 28rem);
    font-weight: 850;
    line-height: .72;
    letter-spacing: -.12em;
    pointer-events: none;
  }

  .site-header .nav-links > * {
    position: relative;
    z-index: 1;
  }

  .mobile-menu-intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
    padding-bottom: clamp(18px, 3svh, 28px);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: opacity .28s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-menu-intro span {
    color: var(--green-text);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .mobile-menu-intro strong {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 670;
    text-align: right;
  }

  .site-header .nav-links > a,
  .page-home-da .site-header .nav-links > a,
  .page-home-de .site-header .nav-links > a,
  body:not(.page-home-da):not(.page-home-de) .site-header .nav-links > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 0;
    padding: clamp(12px, 2.15svh, 18px) 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    font-size: clamp(1.75rem, 6.3vw, 2.8rem);
    font-weight: 830;
    line-height: 1;
    letter-spacing: -.04em;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
      color .3s ease,
      padding-left .36s cubic-bezier(.16, 1, .3, 1),
      opacity .28s ease,
      transform .46s cubic-bezier(.16, 1, .3, 1);
  }

  .site-header .nav-links > a::before,
  .site-header .nav-links > a::after {
    display: none;
  }

  .site-header .nav-links > a:hover,
  .site-header .nav-links > a:focus-visible,
  .site-header .nav-links > a.is-active {
    padding-left: 16px;
    color: var(--green-text);
    background: transparent;
  }

  body .site-header .nav-links > a.mobile-menu-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(130px, 190px);
    gap: 20px;
    margin-top: clamp(18px, 3svh, 28px);
    padding: 17px 20px !important;
    border-bottom: 0;
    border-radius: 12px;
    color: var(--paper) !important;
    background: var(--ink) !important;
    font-size: clamp(1.25rem, 4.8vw, 1.65rem);
    letter-spacing: -.025em;
  }

  body .site-header .nav-links > a.mobile-menu-contact:hover,
  body .site-header .nav-links > a.mobile-menu-contact:focus-visible,
  body .site-header .nav-links > a.mobile-menu-contact.is-active {
    padding-left: 24px !important;
    color: var(--paper) !important;
    background: color-mix(in srgb, var(--ink) 90%, var(--logo-green)) !important;
  }

  .nav-links > a > small {
    display: block;
    justify-self: end;
    width: 100%;
    max-width: 25ch;
    color: color-mix(in srgb, var(--paper) 68%, transparent);
    font-size: .72rem;
    font-weight: 620;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: right;
  }

  .mobile-menu-direct {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: baseline;
    padding-top: 20px;
    color: var(--muted);
    font-size: .78rem;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity .3s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-menu-direct > span {
    font-weight: 760;
  }

  .mobile-menu-direct > a,
  .mobile-menu-direct > a:hover,
  .mobile-menu-direct > a:focus-visible {
    min-height: 0;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: .85rem;
    font-weight: 760;
    letter-spacing: 0;
    opacity: 1;
    transform: none;
  }

  .site-header .nav-links[data-open] {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
    transition-delay: 0s;
  }

  .site-header .nav-links[data-open] .mobile-menu-intro,
  .site-header .nav-links[data-open] .mobile-menu-direct,
  .site-header .nav-links[data-open] > a {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .site-header .nav-links[data-open] .mobile-menu-intro { transition-delay: .03s; }
  .site-header .nav-links[data-open] > a:nth-of-type(1) { transition-delay: .05s; }
  .site-header .nav-links[data-open] > a:nth-of-type(2) { transition-delay: .075s; }
  .site-header .nav-links[data-open] > a:nth-of-type(3) { transition-delay: .1s; }
  .site-header .nav-links[data-open] > a:nth-of-type(4) { transition-delay: .125s; }
  .site-header .nav-links[data-open] > a:nth-of-type(5) { transition-delay: .15s; }
  .site-header .nav-links[data-open] > a:nth-of-type(6) { transition-delay: .175s; }
  .site-header .nav-links[data-open] .mobile-menu-direct { transition-delay: .2s; }
}

/* Project details: the compact story card must use the active dark surface.
   Otherwise the light mobile card keeps dark-mode text and loses contrast. */
@media (max-width: 900px) {
  html[data-theme="dark"] body[class*="page-project-detail-"] .project-detail-copy {
    border-color: var(--line);
    color: var(--ink);
    background: var(--surface-elevated);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
  }
}

/* Solution cards: keep problem and outcome copy clear of panel edges. */
body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-pair > div {
  padding: 18px 18px 20px;
}

/* Mobile project detail: text-first hero, one useful screenshot and compact,
   readable story spacing. The decorative title image is redundant here. */
@media (max-width: 700px) {
  body[class*="page-project-detail-"] .project-detail-hero,
  body[class*="page-project-detail-"] .project-detail-hero > .section-inner {
    min-height: 0;
  }

  body[class*="page-project-detail-"] .project-detail-hero {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  }

  body[class*="page-project-detail-"] .project-detail-hero::before,
  body[class*="page-project-detail-"] .project-detail-hero::after,
  body[class*="page-project-detail-"] .project-detail-hero .subhero-visual {
    display: none;
  }

  body[class*="page-project-detail-"] .project-detail-hero > .section-inner {
    display: block;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 46px;
  }

  body[class*="page-project-detail-"] .project-detail-hero .subhero-copy {
    max-width: none;
  }

  body[class*="page-project-detail-"] .project-detail-hero .blog-back-link {
    font-size: 1rem;
  }

  body[class*="page-project-detail-"] .project-detail-hero .subhero-kicker {
    margin-top: 22px;
  }

  body[class*="page-project-detail-"] .project-detail-hero h1 {
    max-width: 11ch;
    margin-top: 12px;
    font-size: clamp(2.65rem, 12vw, 3.55rem);
    line-height: 1.01;
  }

  body[class*="page-project-detail-"] .project-detail-hero .subhero-copy > h1 + p {
    max-width: 34ch;
    margin-top: 20px;
    font-size: 1.125rem;
    line-height: 1.62;
  }

  body[class*="page-project-detail-"] .project-detail-story {
    padding-block: 44px 58px;
  }

  body[class*="page-project-detail-"] .project-detail-story .project-detail-layout {
    width: calc(100% - 32px);
    gap: 28px;
    padding: 0;
  }

  body[class*="page-project-detail-"] .project-detail-story .project-browser {
    width: 100%;
    margin-inline: 0;
  }

  body[class*="page-project-detail-"] .project-detail-story .project-detail-copy {
    gap: 18px;
    padding: 24px 20px 26px;
    border-radius: 14px;
  }

  body[class*="page-project-detail-"] .project-detail-copy .richtext {
    gap: 1rem;
  }

  body[class*="page-project-detail-"] .project-detail-copy .richtext :is(p, li) {
    font-size: 1.125rem;
    line-height: 1.66;
  }

  body[class*="page-project-detail-"] .project-detail-copy .project-link-row {
    gap: 12px;
  }
}

/* On phones the project fan is the hero's visual lead. The copy remains one
   uninterrupted block below it; tablet and desktop keep the split layout. */
@media (max-width: 700px) {
  body:is(.page-home-da, .page-home-de) .home-hero .hero-projects {
    order: -1;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-copy {
    order: 0;
  }
}

/* Optical logo rhythm and a seamless three-set marquee.
   Each mark owns its visible width, so spacing is measured edge-to-edge
   instead of between identical boxes around very different logo shapes. */
.client-logo-marquee {
  --client-logo-slot: 220px;
}

.client-logo-marquee-track {
  min-width: 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: client-logo-scroll-seamless 48s linear infinite;
}

.client-logo-set {
  min-width: 0;
  gap: 0;
  padding-inline: 0;
}

.client-logo-mark {
  --client-logo-width: 164px;
  --client-logo-height: 56px;
  flex-basis: var(--client-logo-slot);
  width: var(--client-logo-slot);
  height: 64px;
  opacity: .62;
}

.client-logo-mark svg,
.client-logo-mark img {
  width: var(--client-logo-width) !important;
  height: var(--client-logo-height) !important;
  max-width: none;
  max-height: none;
  transform: none;
}

.client-logo-mark[data-logo-id="ahg-hoffmann"] {
  --client-logo-width: 170px;
  --client-logo-height: 45px;
}

.client-logo-mark[data-logo-id="apporte-assistenzhunde"] {
  --client-logo-width: 132px;
  --client-logo-height: 60px;
}

.client-logo-mark[data-logo-id="blacklight"] {
  --client-logo-width: 190px;
  --client-logo-height: 38px;
}

.client-logo-mark[data-logo-id="feingereist"] {
  --client-logo-width: 172px;
  --client-logo-height: 53px;
}

.client-logo-mark[data-logo-id="gevu"] {
  --client-logo-width: 150px;
  --client-logo-height: 53px;
}

.client-logo-mark[data-logo-id="laperlia"] {
  --client-logo-width: 68px;
  --client-logo-height: 62px;
}

.client-logo-mark[data-logo-id="networks-it"] {
  --client-logo-width: 188px;
  --client-logo-height: 40px;
}

.client-logo-mark[data-logo-id="riechelmann-immobilien"] {
  --client-logo-width: 166px;
  --client-logo-height: 51px;
}

.client-logo-mark[data-logo-id="sommelier-am-see"] {
  --client-logo-width: 122px;
  --client-logo-height: 64px;
}

.client-logo-mark[data-logo-id="wolf-websolutions"] {
  --client-logo-width: 100px;
  --client-logo-height: 72px;
}

@keyframes client-logo-scroll-seamless {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.3333333333%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-marquee-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 700px) {
  .client-logo-marquee {
    --client-logo-slot: 178px;
  }

  .client-logo-mark {
    width: var(--client-logo-slot);
    height: 52px;
    flex-basis: var(--client-logo-slot);
  }

  .client-logo-mark svg,
  .client-logo-mark img {
    width: calc(var(--client-logo-width) * .82) !important;
    height: calc(var(--client-logo-height) * .82) !important;
  }
}

@media (max-width: 520px) {
  .site-header .nav-links,
  .page-home-da .site-header .nav-links,
  .page-home-de .site-header .nav-links {
    padding-top: 22px;
    padding-inline: 18px;
  }

  .site-header .nav-links > a,
  .page-home-da .site-header .nav-links > a,
  .page-home-de .site-header .nav-links > a {
    font-size: clamp(1.58rem, 8.1vw, 2.15rem);
  }

  .nav-links > a > small {
    max-width: 18ch;
    font-size: .67rem;
  }

  .mobile-menu-direct {
    align-items: flex-start;
  }
}

body:is(.page-contact-da, .page-contact-de) .contact-experience {
  min-height: 0;
  padding-block: clamp(72px, 8vw, 112px);
}

body:is(.page-contact-da, .page-contact-de) .contact-kicker {
  color: var(--green-text);
}

body:is(.page-contact-da, .page-contact-de) .contact-stage {
  position: relative;
  top: auto;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: clamp(48px, 6vw, 88px);
  height: auto;
  min-height: 0;
  padding-block: 0;
}

body:is(.page-contact-da, .page-contact-de) .contact-stage-copy h2 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 3.15vw, 3.55rem);
  line-height: 1.045;
  text-wrap: initial;
}

body:is(.page-contact-da, .page-contact-de) .contact-stage-copy h2 > span {
  display: block;
}

body:is(.page-contact-da, .page-contact-de) .contact-stage-copy h2 > span + span {
  margin-top: .08em;
}

body:is(.page-contact-da, .page-contact-de) .contact-stage-panel {
  background: linear-gradient(135deg, #0a100e 0%, #0d1713 58%, #123126 100%);
}

body:is(.page-contact-da, .page-contact-de) .contact-stage-panel::before {
  display: none;
}

body:is(.page-contact-da, .page-contact-de) .contact-stage-panel-head strong {
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  white-space: nowrap;
}

.motion-ready body:is(.page-contact-da, .page-contact-de) .contact-experience .contact-path:nth-child(n),
.motion-ready .contact-experience .contact-path:nth-child(n) {
  opacity: 1;
  transform: none;
}

body:is(.page-contact-da, .page-contact-de) .contact-prep-section {
  margin-top: 0;
}

body:is(.page-blog-da, .page-blog-de) .blog-cta-section {
  z-index: 20;
  margin-top: 0;
  padding-top: clamp(56px, 7vw, 104px);
}

body:is(.page-blog-da, .page-blog-de) {
  --blog-end-pause: clamp(120px, 18svh, 180px);
}

body:is(.page-blog-da, .page-blog-de) .blog-story-list {
  padding-bottom: 0;
}

body:is(.page-blog-da, .page-blog-de) .blog-story-list::after {
  display: block;
  height: calc(var(--blog-end-hold) + var(--blog-end-pause));
  content: "";
}

body:is(.page-blog-da, .page-blog-de) .blog-story-panel:nth-last-child(2) {
  margin-bottom: clamp(320px, 44svh, 500px);
}

/* A complete reading beat before the following full-screen article enters. */
@media (min-width: 701px) {
  body:is(.page-blog-da, .page-blog-de) .blog-story-panel {
    height: calc(100svh - 71px);
  }

  body:is(.page-blog-da, .page-blog-de) .blog-story-panel:not(:last-child) {
    margin-bottom: clamp(320px, 44svh, 500px);
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:not(:last-child) {
    margin-bottom: clamp(360px, 52svh, 560px);
  }

}

/* Keep the completed project stack pinned until the final card has settled.
   The sticky card covers this hold space, so no empty panel becomes visible. */
@media (min-width: 901px) {
  body:is(.page-projects-da, .page-projects-de) {
    --project-end-hold: clamp(580px, calc(100svh - 160px), 640px);
  }

  body:is(.page-projects-da, .page-projects-de) .project-list {
    display: block;
    padding-bottom: var(--project-end-hold);
  }

  body:is(.page-projects-da, .page-projects-de) > .footer-cta {
    position: relative;
    z-index: 20;
    margin-top: calc(-1 * var(--project-end-hold));
  }
}

@media (max-width: 700px) {
  body:is(.page-blog-da, .page-blog-de) .blog-story-panel {
    height: calc(100svh - 67px);
  }
}

/* The customer logos form a compact transition between hero and scroll stage. */
@media (min-width: 901px) {
  body:is(.page-home-da, .page-home-de) {
    --home-proof-height: 86px;
    --home-proof-overlap: clamp(34px, 3vw, 52px);
    --home-proof-lift: clamp(16px, 1.8vw, 24px);
    --home-first-screen-hero: clamp(
      660px,
      calc(100svh - var(--home-proof-height) + var(--home-proof-overlap)),
      900px
    );
  }

  body:is(.page-home-da, .page-home-de) .home-hero,
  body:is(.page-home-da, .page-home-de) .home-hero .hero-stage {
    min-height: var(--home-first-screen-hero);
    height: var(--home-first-screen-hero);
  }

body:is(.page-home-da, .page-home-de) .home-hero .hero-projects {
    min-height: clamp(470px, calc(100svh - 210px), 620px);
  }

  body:is(.page-home-da, .page-home-de) .client-proof {
    position: relative;
    z-index: 4;
    min-height: var(--home-proof-height);
    margin-top: calc(-1 * var(--home-proof-overlap) - var(--home-proof-lift));
    margin-bottom: var(--home-proof-lift);
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-stage {
    padding-top: 92px;
    padding-bottom: 42px;
  }

  body:is(.page-home-da, .page-home-de) .client-logo-marquee,
  body:is(.page-home-da, .page-home-de) .client-logo-set {
    min-height: var(--home-proof-height);
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] {
    --craft-entry-space: clamp(24px, 2.2vw, 34px);
    --craft-stage-shift: clamp(24px, 3vh, 40px);
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-grid {
    padding-top: calc(18px + var(--craft-stage-shift));
  }
}

/* Blog and project overviews use the same direct stack rhythm as solutions:
   the next surface covers the current one without opacity staging. */
body:is(.page-blog-da, .page-blog-de) {
  --blog-stack-hold: clamp(520px, 68svh, 680px);
}

@media (max-width: 700px) {
  body:is(.page-blog-da, .page-blog-de) {
    --blog-stack-hold: clamp(300px, 50svh, 440px);
  }
}

body:is(.page-blog-da, .page-blog-de) .blog-story-list {
  padding-bottom: 0;
}

body:is(.page-blog-da, .page-blog-de) .blog-story-list::after {
  display: block;
  height: var(--blog-stack-hold);
  content: "";
}

body:is(.page-blog-da, .page-blog-de) .blog-story-panel,
body:is(.page-blog-da, .page-blog-de) .blog-story-panel:nth-last-child(2),
body:is(.page-blog-da, .page-blog-de) .blog-story-panel:not(:last-child) {
  margin-bottom: 0;
  --blog-heading-progress: 1 !important;
  --blog-copy-progress: 1 !important;
  --blog-link-progress: 1 !important;
  --blog-heading-offset: 0px !important;
  --blog-copy-offset: 0px !important;
  --blog-link-offset: 0px !important;
  --blog-image-scale: 1 !important;
}

body:is(.page-blog-da, .page-blog-de) .blog-story-copy :is(.meta, h2, p, .blog-story-link) {
  will-change: auto;
}

body:is(.page-blog-da, .page-blog-de) .blog-cta-section {
  margin-top: 0;
  padding-top: clamp(56px, 7vw, 104px);
}

/* Overview cards are structural content, not entrance decoration. Keeping them
   fully rendered also prevents half-transparent cards after fast scrolling. */
.motion-ready body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row[data-motion="reveal"],
.motion-ready body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row[data-motion="reveal"].is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

body:is(.page-projects-da, .page-projects-de) {
  --project-stack-hold: clamp(72px, 8vw, 112px);
}

body:is(.page-projects-da, .page-projects-de) .project-list {
  display: grid;
  align-items: start;
  gap: clamp(24px, 3vw, 38px);
  padding-bottom: var(--project-stack-hold);
}

body:is(.page-projects-da, .page-projects-de) .project-list .project-wide,
body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:first-child,
body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:not(:last-child) {
  position: relative;
  top: auto;
  height: auto;
  margin-bottom: 0;
  box-shadow: none;
}

body:is(.page-projects-da, .page-projects-de) > .footer-cta {
  margin-top: calc(-1 * var(--project-stack-hold));
}

@media (min-width: 981px) and (min-height: 800px) {
  body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row {
    box-shadow: 0 1px 0 color-mix(in srgb, var(--ink) 10%, transparent);
  }

  html[data-theme="dark"] body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row {
    box-shadow: 0 1px 0 color-mix(in srgb, #fff 12%, transparent);
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:first-child,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:not(:last-child) {
    position: sticky;
    top: 106px;
    height: clamp(620px, calc(100svh - 170px), 650px);
  }
}

@media (min-width: 1080px) {
  body .site-header .nav-links {
    gap: clamp(22px, 2vw, 31px);
    font-size: .95rem !important;
    font-weight: 680 !important;
  }
}

/* Project-detail previews keep the complete screenshot width. The frame crops
   only the less important lower continuation of the captured page. */
@media (min-width: 701px) {
  body[class*="page-project-detail-"] .project-detail-hero .subhero-media {
    aspect-ratio: 16 / 9;
  }

  body[class*="page-project-detail-"] .project-detail-hero .subhero-media picture {
    height: 100%;
  }

  body[class*="page-project-detail-"] .project-detail-hero .subhero-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 900px) {
  body:is(.page-contact-da, .page-contact-de) {
    overflow-x: clip;
  }

  body:is(.page-contact-da, .page-contact-de) :is(
    .contact-hero .section-inner,
    .contact-hero .subhero-grid,
    .contact-hero .subhero-copy,
    .contact-stage,
    .contact-stage-copy,
    .contact-stage-panel
  ) {
    min-width: 0;
    max-width: 100%;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-hero .subhero-copy {
    width: 100%;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-hero .subhero-copy > p,
  body:is(.page-contact-da, .page-contact-de) .contact-stage-copy > p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-stage {
    grid-template-columns: 1fr;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-stage-panel-head strong {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  body:is(.page-contact-da, .page-contact-de) .contact-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 12vw, 3.2rem);
  }

  body:is(.page-contact-da, .page-contact-de) .contact-stage-copy h2 {
    max-width: 13ch;
    font-size: clamp(2.25rem, 10vw, 2.75rem);
    line-height: 1.04;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-kicker {
    max-width: 100%;
    font-size: .7rem;
    line-height: 1.35;
    white-space: normal;
  }
}

/* Project cards keep a calm common minimum height, but longer copy is allowed
   to define the real card height. This avoids cyclic 100%-height sizing on
   laptop viewports and preserves breathing room below the action row. */
@media (min-width: 981px) {
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:first-child,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:not(:last-child) {
    height: auto;
    min-height: clamp(680px, calc(100svh - 130px), 760px);
    align-items: stretch;
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-browser {
    align-self: center;
    height: clamp(610px, calc(100svh - 200px), 680px);
    min-height: 0;
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-copy {
    align-self: center;
    grid-template-rows: repeat(5, auto);
    align-content: center;
    height: auto;
    padding-top: clamp(18px, 2vw, 28px);
    padding-bottom: clamp(28px, 3vw, 42px);
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide h2 {
    font-size: clamp(2.5rem, 3.25vw, 3.55rem);
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-link-row {
    margin-top: clamp(4px, .8vw, 10px);
  }
}

/* One bullet language for genuine editorial lists. */
:is(.richtext, .contact-note, .blog-article-body) ul {
  padding-left: 0;
  list-style: none;
}

:is(.richtext, .contact-note, .blog-article-body) ul > li {
  position: relative;
  padding-left: 24px;
}

:is(.richtext, .contact-note, .blog-article-body) ul > li::before {
  position: absolute;
  top: .67em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-text);
  content: "";
  transform: translateY(-50%);
}

/* Circular motifs stay as soft color fields, never as outlined rings. */
.home-hero .hero-orbit,
.page-home-da .craft-section::after,
.page-home-de .craft-section::after,
.page-home-da .craft-visual-stage::before,
.page-home-de .craft-visual-stage::before,
.page-home-da .competence-icon-cloud::before,
.page-home-de .competence-icon-cloud::before,
.page-home-da .footer-cta .cta-panel::after,
.page-home-de .footer-cta .cta-panel::after,
.contact-stage-panel::before,
.subhero:not(.website-landing-hero)::before,
.blog-share-actions :is(a, button) span,
.blog-author-avatar,
.page-home-da .craft-line li::before,
.page-home-de .craft-line li::before {
  border: 0;
}

.support-ready-state::before,
.page-home-da .craft-line li::before,
.page-home-de .craft-line li::before,
.page-home-da .solution-editorial-list article::before,
.page-home-de .solution-editorial-list article::before,
.contact-presence {
  box-shadow: none;
}

.contact-action-icon {
  box-shadow: 0 10px 22px rgba(10, 193, 142, .18);
}

body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li {
  box-shadow: none;
}

/* Hollow buttons need a deliberate outline instead of a hairline. */
.button.button-ghost {
  border-width: 2px;
  box-shadow: none;
}

/* The animated craft image stays inside its own rounded browser frame. */
body:is(.page-home-da, .page-home-de) .craft-visual-stage figure {
  box-sizing: border-box;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
}

body:is(.page-home-da, .page-home-de) .craft-visual-stage figure img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* The responsive hero source must inherit the browser-window geometry. */
body:is(.page-home-da, .page-home-de) .home-hero .project-window picture {
  display: block;
}

/* Mobile scroll language: compact parallax instead of copied desktop stickies. */
@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  .subhero .subhero-visual,
  .subhero .contact-portrait,
  .subhero > .section-inner > img {
    translate: none;
  }

  .subhero-media,
  .subhero-media picture,
  .contact-portrait,
  .contact-portrait picture {
    overflow: hidden;
  }

  .subhero-media picture,
  .contact-portrait picture {
    border-radius: inherit;
  }

  .subhero-media img,
  .contact-portrait img {
    transform: scale(1.055) translate3d(0, calc((var(--scene-progress, .5) - .5) * -14px), 0);
    transform-origin: center;
    will-change: transform;
  }

  .website-landing-hero .website-landing-hero-media img {
    transform: scale(1.055) translate3d(0, calc((var(--scene-progress, .5) - .5) * -18px), 0);
    will-change: transform;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(odd) .craft-visual {
    translate: 0 calc((var(--scene-progress, .5) - .5) * -18px);
    will-change: translate;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(even) .craft-visual {
    translate: 0 calc((var(--scene-progress, .5) - .5) * 14px);
    will-change: translate;
  }

  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(odd) {
    translate: 0 calc((var(--scene-progress, .5) - .5) * -14px);
    will-change: translate;
  }

  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(even) {
    translate: 0 calc((var(--scene-progress, .5) - .5) * 10px);
    will-change: translate;
  }

  body:is(.page-home-da, .page-home-de) .footer-cta::before {
    transform: translate3d(0, calc((var(--scene-progress, .5) - .5) * -24px), 0) scale(1.08);
    will-change: transform;
  }

  .project-wide[data-scroll-scene] .project-browser {
    translate: 0 calc((var(--scene-progress, .5) - .5) * -18px);
    will-change: translate;
  }

  .project-wide[data-scroll-scene] .project-copy {
    translate: 0 calc((var(--scene-progress, .5) - .5) * 10px);
    will-change: translate;
  }

  .pricing-package[data-scroll-scene] .pricing-intro,
  .pricing-package[data-scroll-scene] .pricing-list:first-of-type {
    translate: 0 calc((var(--scene-progress, .5) - .5) * -12px);
    will-change: translate;
  }

  .pricing-package[data-scroll-scene] .pricing-money,
  .pricing-package[data-scroll-scene] .pricing-list:last-child {
    translate: 0 calc((var(--scene-progress, .5) - .5) * 9px);
    will-change: translate;
  }

  .about-intro-section[data-scroll-scene] .lead-stack,
  .about-tool-section[data-scroll-scene] .about-tool-link,
  .about-process-section[data-scroll-scene] .about-principle-list article:nth-child(odd),
  .pricing-closing-section[data-scroll-scene] article:nth-child(odd) {
    translate: 0 calc((var(--scene-progress, .5) - .5) * -15px);
    will-change: translate;
  }

  .about-tool-section[data-scroll-scene] .about-tool-copy,
  .about-process-section[data-scroll-scene] .about-principle-list article:nth-child(even),
  .pricing-closing-section[data-scroll-scene] article:nth-child(even) {
    translate: 0 calc((var(--scene-progress, .5) - .5) * 11px);
    will-change: translate;
  }

  .contact-experience[data-scroll-scene] .contact-stage-copy {
    translate: 0 calc((var(--scene-progress, .5) - .5) * -14px);
    will-change: translate;
  }

  .contact-experience[data-scroll-scene] .contact-stage-panel {
    translate: 0 calc((var(--scene-progress, .5) - .5) * 10px);
    will-change: translate;
  }

  .website-landing-lead-section[data-scroll-scene] .website-landing-lead > :first-child,
  .website-landing-showcase-section[data-scroll-scene] figure,
  .website-landing-process-section[data-scroll-scene] .website-landing-process-copy,
  .website-landing-cta-section[data-scroll-scene] figure {
    translate: 0 calc((var(--scene-progress, .5) - .5) * -16px);
    will-change: translate;
  }

  .website-landing-lead-section[data-scroll-scene] .website-landing-lead > :last-child,
  .website-landing-showcase-section[data-scroll-scene] .website-landing-showcase > div,
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid,
  .website-landing-cta-section[data-scroll-scene] .website-landing-cta-copy {
    translate: 0 calc((var(--scene-progress, .5) - .5) * 11px);
    will-change: translate;
  }

  :is(.solution-consulting-section, .secure-process-section, .pricing-care-section, .multilingual-section, .multilingual-dark, .project-detail-story, .blog-cta-section)[data-scroll-scene] > .section-inner {
    translate: 0 calc((var(--scene-progress, .5) - .5) * -14px);
    will-change: translate;
  }
}

/* Mobile sticky chapters: only compact stories that remain fully readable. */
@media (max-width: 700px) and (min-height: 620px) and (prefers-reduced-motion: no-preference) {
  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line,
  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid,
  .about-process-section[data-scroll-scene] .about-principle-list,
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid {
    align-items: start;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(n),
  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article,
  .about-process-section[data-scroll-scene] .about-principle-list article,
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid article {
    position: sticky;
    top: 82px;
    isolation: isolate;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(n) {
    min-height: 210px;
    margin: 0;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
  }

  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid article {
    min-height: 250px;
    padding: 30px 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-elevated);
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(2),
  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(2),
  .about-process-section[data-scroll-scene] .about-principle-list article:nth-child(2),
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid article:nth-child(2) {
    top: 90px;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(3),
  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(3),
  .about-process-section[data-scroll-scene] .about-principle-list article:nth-child(3),
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid article:nth-child(3) {
    top: 98px;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(4),
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid article:nth-child(4) {
    top: 106px;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(5) {
    top: 114px;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(1),
  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(1),
  .about-process-section[data-scroll-scene] .about-principle-list article:nth-child(1),
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid article:nth-child(1) {
    z-index: 1;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(2),
  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(2),
  .about-process-section[data-scroll-scene] .about-principle-list article:nth-child(2),
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid article:nth-child(2) {
    z-index: 2;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(3),
  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(3),
  .about-process-section[data-scroll-scene] .about-principle-list article:nth-child(3),
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid article:nth-child(3) {
    z-index: 3;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(4),
  .website-landing-process-section[data-scroll-scene] .website-landing-process-grid article:nth-child(4) {
    z-index: 4;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(5) {
    z-index: 5;
  }
}

/* Mobile home story: wide image cards form one readable sticky stage.
   The earlier thumbnail column made the five topics look like a long list. */
@media (max-width: 700px) {
  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] {
    height: auto;
    padding: 52px 0 64px;
    overflow: visible;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-grid {
    position: relative;
    top: auto;
    min-height: 0;
    gap: 32px;
    padding-block: 0;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-intro {
    gap: 18px;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-story {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-visual-stage {
    display: none;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: 0 0 20px;
    overflow: visible;
    transform: none;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(n) {
    display: grid;
    grid-column: 1;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-elevated);
    box-shadow: none;
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    transition: none;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line .craft-visual {
    display: block;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: var(--surface-soft);
    box-shadow: none;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line .craft-visual::after {
    display: none;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line .craft-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: none;
    transform: none;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li > strong,
  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li > p {
    grid-column: 1;
    max-width: none;
    padding-inline: 22px;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li > strong {
    padding-top: 22px;
    font-size: clamp(2rem, 8.4vw, 2.55rem);
    line-height: 1.02;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li > p {
    padding-top: 12px;
    padding-bottom: 25px;
    font-size: clamp(1.08rem, 4.6vw, 1.18rem);
    line-height: 1.5;
  }
}

@media (max-width: 700px) and (min-height: 540px) and (prefers-reduced-motion: no-preference) {
  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(n) {
    position: sticky;
    top: calc(var(--header-height) + 10px);
    isolation: isolate;
  }

  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(1) { z-index: 1; }
  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(2) { z-index: 2; top: calc(var(--header-height) + 16px); }
  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(3) { z-index: 3; top: calc(var(--header-height) + 22px); }
  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(4) { z-index: 4; top: calc(var(--header-height) + 28px); }
  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(5) { z-index: 5; top: calc(var(--header-height) + 34px); }
}

@media (max-width: 700px) and (prefers-reduced-motion: reduce) {
  body:is(.page-home-da, .page-home-de) .craft-section[data-craft-scroll] .craft-line li:nth-child(n) {
    position: relative;
    top: auto;
  }
}

/* The tool icons arrive as four products, not as one rigid illustration. */
body:is(.page-home-da, .page-home-de) .competence-icon-cloud {
  width: min(440px, 38vw);
  aspect-ratio: 1.08;
}

body:is(.page-home-da, .page-home-de) .competence-icon-cloud::before {
  top: 18%;
  left: 20%;
  width: 58%;
  height: 66%;
}

body:is(.page-home-da, .page-home-de) .competence-icon-cloud .icon-socialdock {
  top: 22%;
  left: 7%;
  width: 34%;
}

body:is(.page-home-da, .page-home-de) .competence-icon-cloud .icon-dotflow {
  top: 3%;
  left: 31%;
  width: 36%;
}

body:is(.page-home-da, .page-home-de) .competence-icon-cloud .icon-mapmax {
  top: 50%;
  bottom: auto;
  left: 26%;
  width: 32%;
}

body:is(.page-home-da, .page-home-de) .competence-icon-cloud .icon-beam {
  top: 28%;
  right: auto;
  left: 47%;
  width: 42%;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"],
  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"] .competence-icon-shell {
    opacity: 1;
    animation-duration: .82s;
    animation-timing-function: cubic-bezier(.2, .82, .24, 1);
    animation-fill-mode: both;
    will-change: translate;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"] .icon-socialdock {
    translate: -58px 12px;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"] .icon-dotflow {
    translate: 10px -54px;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"] .icon-beam {
    translate: 64px 8px;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"] .icon-mapmax {
    translate: -10px 58px;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"].is-visible .icon-socialdock {
    animation-name: nuweb-tool-arrive-left;
    animation-delay: 0ms;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"].is-visible .icon-dotflow {
    animation-name: nuweb-tool-arrive-top;
    animation-delay: 90ms;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"].is-visible .icon-beam {
    animation-name: nuweb-tool-arrive-right;
    animation-delay: 180ms;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .competence-icon-cloud[data-motion="reveal"].is-visible .icon-mapmax {
    animation-name: nuweb-tool-arrive-bottom;
    animation-delay: 270ms;
  }
}

@keyframes nuweb-tool-arrive-left {
  from { translate: -58px 12px; }
  to { translate: 0 0; }
}

@keyframes nuweb-tool-arrive-top {
  from { translate: 10px -54px; }
  to { translate: 0 0; }
}

@keyframes nuweb-tool-arrive-right {
  from { translate: 64px 8px; }
  to { translate: 0 0; }
}

@keyframes nuweb-tool-arrive-bottom {
  from { translate: -10px 58px; }
  to { translate: 0 0; }
}

@media (max-width: 900px) {
  body:is(.page-home-da, .page-home-de) .competence-icon-cloud {
    width: min(370px, 84vw);
  }
}

/* About and contact: a tighter mobile rhythm without flattening the hierarchy. */
@media (max-width: 760px) {
  body:is(.page-about-da, .page-about-de, .page-contact-da, .page-contact-de)
  .subhero:not(.website-landing-hero) > .section-inner {
    padding-top: 92px;
    padding-bottom: 34px;
  }

  body:is(.page-about-da, .page-about-de, .page-contact-da, .page-contact-de)
  .subhero:not(.website-landing-hero) .subhero-grid {
    gap: 24px;
  }

  body:is(.page-about-da, .page-about-de) .about-hero img {
    height: min(76vw, 330px);
  }

  body:is(.page-about-da, .page-about-de) .about-intro-section {
    padding-block: 52px;
  }

  body:is(.page-about-da, .page-about-de) .about-intro-section .two-col {
    gap: 26px;
  }

  body:is(.page-about-da, .page-about-de) .about-intro-section .lead-stack {
    gap: 14px;
    padding-top: 0;
  }

  body:is(.page-about-da, .page-about-de) .about-tool-section {
    padding-block: 36px;
  }

  body:is(.page-about-da, .page-about-de) .about-tool-section .about-tool-band {
    gap: 24px;
    padding: 28px 22px 30px;
  }

  body:is(.page-about-da, .page-about-de) .about-tool-section .about-tool-link {
    min-height: 62px;
    padding-block: 12px;
  }

  body:is(.page-about-da, .page-about-de) .about-process-section {
    padding-top: 52px;
    padding-bottom: 42px;
  }

  body:is(.page-about-da, .page-about-de) .about-process-section > .section-inner > h2 {
    margin-bottom: 34px;
  }

  body:is(.page-about-da, .page-about-de)
  .about-process-section .about-principle-list article:nth-child(n) {
    gap: 14px;
    margin-bottom: 12px;
    padding: 26px 22px 34px;
  }

  body:is(.page-about-da, .page-about-de) .pricing-closing-section {
    padding-block: 44px;
  }

  body:is(.page-about-da, .page-about-de) .pricing-closing article {
    min-height: 0;
    padding: 30px 22px 34px;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-experience {
    padding-block: 48px;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-stage {
    gap: 28px;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-stage-copy {
    gap: 14px;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-direct-note {
    margin-top: 2px;
    padding-top: 14px;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-stage-panel {
    padding: 22px 18px;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-stage-panel-head {
    padding-bottom: 12px;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-path,
  body:is(.page-contact-da, .page-contact-de) .contact-path:visited {
    padding-block: 17px;
  }
}

/* The Denmark-only multilingual service is a regular service card. */
.page-home-da .solution-editorial-card-link {
  display: grid;
  gap: 15px;
  align-content: center;
  height: 100%;
  color: inherit;
}

@media (min-width: 981px) {
  .page-home-da .solution-editorial-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .page-home-da .solution-editorial-list article:nth-child(n) {
    grid-column: auto;
  }
}

/* Mobile homepage rhythm: remove desktop reserves and never leave revealed copy invisible. */
@media (max-width: 700px) {
  body:is(.page-home-da, .page-home-de) .competence-proof-section,
  body:is(.page-home-da, .page-home-de) .solutions-editorial,
  body:is(.page-home-da, .page-home-de) .project-stage {
    padding-block: 56px;
  }

  body:is(.page-home-da, .page-home-de) .competence-proof {
    gap: 24px;
  }

  body:is(.page-home-da, .page-home-de) .competence-icon-cloud {
    aspect-ratio: 1.18;
  }

  body:is(.page-home-da, .page-home-de) .editorial-heading {
    margin-bottom: 38px;
  }

  body:is(.page-home-da, .page-home-de) .solution-editorial-list article:nth-child(n) {
    min-height: 0;
    padding: 28px 24px;
  }

  body:is(.page-home-da, .page-home-de) .workflow-section .feature-split,
  body:is(.page-home-da, .page-home-de) .solutions-editorial + .workflow-section .feature-split {
    gap: 30px;
    padding-block: 48px;
  }

  body:is(.page-home-da, .page-home-de) .workflow-media {
    width: 100%;
    margin: 0;
    translate: none;
    rotate: none;
  }

  body:is(.page-home-da, .page-home-de) .workflow-media img {
    transform: none;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) .workflow-section .feature-split > figure[data-motion="reveal"],
  .motion-ready body:is(.page-home-da, .page-home-de) .workflow-section .feature-split > div[data-motion="reveal"],
  .motion-ready body:is(.page-home-da, .page-home-de) .project-stage-copy[data-motion="reveal"],
  .motion-ready body:is(.page-home-da, .page-home-de) .project-rail-item[data-motion="reveal"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body:is(.page-home-da, .page-home-de) .project-stage-copy {
    gap: 22px;
    margin-bottom: 38px;
  }

  body:is(.page-home-da, .page-home-de) .project-rail {
    gap: 34px;
  }

  body:is(.page-home-da, .page-home-de) .project-rail-item > div {
    min-height: 0;
    padding: 24px 0 8px;
  }

  body:is(.page-home-da, .page-home-de) .process-section {
    padding: 64px 0 80px;
  }

  body:is(.page-home-da, .page-home-de) .process-section h2 {
    margin-bottom: 42px;
  }
}

/* The desktop CTA reuses an older decorative pseudo-element. Reset its fixed
   square dimensions so the scroll overlay always covers the complete image. */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  body:is(.page-home-da, .page-home-de) .footer-cta .cta-panel::before,
  body:is(.page-home-da, .page-home-de) .footer-cta .cta-panel::after {
    width: auto;
    height: auto;
    aspect-ratio: auto;
  }
}

/* Legal pages: calm editorial reading instead of a generic text column. */
.subhero.legal-hero:not(.website-landing-hero),
html[data-theme="dark"] .subhero.legal-hero:not(.website-landing-hero) {
  --subhero-height: auto;
  min-height: 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(112deg, transparent 0 58%, color-mix(in srgb, var(--logo-green) 8%, transparent) 100%),
    var(--paper);
}

.subhero.legal-hero:not(.website-landing-hero)::before,
.subhero.legal-hero:not(.website-landing-hero)::after {
  display: none;
}

.subhero.legal-hero:not(.website-landing-hero) > .section-inner.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
  min-height: 0;
  padding-top: calc(var(--header-height) + clamp(26px, 3vw, 40px));
  padding-bottom: clamp(28px, 3.5vw, 42px);
}

.legal-hero-copy {
  min-width: 0;
}

.legal-hero .subhero-kicker {
  margin: 0 0 18px;
  color: var(--green-text);
}

.legal-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: .93;
  letter-spacing: -.065em;
}

.legal-hero .legal-hero-context {
  display: grid;
  gap: 18px;
  align-content: end;
  min-width: 0;
  padding-bottom: .35rem;
}

.legal-hero .legal-hero-context > p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}

.legal-hero-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.legal-hero-nav a {
  position: relative;
  padding: 12px 4px 3px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 760;
}

.legal-hero-nav a:last-child {
  text-align: right;
}

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

.legal-hero-nav a[aria-current="page"]::before {
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--logo-green);
  content: "";
}

.legal-section,
html[data-theme="dark"] .legal-section {
  padding: clamp(48px, 5vw, 68px) 0 clamp(80px, 9vw, 124px);
  background: var(--paper) !important;
}

.legal-layout {
  display: block;
  max-width: 920px;
}

.legal-rail {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.legal-rail-label {
  margin: 0 0 18px;
  color: var(--green-text);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-rail nav {
  display: grid;
}

.legal-rail a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.legal-rail a[aria-current="page"] {
  color: var(--ink);
  font-weight: 830;
}

.legal-rail a[aria-current="page"]::after {
  width: 18px;
  height: 3px;
  background: var(--logo-green);
  content: "";
}

.legal-body {
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.legal-section .legal-body p,
.legal-section .legal-body ul,
.legal-section .legal-body ol {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.16vw, 1.12rem);
  line-height: 1.72;
}

.legal-body > p:first-child {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.35vw, 1.24rem);
  line-height: 1.62;
}

.legal-body p + p {
  margin-top: 1.15rem;
}

.legal-section .legal-body h2,
.legal-section .legal-body h3,
.legal-section .legal-body > p:has(> strong:only-child) {
  margin: clamp(42px, 5vw, 64px) 0 16px;
  color: var(--ink);
  font-size: clamp(1.38rem, 2vw, 1.72rem);
  font-weight: 820;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.legal-section .legal-body > p:has(> strong:only-child) + p {
  margin-top: 0;
}

.legal-body strong {
  color: var(--ink);
}

.legal-body > p:not(:has(> strong:only-child)) > strong:first-child {
  display: inline-block;
  margin-bottom: .22rem;
  font-size: 1.02em;
  font-weight: 820;
}

.legal-body ul,
.legal-body ol {
  display: grid;
  gap: .55rem;
  margin: 1.15rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.legal-body li {
  position: relative;
  padding-left: 24px;
}

.legal-body li::before {
  position: absolute;
  top: .84em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--logo-green);
  content: "";
  transform: translateY(-50%);
}

.blog-article-body ul {
  padding-left: 0;
  list-style: none;
}

.blog-article-body ul > li {
  position: relative;
  padding-left: 24px;
}

.blog-article-body ul > li::before {
  position: absolute;
  top: .67em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-text);
  content: "";
  transform: translateY(-50%);
}

/* Share actions: compact tools, not a grid of pale form fields. */
.blog-share-actions,
.project-share-box .blog-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(20px, 2.4vw, 34px);
  align-items: center;
  border: 0;
}

.blog-share-actions :is(a, button),
.project-share-box .blog-share-actions :is(a, button) {
  flex: 0 1 auto;
  gap: 8px;
  min-height: 40px;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-size: .86rem;
  transition: color .25s ease, transform .25s ease;
}

.blog-share-actions :is(a, button):nth-child(4n) {
  border-right: 0;
}

.blog-article-aside .blog-share-actions {
  gap: 8px 20px;
}

.blog-article-aside .blog-share-actions :is(a, button):nth-child(2n) {
  border-right: 0;
}

.blog-share-actions :is(a, button) span,
.project-share-box .blog-share-actions :is(a, button) span {
  display: grid;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  color: var(--green-text);
  background: transparent;
}

.blog-share-actions svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-share-actions a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.blog-share-actions :is(a, button):hover {
  border-color: transparent;
  color: var(--green-text);
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.blog-share-actions :is(a, button):hover span {
  color: var(--green-text);
  background: transparent;
}

@media (max-width: 700px) {
  .blog-share-actions,
  .project-share-box .blog-share-actions {
    gap: 8px 18px;
  }

  .blog-share-actions :is(a, button):nth-child(2n) {
    border-right: 0;
  }
}

.legal-body li + li {
  margin-top: 0;
}

.legal-body a {
  color: var(--ink);
  font-weight: 720;
  text-decoration-color: var(--logo-green);
  text-decoration-thickness: 2px;
  text-underline-offset: .22em;
}

@media (max-width: 820px) {
  .subhero.legal-hero:not(.website-landing-hero) > .section-inner.legal-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 24px;
  }

  .legal-hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.8rem);
    line-height: .96;
  }

  .legal-hero .legal-hero-context {
    gap: 16px;
    padding: 0;
  }

  .legal-hero .legal-hero-context > p {
    max-width: 33ch;
    font-size: 1.02rem;
  }

  .legal-hero-nav a {
    padding-top: 14px;
    font-size: .86rem;
  }

  .legal-section,
  html[data-theme="dark"] .legal-section {
    padding: 42px 0 74px;
  }

  .legal-layout {
    display: block;
  }

  .legal-rail {
    position: static;
    border-top-width: 1px;
    padding-top: 12px;
  }

  .legal-rail-label {
    margin-bottom: 10px;
  }

  .legal-rail nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-rail a {
    justify-content: flex-start;
    min-height: 42px;
    border-bottom: 0;
    font-size: .82rem;
  }

  .legal-rail a[aria-current="page"]::after {
    display: none;
  }

  .legal-body > p:first-child {
    font-size: 1.08rem;
  }

  .legal-section .legal-body p,
  .legal-section .legal-body ul,
  .legal-section .legal-body ol {
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .legal-section .legal-body h2,
  .legal-section .legal-body h3,
  .legal-section .legal-body > p:has(> strong:only-child) {
    margin-top: 38px;
    font-size: 1.4rem;
  }
}

/* Tighten the two transitions that still carried desktop-sized breathing room. */
.about-intro-section {
  padding-top: clamp(72px, 7vw, 100px);
  padding-bottom: clamp(78px, 8vw, 112px);
}

@media (max-width: 700px) {
  body:is(.page-home-da, .page-home-de) .workflow-section .feature-split,
  body:is(.page-home-da, .page-home-de) .solutions-editorial + .workflow-section .feature-split {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  body:is(.page-home-da, .page-home-de) .project-stage {
    padding-top: 32px;
    padding-bottom: 52px;
  }

  .about-intro-section {
    padding-top: 52px;
    padding-bottom: 64px;
  }
}

/* Website landing page: the current editorial system, without changing CMS copy. */
body:is(.page-website-landing-da, .page-website-landing-de) .site-header,
body:is(.page-website-landing-da, .page-website-landing-de) .site-header[data-scrolled],
body:is(.page-website-landing-da, .page-website-landing-de) .site-header[data-menu-open] {
  border-color: var(--line);
  color: var(--ink);
  background: var(--header-surface);
  box-shadow: none;
}

body:is(.page-website-landing-da, .page-website-landing-de) .site-header .brand-logo path[style*="fill:#fff"] {
  fill: var(--ink) !important;
}

body:is(.page-website-landing-da, .page-website-landing-de) .site-header :where(.nav-links > a, .language-link, .theme-picker-summary, .nav-toggle) {
  color: var(--ink);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero {
  min-height: clamp(680px, 82svh, 800px);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--logo-green) 5%, transparent), transparent 44%),
    var(--paper);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero::before,
body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero::after {
  display: none;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-inner {
  align-items: center;
  min-height: clamp(680px, 82svh, 800px);
  padding-top: clamp(132px, 11vw, 164px);
  padding-bottom: clamp(72px, 7vw, 96px);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy {
  width: min(48.5%, 650px);
  max-width: none;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy h1 {
  max-width: 13.25ch;
  color: var(--ink);
  font-size: clamp(3.25rem, 4.8vw, 4.45rem);
  line-height: 1.035;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy .subhero-kicker {
  color: var(--logo-green);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy > p:not(.subhero-kicker) {
  max-width: 55ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.62;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-media {
  inset: clamp(132px, 11vw, 164px) max(20px, calc((100vw - var(--max)) / 2)) clamp(64px, 7vw, 92px) auto;
  width: min(46vw, 600px);
  overflow: hidden;
  border: 6px solid var(--surface-elevated);
  border-radius: var(--radius-lg);
  background: var(--surface-elevated);
  box-shadow: 0 28px 70px rgba(14, 17, 16, .12);
}

html[data-theme="dark"] body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-media {
  border-color: #252c29;
  background: #252c29;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .32);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-media img {
  opacity: 1;
  object-position: 56% 50%;
  transform: none;
}

body:is(.page-website-landing-da, .page-website-landing-de) :is(.website-landing-lead-section, .website-landing-card-section, .website-landing-faq) {
  background: var(--paper);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-lead-section {
  padding: clamp(76px, 8vw, 116px) 0 clamp(54px, 6vw, 86px);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-lead {
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: center;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-lead h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 4.6vw, 4.35rem);
  line-height: 1;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-lead > p {
  max-width: 48ch;
  font-size: clamp(1.16rem, 1.55vw, 1.34rem);
  line-height: 1.62;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-showcase-section {
  padding: 0 0 clamp(58px, 6vw, 82px);
  background: var(--paper);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-showcase {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .62fr);
  gap: clamp(38px, 6vw, 82px);
  padding: clamp(24px, 3.4vw, 46px);
  border: 1px solid color-mix(in srgb, var(--logo-green) 18%, #2e3532);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(128deg, #0e1110 0%, #101715 68%, #10241f 100%);
  box-shadow: none;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-showcase figure {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  box-shadow: none;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-showcase h2 {
  max-width: 12ch;
  font-size: clamp(2.55rem, 3.7vw, 3.7rem);
  line-height: 1;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-showcase p:not(.eyebrow) {
  max-width: 38ch;
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-section {
  padding: 0 0 clamp(90px, 9vw, 132px);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-elevated);
  box-shadow: none;
  isolation: isolate;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article::after {
  position: absolute;
  right: -.04em;
  bottom: -.24em;
  z-index: -1;
  max-width: 88%;
  overflow: hidden;
  color: color-mix(in srgb, var(--ink) 5.5%, transparent);
  content: attr(data-card-title);
  font-size: clamp(4.2rem, 8vw, 8.2rem);
  font-weight: 850;
  line-height: .8;
  letter-spacing: -.07em;
  white-space: nowrap;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article:nth-child(1) {
  border-color: #242c29;
  color: #f6f8f6;
  background: #0e1110;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article:nth-child(1) p {
  color: rgba(246, 248, 246, .72);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article:nth-child(1)::after {
  color: rgba(255, 255, 255, .055);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article:nth-child(2) {
  border-color: color-mix(in srgb, var(--logo-green) 20%, var(--line));
  background: var(--surface-green);
}

html[data-theme="dark"] body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article:nth-child(n + 3) {
  border-color: #36413d;
  background: #19201e;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid h2 {
  max-width: 16ch;
  margin-top: 0;
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
  line-height: 1.02;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid p {
  max-width: 44ch;
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.25vw, 1.16rem);
  line-height: 1.58;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-section {
  min-height: 0;
  overflow: visible;
  padding: clamp(88px, 9vw, 136px) 0;
  color: var(--ink);
  background: var(--surface-soft);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process {
  grid-template-columns: minmax(0, .7fr) minmax(470px, 1fr);
  gap: clamp(56px, 8vw, 116px);
  align-items: start;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-copy {
  position: sticky;
  top: 128px;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-copy h2 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(3rem, 4.4vw, 4.2rem);
  line-height: 1;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-copy p:not(.eyebrow) {
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.2rem);
  line-height: 1.62;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid {
  gap: 18px;
  padding-bottom: 90px;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid::before {
  display: none;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article {
  position: sticky;
  top: 122px;
  display: block;
  min-height: 220px;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--surface-elevated);
  box-shadow: none;
  backdrop-filter: none;
  isolation: isolate;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article:nth-child(2) { top: 132px; }
body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article:nth-child(3) { top: 142px; }
body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article:nth-child(4) { top: 152px; }

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article:nth-child(1) {
  border-color: #242c29;
  color: #f6f8f6;
  background: #0e1110;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article:nth-child(2) {
  background: var(--surface-green);
}

html[data-theme="dark"] body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article:nth-child(n + 3) {
  border-color: #36413d;
  background: #19201e;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid h3 {
  max-width: 14ch;
  color: inherit;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid p {
  max-width: 42ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.16rem);
  line-height: 1.58;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article:nth-child(1) p {
  color: rgba(246, 248, 246, .72);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq {
  padding: clamp(88px, 9vw, 132px) 0;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq-grid {
  grid-template-columns: minmax(0, .62fr) minmax(480px, 1fr);
  gap: clamp(58px, 9vw, 132px);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq-grid > div:first-child {
  position: sticky;
  top: 128px;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 4.4vw, 4.2rem);
  line-height: 1;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq .richtext {
  gap: 0;
  max-width: none;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq .richtext h2 {
  max-width: 26ch;
  margin-top: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.15;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq .richtext h2:not(:first-child) {
  margin-top: 34px;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq .richtext p {
  max-width: 62ch;
  margin-top: 14px;
  font-size: clamp(1.06rem, 1.25vw, 1.17rem);
  line-height: 1.64;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta-section {
  padding: 0;
  overflow: hidden;
  background: #0e1110;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta {
  position: relative;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: clamp(500px, 64svh, 680px);
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) max(20px, calc((100vw - var(--max)) / 2));
  isolation: isolate;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 12, 11, .94) 0%, rgba(8, 12, 11, .78) 42%, rgba(8, 12, 11, .2) 72%, rgba(8, 12, 11, .4) 100%),
    linear-gradient(0deg, rgba(8, 12, 11, .52), transparent 56%);
  content: "";
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta figure {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta figure img {
  object-position: center 54%;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta-copy {
  max-width: 650px;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta h2 {
  max-width: 12ch;
  color: #f6f8f6;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta p:not(.eyebrow) {
  max-width: 48ch;
  color: rgba(246, 248, 246, .78);
  font-size: clamp(1.08rem, 1.35vw, 1.2rem);
}

body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta .button-ghost {
  border-color: rgba(255, 255, 255, .5);
  color: #f6f8f6;
  background: rgba(14, 17, 16, .2);
}

@media (max-width: 900px) {
  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-inner {
    order: 1;
    min-height: 0;
    padding-top: 116px;
    padding-bottom: 36px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy {
    width: 100%;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 8.8vw, 4.2rem);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-media {
    position: relative;
    inset: auto;
    order: 2;
    width: min(calc(100% - 40px), var(--max));
    height: clamp(340px, 56vw, 500px);
    margin: 0 auto 64px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-lead,
  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process,
  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq-grid {
    grid-template-columns: 1fr;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-copy,
  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq-grid > div:first-child {
    position: static;
  }
}

@media (max-width: 700px) {
  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-inner {
    padding-top: 104px;
    padding-bottom: 28px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy h1 {
    font-size: clamp(2.75rem, 12vw, 3.75rem);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-media {
    width: calc(100% - 32px);
    height: min(72vw, 390px);
    margin-bottom: 48px;
    border-width: 4px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) :is(.website-landing-lead-section, .website-landing-process-section, .website-landing-faq) {
    padding-block: 56px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-lead {
    gap: 24px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-lead h2,
  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-copy h2,
  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq h2 {
    max-width: 13ch;
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-showcase-section {
    padding-bottom: 58px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-showcase {
    width: calc(100% - 32px);
    gap: 28px;
    padding: 16px 16px 30px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-showcase figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-showcase > div {
    padding-inline: 8px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-section {
    padding-bottom: 62px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article {
    position: sticky;
    top: 82px;
    min-height: 230px;
    padding: 30px 26px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article:nth-child(2) { top: 90px; }
  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article:nth-child(3) { top: 98px; }
  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid article:nth-child(4) { top: 106px; }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-card-grid h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process {
    gap: 34px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid {
    padding-bottom: 42px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article {
    min-height: 240px;
    padding: 30px 26px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid h3 {
    font-size: clamp(1.9rem, 8vw, 2.55rem);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq-grid {
    gap: 34px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-faq .richtext h2 {
    padding-top: 22px;
    font-size: 1.35rem;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta {
    min-height: 620px;
    align-items: end;
    padding: 72px 20px 52px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta::after {
    background:
      linear-gradient(0deg, rgba(8, 12, 11, .96) 0%, rgba(8, 12, 11, .76) 52%, rgba(8, 12, 11, .24) 100%);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-cta h2 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 11vw, 3.6rem);
  }
}

/* Home process cards: a compact native sticky stack on phones.
   Sticky is a layout behaviour, so it must not depend on motion preferences. */
@media (max-width: 700px) {
  body:is(.page-home-da, .page-home-de) [data-process-stack],
  body:is(.page-home-da, .page-home-de) [data-process-stack] > .section-inner,
  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid {
    overflow: visible;
  }

  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid {
    display: grid;
    gap: 14px;
    align-items: start;
    padding-bottom: 38px;
  }

  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article,
  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(n) {
    position: sticky;
    top: 82px;
    width: 100%;
    min-height: 228px;
    margin: 0;
    padding: 30px 26px 32px;
    translate: none;
    transform: none;
    transition: none;
    will-change: auto;
    isolation: isolate;
  }

  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(1) {
    z-index: 1;
  }

  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(2) {
    top: 91px;
    z-index: 2;
  }

  body:is(.page-home-da, .page-home-de) [data-process-stack] .process-grid article:nth-child(3) {
    top: 100px;
    z-index: 3;
  }
}

/* One coherent mobile H1 scale across editorial and detail pages. */
@media (max-width: 560px) {
  .blog-article-hero h1,
  body[class*="page-project-detail-"] .project-detail-hero h1,
  body:is(.page-contact-da, .page-contact-de) .contact-hero h1 {
    font-size: clamp(2.45rem, 11vw, 2.68rem);
    line-height: 1.035;
  }
}

/* Keep moving customer logos from being cut off by a hard viewport edge. */
.client-logo-marquee {
  --client-logo-edge-fade: var(--client-logo-slot, 220px);
  --client-logo-edge-clear: 170px;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    transparent var(--client-logo-edge-clear),
    #000 var(--client-logo-edge-fade),
    #000 calc(100% - var(--client-logo-edge-fade)),
    transparent calc(100% - var(--client-logo-edge-clear)),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    transparent var(--client-logo-edge-clear),
    #000 var(--client-logo-edge-fade),
    #000 calc(100% - var(--client-logo-edge-fade)),
    transparent calc(100% - var(--client-logo-edge-clear)),
    transparent 100%
  );
}

@media (max-width: 700px) {
  .client-logo-marquee {
    --client-logo-edge-fade: 96px;
    --client-logo-edge-clear: 28px;
  }
}

/* A quiet continuation cue for the desktop-sized, first-screen home hero. */
.home-scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: calc(var(--home-proof-overlap, 34px) + var(--home-proof-lift, 16px) + 18px);
  left: 50%;
  display: none;
  min-width: 76px;
  padding: 8px 12px 4px;
  color: color-mix(in srgb, var(--ink) 66%, transparent);
  font-size: .72rem;
  font-weight: 720;
  letter-spacing: .11em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.home-scroll-cue::after {
  display: block;
  width: 9px;
  height: 9px;
  margin: 8px auto 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.home-scroll-cue:hover {
  color: var(--ink);
}

.home-scroll-cue:focus-visible {
  color: var(--ink);
  outline: 2px solid var(--logo-green);
  outline-offset: 4px;
}

#home-content {
  scroll-margin-top: var(--header-height);
}

@media (min-width: 901px) {
  .home-scroll-cue {
    display: block;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .home-scroll-cue::after {
    animation: nuweb-home-scroll-cue 1.8s ease-in-out infinite;
  }
}

@keyframes nuweb-home-scroll-cue {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 5px; }
}

/* Project title images keep the aspect ratio stored in the CMS. This avoids
   both forced crops and an oversized frame when editors upload wider images. */
body:is(.page-home-da, .page-home-de) .home-hero .project-window img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  background: #f4f5f1;
}

html[data-theme="dark"] body:is(.page-home-da, .page-home-de) .home-hero .project-window img {
  background: #151a18;
}

body:is(.page-home-da, .page-home-de) .project-rail-item figure img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
}

body:is(.page-home-da, .page-home-de) .project-rail-item figure,
body:is(.page-home-da, .page-home-de) .project-rail-item:first-child figure {
  aspect-ratio: 16 / 9;
}

/* The scrollable reference browser belongs to the light surface in light
   mode. Dark mode keeps its existing dark browser chrome. */
html:not([data-theme="dark"]) .project-list .project-browser,
html:not([data-theme="dark"]) .project-detail-story .project-browser {
  border-color: color-mix(in srgb, var(--ink) 14%, transparent);
  background: #e8e9e4;
  box-shadow: 0 24px 64px rgba(17, 21, 19, .11);
}

html:not([data-theme="dark"]) .project-list .browser-chrome,
html:not([data-theme="dark"]) .project-detail-story .browser-chrome {
  border-bottom-color: rgba(17, 21, 19, .1);
  color: rgba(17, 21, 19, .62);
  background: #e8e9e4;
}

html:not([data-theme="dark"]) .project-list .browser-dots i,
html:not([data-theme="dark"]) .project-detail-story .browser-dots i {
  background: rgba(17, 21, 19, .34);
}

html:not([data-theme="dark"]) .project-list .browser-address,
html:not([data-theme="dark"]) .project-detail-story .browser-address {
  border-color: rgba(17, 21, 19, .1);
  color: rgba(17, 21, 19, .66);
  background: rgba(255, 255, 255, .52);
}

/* A compact home-page recommendation row: useful sharing without turning the
   footer into a social-media panel. */
.footer-home-share {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px 14px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.footer-home-share > span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 780;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-home-share > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
}

.footer-home-share a {
  display: inline-flex;
  align-items: center;
  padding: 2px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: inherit;
  font-size: .73rem;
  font-weight: 720;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color .25s ease, color .25s ease;
}

.footer-home-share a:hover,
.footer-home-share a:focus-visible {
  border-bottom-color: var(--logo-green);
  color: var(--logo-green);
  background: transparent;
}

/* Portrait tablets use a deliberate layout instead of a stretched phone stack. */
@media (min-width: 701px) and (max-width: 1024px) and (orientation: portrait) {
  .section-inner,
  .nav-shell {
    width: min(var(--max), calc(100% - 56px));
  }

  :is(.language-link, .theme-picker-summary, .nav-toggle) {
    width: 44px;
    height: 44px;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page),
  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) > .section-inner {
    min-height: 0;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) > .section-inner {
    padding-top: 108px;
    padding-bottom: 56px;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) .subhero-grid,
  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page).about-hero > .section-inner {
    grid-template-columns: minmax(0, .92fr) minmax(300px, 1.08fr);
    gap: clamp(28px, 4vw, 44px);
    align-items: center;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) .subhero-copy {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) h1 {
    max-width: 11.5ch;
    font-size: clamp(2.65rem, 5.25vw, 3.45rem);
    line-height: 1.01;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) .subhero-copy > h1 + p {
    margin-top: 20px;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) p {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) :is(.subhero-visual, .subhero-media, .contact-portrait) {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: auto;
    margin: 0;
    translate: none !important;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) .subhero-media {
    aspect-ratio: 4 / 3;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) :is(.subhero-media, .contact-portrait) picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) :is(.subhero-media, .contact-portrait) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
  }

  .subhero.about-hero:not(.website-landing-hero) img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .subhero.contact-hero:not(.website-landing-hero) .contact-portrait,
  .subhero.contact-hero:not(.website-landing-hero) .contact-portrait img {
    aspect-ratio: 1;
  }

  /* Solutions and references keep image and explanation in one compact row. */
  body:is(.page-solutions-da, .page-solutions-de) .solution-list {
    gap: clamp(34px, 5vw, 50px);
    padding-bottom: 0;
  }

  body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:first-child,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:not(:last-child) {
    grid-template-columns: minmax(320px, 1.02fr) minmax(0, .98fr);
    align-items: center;
    gap: clamp(24px, 3vw, 32px);
  }

  body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row {
    padding-block: clamp(28px, 4vw, 42px);
  }

  body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row > img {
    position: relative;
    top: auto;
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    translate: none;
  }

  body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row:nth-child(even) > img,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:nth-child(even) .project-browser {
    order: 2;
  }

  body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row:nth-child(even) > div,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:nth-child(even) .project-copy {
    order: 1;
  }

  body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-pair,
  body:is(.page-projects-da, .page-projects-de) .project-list .detail-pair {
    grid-template-columns: 1fr;
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide {
    padding: 16px;
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-browser,
  body[class*="page-project-detail-"] .project-detail-story .project-browser {
    position: relative;
    top: auto;
    min-width: 0;
    align-self: center;
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .browser-viewport {
    height: clamp(360px, 46vw, 470px);
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-copy {
    min-width: 0;
    gap: 16px;
    padding: 8px 2px;
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide h2 {
    max-width: none;
    font-size: clamp(1.9rem, 3.3vw, 2.3rem);
  }

  body:is(.page-projects-da, .page-projects-de) > .footer-cta {
    margin-top: 0;
  }

  body:is(.page-prices-da, .page-prices-de) .pricing-stack {
    gap: clamp(32px, 5vw, 48px);
  }

  body:is(.page-prices-da, .page-prices-de) .pricing-package {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 30px;
  }

  body:is(.page-prices-da, .page-prices-de) .pricing-intro {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(250px, .76fr) minmax(0, 1.24fr);
    column-gap: clamp(26px, 4vw, 44px);
    align-items: start;
  }

  body:is(.page-prices-da, .page-prices-de) .pricing-intro h2 {
    max-width: none;
  }

  body:is(.page-prices-da, .page-prices-de) .pricing-intro p {
    grid-column: 2;
    width: 100%;
    max-width: 46ch;
    margin-top: 0;
  }

  body:is(.page-prices-da, .page-prices-de) :is(.pricing-care, .pricing-closing) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  body:is(.page-contact-da, .page-contact-de) .contact-stage {
    grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
    gap: clamp(28px, 4vw, 42px);
    align-items: center;
  }

  body:is(.page-about-da, .page-about-de) .about-intro-section .two-col,
  body:is(.page-website-landing-da, .page-website-landing-de) :is(.website-landing-lead, .website-landing-process, .website-landing-faq-grid) {
    grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
    gap: clamp(28px, 4vw, 42px);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) :is(.website-landing-hero, .website-landing-hero-inner) {
    min-height: min(760px, 82svh);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-inner {
    padding-top: 112px;
    padding-bottom: 58px;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy h1 {
    max-width: 11ch;
    font-size: clamp(3.35rem, 6.2vw, 4.2rem);
    line-height: .99;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-process-grid article {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 18px;
  }

  /* The footer keeps its information, but no longer becomes another full page. */
  .site-footer {
    padding: 44px 0 36px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 28px;
  }

  .footer-about {
    grid-column: 1 / -1;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 254, 250, .16);
  }

  .footer-resource-group {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding-block: 0;
    border-block: 0;
  }

  .footer-resource-group h3 {
    grid-column: auto;
  }

  .footer-legal-group {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 254, 250, .16);
  }

  .footer-legal-group h3 {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (min-width: 701px) and (max-width: 900px) and (orientation: portrait) {
  body:is(.page-projects-da, .page-projects-de) .project-list {
    gap: clamp(30px, 5vw, 44px);
    padding-bottom: 40px;
  }

  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:first-child,
  body:is(.page-projects-da, .page-projects-de) .project-list .project-wide:not(:last-child) {
    margin-bottom: 0;
  }

  body:is(.page-home-da, .page-home-de) .home-hero,
  body:is(.page-home-da, .page-home-de) .home-hero .hero-stage {
    min-height: 0;
    height: auto;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-stage {
    grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr);
    gap: 24px;
    align-items: center;
    padding-top: 118px;
    padding-bottom: 66px;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-copy {
    align-self: center;
    max-width: none;
    gap: 22px;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 5.7vw, 3.2rem);
    line-height: 1.01;
  }

  body.page-home-de .home-hero .hero-title-line {
    white-space: normal;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 300px);
    gap: 10px;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-actions .button {
    width: 100%;
  }

  body:is(.page-home-da, .page-home-de) .home-hero :is(.hero-projects, .hero-project-fan) {
    width: 100%;
    min-height: clamp(390px, 55vw, 470px);
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-project-fan {
    --hero-fan-x: 0px;
    --hero-fan-y: -6px;
    --hero-fan-rotation: -2deg;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-project-fan .hero-fan-card {
    width: min(78%, 430px);
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-project-badge {
    width: 108px;
  }
}

@media (min-width: 901px) and (max-width: 1024px) and (orientation: portrait) {
  .site-header .nav-links {
    gap: clamp(16px, 2vw, 22px);
    font-size: .82rem;
  }

  .site-header .nav-links > a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (min-width: 701px) and (max-width: 820px) and (orientation: portrait) {
  body:is(.page-solutions-da, .page-solutions-de) .solution-list .detail-row h2 {
    font-size: 2rem;
  }
}

@keyframes nuweb-tablet-subhero-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(.99);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes nuweb-tablet-fan-in {
  from {
    opacity: 0;
    translate: var(--hero-fan-x) calc(var(--hero-fan-y) + 14px);
  }

  to {
    opacity: 1;
    translate: var(--hero-fan-x) var(--hero-fan-y);
  }
}

@media (min-width: 701px) and (max-width: 1024px) and (orientation: portrait) {
  /* Tablet entrances keep their motion but start inside the viewport. */
  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) .subhero-visual {
    animation: nuweb-tablet-subhero-in .72s cubic-bezier(.22, .8, .3, 1) .06s both;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-project-fan {
    animation: nuweb-tablet-fan-in .82s cubic-bezier(.16, 1, .3, 1) .06s both;
  }

  .motion-ready body:is(.page-home-da, .page-home-de) :is(
    .competence-icon-cloud,
    .competence-proof-copy,
    .editorial-heading,
    .project-stage-copy,
    .solution-editorial-list article,
    .workflow-section .feature-split > figure,
    .workflow-section .feature-split > div,
    .project-rail-item,
    .process-section > .section-inner > h2
  )[data-motion="reveal"] {
    transform: translate3d(0, 18px, 0) scale(.99);
  }

  .motion-ready body:is(.page-home-da, .page-home-de) :is(
    .competence-icon-cloud,
    .competence-proof-copy,
    .editorial-heading,
    .project-stage-copy,
    .solution-editorial-list article,
    .workflow-section .feature-split > figure,
    .workflow-section .feature-split > div,
    .project-rail-item,
    .process-section > .section-inner > h2
  )[data-motion="reveal"].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero::after {
    background:
      linear-gradient(90deg, rgba(8, 12, 11, .92) 0%, rgba(8, 12, 11, .78) 48%, rgba(8, 12, 11, .3) 100%),
      linear-gradient(0deg, rgba(8, 12, 11, .5), rgba(8, 12, 11, .08));
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy {
    color: #fffefa;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy h1 {
    color: #fffefa;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy > p:not(.subhero-kicker) {
    color: rgba(255, 254, 250, .84);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy .subhero-kicker {
    color: var(--logo-green);
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-copy .button-ghost {
    border-color: rgba(255, 254, 250, .64);
    color: #fffefa;
  }
}

/* Final tablet geometry: the section-inner is the grid itself. */
@media (min-width: 701px) and (max-width: 1024px) and (orientation: portrait) {
  .subhero:not(.website-landing-hero):not(.legal-hero):not(.error-page) > .section-inner.subhero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(300px, 1.08fr);
    gap: clamp(28px, 4vw, 44px);
    align-items: center;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body:is(.page-website-landing-da, .page-website-landing-de) .website-landing-hero-inner {
    position: relative;
    z-index: 2;
  }

  .footer-grid {
    grid-template-columns: minmax(210px, 1.35fr) repeat(3, minmax(0, .9fr));
  }

  .footer-about {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-legal-group {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-project-fan {
    rotate: 0deg;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-project-fan .hero-fan-card {
    width: min(70%, 400px);
  }
}

@media (min-width: 901px) and (max-width: 1024px) and (orientation: portrait) {
  body:is(.page-home-da, .page-home-de) .home-hero .hero-projects {
    min-width: 0;
  }

  body:is(.page-home-da, .page-home-de) .home-hero .hero-project-fan {
    --hero-fan-x: -10px;
    --hero-fan-y: -24px;
    width: 100%;
    min-height: clamp(500px, 54vw, 560px);
  }
}
