@import url("fonts.css");
@import url("cursor.css");

@font-face {
  font-family: "Sturmkante Display";
  src: url("assets/fonts/sturmkante/BarlowCondensed-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Sturmkante Text";
  src: url("assets/fonts/sturmkante/IBMPlexSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --kks-black: #050505;
  --kks-surface: #0a0a0a;
  --kks-surface-2: #101010;
  --kks-line: rgba(255, 255, 255, 0.14);
  --kks-line-strong: rgba(255, 255, 255, 0.28);
  --kks-ink: #f5f3ed;
  --kks-muted: #9f9f9b;
  --kks-red: #e50914;
  --kks-white-light: rgba(245, 243, 237, 0.14);
  --kks-shell: 1480px;
  --kks-gutter: clamp(18px, 4vw, 72px);
  --kks-section: clamp(96px, 14vw, 220px);
  --kks-radius: clamp(14px, 1.6vw, 26px);
  --kks-fast: 180ms;
  --kks-medium: 520ms;
  --kks-ease: cubic-bezier(0.16, 0.84, 0.24, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body.service-page {
  min-width: 320px;
  margin: 0;
  color: var(--kks-ink);
  background: var(--kks-black);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.55;
  overflow-x: clip;
}

html:has(body.service-page) {
  overflow-x: clip;
}

body.service-page::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

img,
video {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  color: #000;
  background: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--kks-fast) ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.service-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 14px var(--kks-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.service-header__logo {
  width: clamp(132px, 14vw, 206px);
  display: block;
}

.service-header__logo img {
  width: 100%;
  display: block;
}

.service-header__label {
  color: var(--kks-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-header > .button,
.service-header__cta {
  justify-self: end;
}

.button,
.service-header__cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--kks-red);
  border-radius: 999px;
  color: #fff;
  background: var(--kks-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: transform var(--kks-fast) ease, background var(--kks-fast) ease, border-color var(--kks-fast) ease, box-shadow var(--kks-fast) ease;
}

.button:hover,
.service-header__cta:hover {
  transform: translateY(-2px);
  border-color: #fff;
  background: #b9000a;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
}

.button:focus-visible,
.service-header__cta:focus-visible,
.media-card:focus-visible,
summary:focus-visible,
.service-footer a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

.is-contact-cta-suppressed {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

.service-main {
  padding-top: 76px;
}

.breadcrumbs {
  width: min(calc(100% - (2 * var(--kks-gutter))), var(--kks-shell));
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 30px auto 0;
  color: var(--kks-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.scene {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: center;
  padding: var(--kks-section) 0;
  isolation: isolate;
}

.scene + .scene {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.scene--surface {
  background: var(--kks-surface);
}

.scene--drone {
  overflow: hidden;
}

.scene--surface::after {
  position: absolute;
  top: 0;
  right: clamp(18px, 8vw, 160px);
  width: min(48vw, 720px);
  height: 1px;
  content: "";
  background: rgba(245, 243, 237, 0.34);
  box-shadow: 0 0 34px rgba(245, 243, 237, 0.14);
}

.scene--hero {
  min-height: calc(100svh - 76px);
  padding-top: clamp(66px, 10vw, 140px);
}

.scene-shell {
  position: relative;
  width: min(calc(100% - (2 * var(--kks-gutter))), var(--kks-shell));
  margin: 0 auto;
}

.scene-shell--split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 8vw, 136px);
}

.scene-copy {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.eyebrow {
  display: block;
  margin: 0 0 18px;
  color: #c4c4bf;
  font-size: clamp(11px, 0.85vw, 14px);
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.display {
  max-width: 16ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 7.2vw, 122px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-wrap: balance;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.service-corporate-design .scene--hero .display,
.service-websites .scene--hero .display {
  font-size: clamp(46px, 6.2vw, 106px);
}

h2.display {
  font-size: clamp(40px, 5.9vw, 94px);
}

.sedgwick {
  color: inherit;
  font-family: var(--font-accent);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-shadow: none;
}

.scene p,
.scene li {
  max-width: 72ch;
}

.scene-copy > p:not(.eyebrow),
.scene-lead,
.rich-copy p {
  color: #bebeba;
}

.scene-copy > p:not(.eyebrow):first-of-type,
.scene-lead {
  font-size: clamp(18px, 1.55vw, 25px);
}

.scene-copy .button,
.final-cta .button {
  margin-top: 22px;
}

.scene-lead {
  max-width: 760px;
  margin: 26px 0 50px;
}

.service-module-label {
  margin-top: clamp(48px, 7vw, 92px);
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--kks-line);
}

.service-module-split {
  align-items: start;
  margin-top: clamp(48px, 7vw, 92px);
}

.service-module-split h3,
.service-inline-panel h3 {
  max-width: 22ch;
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 48px);
  line-height: 0.98;
  text-transform: uppercase;
}

.service-module-title {
  max-width: 18ch;
  margin: 0 0 24px;
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: 0.94;
  text-transform: uppercase;
}

.service-inline-panel {
  margin-top: clamp(42px, 6vw, 78px);
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--kks-line);
  background: rgba(255, 255, 255, 0.025);
}

.service-inline-panel > :last-child {
  margin-bottom: 0;
}

.anchor-target {
  position: absolute;
  top: -96px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.demo-stack {
  min-width: 0;
}

.demo-label {
  display: block;
  margin-top: 12px;
  color: var(--kks-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-websites .scene--hero .scene-shell--split {
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
}

.service-websites .scene--hero .demo-browser__canvas {
  min-height: clamp(300px, 34vw, 520px);
}

.rich-copy {
  max-width: 780px;
}

.rich-copy ul,
.fit-list,
.keyword-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.rich-copy li,
.fit-list li,
.keyword-list li,
.launch-checks li,
.sprint-track li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--kks-line);
}

.rich-copy li::before,
.fit-list li::before,
.keyword-list li::before,
.launch-checks li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--kks-red);
}

.process-grid,
.application-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(32px, 5vw, 74px);
  border: 1px solid var(--kks-line);
  background: var(--kks-line);
}

.process-grid > *,
.application-grid > *,
.metric-grid > * {
  min-width: 0;
  margin: 0;
  padding: clamp(24px, 3vw, 46px);
  color: inherit;
  background: var(--kks-surface);
  text-decoration: none;
}

.process-grid article > span,
.process-grid li > strong,
.metric-grid strong {
  color: var(--kks-red);
  font-size: clamp(13px, 1.1vw, 18px);
  letter-spacing: 0.12em;
}

.process-grid h3,
.application-grid h3,
.case-stage h3 {
  margin: 12px 0;
  font-size: clamp(21px, 1.7vw, 25px);
  line-height: 1.03;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.process-grid p,
.application-grid p {
  margin: 0;
  color: var(--kks-muted);
  font-size: 0.9em;
}

.service-social-media-content [data-scroll-scene="social-platforms"] .platform-card--linked {
  position: relative;
  display: grid;
  align-content: start;
  grid-template-rows: auto 1fr auto;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms var(--kks-ease);
}

.service-social-media-content [data-scroll-scene="social-platforms"] .platform-card--linked:hover,
.service-social-media-content [data-scroll-scene="social-platforms"] .platform-card--linked:focus-visible {
  border-color: rgba(229, 9, 20, 0.72);
  background-color: #111;
  outline: 0;
  transform: translateY(-4px);
}

.service-social-media-content [data-scroll-scene="social-platforms"] .platform-card--linked > span {
  display: block;
  margin-top: clamp(30px, 4vw, 58px);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-grid--seven {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-social-media-content [data-scroll-scene="social-system"] .process-grid,
.service-social-media-content [data-scroll-scene="social-process"] .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 28px);
}

.media-grid--hero {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.media-grid--hero > :nth-child(2) {
  transform: translateY(-8%);
}

.media-grid--outcomes,
.media-grid--formats,
.media-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.media-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  display: grid;
  align-content: end;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--kks-line);
  border-radius: var(--kks-radius);
  color: #fff;
  background: #0e0e0e;
  text-align: left;
  isolation: isolate;
}

button.media-card {
  cursor: pointer;
}

.media-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94), transparent);
}

.media-card > video,
.media-card > img,
.media-card > [data-kks-media-preview] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--kks-ease), opacity var(--kks-medium) ease;
}

.media-card:hover > video,
.media-card:hover > img {
  transform: scale(1.035);
}

.media-card > div,
.media-card > span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card h3 {
  margin: 0 0 8px;
  font-size: clamp(21px, 1.8vw, 30px);
  line-height: 1;
}

.media-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.media-card--portrait {
  min-height: 520px;
  aspect-ratio: 9 / 16;
}

.media-card--wide,
.media-card--master {
  aspect-ratio: 16 / 9;
}

.media-card--placeholder {
  min-height: 260px;
  place-items: center;
  padding: 30px;
  border-style: dashed;
  color: var(--kks-muted);
  background: #090909;
}

.case-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(32px, 6vw, 100px);
  margin-top: clamp(52px, 8vw, 124px);
  padding-top: clamp(32px, 4vw, 64px);
  border-top: 1px solid var(--kks-line-strong);
}

.case-stage__copy {
  position: sticky;
  top: 124px;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0;
}

.metric-grid > * {
  padding: 20px;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
}

.metric-grid span {
  margin-top: 10px;
  color: var(--kks-muted);
  font-size: 12px;
  line-height: 1.35;
}

.format-system {
  min-width: 0;
}

.format-system__outputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--kks-line);
}

.format-system__outputs span {
  padding: 14px;
  background: var(--kks-surface);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.camera-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1600px;
}

.camera-stage > img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 50px 62px rgba(0, 0, 0, 0.78));
  transform: rotateY(var(--scene-rotate-y, 0deg)) rotateX(var(--scene-rotate-x, 0deg));
  transition: transform 90ms linear;
}

.camera-stage[data-media-state="ready"] {
  overflow: hidden;
}

.camera-stage__lens {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 39%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid rgba(233, 245, 255, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(212, 238, 255, 0.2), 0 0 38px rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -43%);
}

.camera-stage__lens::after {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(166, 213, 255, 0.34);
  border-radius: inherit;
  content: "";
  box-shadow: inset 8px -10px 20px rgba(252, 130, 184, 0.12);
}

.camera-stage__lens video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drone-stage {
  position: relative;
  min-height: min(66vw, 690px);
  overflow: visible;
}

.drone-stage video {
  position: absolute;
  top: 50%;
  right: -14%;
  width: 128%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 42px 46px rgba(0, 0, 0, 0.74));
  transform: translate3d(34%, -58%, 0) rotate(8deg);
  transition: transform 1.4s var(--kks-ease);
}

.scene.is-active .drone-stage video {
  transform: translate3d(0, -50%, 0) rotate(-2deg);
  animation: drone-hover 4.8s ease-in-out 1.4s infinite;
}

