/* ========================================================================
   RIEGER.MEDIA – KI-WERKSTATT
   Eigene Seitendatei; alle Selektoren sind auf .rd-ki-* begrenzt.
   ======================================================================== */

.rd-ki-hero,
.rd-ki-hero *,
.rd-ki-page,
.rd-ki-page * {
  box-sizing: border-box;
}

.rd-ki-hero,
.rd-ki-page {
  --rd-ki-blue: #0078bf;
  --rd-ki-blue-light: #4dbcf2;
  --rd-ki-green: #21a73f;
  --rd-ki-green-light: #72dc87;
  --rd-ki-ink: #071018;
  --rd-ki-panel: #0d1821;
  --rd-ki-panel-light: #13232e;
  --rd-ki-text: #f2f7fa;
  --rd-ki-muted: #9cafba;
  --rd-ki-line: rgba(255, 255, 255, .1);
  width: 100%;
  max-width: 100%;
  color: var(--rd-ki-text);
}

.rd-ki-hero h1,
.rd-ki-hero h2,
.rd-ki-hero h3,
.rd-ki-hero p,
.rd-ki-page h1,
.rd-ki-page h2,
.rd-ki-page h3,
.rd-ki-page p,
.rd-ki-page blockquote {
  font-family: inherit;
}

/* HERO ------------------------------------------------------------------ */

.rd-ki-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 38%, rgba(0, 120, 191, .13), transparent 36%),
    radial-gradient(circle at 36% 115%, rgba(33, 167, 63, .08), transparent 34%),
    linear-gradient(135deg, #071018 0%, #09141c 55%, #071018 100%);
  isolation: isolate;
}

.rd-ki-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 100%);
}

.rd-ki-hero::after {
  content: "KI";
  position: absolute;
  right: 1.5%;
  bottom: -5%;
  z-index: -2;
  color: rgba(255, 255, 255, .018);
  font-size: clamp(14rem, 25vw, 28rem);
  font-weight: 850;
  letter-spacing: -.08em;
  line-height: .72;
  pointer-events: none;
}

.rd-ki-hero__glow {
  position: absolute;
  z-index: -2;
  width: clamp(280px, 35vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.rd-ki-hero__glow--blue {
  top: 5%;
  right: 4%;
  background: rgba(0, 120, 191, .16);
}

.rd-ki-hero__glow--green {
  right: 36%;
  bottom: -42%;
  background: rgba(33, 167, 63, .1);
}

.rd-ki-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  width: min(1480px, calc(100% - 64px));
  min-height: 760px;
  margin-inline: auto;
  padding-block: clamp(78px, 9vw, 130px);
}

.rd-ki-hero__copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.rd-ki-eyebrow,
.rd-ki-section__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #72c9f4;
  font-size: .76rem;
  font-weight: 780;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rd-ki-eyebrow::before,
.rd-ki-section__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rd-ki-blue), var(--rd-ki-green));
}

.rd-ki-hero__title {
  max-width: 780px;
  margin: 0;
  color: var(--rd-ki-text);
  font: inherit;
  font-size: clamp(2.7rem, 4.35vw, 5rem);
  font-weight: 790;
  letter-spacing: -.052em;
  line-height: .99;
}

.rd-ki-hero__title span,
.rd-ki-section__title span {
  color: transparent;
  background: linear-gradient(92deg, #edf9ff 0%, #69c6f4 50%, #72dc87 118%);
  -webkit-background-clip: text;
  background-clip: text;
}

.rd-ki-hero__lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: var(--rd-ki-muted);
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
  line-height: 1.72;
}

.rd-ki-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.rd-ki-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 740;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.rd-ki-button:hover,
.rd-ki-button:focus-visible {
  transform: translateY(-2px);
}

.rd-ki-button:focus-visible,
.rd-ki-mode:focus-visible {
  outline: 3px solid rgba(78, 186, 240, .42);
  outline-offset: 3px;
}