@keyframes drone-hover {
  0%, 100% { margin-top: 0; rotate: -2deg; }
  50% { margin-top: -11px; rotate: 2deg; }
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-list li {
  padding: 9px 13px;
  border: 1px solid var(--kks-line);
  border-radius: 999px;
  color: var(--kks-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.keyword-list li::before {
  display: none;
}

.demo-browser {
  position: relative;
  width: min(100%, 1080px);
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: clamp(14px, 2vw, 28px);
  background: #0c0c0c;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.52);
}

.demo-browser__bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--kks-line);
  color: var(--kks-muted);
  background: #111;
  font: 11px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.demo-browser__bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.demo-browser__bar code {
  margin-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-browser__canvas {
  position: relative;
  min-height: clamp(300px, 42vw, 650px);
  overflow: hidden;
  background: #111;
}

.demo-browser__canvas > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.demo-browser[data-demo-browser="build"] .demo-browser__canvas > img {
  object-position: 50% 0%;
}

.sturmkante-demo__ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: end;
  padding: clamp(24px, 5vw, 70px);
  color: #f2f0e8;
  background: linear-gradient(to top, rgba(11, 14, 14, 0.96), rgba(11, 14, 14, 0.05) 66%);
  font-family: "Sturmkante Text", sans-serif;
}

.sturmkante-demo__ui strong {
  color: #d8ff3e;
  font-family: "Sturmkante Display", sans-serif;
  font-size: clamp(38px, 7vw, 102px);
  letter-spacing: 0.02em;
  line-height: 0.82;
  text-transform: uppercase;
}

.sturmkante-demo__ui b {
  margin-top: 15px;
  font-size: clamp(12px, 1.4vw, 20px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sturmkante-demo__label {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 8px 10px;
  color: #0b0e0e;
  background: #d8ff3e;
  font: 700 9px/1.2 "Sturmkante Text", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-browser[data-demo-browser="responsive"] {
  width: var(--responsive-width, 76%);
  min-width: 320px;
  transition: width 90ms linear;
}

.demo-browser[data-demo-browser="build"] .sturmkante-demo__ui {
  clip-path: inset(var(--build-inset, 24%) 0 0 0);
}

.demo-browser--bad {
  transform: rotate(-1.4deg);
  border-color: #9c9c9c;
  border-radius: 3px;
  background: #fff;
  box-shadow: 8px 12px 0 #1e6fb8;
}

.demo-browser--bad .demo-browser__bar {
  color: #222;
  background: #dadada;
}

.demo-browser--bad .demo-browser__canvas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 24px;
  background: #efefef;
}

.demo-browser--bad .demo-browser__canvas i {
  min-height: 58px;
  display: block;
  border: 2px outset #d6d6d6;
  background: #1e6fb8;
}

.performance-meter,
.launch-checks,
.sprint-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 44px 0 0;
  padding: 0;
  border: 1px solid var(--kks-line);
  background: var(--kks-line);
  list-style: none;
}

.performance-meter span,
.launch-checks li,
.sprint-track li {
  padding: 22px 16px;
  border: 0;
  color: var(--kks-muted);
  background: var(--kks-surface);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.performance-meter span {
  position: relative;
  overflow: hidden;
}

.performance-meter span::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: var(--kks-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--kks-ease);
}

.scene.is-active .performance-meter span::after {
  transform: scaleX(1);
}

.sprint-track {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sprint-track li {
  counter-increment: sprint;
}

.sprint-track li::before {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 12px;
  color: var(--kks-red);
  background: none;
  content: counter(sprint, decimal-leading-zero);
  font-size: 19px;
}

.brand-stage {
  position: relative;
  min-height: clamp(410px, 55vw, 720px);
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background: #0b0e0e;
  isolation: isolate;
}

.brand-stage > :not(.brand-stage__visual) {
  position: relative;
  z-index: 3;
}

.brand-stage__visual,
.brand-stage__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-stage__visual img {
  object-fit: cover;
}

.brand-stage__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(11, 14, 14, 0.96), rgba(11, 14, 14, 0.06) 70%);
}

.brand-stage__wordmark {
  position: absolute;
  right: 6%;
  bottom: 8%;
  left: 6%;
  z-index: 2;
  color: #d8ff3e;
  font-family: "Sturmkante Display", sans-serif;
  font-size: clamp(44px, 8vw, 118px);
  line-height: 0.78;
  text-transform: uppercase;
}

.brand-stage__wordmark small {
  display: block;
  margin-top: 17px;
  color: #f2f0e8;
  font-family: "Sturmkante Text", sans-serif;
  font-size: clamp(11px, 1.2vw, 17px);
  letter-spacing: 0.15em;
}

.brand-stage[data-brand-stage="hero"] {
  padding: 48px;
  color: #303030;
  background: #ececec;
  font-family: Arial, Helvetica, sans-serif;
  transform: rotate(-1deg);
  box-shadow: 12px 12px 0 #1e6fb8;
}

.brand-stage[data-brand-stage="hero"] > p {
  margin: 0;
  color: #1e6fb8;
  font-size: clamp(30px, 5vw, 68px);
  font-weight: 400;
}

.brand-stage[data-brand-stage="hero"] > span {
  display: block;
  width: 100px;
  height: 100px;
  margin: 60px auto;
  border-radius: 50%;
  color: #fff;
  background: #1e6fb8;
  font-size: 12px;
  line-height: 100px;
  text-align: center;
}

.brand-stage[data-brand-stage="hero"] .brand-stage__visual {
  z-index: 4;
  opacity: var(--scene-progress, 0);
  transform: translateY(var(--brand-shift, 16%)) rotate(1deg);
}

.brand-stage[data-brand-stage="hero"] > small,
.brand-stage > small {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 8;
  padding: 7px 9px;
  color: #0b0e0e;
  background: #d8ff3e;
  font: 700 9px/1.2 "Sturmkante Text", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-stage[data-brand-stage="elements"],
.brand-stage[data-brand-stage="brand-kit"],
.brand-stage[data-brand-stage="explosion"],
.brand-stage[data-brand-stage="case-one"] {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  gap: 8px;
  padding: 42px;
}

.brand-stage[data-brand-stage="elements"] > span,
.brand-stage[data-brand-stage="explosion"] > span,
.brand-stage[data-brand-stage="brand-kit"] nav span {
  z-index: 4;
  padding: 9px 13px;
  color: #0b0e0e;
  background: #d8ff3e;
  font: 700 10px/1.1 "Sturmkante Text", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-stage[data-brand-stage="brand-kit"] nav {
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-application-hero {
  position: relative;
  margin: 38px 0 22px;
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background: #0b0e0e;
}

.brand-application-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-application-hero figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  color: #0b0e0e;
  background: #d8ff3e;
  font: 700 9px/1.2 "Sturmkante Text", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-stage[data-brand-stage="explosion"] .brand-stage__wordmark {
  display: none;
}

.brand-stage[data-brand-stage="explosion"] .brand-stage__visual::after {
  background: linear-gradient(to top, rgba(11, 14, 14, 0.84), rgba(11, 14, 14, 0) 58%);
}

.application-grid--no-logo article,
.service-corporate-design .application-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  color: #f2f0e8;
  background: #0b0e0e;
}

.service-corporate-design .application-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 7px;
  content: "";
  background: #d8ff3e;
  transform: skewX(-12deg);
}

.service-corporate-design .application-grid small {
  display: block;
  margin-top: 30px;
  color: #d8ff3e;
  font: 700 9px/1.3 "Sturmkante Text", sans-serif;
  letter-spacing: 0.06em;
}

.faq-list {
  max-width: 1080px;
  margin-top: 46px;
  border-top: 1px solid var(--kks-line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--kks-line-strong);
}

.faq-list summary {
  position: relative;
  padding: 25px 58px 25px 0;
  font-size: clamp(19px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--kks-red);
  content: "+";
  font-size: 30px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 60px 26px 0;
  color: var(--kks-muted);
}

.final-cta {
  min-height: 94svh;
  text-align: center;
}

.final-cta .scene-shell {
  display: grid;
  justify-items: center;
}

.final-cta .scene-shell--split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  text-align: left;
}

.final-cta .display {
  max-width: 14ch;
}

.microcopy {
  max-width: 700px !important;
  margin-top: 20px;
  color: var(--kks-muted);
  font-size: 13px;
}

.service-footer {
  width: min(calc(100% - (2 * var(--kks-gutter))), var(--kks-shell));
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(130px, auto));
  align-items: start;
  gap: 40px;
  margin: 0 auto;
  padding: 72px 0;
  border-top: 1px solid var(--kks-line-strong);
  color: var(--kks-muted);
  font-size: 13px;
}

.service-footer__headline-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service-footer__logo {
  display: inline-flex;
}

.service-footer__descriptor {
  max-width: 36ch;
  margin: 0;
  line-height: 1.5;
}

.service-footer img {
  width: 190px;
}

.service-footer__cta {
  flex: 0 0 auto;
}

.service-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.service-footer a {
  text-decoration: none;
}

.service-footer a:hover {
  color: #fff;
}

.service-footer__copyright {
  color: rgba(255, 255, 255, 0.46);
}

[data-visibility="preview"] {
  display: none !important;
}

html.is-content-preview [data-visibility="preview"] {
  display: grid !important;
}

html.is-content-preview [data-visibility="preview"]::before {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 6px 8px;
  color: #050505;
  background: #f1c40f;
  content: "STAGING-PLATZHALTER";
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

html.is-content-preview [data-visibility="preview"] {
  position: relative;
}

.is-service-ready .scene .scene-copy,
.is-service-ready .scene .media-grid,
.is-service-ready .scene .process-grid,
.is-service-ready .scene .application-grid,
.is-service-ready .scene .demo-browser,
.is-service-ready .scene .brand-stage,
.is-service-ready .scene .case-stage,
.is-service-ready .scene .faq-list {
  opacity: 0.72;
  transform: translateY(24px);
  transition: opacity 720ms var(--kks-ease), transform 720ms var(--kks-ease);
}

.is-service-ready .scene.is-active .scene-copy,
.is-service-ready .scene.is-active .media-grid,
.is-service-ready .scene.is-active .process-grid,
.is-service-ready .scene.is-active .application-grid,
.is-service-ready .scene.is-active .demo-browser,
.is-service-ready .scene.is-active .brand-stage,
.is-service-ready .scene.is-active .case-stage,
.is-service-ready .scene.is-active .faq-list {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1001px) {
  .service-corporate-design .scene--hero {
    min-height: 165svh;
    align-items: start;
  }

  .service-corporate-design .scene--hero > .scene-shell {
    position: sticky;
    top: 116px;
  }
}

@media (max-width: 1180px) {
  .scene-shell--split,
  .service-websites .scene--hero .scene-shell--split,
  .final-cta .scene-shell--split {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .process-grid--seven,
  .service-social-media-content [data-scroll-scene="social-system"] .process-grid,
  .service-social-media-content [data-scroll-scene="social-process"] .process-grid,
  .media-grid--outcomes,
  .media-grid--formats,
  .media-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-stage {
    grid-template-columns: 1fr;
  }

  .case-stage__copy {
    position: static;
  }

  .camera-stage {
    min-height: 600px;
  }

  .drone-stage {
    min-height: 580px;
  }
}

@media (max-width: 820px) {
  .service-header {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    padding-block: 10px;
  }

  .service-header__label {
    display: none;
  }

  .service-header > .button,
  .service-header__cta {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 10px;
  }

  .service-main {
    padding-top: 68px;
  }

  .scene {
    min-height: 0;
    padding: clamp(80px, 18vw, 130px) 0;
  }

  .scene--hero {
    min-height: calc(100svh - 68px);
  }

  .display,
  h2.display {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 80px);
    line-height: 0.91;
  }

  .process-grid,
  .application-grid,
  .metric-grid,
  .performance-meter,
  .launch-checks,
  .sprint-track {
    grid-template-columns: 1fr;
  }

  .process-grid > *,
  .application-grid > * {
    min-height: 0;
  }

  .media-grid--hero {
    margin-top: 24px;
  }

  .media-grid--hero > :nth-child(2) {
    transform: none;
  }

  .media-card--portrait {
    min-height: 390px;
  }

  .camera-stage {
    min-height: 430px;
  }

  .drone-stage {
    min-height: 430px;
  }

  .service-footer {
    grid-template-columns: 1fr;
  }

  .service-footer__headline-row {
    flex-wrap: wrap;
  }

  .breadcrumbs {
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 580px) {
  .service-header__logo {
    width: 126px;
  }

  .service-footer__headline-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-grid,
  .media-grid--hero,
  .media-grid--outcomes,
  .media-grid--formats,
  .media-grid--services {
    grid-template-columns: 1fr;
  }

  .media-grid--hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .media-grid--hero .media-card--portrait {
    min-height: 290px;
  }

  .media-grid--hero .media-card > span {
    padding: 10px 6px;
    font-size: 8px;
  }

  .camera-stage {
    min-height: 330px;
    margin-inline: -18px;
  }

  .drone-stage {
    min-height: 330px;
  }

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

  .demo-browser[data-demo-browser="responsive"] {
    width: 100%;
    min-width: 0;
  }

  .brand-stage {
    min-height: 440px;
  }

  .brand-stage[data-brand-stage="hero"] {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .is-service-ready .scene .scene-copy,
  .is-service-ready .scene .media-grid,
  .is-service-ready .scene .process-grid,
  .is-service-ready .scene .application-grid,
  .is-service-ready .scene .demo-browser,
  .is-service-ready .scene .brand-stage,
  .is-service-ready .scene .case-stage,
  .is-service-ready .scene .faq-list {
    opacity: 1;
    transform: none;
  }

  .brand-stage[data-brand-stage="hero"] .brand-stage__visual {
    opacity: 1;
    transform: none;
  }
}

/* Cross-page consistency and visual QA pass · 2026-08-13 */
.button,
.service-header__cta {
  position: relative;
  isolation: isolate;
  min-width: 184px;
  min-height: 52px;
  display: inline-grid;
  place-items: center;
  padding: 0 23px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(236, 240, 244, 0.13),
    0 0 26px 7px rgba(226, 231, 236, 0.12),
    0 0 64px 16px rgba(210, 217, 224, 0.055),
    0 18px 42px rgba(0, 0, 0, 0.58);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: normal;
  text-transform: none;
  filter:
    drop-shadow(0 0 9px rgba(235, 238, 242, 0.16))
    drop-shadow(0 0 22px rgba(216, 222, 228, 0.07));
  transition: transform var(--kks-fast) ease, color var(--kks-fast) ease, box-shadow var(--kks-fast) ease;
}

.button::before,
.button::after,
.service-header__cta::before,
.service-header__cta::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.button::before,
.service-header__cta::before {
  inset: -62%;
  z-index: -2;
  background: conic-gradient(
    from 0deg,
    rgba(229, 9, 20, 0),
    rgba(229, 9, 20, 0) 64%,
    rgba(229, 9, 20, 0.26) 71%,
    rgba(255, 24, 38, 0.92) 78%,
    rgba(255, 158, 162, 1) 83%,
    rgba(255, 45, 56, 0.82) 90%,
    rgba(229, 9, 20, 0.18) 96%,
    rgba(229, 9, 20, 0)
  );
  filter: blur(0.14px) drop-shadow(0 0 9px rgba(229, 9, 20, 0.74));
  animation: service-orbit-border-spin 4.4s linear infinite;
}

.button::after,
.service-header__cta::after {
  inset: 1px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 118%, rgba(235, 238, 242, 0.075), transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    rgba(5, 5, 5, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.button:hover,
.button:focus-visible,
.service-header__cta:hover,
.service-header__cta:focus-visible {
  color: #fff;
  background: transparent;
  border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(245, 247, 249, 0.22),
    0 0 32px 9px rgba(232, 236, 240, 0.18),
    0 0 76px 20px rgba(216, 222, 228, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.58);
  transform: translateY(-2px);
}

.button:focus-visible,
.service-header__cta:focus-visible {
  outline-color: rgba(255, 255, 255, 0.86);
  outline-offset: 4px;
}

@keyframes service-orbit-border-spin {
  to { transform: rotate(1turn); }
}

.display {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.display .sedgwick {
  line-height: 1.05;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.process-grid,
.application-grid,
.metric-grid {
  gap: 12px;
  border: 0;
  background: transparent;
}

.process-grid > *,
.application-grid > *,
.metric-grid > * {
  border: 1px solid var(--kks-line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 58%),
    var(--kks-surface);
}

.media-grid--hero > :nth-child(2) {
  transform: none;
}

.metric-grid--case {
  grid-column: 1 / -1;
  width: 100%;
  margin: clamp(34px, 5vw, 64px) 0 0;
}

.service-social-media .case-stage__copy {
  position: static;
}

.metric-grid--case > * {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.055), transparent 42%),
    #080808;
}

.metric-grid--case strong {
  margin: 0 0 8px;
  color: #f4f2ed;
  font-family: var(--font-accent);
  font-size: clamp(42px, 5.2vw, 82px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-transform: uppercase;
  transform-origin: left bottom;
}

.metric-grid--case span:first-child {
  margin-bottom: 14px;
  color: var(--kks-red);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-grid--case > *.is-count-complete {
  animation: metric-card-complete 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.metric-grid--case > *.is-count-complete strong {
  animation: metric-number-complete 620ms cubic-bezier(0.18, 0.86, 0.26, 1) both;
}

@keyframes metric-card-complete {
  0% { border-color: var(--kks-line); box-shadow: 0 0 0 rgba(229, 9, 20, 0); }
  48% { border-color: rgba(229, 9, 20, 0.72); box-shadow: inset 0 0 42px rgba(229, 9, 20, 0.11), 0 0 34px rgba(229, 9, 20, 0.12); }
  100% { border-color: var(--kks-line); box-shadow: 0 0 0 rgba(229, 9, 20, 0); }
}

@keyframes metric-number-complete {
  0% { color: #f4f2ed; transform: scale(1); }
  45% { color: #fff; text-shadow: 0 0 28px rgba(229, 9, 20, 0.62); transform: scale(1.055); }
  100% { color: #f4f2ed; text-shadow: none; transform: scale(1); }
}

.metric-grid--case span:last-child {
  max-width: 30ch;
  font-size: 13px;
}

.format-system__outputs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  background: transparent;
}

.format-system__outputs span {
  min-height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--kks-line);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(10, 10, 10, 0.94));
}

.camera-stage {
  min-height: clamp(520px, 53vw, 760px);
  overflow: visible;
  isolation: isolate;
}

.camera-stage::before {
  position: absolute;
  inset: 12% -4%;
  z-index: 0;
  content: "";
  background: radial-gradient(circle at center, rgba(220, 230, 240, 0.09), rgba(5, 5, 5, 0) 66%);
  filter: blur(24px);
}

.camera-stage > img {
  width: min(116%, 920px);
  max-width: none;
  max-height: none;
  z-index: 1;
  filter:
    drop-shadow(0 44px 68px rgba(0, 0, 0, 0.86))
    drop-shadow(0 0 32px rgba(223, 234, 244, 0.07));
}

.camera-stage[data-media-state="ready"] {
  overflow: visible;
}

.camera-stage__lens {
  top: 50%;
  z-index: 3;
  width: 18.5%;
  border: 1px solid rgba(226, 237, 247, 0.3);
  box-shadow:
    inset 0 0 30px rgba(189, 220, 245, 0.2),
    0 0 22px rgba(255, 255, 255, 0.08),
    0 0 0 8px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.camera-stage__lens::after {
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 34% 25%, rgba(196, 228, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(124, 190, 235, 0.08), transparent 48%, rgba(247, 105, 172, 0.08));
  box-shadow: inset 0 0 26px rgba(160, 209, 244, 0.16);
}

.camera-stage__lens video {
  display: block;
  filter: saturate(0.94) contrast(1.08);
}

.drone-stage {
  min-height: min(58vw, 660px);
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background: #0a0d0d;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.52);
  isolation: isolate;
}

.drone-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 45%, rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 50% 45%, transparent 36%, rgba(0, 0, 0, 0.22));
}

.drone-stage > .drone-stage__environment {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.76);
  transform: scale(1.035);
}

.drone-stage__orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
  animation: drone-orbit 10s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  transform-origin: 50% 50%;
}

.drone-stage .drone-stage__orbit video,
.scene.is-active .drone-stage .drone-stage__orbit video {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  width: 68%;
  max-width: none;
  height: auto;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.64));
  animation: none;
  transform: translate(-50%, -50%) rotate(-3deg);
  transition: none;
}

.drone-stage__caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes drone-orbit {
  0%, 100% { transform: translate3d(18%, -12%, 0) scale(0.84) rotate(-4deg); }
  24% { transform: translate3d(4%, -1%, 0) scale(0.93) rotate(-1deg); }
  50% { transform: translate3d(-17%, 11%, 0) scale(1.04) rotate(4deg); }
  76% { transform: translate3d(-2%, 3%, 0) scale(0.95) rotate(1deg); }
}

.sturmkante-site {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(22px, 3vw, 44px);
  color: #f2f0e8;
  background:
    linear-gradient(90deg, rgba(11, 14, 14, 0.94) 0%, rgba(11, 14, 14, 0.66) 46%, rgba(11, 14, 14, 0.08) 74%),
    linear-gradient(0deg, rgba(11, 14, 14, 0.42), transparent 48%);
  font-family: "Sturmkante Text", sans-serif;
}

.sturmkante-site__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(242, 240, 232, 0.3);
}

.sturmkante-site__header > strong {
  color: #d8ff3e;
  font-family: "Sturmkante Display", sans-serif;
  font-size: clamp(20px, 2.4vw, 36px);
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.sturmkante-site__header nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(242, 240, 232, 0.82);
  font-size: clamp(8px, 0.75vw, 11px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sturmkante-site__header > b {
  padding: 7px 10px;
  border: 1px solid rgba(242, 240, 232, 0.38);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sturmkante-site__hero {
  align-self: end;
  max-width: min(68%, 660px);
  padding-block: clamp(28px, 6vw, 86px) clamp(20px, 3vw, 38px);
}

.sturmkante-site__hero > span {
  color: #d8ff3e;
  font-size: clamp(8px, 0.85vw, 12px);
  font-weight: 700;
  letter-spacing: 0.17em;
}

.sturmkante-site__hero h3 {
  margin: 14px 0 18px;
  color: #f2f0e8;
  font-family: "Sturmkante Display", sans-serif;
  font-size: clamp(44px, 6.2vw, 92px);
  letter-spacing: 0.01em;
  line-height: 0.78;
}

.sturmkante-site__hero p {
  max-width: 45ch;
  margin: 0;
  color: rgba(242, 240, 232, 0.8);
  font-size: clamp(10px, 1vw, 15px);
  line-height: 1.45;
}

.sturmkante-site__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.sturmkante-site__actions > * {
  padding: 10px 14px;
  border: 1px solid rgba(242, 240, 232, 0.42);
  color: #f2f0e8;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sturmkante-site__actions > b {
  border-color: #d8ff3e;
  color: #0b0e0e;
  background: #d8ff3e;
}

.sturmkante-site__status {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 240, 232, 0.2);
  color: rgba(242, 240, 232, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sturmkante-site__status b {
  color: #d8ff3e;
}

.sturmkante-demo__label {
  top: auto;
  right: 16px;
  bottom: 16px;
  z-index: 4;
}

.demo-browser[data-demo-browser="build"] .sturmkante-site {
  clip-path: none;
}

.demo-browser[data-demo-browser="responsive"] .sturmkante-site__header nav {
  display: none;
}

.demo-browser[data-demo-browser="content"] .sturmkante-site__hero,
.demo-browser[data-demo-browser="layers"] .sturmkante-site__hero {
  max-width: min(74%, 720px);
}

.performance-stage {
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.055), transparent 34%),
    #090909;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.performance-stage__head,
.launch-console__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--kks-line);
  color: var(--kks-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.performance-stage__head strong,
.launch-console__head strong {
  color: #fff;
}

.performance-stage__row {
  display: grid;
  grid-template-columns: minmax(140px, 0.75fr) minmax(120px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--kks-line);
}

.performance-stage__row div,
.performance-stage__row span,
.performance-stage__row strong {
  display: block;
}

.performance-stage__row span,
.performance-stage__row small {
  color: var(--kks-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.performance-stage__row i {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.performance-stage__row i::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  transform-origin: left;
}

.performance-stage__row--slow i::after {
  background: rgba(255, 255, 255, 0.28);
  transform: scaleX(0.38);
}

.performance-stage__row--fast i::after {
  background: var(--kks-red);
  transform: scaleX(1);
}

.performance-stage__row--fast small {
  color: #fff;
}

.performance-stage__nope {
  width: max-content;
  margin: -12px 20px -12px auto;
  padding: 5px 9px;
  color: #fff;
  background: var(--kks-red);
  font-family: var(--font-accent);
  font-size: 24px;
  line-height: 0.9;
  transform: rotate(-3deg);
}

.performance-stage__pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--kks-line);
}

.performance-stage__pillars article {
  min-width: 0;
  padding: 20px 15px;
  background: #0d0d0d;
}

.performance-stage__pillars strong,
.performance-stage__pillars span {
  display: block;
}

.performance-stage__pillars strong {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.performance-stage__pillars span {
  margin-top: 6px;
  color: var(--kks-muted);
  font-size: 10px;
}

.demo-browser--launch {
  overflow: visible;
}

.launch-console {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 5;
  width: min(360px, calc(100% - 28px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  background: rgba(6, 6, 6, 0.9);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
}

.launch-console ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--kks-line);
  list-style: none;
}

.launch-console li {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  background: #0b0b0b;
  font-size: 11px;
}

.launch-console li b {
  color: #a8b1ae;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-console li b::before {
  margin-right: 6px;
  color: #d8ff3e;
  content: "✓";
}

.launch-console__domain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
}

.launch-console__domain code {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-overflow: ellipsis;
}

.launch-console__domain strong {
  color: #d8ff3e;
  font-family: "Sturmkante Display", sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
}

.service-footer__nav-label {
  margin-bottom: 7px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-footer__services a {
  min-width: min(280px, 28vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--kks-line);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.service-footer__services a span {
  color: var(--kks-red);
}

.service-footer__social a,
.service-footer__legal a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs {
  scrollbar-width: none;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.brand-stage {
  container-type: inline-size;
}

.brand-stage__wordmark {
  max-width: 88%;
  font-size: clamp(38px, 14cqw, 116px);
  white-space: nowrap;
}

.brand-stage[data-brand-stage="case-one"] > p,
.brand-stage[data-brand-stage="case-one"] > strong {
  display: none;
}

.brand-stage[data-brand-stage="before-after"] .brand-stage__wordmark,
.brand-stage[data-brand-stage="final"] .brand-stage__wordmark {
  display: none;
}

.brand-stage[data-brand-stage="before-after"] > div:not(.brand-stage__visual),
.brand-stage[data-brand-stage="final"] > div:not(.brand-stage__visual) {
  position: absolute;
  bottom: clamp(22px, 4cqw, 42px);
  z-index: 5;
  width: calc(50% - 34px);
  padding: 14px 16px;
  border: 1px solid rgba(242, 240, 232, 0.28);
  color: #f2f0e8;
  background: rgba(11, 14, 14, 0.78);
  backdrop-filter: blur(12px);
  font-family: "Sturmkante Text", sans-serif;
}

.brand-stage[data-brand-stage="before-after"] > div:not(.brand-stage__visual):nth-last-of-type(2),
.brand-stage[data-brand-stage="final"] > div:not(.brand-stage__visual):nth-last-of-type(2) {
  left: 22px;
}

.brand-stage[data-brand-stage="before-after"] > div:not(.brand-stage__visual):last-of-type,
.brand-stage[data-brand-stage="final"] > div:not(.brand-stage__visual):last-of-type {
  right: 22px;
}

.brand-stage[data-brand-stage="before-after"] > div:not(.brand-stage__visual) span,
.brand-stage[data-brand-stage="final"] > div:not(.brand-stage__visual) span {
  color: #d8ff3e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-stage[data-brand-stage="before-after"] > div:not(.brand-stage__visual) p,
.brand-stage[data-brand-stage="final"] > div:not(.brand-stage__visual) p {
  margin: 4px 0 0;
  font-size: clamp(16px, 5cqw, 28px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-corporate-design #cases .case-stage {
  max-width: 1120px;
  grid-template-columns: 1fr;
}

.service-corporate-design #cases .case-stage > article {
  min-width: 0;
}

.service-corporate-design #cases .brand-stage {
  min-height: clamp(430px, 48vw, 650px);
}

.service-corporate-design .brand-stage > small {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: auto;
  left: auto;
}

.final-cta .scene-shell--split {
  justify-items: stretch;
}

.brand-stage[data-brand-stage="final"] {
  width: 100%;
}

@media (max-width: 1180px) {
  .service-footer {
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr) repeat(2, minmax(120px, auto));
  }

  .service-footer__services a {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .scene-shell,
  .breadcrumbs,
  .service-footer {
    width: calc(100% - (2 * var(--kks-gutter)));
    max-width: var(--kks-shell);
    min-width: 0;
  }

  .scene-copy,
  .display {
    min-width: 0;
  }

  .display .sedgwick {
    line-height: 1.05;
  }

  .service-header > .button,
  .service-header__cta {
    min-width: 146px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 11px;
  }

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

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

  .service-footer__headline-row {
    grid-column: 1 / -1;
  }

  .service-footer__descriptor {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .metric-grid--case {
    grid-template-columns: 1fr;
  }

  .metric-grid--case > * {
    min-height: 150px;
  }

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

  .camera-stage > img {
    width: 112%;
  }

  .camera-stage__lens {
    width: 18%;
  }

  .drone-stage {
    min-height: 390px;
  }

  .drone-stage .drone-stage__orbit video,
  .scene.is-active .drone-stage .drone-stage__orbit video {
    width: 90%;
  }

  .sturmkante-site {
    padding: 18px;
  }

  .sturmkante-site__header {
    grid-template-columns: 1fr auto;
  }

  .sturmkante-site__header nav {
    display: none;
  }

  .sturmkante-site__hero {
    max-width: 92%;
    padding-bottom: 30px;
  }

  .sturmkante-site__hero h3 {
    font-size: clamp(43px, 14vw, 66px);
  }

  .sturmkante-site__hero p,
  .sturmkante-site__actions > i,
  .sturmkante-site__status span {
    display: none;
  }

  .sturmkante-demo__label {
    right: 10px;
    bottom: 10px;
    max-width: 150px;
    font-size: 7px;
  }

  .performance-stage__row {
    grid-template-columns: 1fr auto;
  }

  .performance-stage__row i {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .performance-stage__pillars {
    grid-template-columns: 1fr;
  }

  .launch-console {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

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

  .service-footer {
    grid-template-columns: 1fr;
  }

  .service-footer__headline-row,
  .service-footer__descriptor {
    grid-column: auto;
  }

  .service-footer__services a {
    min-width: 0;
    font-size: 16px;
  }
}

/* Click journey: bewusst durch echtes Linsenglas in die Seite. */
.service-photo-video {
  --camera-chrome-opacity: 0;
  --camera-chrome-y: -16px;
}

html.has-camera-journey {
  scrollbar-gutter: stable;
}

html.is-camera-journey-locked,
html.is-camera-journey-locked body {
  overflow: hidden;
  overscroll-behavior: none;
}

.service-photo-video .service-header {
  opacity: var(--camera-chrome-opacity);
  pointer-events: none;
  transform: translate3d(0, var(--camera-chrome-y), 0);
  will-change: opacity, transform;
}

.service-photo-video.is-camera-chrome-visible .service-header {
  pointer-events: auto;
}

.service-photo-video .service-main {
  position: relative;
  padding-top: 0;
}

.service-photo-video > .service-main > .breadcrumbs {
  position: absolute;
  top: clamp(20px, 2vw, 34px);
  right: 0;
  left: 0;
  z-index: 8;
  margin-inline: auto;
  opacity: var(--camera-chrome-opacity);
  pointer-events: none;
  transform: translate3d(0, var(--camera-chrome-y), 0);
  will-change: opacity, transform;
}

.service-photo-video.is-camera-chrome-visible > .service-main > .breadcrumbs {
  pointer-events: auto;
}

.scene--camera-journey {
  --camera-lens-x: 49.94%;
  --camera-lens-y: 47.58%;
  /* Nur der kleine optische Durchlass ist transparent. Die sichtbaren
     Objektivringe bleiben Bestandteil der Kamerabühne. */
  --camera-lens-size: 2.65%;
  --camera-scale: 1;
  --camera-shift-x: 0px;
  --camera-shift-y: 0px;
  --camera-rotate-x: 0deg;
  --camera-rotate-y: 0deg;
  --camera-rotate-z: 0deg;
  --camera-copy-opacity: 0;
  --camera-copy-y: 42px;
  --camera-cue-opacity: 1;
  --camera-shell-opacity: 1;
  --camera-ambient-opacity: 1;
  --camera-floor-opacity: 1;
  --camera-video-scale: 1.08;
  --camera-video-blur: 0px;
  --camera-video-brightness: 0.88;
  --camera-video-contrast: 1.08;
  --camera-video-saturation: 0.94;
  --camera-glass-opacity: 0.36;
  --camera-portal-opacity: 0;
  --camera-portal-radius: 0px;
  --camera-portal-blur: 0px;
  height: 100svh;
  min-height: 100svh;
  display: block;
  padding: 0;
  overflow: visible;
  border-top: 0;
  background: #030303;
}

.camera-journey__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #030303;
  isolation: isolate;
}

.camera-journey__sticky::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  height: clamp(340px, 54vh, 640px);
  pointer-events: none;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(3, 3, 3, 0) 0%,
    rgba(3, 3, 3, 0.01) 14%,
    rgba(3, 3, 3, 0.04) 27%,
    rgba(3, 3, 3, 0.11) 39%,
    rgba(3, 3, 3, 0.23) 49%,
    rgba(3, 3, 3, 0.42) 57%,
    rgba(3, 3, 3, 0.66) 63%,
    rgba(3, 3, 3, 0.88) 68%,
    #030303 72%,
    #030303 100%
  );
}

.camera-journey__sticky::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.64) 39%, rgba(3, 3, 3, 0.1) 72%, transparent 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.12), transparent 58%, rgba(3, 3, 3, 0.31));
  opacity: var(--camera-copy-opacity);
  will-change: opacity;
}

.camera-journey__ambient,
.camera-journey__visual,
.camera-journey__content {
  position: absolute;
  inset: 0;
}

.camera-journey__ambient {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(60, 48, 38, 0.18), transparent 37%),
    #030303;
  opacity: var(--camera-ambient-opacity);
}

.camera-journey__floor {
  position: absolute;
  bottom: 23%;
  left: 50%;
  z-index: 1;
  width: min(62vw, 920px);
  height: clamp(54px, 8.5vh, 104px);
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(219, 228, 235, 0.2) 0%, rgba(184, 197, 208, 0.075) 38%, transparent 72%);
  filter: blur(13px);
  opacity: var(--camera-floor-opacity);
  transform: translateX(-50%) perspective(700px) rotateX(72deg);
  transform-origin: center;
  will-change: opacity, transform;
}

.camera-journey__visual {
  z-index: 2;
  perspective: 1800px;
  perspective-origin: 50% 50%;
}

.camera-journey__rig {
  position: absolute;
  top: calc(50% + var(--camera-shift-y));
  left: calc(50% + var(--camera-shift-x));
  width: min(100vw, calc(100svh * 1.5988));
  aspect-ratio: 1586 / 992;
  transform: translate(-49.94%, -47.58%)
    rotateX(var(--camera-rotate-x))
    rotateY(var(--camera-rotate-y))
    rotateZ(var(--camera-rotate-z))
    scale(var(--camera-scale));
  transform-origin: var(--camera-lens-x) var(--camera-lens-y);
  will-change: transform;
}

.camera-journey__studio {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.025) saturate(0.94);
  opacity: var(--camera-shell-opacity);
  image-rendering: auto;
  backface-visibility: hidden;
  will-change: opacity;
}

.camera-journey__lens {
  position: absolute;
  top: var(--camera-lens-y);
  left: var(--camera-lens-x);
  z-index: 4;
  width: var(--camera-lens-size);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: #070809;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.camera-journey__lens video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter:
    blur(var(--camera-video-blur))
    saturate(var(--camera-video-saturation))
    contrast(var(--camera-video-contrast))
    brightness(var(--camera-video-brightness));
  transform: scale(var(--camera-video-scale));
  will-change: filter, transform;
}

.camera-journey__glass {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  opacity: var(--camera-glass-opacity);
  will-change: opacity;
}

.camera-journey__portal {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  clip-path: circle(var(--camera-portal-radius) at calc(50% + var(--camera-shift-x)) calc(50% + var(--camera-shift-y)));
  opacity: var(--camera-portal-opacity);
  pointer-events: none;
  will-change: clip-path, opacity;
}

.camera-journey__portal video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter:
    blur(var(--camera-portal-blur))
    saturate(var(--camera-video-saturation))
    contrast(var(--camera-video-contrast))
    brightness(var(--camera-video-brightness));
  transform: scale(1.018);
  will-change: filter;
}

.camera-journey__content {
  z-index: 5;
  display: grid;
  align-items: center;
  pointer-events: none;
}

.camera-journey__copy {
  width: min(41vw, 670px);
  opacity: var(--camera-copy-opacity) !important;
  pointer-events: none;
  transform: translate3d(0, var(--camera-copy-y), 0) !important;
  transition: none !important;
  will-change: opacity, transform;
}

.scene--camera-journey.is-camera-copy-visible .camera-journey__copy {
  pointer-events: auto;
}

.camera-journey__copy .display {
  max-width: 8ch;
  font-size: clamp(52px, 6.15vw, 104px);
}

.camera-journey__trigger {
  position: absolute;
  inset: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 24px max(28px, calc(env(safe-area-inset-bottom) + 4vh));
  border: 0;
  appearance: none;
  color: #f2f0ea;
  background: transparent;
  cursor: pointer;
  touch-action: none;
  opacity: var(--camera-cue-opacity);
  transition: opacity 180ms ease;
  will-change: opacity;
}

.camera-journey__trigger-question {
  color: rgba(242, 240, 234, 0.92);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.32vw, 22px);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.camera-journey__trigger-action {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(229, 9, 20, 0.82);
  font-family: var(--font-body);
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.camera-journey__trigger-action i {
  color: #e50914;
  font-style: normal;
  transition: transform 180ms ease;
}

.camera-journey__trigger:hover .camera-journey__trigger-action i,
.camera-journey__trigger:focus-visible .camera-journey__trigger-action i {
  transform: translate3d(4px, -3px, 0);
}

.camera-journey__trigger:focus-visible {
  outline: 1px solid rgba(229, 9, 20, 0.8);
  outline-offset: -10px;
}

.scene--camera-journey.is-camera-running .camera-journey__trigger,
.scene--camera-journey.is-camera-complete .camera-journey__trigger {
  pointer-events: none;
  opacity: 0;
}

/* Vollständig belegte Raster: keine optisch leeren Restzellen. */
@media (min-width: 1181px) {
  .service-social-media-content .scene--hero .display {
    font-size: clamp(52px, 6.1vw, 94px);
  }

  .service-social-media .media-grid--outcomes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .service-social-media .media-grid--outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 821px) {
  .service-social-media [data-scroll-scene="social-cases"] .media-grid--case {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-photo-video [data-scroll-scene="photo-process"] .process-grid,
  .service-websites #ansatz .process-grid,
  .service-websites #website-typen .application-grid,
  .service-corporate-design #use-cases .application-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-photo-video [data-scroll-scene="photo-process"] .process-grid > :nth-child(-n + 3),
  .service-websites #ansatz .process-grid > :nth-child(-n + 3),
  .service-websites #website-typen .application-grid > :nth-child(-n + 3),
  .service-corporate-design #use-cases .application-grid > :nth-child(-n + 3) {
    grid-column: span 2;
  }

  .service-photo-video [data-scroll-scene="photo-process"] .process-grid > :nth-child(n + 4),
  .service-websites #ansatz .process-grid > :nth-child(n + 4),
  .service-websites #website-typen .application-grid > :nth-child(n + 4),
  .service-corporate-design #use-cases .application-grid > :nth-child(n + 4) {
    grid-column: span 3;
  }

  .service-corporate-design #no-logo-test .application-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .service-corporate-design #no-logo-test .application-grid > :nth-child(-n + 4) {
    grid-column: span 3;
  }

  .service-corporate-design #no-logo-test .application-grid > :nth-child(n + 5) {
    grid-column: span 4;
  }

  .service-photo-video [data-scroll-scene="photo-cases"] .media-grid--case {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-photo-video [data-scroll-scene="photo-cases"] .media-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .service-photo-video > .service-main > .breadcrumbs {
    position: absolute;
    top: 18px;
    margin-top: 0;
  }

  .scene--camera-journey {
    height: auto;
    min-height: 0;
  }

  .camera-journey__sticky {
    position: relative;
    top: auto;
    height: 100svh;
    min-height: 680px;
    display: block;
    padding: 0;
    overflow: hidden;
  }

  .camera-journey__ambient {
    opacity: 1;
  }

  .camera-journey__sticky::before {
    z-index: 4;
    background: linear-gradient(180deg, transparent 24%, rgba(3, 3, 3, 0.12) 44%, rgba(3, 3, 3, 0.82) 69%, #030303 100%);
    opacity: 1;
  }

  .camera-journey__sticky::after {
    display: none;
  }

  .camera-journey__floor {
    top: calc(70svh - 46px);
    bottom: auto;
    width: min(88vw, 620px);
    opacity: var(--camera-floor-opacity);
  }

  .camera-journey__visual {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
  }

  .camera-journey__portal {
    display: none;
  }

  .camera-journey__rig {
    top: 50%;
    left: 50%;
    width: max(132vw, 124svh);
    transform: translate(-49.94%, -47.58%) scale(var(--camera-scale));
  }

  .camera-journey__content {
    position: absolute;
    inset: 0;
    min-height: 0;
    display: grid;
    align-items: end;
    padding-block: 92px clamp(36px, 7svh, 64px);
  }

  .camera-journey__copy {
    width: 100%;
    max-width: 640px;
    opacity: 1 !important;
    pointer-events: auto;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.88);
    transform: none !important;
  }

  .camera-journey__copy .display {
    max-width: 10ch;
    font-size: clamp(43px, 13vw, 76px);
  }

  .camera-journey__trigger {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 821px) {
  .scene--camera-journey {
    height: auto;
    min-height: 0;
  }

  .camera-journey__sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: block;
  }

  .camera-journey__visual {
    position: relative;
    inset: auto;
    height: 100svh;
    min-height: 640px;
  }

  .camera-journey__portal {
    display: none;
  }

  .camera-journey__floor {
    top: calc(69svh - 54px);
    bottom: auto;
  }

  .camera-journey__rig {
    top: 50%;
    left: 50%;
    transform: translate(-49.94%, -47.58%) scale(0.96);
  }

  .camera-journey__rig > img,
  .camera-journey__ambient,
  .camera-journey__floor {
    opacity: 1;
  }

  .camera-journey__sticky::before {
    opacity: 0;
  }

  .camera-journey__sticky::after {
    display: none;
  }

  .camera-journey__content {
    position: relative;
    inset: auto;
    min-height: min(820px, 92svh);
    display: grid;
    align-items: center;
    padding-block: 110px;
  }

  .camera-journey__copy {
    opacity: 1 !important;
    pointer-events: auto;
    transform: none !important;
  }

  .camera-journey__trigger {
    display: none;
  }
}

/* Corporate Design: vollständige Medien, klare No-Logo-Bühne und geschlossene Raster. */
.service-corporate-design .scene .display {
  font-size: clamp(42px, 4.5vw, 76px);
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
}

.service-corporate-design .brand-stage {
  background: #080a0a;
}

.service-corporate-design .brand-stage__visual {
  background: #080a0a;
}

.service-corporate-design .brand-stage__visual img.brand-stage__ambient {
  z-index: 0;
  object-fit: cover;
  opacity: 0.58;
  filter: blur(22px) brightness(0.38) saturate(0.72);
  transform: scale(1.09);
}

.service-corporate-design .brand-stage__visual img.brand-stage__focus {
  z-index: 1;
  padding: clamp(10px, 1.1vw, 18px);
  object-fit: contain;
}

.service-corporate-design .brand-stage__visual::after {
  z-index: 2;
  background: linear-gradient(to top, rgba(8, 10, 10, 0.9), rgba(8, 10, 10, 0.08) 58%, rgba(8, 10, 10, 0.18));
}

.service-corporate-design .brand-stage__wordmark {
  z-index: 3;
}

.brand-no-logo-stage {
  position: relative;
  margin: clamp(34px, 5vw, 64px) 0 0;
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background: #090c0c;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.brand-no-logo-stage__media {
  position: relative;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: #090c0c;
}