.rd-ki-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-ki-button--primary {
  color: #fff !important;
  background: linear-gradient(120deg, #0078bf, #078bd7);
  box-shadow: 0 14px 34px rgba(0, 120, 191, .25);
}

.rd-ki-button--primary:hover,
.rd-ki-button--primary:focus-visible {
  color: #fff !important;
  box-shadow: 0 18px 42px rgba(0, 120, 191, .36);
}

.rd-ki-button--ghost {
  border-color: rgba(255, 255, 255, .15);
  color: #edf6fa !important;
  background: rgba(255, 255, 255, .035);
}

.rd-ki-button--ghost:hover,
.rd-ki-button--ghost:focus-visible {
  border-color: rgba(78, 186, 240, .3);
  color: #fff !important;
  background: rgba(78, 186, 240, .07);
}

.rd-ki-hero__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 35px 0 0;
  padding: 0;
  color: #69818e;
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .12em;
  list-style: none;
  text-transform: uppercase;
}

.rd-ki-hero__topics li {
  display: flex;
  align-items: center;
}

.rd-ki-hero__topics li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  margin-inline: 11px;
  border-radius: 50%;
  background: #3c5662;
}

/* KI-Werkbank ----------------------------------------------------------- */

.rd-ki-workbench {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(14, 28, 38, .98), rgba(8, 18, 25, .99));
  box-shadow: 0 45px 90px rgba(0, 0, 0, .4), 0 0 0 8px rgba(255, 255, 255, .02);
  transform: perspective(1300px) rotateY(-1deg) rotateX(.3deg);
  transition: transform .45s ease, box-shadow .45s ease;
}

.rd-ki-workbench:hover {
  box-shadow: 0 52px 105px rgba(0, 0, 0, .47), 0 0 0 8px rgba(255, 255, 255, .028);
  transform: perspective(1300px) rotateY(0) rotateX(0) translateY(-4px);
}

.rd-ki-workbench::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.rd-ki-workbench__topbar {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(8, 19, 26, .92);
}

.rd-ki-workbench__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #dce8ed;
  font-size: .86rem;
  font-weight: 750;
}

.rd-ki-workbench__mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 9px;
  color: #69c8f8;
  background: linear-gradient(140deg, rgba(0, 120, 191, .2), rgba(33, 167, 63, .12));
  box-shadow: inset 0 0 0 1px rgba(78, 186, 240, .14);
}

.rd-ki-workbench__mark svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-ki-workbench__status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #81d893;
  font-size: .64rem;
  font-weight: 790;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.rd-ki-workbench__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4bd56a;
  box-shadow: 0 0 12px rgba(75, 213, 106, .7);
}

.rd-ki-workbench__modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 14px 16px 0;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
}

.rd-ki-mode {
  min-height: 34px;
  padding: 7px 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #708a97;
  background: transparent;
  font: inherit;
  font-size: .68rem;
  font-weight: 760;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}

.rd-ki-mode:hover {
  color: #dbe8ee;
  background: rgba(255, 255, 255, .035);
}

.rd-ki-mode.is-active {
  border-color: rgba(78, 186, 240, .22);
  color: #eff9fd;
  background: rgba(0, 120, 191, .16);
}

.rd-ki-workbench__panels {
  position: relative;
  min-height: 320px;
  padding: 17px 16px 12px;
}

.rd-ki-workbench__panel {
  animation: rd-ki-panel-in .42s ease both;
}

.rd-ki-workbench__panel[hidden] {
  display: none !important;
}

.rd-ki-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  min-height: 222px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background:
    radial-gradient(circle at center, rgba(0, 120, 191, .1), transparent 38%),
    rgba(7, 17, 24, .74);
  overflow: hidden;
}

.rd-ki-flow::before,
.rd-ki-flow::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 0;
  width: 22%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 120, 191, .1), #159bdf, rgba(0, 120, 191, .2));
  box-shadow: 0 0 10px rgba(21, 155, 223, .45);
}

.rd-ki-flow::before { left: 27%; }
.rd-ki-flow::after { right: 27%; transform: rotate(180deg); }

.rd-ki-flow__card {
  position: relative;
  z-index: 2;
  min-height: 155px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(19, 35, 46, .92), rgba(11, 23, 31, .95));
  box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
}

.rd-ki-flow__card--result {
  border-color: rgba(33, 167, 63, .2);
  background: linear-gradient(150deg, rgba(14, 39, 38, .9), rgba(10, 27, 30, .96));
}

.rd-ki-flow__label {
  display: block;
  margin-bottom: 10px;
  color: #5f7a88;
  font-size: .6rem;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rd-ki-flow__card strong {
  display: block;
  color: #e9f2f6;
  font-size: .83rem;
  line-height: 1.35;
}

.rd-ki-flow__card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.rd-ki-flow__card li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #88a69e;
  font-size: .68rem;
}