.brand-no-logo-stage__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(8, 10, 10, 0.76), transparent 34%);
}

.service-corporate-design .brand-no-logo-stage__media img[data-kks-media-image] {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-corporate-design .brand-application-hero img[data-kks-media-image] {
  height: auto;
  object-fit: contain;
}

.brand-no-logo-stage figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--kks-line);
  font-family: "Sturmkante Text", var(--font-body);
  text-transform: uppercase;
}

.brand-no-logo-stage figcaption strong {
  color: #f2f0e8;
  font-size: clamp(16px, 2vw, 25px);
  letter-spacing: 0.025em;
}

.brand-no-logo-stage figcaption span {
  color: #d8ff3e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-no-logo-stage__touchpoints {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--kks-line);
}

.brand-no-logo-stage__touchpoints li {
  min-width: 0;
  padding: 15px 10px;
  color: #0b0e0e;
  background: #d8ff3e;
  font: 700 10px/1.1 "Sturmkante Text", var(--font-body);
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.service-corporate-design #use-cases .brand-use-case-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-corporate-design #use-cases .brand-use-case-grid > :nth-child(n) {
  grid-column: auto;
  min-height: 0;
  padding: clamp(22px, 2vw, 28px);
}

.service-corporate-design #use-cases .brand-use-case-grid h3 {
  font-size: clamp(17px, 1.2vw, 18px);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
}

.service-corporate-design #use-cases .brand-use-case-grid p {
  font-size: clamp(14px, 1.15vw, 17px);
}

.service-corporate-design #prozess .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-left: 0;
  list-style: none;
}

.service-corporate-design #cases .brand-stage {
  min-height: 0;
  aspect-ratio: 3 / 2;
}

@media (min-width: 1181px) {
  .service-corporate-design .scene-shell--split {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  }

  .service-corporate-design .scene-shell--split > .brand-stage {
    min-height: clamp(540px, 44vw, 640px);
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .service-websites #website-typen .application-grid,
  .service-corporate-design #use-cases .brand-use-case-grid,
  .service-corporate-design #markensystem .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-websites #website-typen .application-grid > *,
  .service-corporate-design #use-cases .brand-use-case-grid > *,
  .service-corporate-design #markensystem .application-grid > * {
    grid-column: auto;
  }

  .service-corporate-design #prozess .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-corporate-design .scene-shell--split > .brand-stage {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 820px) {
  .service-corporate-design .scene .display {
    font-size: clamp(38px, 11.5vw, 54px);
    overflow-wrap: normal;
    word-break: normal;
    -webkit-hyphens: none;
    hyphens: none;
  }

  .service-corporate-design .scene--hero .display {
    font-size: clamp(34px, 9.8vw, 46px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .service-corporate-design .scene-shell--split > .brand-stage {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-corporate-design .brand-stage__visual img.brand-stage__focus {
    padding: 7px;
  }

  .brand-no-logo-stage figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 16px;
  }

  .brand-no-logo-stage__touchpoints {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-no-logo-stage__touchpoints li:last-child {
    grid-column: 1 / -1;
  }

  .service-corporate-design #use-cases .brand-use-case-grid {
    grid-template-columns: 1fr;
  }

.service-corporate-design #prozess .process-grid {
    grid-template-columns: 1fr;
  }

}

/* Gemeinsamer Abschluss aller Leistungsseiten: Leistungswechsel + Startseiten-Footer. */
.service-family-nav {
  width: min(calc(100% - (2 * var(--kks-gutter))), var(--kks-shell));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0 clamp(54px, 7vw, 92px);
}

.service-family-nav a {
  position: relative;
  min-height: 142px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 18px;
  padding: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: 18px;
  color: #f4f2ed;
  background: radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.08), transparent 36%), #090909;
  text-decoration: none;
  transition: transform 260ms var(--kks-ease), border-color 260ms ease, background 260ms ease;
}