.rd-ki-flow__card li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #39c45a;
  box-shadow: 0 0 7px rgba(57, 196, 90, .55);
}

.rd-ki-lines,
.rd-ki-code {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.rd-ki-lines i,
.rd-ki-code i {
  display: block;
  height: 4px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(103, 131, 145, .48), rgba(103, 131, 145, .1));
}

.rd-ki-lines i:nth-child(2) { width: 78%; }
.rd-ki-lines i:nth-child(3) { width: 92%; }
.rd-ki-lines i:nth-child(4) { width: 58%; }
.rd-ki-code i { height: 5px; background: linear-gradient(90deg, rgba(0, 120, 191, .58), rgba(33, 167, 63, .17)); }
.rd-ki-code i:nth-child(1) { width: 70%; margin-left: 9%; }
.rd-ki-code i:nth-child(2) { width: 84%; margin-left: 17%; }
.rd-ki-code i:nth-child(3) { width: 58%; margin-left: 17%; }
.rd-ki-code i:nth-child(4) { width: 76%; margin-left: 9%; }

.rd-ki-shapes {
  position: relative;
  height: 72px;
  margin-top: 14px;
}

.rd-ki-shapes i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .09);
}

.rd-ki-shapes i:nth-child(1) {
  inset: 3px auto auto 3px;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 120, 191, .54), rgba(0, 120, 191, .1));
  transform: rotate(-7deg);
}

.rd-ki-shapes i:nth-child(2) {
  right: 19%;
  bottom: 4px;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(33, 167, 63, .55), rgba(33, 167, 63, .08));
}

.rd-ki-shapes i:nth-child(3) {
  top: 8px;
  right: 3px;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .09);
  transform: rotate(18deg);
}

.rd-ki-flow__engine {
  position: relative;
  z-index: 3;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(78, 186, 240, .28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 120, 191, .35), rgba(7, 18, 25, .97) 67%);
  box-shadow: 0 0 35px rgba(0, 120, 191, .22), inset 0 0 24px rgba(0, 120, 191, .14);
}

.rd-ki-flow__engine b {
  position: relative;
  z-index: 2;
  color: #dff6ff;
  font-size: .82rem;
  letter-spacing: .04em;
}

.rd-ki-flow__orbit {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(78, 186, 240, .2);
  border-radius: 50%;
  animation: rd-ki-orbit 4.2s linear infinite;
}

.rd-ki-flow__orbit::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62d97b;
  box-shadow: 0 0 12px rgba(98, 217, 123, .8);
  transform: translateX(-50%);
}

.rd-ki-workbench__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 2px 0;
  color: #76939f;
  font-size: .7rem;
  line-height: 1.4;
}

.rd-ki-workbench__note span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #78df8c;
  background: rgba(33, 167, 63, .13);
  font-size: .65rem;
}

.rd-ki-workbench__claim {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  margin: 0;
  padding: 0 18px 17px;
  color: #6e8895;
  font-size: .68rem;
  font-weight: 670;
}

.rd-ki-workbench__claim span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #44cf62;
  box-shadow: 0 0 9px rgba(68, 207, 98, .58);
}

/* ALLGEMEINE SEKTIONSSTILE --------------------------------------------- */

.rd-ki-page {
  overflow: hidden;
  background: #071018;
}

.rd-ki-section__inner {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.rd-ki-section__header {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.rd-ki-section__title {
  margin: 0;
  color: var(--rd-ki-text);
  font: inherit;
  font-size: clamp(2.2rem, 3.6vw, 4.35rem);
  font-weight: 780;
  letter-spacing: -.048em;
  line-height: 1.02;
}

.rd-ki-section__lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--rd-ki-muted);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.75;
}

/* HALTUNG --------------------------------------------------------------- */

.rd-ki-principle {
  padding-block: clamp(88px, 10vw, 150px);
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 120, 191, .06), transparent 28%),
    #09131b;
}

.rd-ki-principle__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.rd-ki-principle__quote {
  position: relative;
  margin: 0;
  padding: clamp(38px, 5vw, 70px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(17, 35, 46, .86), rgba(9, 23, 30, .96));
  box-shadow: 0 35px 70px rgba(0, 0, 0, .25);
}

.rd-ki-principle__quote::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 120, 191, .22), transparent 43%, rgba(33, 167, 63, .15));
}