.service-family-nav a::before {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: var(--kks-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--kks-ease);
}

.service-family-nav a:hover,
.service-family-nav a:focus-visible {
  border-color: rgba(229, 9, 20, 0.72);
  background: radial-gradient(circle at 88% 12%, rgba(229, 9, 20, 0.18), transparent 40%), #0b0808;
  transform: translateY(-5px);
}

.service-family-nav a:hover::before,
.service-family-nav a:focus-visible::before {
  transform: scaleX(1);
}

.service-family-nav a > span {
  grid-column: 1;
  color: var(--kks-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-family-nav a > strong {
  grid-column: 1;
  align-self: end;
  font-size: clamp(18px, 1.75vw, 27px);
  line-height: 1.05;
}

.service-family-nav a > i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--kks-red);
  font-size: 22px;
  font-style: normal;
  transition: transform 260ms var(--kks-ease);
}

.service-family-nav a:hover > i,
.service-family-nav a:focus-visible > i {
  transform: translate(3px, -3px);
}

.service-family-nav .service-family-nav__home {
  border-color: rgba(255, 255, 255, 0.34);
  background: radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.13), transparent 40%), #111;
}

.service-footer {
  position: relative;
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 0;
  margin: 0;
  padding: clamp(22px, 2.6svh, 36px) var(--kks-gutter) clamp(18px, 2svh, 28px);
  overflow: hidden;
  border-top: 1px solid rgba(222, 233, 243, 0.26);
  color: var(--kks-muted);
  background: linear-gradient(180deg, rgba(27, 33, 39, 0.98) 0, rgba(9, 12, 15, 0.995) 18px, #030405 92px, #050607 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 -12px 32px rgba(177, 204, 228, 0.055),
    0 -48px 110px rgba(0, 0, 0, 0.64);
  isolation: isolate;
}

.service-footer::before {
  position: absolute;
  bottom: -54px;
  left: 50%;
  z-index: 0;
  width: min(100%, 1040px);
  height: 220px;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse 64% 220px at 50% 100%, rgba(199, 220, 239, 0.16), rgba(139, 170, 199, 0.065) 38%, transparent 76%);
  filter: blur(12px);
  opacity: 0.38;
  transform: translateX(-50%);
}

.service-footer::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(217, 231, 244, 0.18), rgba(83, 99, 114, 0.08) 42%, rgba(0, 0, 0, 0.58));
  box-shadow:
    0 -1px 0 rgba(240, 247, 253, 0.24),
    0 -12px 38px rgba(181, 210, 235, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.68);
}

.service-footer__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1510px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(12px, 1.4svh, 20px);
  align-items: end;
  margin: 0 auto;
}

.service-footer__headline-row {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.4vw, 34px);
}

.service-footer__logo {
  width: max-content;
  display: inline-flex;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.14),
    0 0 34px rgba(229, 9, 20, 0.18);
}

.brand-wordmark__kindskopf {
  font-weight: 700;
}

.brand-wordmark__studio {
  color: inherit;
  font-weight: 400;
}

.service-footer__descriptor {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 700;
  line-height: 1.42;
}

.service-footer__cta {
  width: max-content;
  min-width: clamp(230px, 19vw, 300px);
  min-height: clamp(52px, 5.4svh, 62px);
  flex: 0 0 auto;
  margin: 0;
  padding-inline: clamp(24px, 3vw, 40px);
}

.service-footer__social,
.service-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}

.service-footer nav.service-footer__social,
.service-footer nav.service-footer__legal {
  display: flex;
  align-content: normal;
  gap: 12px 22px;
}

.service-footer__social a,
.service-footer__legal a {
  min-height: 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.service-footer__social a:hover,
.service-footer__social a:focus-visible,
.service-footer__legal a:hover,
.service-footer__legal a:focus-visible {
  color: #fff;
}

.service-footer__legal {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.service-footer__legal > .service-footer__copyright {
  margin-left: auto;
}

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

  .service-footer__headline-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-footer__cta {
    width: min(100%, 360px);
  }
}

@media (max-width: 580px) {
  .service-family-nav {
    width: 100%;
    grid-template-columns: repeat(4, minmax(238px, 78vw));
    gap: 10px;
    padding-inline: var(--kks-gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-family-nav::-webkit-scrollbar {
    display: none;
  }

  .service-family-nav a {
    min-height: 126px;
    scroll-snap-align: start;
  }

  .service-footer {
    width: 100%;
    padding: 18px max(18px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  }

  .service-footer__logo {
    max-width: 100%;
    font-size: clamp(24px, 7.6vw, 34px);
    line-height: 1.02;
    white-space: nowrap;
  }

  .service-footer__legal > .service-footer__copyright {
    width: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .metric-grid--case > *.is-count-complete,
  .metric-grid--case > *.is-count-complete strong {
    animation: none;
  }
}

/* Website: echte Medien, klare Typografie und ruhige Bewegung unterhalb des gesperrten Heros. */
.service-websites #ansatz {
  padding-top: clamp(130px, 16vw, 220px);
  padding-bottom: clamp(150px, 18vw, 250px);
}

.website-photo-stage {
  position: relative;
  min-width: 0;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background: #080808;
}

.website-photo-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.82));
}

.website-photo-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.025);
  transition: transform 1.2s var(--kks-ease);
}

.service-websites #problem.is-active .website-photo-stage > img {
  transform: scale(1);
}

.website-photo-stage figcaption {
  position: absolute;
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 38px);
  left: clamp(20px, 3vw, 42px);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.5em;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.4vw, 52px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.website-photo-stage figcaption span:nth-child(2) {
  color: var(--kks-red);
}

.website-system-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: clamp(48px, 7vw, 94px) 0 0;
  padding: 0;
  border-top: 1px solid var(--kks-line-strong);
  list-style: none;
}

.website-system-flow::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--kks-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.15s var(--kks-ease);
}

.service-websites #ansatz.is-active .website-system-flow::before {
  transform: scaleX(1);
}

.website-system-flow li {
  min-width: 0;
  min-height: 260px;
  padding: clamp(22px, 2.6vw, 38px) clamp(15px, 2.1vw, 30px) 28px;
  border-right: 1px solid var(--kks-line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 650ms var(--kks-ease);
}

.website-system-flow li:first-child {
  border-left: 1px solid var(--kks-line);
}

.website-system-flow li:nth-child(2) { transition-delay: 70ms; }
.website-system-flow li:nth-child(3) { transition-delay: 140ms; }
.website-system-flow li:nth-child(4) { transition-delay: 210ms; }
.website-system-flow li:nth-child(5) { transition-delay: 280ms; }

.service-websites #ansatz.is-active .website-system-flow li {
  opacity: 1;
  transform: translateY(0);
}

.website-system-flow li > span,
.website-system-flow li > strong {
  display: block;
}

.website-system-flow li > span {
  color: var(--kks-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.website-system-flow li > strong {
  margin-top: 16px;
  color: var(--kks-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-system-flow h3 {
  margin: 36px 0 12px;
  font-size: clamp(19px, 1.8vw, 29px);
  line-height: 1.02;
}

.website-system-flow p {
  margin: 0;
  color: var(--kks-muted);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.5;
}

.website-system-statement {
  width: min(100%, 900px);
  margin: clamp(48px, 7vw, 92px) 0 0 auto;
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--kks-line-strong);
}

.website-system-statement h3 {
  max-width: 18ch;
  margin: 18px 0;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 0.96;
}

.website-system-statement > p:last-child {
  max-width: 58ch;
  color: var(--kks-muted);
}

.website-system-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  margin: clamp(54px, 8vw, 112px) 0 0;
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background: #080909;
}

.website-system-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.82));
}

.website-system-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 51%;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.025);
  transition: filter 900ms ease, transform 1.4s var(--kks-ease);
}

.service-websites #ansatz.is-active .website-system-media img {
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1);
}

.website-system-media figcaption {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(16px, 2.6vw, 34px);
  left: clamp(18px, 3vw, 38px);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.website-system-media figcaption strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(23px, 3.4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

.website-system-media figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.is-service-ready .service-websites #website-typen .application-grid > article {
  opacity: 0;
  clip-path: inset(0 0 18% 0);
  transform: translateY(28px);
  transition: opacity 520ms ease, clip-path 680ms var(--kks-ease), transform 680ms var(--kks-ease);
}

.service-websites #website-typen .application-grid h3 {
  font-size: clamp(20px, 1.7vw, 25px);
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
}

.is-service-ready .service-websites #website-typen .application-grid > article:nth-child(2) { transition-delay: 500ms; }
.is-service-ready .service-websites #website-typen .application-grid > article:nth-child(3) { transition-delay: 1000ms; }
.is-service-ready .service-websites #website-typen .application-grid > article:nth-child(4) { transition-delay: 1500ms; }
.is-service-ready .service-websites #website-typen .application-grid > article:nth-child(5) { transition-delay: 2000ms; }