.rd-ki-principle__quote > span {
  display: block;
  height: 42px;
  color: #2e9ed5;
  font-size: 5rem;
  font-weight: 800;
  line-height: .8;
}

.rd-ki-principle__quote p {
  margin: 18px 0 0;
  color: #e6f0f4;
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  font-weight: 640;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.rd-ki-principle__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(55px, 8vw, 105px);
}

.rd-ki-value-card {
  min-height: 220px;
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent);
}

.rd-ki-value-card > span {
  display: block;
  margin-bottom: 30px;
  color: #338fbe;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.rd-ki-value-card h3 {
  margin: 0 0 13px;
  color: #eaf2f6;
  font-size: 1.22rem;
  font-weight: 730;
}

.rd-ki-value-card p {
  margin: 0;
  color: #89a0ac;
  font-size: .92rem;
  line-height: 1.7;
}

/* EINSATZBEREICHE ------------------------------------------------------- */

.rd-ki-uses {
  padding-block: clamp(88px, 10vw, 150px);
  background:
    radial-gradient(circle at 12% 35%, rgba(33, 167, 63, .055), transparent 25%),
    #071018;
}

.rd-ki-uses__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rd-ki-use-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(15, 30, 40, .93), rgba(9, 20, 28, .98));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.rd-ki-use-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 120, 191, .07);
  filter: blur(18px);
}

.rd-ki-use-card:hover {
  border-color: rgba(78, 186, 240, .22);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .25);
  transform: translateY(-5px);
}

.rd-ki-use-card--accent {
  border-color: rgba(33, 167, 63, .18);
  background: linear-gradient(145deg, rgba(12, 39, 38, .88), rgba(8, 24, 29, .98));
}

.rd-ki-use-card--accent::after {
  background: rgba(33, 167, 63, .1);
}

.rd-ki-use-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 37px;
  place-items: center;
  border: 1px solid rgba(78, 186, 240, .15);
  border-radius: 13px;
  color: #65c8f7;
  background: rgba(0, 120, 191, .12);
}

.rd-ki-use-card--accent .rd-ki-use-card__icon {
  border-color: rgba(33, 167, 63, .2);
  color: #74dc89;
  background: rgba(33, 167, 63, .12);
}

.rd-ki-use-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-ki-use-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: #ecf4f7;
  font-size: 1.2rem;
  font-weight: 740;
}

.rd-ki-use-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #8ea4af;
  font-size: .92rem;
  line-height: 1.68;
}

.rd-ki-use-card small {
  position: absolute;
  bottom: 28px;
  left: 30px;
  z-index: 1;
  color: #53707d;
  font-size: .64rem;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* ANWENDUNGSBEISPIELE --------------------------------------------------- */

.rd-ki-examples {
  padding-block: clamp(88px, 10vw, 150px);
  background: #0a151d;
}

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

.rd-ki-example {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(14, 29, 39, .98), rgba(8, 20, 27, .98));
}

.rd-ki-example--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  min-height: 370px;
}

.rd-ki-example__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .07);
  background:
    radial-gradient(circle at center, rgba(0, 120, 191, .16), transparent 43%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #08141c;
  background-size: auto, 27px 27px, 27px 27px, auto;
}

.rd-ki-example__copy {
  align-self: center;
  padding: clamp(28px, 4vw, 58px);
}

.rd-ki-example__copy > span {
  display: block;
  margin-bottom: 14px;
  color: #5ebde9;
  font-size: .65rem;
  font-weight: 790;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rd-ki-example__copy h3 {
  margin: 0 0 16px;
  color: #edf5f8;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.rd-ki-example__copy p {
  margin: 0;
  color: #90a6b0;
  font-size: .94rem;
  line-height: 1.72;
}

.rd-ki-example__visual--scan {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 22px;
  padding: clamp(30px, 5vw, 70px);
}

.rd-ki-scan-pack,
.rd-ki-scan-result {
  position: relative;
  z-index: 2;
  height: 190px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(27, 41, 50, .9), rgba(13, 27, 35, .95));
  box-shadow: 0 22px 40px rgba(0, 0, 0, .25);
}

.rd-ki-scan-pack {
  transform: rotate(-3deg);
}

.rd-ki-scan-pack::before {
  content: "PRODUKT";
  display: block;
  margin-bottom: 23px;
  color: #8da2ab;
  font-size: .62rem;
  font-weight: 790;
  letter-spacing: .12em;
}

.rd-ki-scan-pack i,
.rd-ki-scan-pack span,
.rd-ki-scan-result i {
  display: block;
  height: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .13);
}

.rd-ki-scan-pack span:nth-of-type(1) { width: 88%; }
.rd-ki-scan-pack span:nth-of-type(2) { width: 70%; }
.rd-ki-scan-pack span:nth-of-type(3) { width: 80%; }

.rd-ki-scan-line {
  position: relative;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, #087cc1, #4dd66d);
  box-shadow: 0 0 18px rgba(8, 124, 193, .7);
}

.rd-ki-scan-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #70dd85;
  box-shadow: 0 0 12px rgba(112, 221, 133, .8);
  transform: translateY(-50%);
  animation: rd-ki-scan-dot 2.8s ease-in-out infinite;
}

.rd-ki-scan-result {
  border-color: rgba(33, 167, 63, .22);
}

.rd-ki-scan-result > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  color: #8be39b;
  background: rgba(33, 167, 63, .15);
  font-weight: 800;
}

.rd-ki-scan-result i {
  background: linear-gradient(90deg, rgba(33, 167, 63, .48), rgba(33, 167, 63, .08));
}

.rd-ki-scan-result i:nth-of-type(2) { width: 76%; }
.rd-ki-scan-result i:nth-of-type(3) { width: 58%; }

.rd-ki-example__visual--document {
  display: grid;
  place-items: center;
}

.rd-ki-example__visual--document i {
  position: absolute;
  width: 105px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: linear-gradient(145deg, #e9f1f4, #8da5af);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .28);
}

.rd-ki-example__visual--document i:nth-child(1) { transform: translate(-24px, 6px) rotate(-9deg); opacity: .38; }
.rd-ki-example__visual--document i:nth-child(2) { transform: translate(20px, 4px) rotate(8deg); opacity: .55; }
.rd-ki-example__visual--document i:nth-child(3) { transform: translateY(-3px); }

.rd-ki-example__visual--document span {
  position: relative;
  z-index: 2;
  color: #0b75ad;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.rd-ki-example__visual--code {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 11px;
  padding: 35px;
}

.rd-ki-example__visual--code b {
  margin-bottom: 12px;
  color: #66c7f4;
  font-size: 2.35rem;
  letter-spacing: -.06em;
}

.rd-ki-example__visual--code i {
  display: block;
  width: 76%;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(0, 120, 191, .65), rgba(33, 167, 63, .15));
}

.rd-ki-example__visual--code i:nth-of-type(2) { width: 58%; }
.rd-ki-example__visual--code i:nth-of-type(3) { width: 68%; }

.rd-ki-example__visual--code span {
  display: grid;
  position: absolute;
  right: 18%;
  bottom: 17%;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: #80e193;
  background: rgba(33, 167, 63, .14);
  font-weight: 800;
}

/* ABLAUF --------------------------------------------------------------- */

.rd-ki-process {
  padding-block: clamp(88px, 10vw, 150px);
  background:
    radial-gradient(circle at 88% 55%, rgba(0, 120, 191, .06), transparent 30%),
    #071018;
}

.rd-ki-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rd-ki-process__steps::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,120,191,.15), rgba(0,120,191,.65), rgba(33,167,63,.6));
}

.rd-ki-process__step {
  position: relative;
  z-index: 1;
}

.rd-ki-process__step > span {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 27px;
  place-items: center;
  border: 1px solid rgba(78, 186, 240, .24);
  border-radius: 50%;
  color: #74c9ee;
  background: #0a1720;
  box-shadow: 0 0 0 8px #071018;
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .08em;
}

.rd-ki-process__step:last-child > span {
  border-color: rgba(33, 167, 63, .28);
  color: #78dd8d;
}

.rd-ki-process__step h3 {
  margin: 0 0 13px;
  color: #e9f2f5;
  font-size: 1.08rem;
  font-weight: 730;
}

.rd-ki-process__step p {
  margin: 0;
  color: #8399a4;
  font-size: .88rem;
  line-height: 1.7;
}

/* VERANTWORTUNG --------------------------------------------------------- */

.rd-ki-responsibility {
  padding-block: clamp(88px, 10vw, 150px);
  background: #0a151d;
}