.is-service-ready .service-websites #website-typen.is-active .application-grid > article {
  opacity: 1;
  clip-path: inset(0);
  transform: translateY(0);
}

.service-websites #responsive {
  padding-bottom: clamp(150px, 18vw, 250px);
}

.website-responsive-stage {
  position: relative;
  min-width: 0;
  min-height: clamp(510px, 46vw, 650px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background: #0a0908;
  isolation: isolate;
}

.website-responsive-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%, rgba(0, 0, 0, 0.24));
}

.website-responsive-stage__surface {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) saturate(0.78) contrast(1.06);
}

.website-screen {
  position: absolute;
  z-index: 3;
  padding: clamp(6px, 0.75vw, 10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #151616;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 800ms var(--kks-ease);
}

.website-screen--tablet {
  top: 6%;
  left: 4%;
  width: 79%;
  aspect-ratio: 4 / 3;
  border-radius: clamp(14px, 2vw, 24px);
}

.website-screen--phone {
  right: 4%;
  bottom: 9%;
  z-index: 2;
  width: 27%;
  aspect-ratio: 9 / 19.5;
  border-radius: clamp(17px, 2.5vw, 28px);
  transition-delay: 140ms;
}

.service-websites #responsive.is-active .website-screen {
  opacity: 1;
  transform: translateY(0);
}

.website-screen__page {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: calc(clamp(14px, 2vw, 24px) - 7px);
  color: #f2f0e8;
  background: #0b0e0e;
  container-type: inline-size;
}

.website-screen__page::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 6, 6, 0.32), rgba(4, 6, 6, 0.08) 42%, rgba(4, 6, 6, 0.82));
}

.website-screen__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.website-screen--tablet .website-screen__media {
  object-position: 46% center;
}

.website-screen--phone .website-screen__media {
  object-position: 44% center;
}

.website-screen__page header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4cqw 5cqw;
  border-bottom: 1px solid rgba(242, 240, 232, 0.16);
}

.website-screen__page header strong {
  font-family: "Sturmkante Display", var(--font-display);
  font-size: clamp(10px, 4cqw, 26px);
  letter-spacing: 0.02em;
}

.website-screen__page header span {
  font-size: clamp(6px, 1.7cqw, 10px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-screen__page main {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 8cqw;
  background: transparent;
}

.website-screen__page main small {
  color: #d8ff3e;
  font-size: clamp(6px, 1.6cqw, 11px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.website-screen__page main h4 {
  max-width: 12ch;
  margin: 0.25em 0;
  font-family: "Sturmkante Display", var(--font-display);
  font-size: clamp(26px, 8.6cqw, 64px);
  line-height: 0.78;
  letter-spacing: -0.025em;
}

.website-screen--tablet .website-screen__page main h4 {
  hyphens: none;
}

.website-screen__page main p {
  max-width: 34ch;
  margin: 0 0 1.25em;
  color: rgba(242, 240, 232, 0.72);
  font-size: clamp(7px, 2.1cqw, 14px);
  line-height: 1.4;
}

.website-screen__page main b {
  padding: 2.2cqw 3cqw;
  color: #0b0e0e;
  background: #d8ff3e;
  font-size: clamp(6px, 1.8cqw, 10px);
  text-transform: uppercase;
}

.website-screen--phone .website-screen__page {
  border-radius: calc(clamp(17px, 2.5vw, 28px) - 7px);
}

.website-screen--phone .website-screen__page header {
  padding: 9cqw 8cqw;
}

.website-screen--phone .website-screen__page header strong {
  max-width: 72%;
  font-size: clamp(8px, 8cqw, 15px);
}

.website-screen--phone .website-screen__page main {
  align-content: end;
  padding: 13cqw 9cqw;
}

.website-screen--phone .website-screen__page main small {
  font-size: clamp(6px, 5cqw, 9px);
}

.website-screen--phone .website-screen__page main h4 {
  max-width: 100%;
  font-size: clamp(15px, 15cqw, 28px);
}

.website-screen--phone .website-screen__page main p {
  font-size: clamp(7px, 5cqw, 11px);
}

.website-screen--phone .website-screen__page main b {
  font-size: clamp(6px, 4.5cqw, 9px);
}

.website-responsive-stage figcaption {
  position: absolute;
  bottom: 15px;
  left: 18px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.website-quality-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--kks-line-strong);
  list-style: none;
}

.website-quality-list li {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--kks-line);
  border-bottom: 1px solid var(--kks-line);
}

.website-quality-list li:nth-child(even) {
  border-right: 0;
}

.website-quality-list span,
.website-quality-list strong,
.website-quality-list small {
  display: block;
}

.website-quality-list span {
  color: var(--kks-red);
  font-size: 10px;
  font-weight: 800;
}

.website-quality-list strong {
  margin-top: 22px;
  font-size: clamp(22px, 2.4vw, 36px);
}

.website-quality-list small {
  margin-top: 6px;
  color: var(--kks-muted);
  font-size: 11px;
}

.service-websites .website-film-module {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
}

.website-film-stage {
  min-width: 0;
  margin: 0;
}

.website-film-stage video {
  width: 100%;
  aspect-ratio: 2.35 / 1;
  display: block;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background: #080808;
  object-fit: cover;
}

.website-film-stage figcaption {
  margin-top: 12px;
  color: var(--kks-muted);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.website-sprint-progress {
  margin-top: clamp(48px, 7vw, 90px);
}

.website-sprint-progress__line {
  height: 3px;
  overflow: hidden;
  background: var(--kks-line-strong);
}

.website-sprint-progress__line i {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--kks-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s cubic-bezier(0.2, 0.72, 0.22, 1);
}

.service-websites #website-sprint.is-active .website-sprint-progress__line i {
  transform: scaleX(1);
}

.website-sprint-progress .sprint-track {
  margin: 0;
  border: 0;
  background: transparent;
}

.website-sprint-progress .sprint-track li {
  padding: 21px 10px 18px;
  border-right: 1px solid var(--kks-line);
  color: var(--kks-muted);
  background: transparent;
  opacity: 0;
  text-align: left;
  transform: translateY(8px);
  transition: opacity 400ms ease, transform 550ms var(--kks-ease), color 400ms ease;
}

.website-sprint-progress .sprint-track li:last-child {
  border-right: 0;
}

.website-sprint-progress .sprint-track li:nth-child(2) { transition-delay: 100ms; }
.website-sprint-progress .sprint-track li:nth-child(3) { transition-delay: 200ms; }
.website-sprint-progress .sprint-track li:nth-child(4) { transition-delay: 300ms; }
.website-sprint-progress .sprint-track li:nth-child(5) { transition-delay: 400ms; }
.website-sprint-progress .sprint-track li:nth-child(6) { transition-delay: 500ms; }

.service-websites #website-sprint.is-active .website-sprint-progress .sprint-track li {
  color: #fff;
  opacity: 1;
  transform: translateY(0);
}

.website-live-stage {
  position: relative;
  min-width: 0;
  min-height: clamp(500px, 46vw, 650px);
  display: grid;
  align-content: center;
  justify-items: start;
  overflow: hidden;
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background:
    radial-gradient(circle at 76% 36%, rgba(225, 231, 236, 0.12), transparent 28%),
    linear-gradient(145deg, #111317, #070809 60%);
  isolation: isolate;
}

.website-live-stage::before {
  position: absolute;
  top: 50%;
  left: 72%;
  z-index: 0;
  width: min(76%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(235, 239, 243, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 34px rgba(235, 239, 243, 0.025),
    0 0 0 92px rgba(235, 239, 243, 0.018);
  transform: translate(-50%, -50%);
}

.website-live-stage::after {
  position: absolute;
  top: 50%;
  left: 72%;
  z-index: 0;
  width: min(76%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0 84%, rgba(238, 242, 246, 0.54) 91%, transparent 96%);
  -webkit-mask: radial-gradient(circle, transparent 0 48.5%, #000 49% 50%, transparent 50.5%);
  mask: radial-gradient(circle, transparent 0 48.5%, #000 49% 50%, transparent 50.5%);
  transform: translate(-50%, -50%);
  animation: website-live-orbit 4.8s linear infinite;
}

.website-live-stage__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-position: 0 0, 0 0;
  background-size: 54px 54px;
  animation: website-live-grid 9s linear infinite;
}

.website-live-stage__status {
  position: absolute;
  top: clamp(28px, 5vw, 58px);
  left: clamp(28px, 5vw, 72px);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.website-live-stage__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kks-red);
  box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.5);
  animation: website-live-pulse 2.2s ease-out infinite;
}

.website-live-stage__status span,
.website-live-stage > small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.website-live-stage > small {
  position: absolute;
  bottom: clamp(28px, 5vw, 58px);
  left: clamp(28px, 5vw, 72px);
  z-index: 1;
}

.website-live-stage > strong {
  position: relative;
  z-index: 1;
  color: transparent;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.34) 15%, #fff 43%, rgba(255, 255, 255, 0.42) 68%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-display);
  font-size: clamp(84px, 11.5vw, 166px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.045em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
  animation: website-live-word 3.8s linear infinite;
}

.website-live-stage__rail {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: clamp(42px, 6vw, 74px);
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.website-live-stage__rail i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.website-live-stage__rail i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, #f2f4f7 48%, transparent);
  transform: translateX(-100%);
  animation: website-live-rail 2.8s ease-in-out infinite;
}

.website-live-stage__rail i:nth-of-type(2)::after {
  animation-delay: 1.4s;
}

@keyframes website-live-orbit {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

@keyframes website-live-grid {
  to { background-position: 54px 54px, 54px 54px; }
}

@keyframes website-live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.52); }
  70%, 100% { box-shadow: 0 0 0 12px rgba(229, 9, 20, 0); }
}

@keyframes website-live-word {
  to { background-position: -240% 0; }
}

@keyframes website-live-rail {
  0%, 22% { transform: translateX(-100%); }
  72%, 100% { transform: translateX(100%); }
}

@media (max-width: 1040px) {
  .website-system-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .website-system-flow li:nth-child(3) {
    border-right: 0;
  }

  .website-system-flow li:nth-child(n + 4) {
    border-top: 1px solid var(--kks-line);
  }

  .service-websites .website-film-module {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .website-system-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-system-flow li,
  .website-system-flow li:nth-child(3) {
    min-height: 230px;
    border-top: 1px solid var(--kks-line);
    border-right: 1px solid var(--kks-line);
  }

  .website-system-flow li:nth-child(odd) {
    border-left: 1px solid var(--kks-line);
  }

  .website-system-flow li:nth-child(even) {
    border-right: 0;
  }

  .website-responsive-stage {
    min-height: 560px;
  }

  .website-live-stage {
    min-height: 480px;
  }

  .website-sprint-progress .sprint-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .website-sprint-progress .sprint-track li:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 580px) {
  .service-websites #ansatz {
    padding-top: 104px;
    padding-bottom: 126px;
  }

  .service-websites #responsive {
    padding-bottom: 132px;
  }

  .service-websites #problem .scene-shell--split {
    gap: 34px;
  }

  .website-photo-stage {
    aspect-ratio: 4 / 5;
  }

  .website-photo-stage > img {
    object-position: 48% center;
  }

  .website-photo-stage figcaption {
    display: grid;
    gap: 4px;
    font-size: clamp(30px, 10vw, 44px);
  }

  .website-system-flow {
    display: block;
  }

  .website-system-flow li,
  .website-system-flow li:nth-child(3),
  .website-system-flow li:nth-child(even),
  .website-system-flow li:nth-child(odd) {
    min-height: 0;
    padding: 24px 0 26px;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--kks-line);
  }

  .website-system-flow h3 {
    margin-top: 18px;
  }

  .website-system-statement h3 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .website-system-media {
    aspect-ratio: 16 / 10;
  }

  .website-system-media figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .website-system-media figcaption span {
    text-align: left;
  }

  .website-responsive-stage {
    min-height: 440px;
  }

  .website-screen--tablet {
    top: 5%;
    left: 3%;
    width: 86%;
  }

  .website-screen--phone {
    right: 3%;
    bottom: 10%;
    width: 34%;
  }

  .website-responsive-stage figcaption {
    bottom: 11px;
    left: 12px;
    font-size: 6px;
  }

  .website-quality-list {
    grid-template-columns: 1fr;
  }

  .website-quality-list li,
  .website-quality-list li:nth-child(even) {
    min-height: 118px;
    border-right: 0;
  }

  .website-film-stage video {
    aspect-ratio: 16 / 9;
  }

  .website-sprint-progress .sprint-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-sprint-progress .sprint-track li,
  .website-sprint-progress .sprint-track li:nth-child(3n) {
    border-right: 1px solid var(--kks-line);
  }

  .website-sprint-progress .sprint-track li:nth-child(even) {
    border-right: 0;
  }

  .website-live-stage {
    min-height: 390px;
  }

  .website-live-stage::before {
    left: 76%;
    width: min(96%, 370px);
  }

  .website-live-stage::after {
    left: 76%;
    width: min(96%, 370px);
  }

  .website-live-stage > strong {
    font-size: clamp(86px, 29vw, 124px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .website-photo-stage > img,
  .website-system-media img,
  .website-system-flow::before,
  .website-system-flow li,
  .service-websites #website-typen .application-grid > article,
  .website-screen,
  .website-sprint-progress__line i,
  .website-sprint-progress .sprint-track li {
    transition: none;
  }

  .website-system-flow::before,
  .website-sprint-progress__line i {
    transform: none;
  }

  .website-system-flow li,
  .service-websites #website-typen .application-grid > article,
  .website-screen,
  .website-sprint-progress .sprint-track li {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .website-live-stage::after,
  .website-live-stage__grid,
  .website-live-stage__status i,
  .website-live-stage > strong,
  .website-live-stage__rail i::after {
    animation: none;
  }
}

/* Corporate Design: Identitätsbühne, großer Case und vollflächiger Vorher/Nachher-Vergleich. */
.brand-identity-stage,
.brand-reveal-stage {
  position: relative;
  min-height: clamp(560px, 48vw, 700px);
  overflow: hidden;
  border: 1px solid var(--kks-line-strong);
  border-radius: var(--kks-radius);
  background: #080a0a;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.62);
  isolation: isolate;
}

.brand-identity-stage > img,
.brand-reveal-stage > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.12);
  transform: scale(1.06);
  transition: transform 2s var(--kks-ease), filter 1.4s ease;
}