.rd-ki-responsibility__head {
  max-width: 760px;
  margin-bottom: clamp(45px, 6vw, 75px);
}

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

.rd-ki-responsibility__card {
  min-height: 355px;
  padding: clamp(32px, 4vw, 55px);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(15, 30, 40, .95), rgba(9, 20, 28, .98));
}

.rd-ki-responsibility__card--human {
  border-color: rgba(33, 167, 63, .2);
  background: linear-gradient(145deg, rgba(12, 38, 37, .9), rgba(8, 24, 29, .98));
}

.rd-ki-responsibility__card > span {
  display: block;
  margin-bottom: 31px;
  color: #5ebeea;
  font-size: .7rem;
  font-weight: 790;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rd-ki-responsibility__card--human > span {
  color: #72da87;
}

.rd-ki-responsibility__card ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rd-ki-responsibility__card li {
  position: relative;
  padding: 0 0 17px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: #b4c4cc;
  font-size: .96rem;
  line-height: 1.5;
}

.rd-ki-responsibility__card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.rd-ki-responsibility__card li::before {
  content: "";
  position: absolute;
  top: .45em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #299ed6;
  border-radius: 50%;
}

.rd-ki-responsibility__card--human li::before {
  border-color: #53ce6b;
  background: rgba(83, 206, 107, .13);
}

.rd-ki-data {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(78, 186, 240, .13);
  border-radius: 18px;
  background: rgba(0, 120, 191, .055);
}

.rd-ki-data__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 15px;
  color: #66c5f1;
  background: rgba(0, 120, 191, .12);
}

.rd-ki-data__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-ki-data h3 {
  margin: 0 0 8px;
  color: #eaf3f6;
  font-size: 1.12rem;
  font-weight: 740;
}

.rd-ki-data p {
  max-width: 920px;
  margin: 0;
  color: #8fa5af;
  font-size: .92rem;
  line-height: 1.68;
}

/* ABSCHLUSS ------------------------------------------------------------- */

.rd-ki-contact {
  padding: clamp(70px, 8vw, 110px) 32px;
  background: #071018;
}

.rd-ki-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 45px;
  width: min(1320px, 100%);
  margin-inline: auto;
  padding: clamp(35px, 5vw, 65px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 50%, rgba(33, 167, 63, .11), transparent 28%),
    linear-gradient(125deg, rgba(0, 120, 191, .12), rgba(14, 36, 38, .92));
  box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

.rd-ki-contact .rd-ki-section__eyebrow {
  margin-bottom: 16px;
  color: #76c8f0;
}

.rd-ki-contact__inner h2 {
  margin: 0;
  color: #f1f7f9;
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  font-weight: 770;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.rd-ki-contact__inner p:not(.rd-ki-section__eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #9db0b9;
  font-size: .98rem;
  line-height: 1.7;
}

.rd-ki-button--contact {
  color: #fff !important;
  background: linear-gradient(120deg, #0782c8, #1b9c58);
  box-shadow: 0 16px 35px rgba(0, 120, 191, .22);
  white-space: nowrap;
}

.rd-ki-button--contact:hover,
.rd-ki-button--contact:focus-visible {
  color: #fff !important;
  box-shadow: 0 20px 42px rgba(0, 120, 191, .32);
}

/* REVEAL --------------------------------------------------------------- */

.rd-ki-page.is-reveal-ready .rd-ki-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}

.rd-ki-page.is-reveal-ready .rd-ki-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rd-ki-principle__cards .rd-ki-reveal:nth-child(2),
.rd-ki-uses__grid .rd-ki-reveal:nth-child(2),
.rd-ki-process__steps .rd-ki-reveal:nth-child(2) { transition-delay: .07s; }
.rd-ki-principle__cards .rd-ki-reveal:nth-child(3),
.rd-ki-uses__grid .rd-ki-reveal:nth-child(3),
.rd-ki-process__steps .rd-ki-reveal:nth-child(3) { transition-delay: .14s; }
.rd-ki-uses__grid .rd-ki-reveal:nth-child(5),
.rd-ki-process__steps .rd-ki-reveal:nth-child(4) { transition-delay: .07s; }
.rd-ki-uses__grid .rd-ki-reveal:nth-child(6) { transition-delay: .14s; }

/* ANIMATIONEN ---------------------------------------------------------- */

@keyframes rd-ki-orbit {
  to { transform: rotate(360deg); }
}

@keyframes rd-ki-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rd-ki-scan-dot {
  0%, 100% { left: 0; }
  50% { left: calc(100% - 9px); }
}

/* RESPONSIVE ----------------------------------------------------------- */

@media (max-width: 1250px) {
  .rd-ki-hero__inner {
    grid-template-columns: minmax(0, .85fr) minmax(510px, 1.15fr);
    gap: 42px;
  }

  .rd-ki-flow {
    gap: 12px;
    padding: 16px;
  }

  .rd-ki-flow__card {
    padding: 14px;
  }
}

@media (max-width: 1050px) {
  .rd-ki-hero__inner {
    grid-template-columns: 1fr;
    width: min(840px, calc(100% - 48px));
    padding-block: 90px;
  }

  .rd-ki-hero__copy {
    max-width: 760px;
  }

  .rd-ki-workbench {
    transform: none;
  }

  .rd-ki-workbench:hover {
    transform: translateY(-3px);
  }

  .rd-ki-principle__grid {
    grid-template-columns: 1fr;
  }

  .rd-ki-principle__quote {
    max-width: 820px;
  }

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

  .rd-ki-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 28px;
  }

  .rd-ki-process__steps::before {
    display: none;
  }
}

@media (max-width: 800px) {
  .rd-ki-section__inner {
    width: min(100% - 40px, 680px);
  }

  .rd-ki-principle__cards,
  .rd-ki-responsibility__columns {
    grid-template-columns: 1fr;
  }

  .rd-ki-value-card {
    min-height: 0;
  }

  .rd-ki-examples__grid {
    grid-template-columns: 1fr;
  }

  .rd-ki-example,
  .rd-ki-example--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .rd-ki-example__visual {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .rd-ki-example__visual--scan {
    min-height: 340px;
    padding: 35px;
  }

  .rd-ki-contact__inner {
    grid-template-columns: 1fr;
  }

  .rd-ki-button--contact {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .rd-ki-hero {
    min-height: auto;
  }

  .rd-ki-hero__inner {
    width: calc(100% - 32px);
    min-height: 0;
    padding-block: 68px 72px;
  }

  .rd-ki-hero__title {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .rd-ki-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rd-ki-button {
    width: 100%;
  }

  .rd-ki-workbench__topbar {
    min-height: 60px;
  }

  .rd-ki-workbench__status {
    font-size: .56rem;
  }

  .rd-ki-workbench__modes {
    grid-template-columns: repeat(2, 1fr);
  }

  .rd-ki-workbench__panels {
    min-height: 525px;
  }

  .rd-ki-flow {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 17px;
  }

  .rd-ki-flow::before,
  .rd-ki-flow::after {
    top: auto;
    left: 50%;
    right: auto;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(0,120,191,.1), #159bdf, rgba(0,120,191,.2));
  }

  .rd-ki-flow::before { top: 31%; }
  .rd-ki-flow::after { bottom: 31%; transform: none; }

  .rd-ki-flow__card {
    width: 100%;
    min-height: 133px;
  }

  .rd-ki-flow__engine {
    width: 58px;
    height: 58px;
    justify-self: center;
  }

  .rd-ki-workbench__claim {
    justify-content: flex-start;
  }

  .rd-ki-section__inner {
    width: calc(100% - 32px);
  }

  .rd-ki-uses__grid,
  .rd-ki-process__steps {
    grid-template-columns: 1fr;
  }

  .rd-ki-use-card {
    min-height: 295px;
  }

  .rd-ki-process__step {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
  }

  .rd-ki-process__step > span {
    width: 54px;
    height: 54px;
    margin: 0;
    box-shadow: none;
  }

  .rd-ki-example__visual--scan {
    grid-template-columns: 1fr 48px 1fr;
    gap: 12px;
    min-height: 300px;
    padding: 24px 18px;
  }

  .rd-ki-scan-pack,
  .rd-ki-scan-result {
    height: 160px;
    padding: 20px 14px;
  }

  .rd-ki-data {
    grid-template-columns: 1fr;
  }

  .rd-ki-contact {
    padding-inline: 16px;
  }

  .rd-ki-button--contact {
    justify-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rd-ki-hero *,
  .rd-ki-page * {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .rd-ki-page.is-reveal-ready .rd-ki-reveal {
    opacity: 1;
    transform: none;
  }
}