.service-corporate-design #hero.is-active .brand-identity-stage > img,
.service-corporate-design #finale.is-active .brand-reveal-stage > img {
  filter: saturate(0.94) contrast(1.08);
  transform: scale(1.015);
}

.brand-identity-stage::after,
.brand-reveal-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 8, 0.08), rgba(5, 8, 8, 0.9));
}

.brand-identity-stage__generic,
.brand-identity-stage__own,
.brand-reveal-stage__before,
.brand-reveal-stage__after {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(34px, 6vw, 86px);
  text-align: center;
}

.brand-identity-stage__generic,
.brand-reveal-stage__before {
  color: #2e3434;
  background:
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(0, 0, 0, 0.03) 48px),
    #deded9;
}

.brand-identity-stage__generic span,
.brand-identity-stage__own span,
.brand-reveal-stage__before span,
.brand-reveal-stage__after span {
  margin-bottom: 18px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-identity-stage__generic strong,
.brand-reveal-stage__before strong {
  max-width: 10ch;
  color: #4b5050;
  font: 500 clamp(31px, 5vw, 68px)/0.96 Arial, Helvetica, sans-serif;
}

.brand-identity-stage__generic i,
.brand-reveal-stage__before i {
  width: clamp(74px, 9vw, 112px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-top: 42px;
  border: 2px solid #777;
  border-radius: 50%;
  color: #777;
  font: 500 10px/1 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.brand-identity-stage__own,
.brand-reveal-stage__after {
  color: #f2f0e8;
  background: linear-gradient(180deg, rgba(11, 14, 14, 0.08), rgba(11, 14, 14, 0.84));
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.35s 280ms var(--kks-ease);
}

.service-corporate-design #hero.is-active .brand-identity-stage__own,
.service-corporate-design #finale.is-active .brand-reveal-stage__after {
  clip-path: inset(0 0 0 0);
}

.brand-identity-stage__own span,
.brand-reveal-stage__after span {
  color: #d8ff3e;
}

.brand-identity-stage__own strong,
.brand-reveal-stage__after strong {
  max-width: 8ch;
  font-family: "Sturmkante Display", var(--font-display);
  font-size: clamp(70px, 12vw, 164px);
  line-height: 0.7;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.brand-identity-stage__own p,
.brand-reveal-stage__after p {
  margin: 24px 0 0;
  color: #f2f0e8;
  font: 700 clamp(10px, 1.4vw, 16px)/1.2 "Sturmkante Text", var(--font-body);
  letter-spacing: 0.15em;
}

.brand-identity-stage__scanner,
.brand-reveal-stage__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 2px;
  background: #d8ff3e;
  box-shadow: 0 0 34px rgba(216, 255, 62, 0.82), 0 0 90px rgba(216, 255, 62, 0.35);
  opacity: 0;
}

.service-corporate-design #hero.is-active .brand-identity-stage__scanner,
.service-corporate-design #finale.is-active .brand-reveal-stage__handle {
  left: 100%;
  opacity: 1;
  transition: left 1.35s 280ms var(--kks-ease), opacity 180ms 1.55s ease;
}

.brand-identity-stage > ul {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(242, 240, 232, 0.18);
  list-style: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms 1.35s ease, transform 700ms 1.35s var(--kks-ease);
}

.service-corporate-design #hero.is-active .brand-identity-stage > ul {
  opacity: 1;
  transform: translateY(0);
}

.brand-identity-stage > ul li {
  padding: 13px 8px;
  color: #0b0e0e;
  background: #d8ff3e;
  font: 700 8px/1.1 "Sturmkante Text", var(--font-body);
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.brand-identity-stage > small,
.brand-reveal-stage > small {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 8;
  padding: 7px 9px;
  color: #0b0e0e;
  background: #d8ff3e;
  font: 700 8px/1.2 "Sturmkante Text", var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-corporate-design #cases .case-stage {
  width: min(100%, 1320px);
  max-width: 1320px;
  margin-inline: auto;
}

.service-corporate-design #cases .brand-case-feature .brand-stage {
  min-height: 0;
  aspect-ratio: 16 / 8.4;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.6);
}

.service-corporate-design #cases .brand-case-feature .brand-stage__focus {
  transform: scale(1.08);
  transition: transform 1.8s var(--kks-ease), filter 1.2s ease;
}

.service-corporate-design #cases.is-active .brand-case-feature .brand-stage__focus {
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.015);
}

.service-corporate-design #cases .brand-case-feature .brand-stage__wordmark {
  font-size: clamp(64px, 12cqw, 146px);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 850ms 420ms var(--kks-ease), opacity 620ms 420ms ease;
}

.service-corporate-design #cases.is-active .brand-case-feature .brand-stage__wordmark {
  transform: translateY(0);
  opacity: 1;
}

.service-corporate-design #cases .brand-case-feature > .eyebrow {
  display: block;
  margin-top: clamp(34px, 5vw, 68px);
}

.service-corporate-design #cases .brand-case-feature > h3 {
  margin-top: 16px;
  font-size: clamp(36px, 5vw, 72px);
}

.brand-reveal-stage {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.service-corporate-design #finale .brand-reveal-stage__after {
  align-content: end;
  justify-items: start;
  padding-bottom: clamp(48px, 8vw, 94px);
  background: linear-gradient(180deg, rgba(8, 10, 10, 0.02) 28%, rgba(8, 10, 10, 0.82));
  text-align: left;
}

.service-corporate-design #finale .brand-reveal-stage__before {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.35s 280ms var(--kks-ease);
}

.service-corporate-design #finale.is-active .brand-reveal-stage__before {
  clip-path: inset(0 0 0 100%);
}

.service-corporate-design #finale .brand-reveal-stage__after strong {
  max-width: none;
  font-size: clamp(50px, 7.5vw, 108px);
  line-height: 0.78;
}

.service-corporate-design #finale .brand-reveal-stage__after p {
  margin-top: 14px;
}

.brand-reveal-stage__handle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  aspect-ratio: 1;
  border: 2px solid #d8ff3e;
  border-radius: 50%;
  background: #0b0e0e;
  box-shadow: 0 0 26px rgba(216, 255, 62, 0.52);
  transform: translate(-50%, -50%);
}

@media (max-width: 1180px) {
  .brand-identity-stage {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 820px) {
  .brand-identity-stage {
    aspect-ratio: 4 / 3;
  }

  .brand-identity-stage > ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-identity-stage > ul li:nth-child(n + 4) {
    display: none;
  }

  .service-corporate-design #cases .brand-case-feature .brand-stage {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 580px) {
  .brand-identity-stage,
  .brand-reveal-stage {
    aspect-ratio: auto;
    min-height: 470px;
  }

  .brand-identity-stage__generic,
  .brand-identity-stage__own,
  .brand-reveal-stage__before,
  .brand-reveal-stage__after {
    padding: 30px 18px 90px;
  }

  .brand-identity-stage__own strong,
  .brand-reveal-stage__after strong {
    font-size: clamp(62px, 25vw, 96px);
  }

  .brand-identity-stage > small,
  .brand-reveal-stage > small {
    max-width: calc(100% - 28px);
    font-size: 6px;
  }

  .service-corporate-design #cases .brand-case-feature .brand-stage {
    min-height: 360px;
    aspect-ratio: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-identity-stage__own,
  .brand-reveal-stage__after {
    clip-path: inset(0 0 0 0);
    transition: none;
  }

  .service-corporate-design #finale .brand-reveal-stage__before {
    clip-path: inset(0 0 0 100%);
    transition: none;
  }

  .brand-identity-stage__scanner,
  .brand-reveal-stage__handle {
    display: none;
  }
}

/* Responsive Überschriften: keine willkürlichen Worttrennungen. */
body.service-page :is(h1, h2, h3, h4, h5, h6, .display) {
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
  text-wrap: balance;
}

body.service-page .sedgwick {
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
}

.service-corporate-design #faq .display {
  max-width: none;
  font-size: clamp(40px, 4vw, 59px);
}

@media (max-width: 580px) {
  body.service-page .scene :is(.display, h2.display) {
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .service-corporate-design #faq .display {
    font-size: clamp(29px, 7.7vw, 38px);
  }

  .service-social-media-content [data-scroll-scene="social-system"] .process-grid,
  .service-social-media-content [data-scroll-scene="social-process"] .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.service-page :is(.process-grid, .application-grid) h3 {
    font-size: clamp(20px, 5.7vw, 23px);
  }

  .website-screen--phone .website-screen__page main h4 {
    max-width: 100%;
    font-size: clamp(15px, 15cqw, 28px);
    letter-spacing: -0.055em;
  }
}
