:root {
  --bg: #000;
  --panel: #0a0a0a;
  --line: #1e1e1e;
  --text: #fff;
  --muted: #adadad;
  --soft: #888;
  --radius: 20px;
  --hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Inter", sans-serif;
  scroll-behavior: smooth;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-page .legal-main {
  flex: 1;
}

.legal-page .site-footer {
  margin-top: auto;
}

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

.noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.8px, transparent 0.8px);
  background-size: 3px 3px;
  opacity: 0.06;
  pointer-events: none;
  z-index: -2;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: rgba(26, 84, 255, 0.28);
  top: -120px;
  right: -120px;
}

.orb-b {
  width: 340px;
  height: 340px;
  background: rgba(0, 214, 255, 0.22);
  bottom: -140px;
  left: -80px;
}

.site-header {
  position: sticky;
  top: 0;
  height: 72px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand span {
  color: #9a9a9a;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.32s var(--hover-ease), text-shadow 0.32s var(--hover-ease);
}

.main-nav a:hover {
  color: var(--text);
  text-shadow: 0 0 14px rgba(94, 178, 255, 0.45);
}

main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  padding: 110px 0 74px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: #8f8f8f;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 16ch;
  font-size: clamp(44px, 7.4vw, 92px);
  font-weight: 800;
  line-height: 1.1;
}

h1 span {
  display: block;
  padding-bottom: 0.08em;
  background: linear-gradient(90deg, #d52b37 0%, #5940c7 28%, #0f56e8 62%, #35bfff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-gradient-flow 6s ease-in-out infinite;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.btn-rainbow {
  margin-top: 20px;
  position: relative;
  display: inline-block;
  border-radius: 999px;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    #ff004c,
    #ff7a00,
    #ffe600,
    #39ff14,
    #00d5ff,
    #6a00ff,
    #ff00d4,
    #ff004c
  );
  animation: rainbow-spin 3.5s linear infinite;
  box-shadow: 0 0 22px rgba(255, 72, 160, 0.35), 0 0 36px rgba(0, 213, 255, 0.25);
}

.btn-rainbow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.btn-rainbow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 72, 160, 0.42), 0 0 46px rgba(0, 213, 255, 0.34);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.32s var(--hover-ease), border-color 0.32s var(--hover-ease), box-shadow 0.32s var(--hover-ease), background-color 0.32s var(--hover-ease);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-light {
  border-color: #2a2a2a;
  background: #111;
  color: #fff;
}

.btn-ghost {
  border-color: #2e2e2e;
  color: #ddd;
}

.press-btn {
  border-color: #3f3f3f;
}

.hero-facts {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-facts li {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, #0d0d0d, #090909);
  transition: transform 0.36s var(--hover-ease), border-color 0.36s var(--hover-ease), box-shadow 0.36s var(--hover-ease);
}

.hero-facts li:hover {
  transform: translateY(-5px);
  border-color: #3f4f83;
  box-shadow: 0 14px 34px rgba(12, 26, 71, 0.35);
}

.hero-facts strong {
  display: block;
  font-size: 16px;
}

.hero-facts span {
  color: var(--soft);
  font-size: 13px;
}

.services-hero {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.services-hero-head h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4.2vw, 56px);
  max-width: 19ch;
}

.services-hero-head p:last-child {
  margin-top: 14px;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.7;
}

.services-grid {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-pill {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(180deg, #0d0d0d, #090909);
  transition: transform 0.34s var(--hover-ease), border-color 0.34s var(--hover-ease), box-shadow 0.34s var(--hover-ease);
}

.service-pill:hover {
  transform: translateY(-5px);
  border-color: #3f4f83;
  box-shadow: 0 14px 34px rgba(12, 26, 71, 0.35);
}

.service-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(157, 188, 255, 0.42);
  color: #d5e2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service-pill h3 {
  margin-top: 14px;
  font-size: 24px;
}

.service-pill p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.leistungen {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0b0b0b, #070707);
  padding: 26px;
}

.panel-label {
  color: #888;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}

.panel p {
  color: var(--muted);
  line-height: 1.7;
}

.intro-panel h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  margin-bottom: 12px;
}

.methodik-card {
  position: relative;
  display: block;
  width: min(1120px, 100%);
  min-height: 170px;
  margin: 0 auto;
  padding: 18px 280px 20px 24px;
  overflow: hidden;
  border: none;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 24%, rgba(70, 118, 255, 0.28), transparent 26%),
    linear-gradient(135deg, #000f53 0%, #001d88 52%, #02124e 100%);
  box-shadow: inset -24px 0 42px rgba(255, 255, 255, 0.04), 0 18px 60px rgba(0, 0, 0, 0.34);
}

.methodik-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, #8d1018 0%, #3a2b98 35%, #1483ff 72%, #31b8ff 100%);
  background-size: 240% 100%;
  animation: methodik-bar-flow 6s ease-in-out infinite;
  filter: saturate(1.1);
}

.methodik-copy {
  position: relative;
  z-index: 1;
  max-width: none;
  width: min(100%, 980px);
}

.spotlight-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
}

.methodik-card h2 {
  max-width: 24ch;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.methodik-copy > p:last-of-type {
  max-width: 88ch;
  margin: 10px 0 0;
  color: rgba(231, 237, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.methodik-benefits {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.methodik-benefits li {
  max-width: 84ch;
}

.methodik-benefits li {
  color: rgba(241, 245, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
}

.methodik-benefits li::before {
  content: "•";
  color: #39b7ff;
  margin-right: 10px;
}

.methodik-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 310px;
  height: 100%;
  pointer-events: none;
}

.methodik-visual::before {
  content: "";
  position: absolute;
  inset: 12px 6px 0 24px;
  border-radius: 999px 999px 0 0;
  background: radial-gradient(circle at 50% 30%, rgba(116, 164, 255, 0.28), rgba(255, 255, 255, 0.04) 55%, transparent 72%);
  filter: blur(12px);
}

.methodik-portrait-shell {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.methodik-portrait-shell img {
  position: absolute;
  right: 0;
  bottom: -22px;
  width: 304px;
  height: calc(100% + 42px);
  max-height: none;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.36));
  opacity: 0.98;
}

.hover-lift:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: #3c3c3c;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
}

.ai-panel {
  background:
    linear-gradient(180deg, rgba(22, 31, 69, 0.45), rgba(10, 10, 10, 0.9)),
    #0b0b0b;
}

.method {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.method-head h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4.1vw, 56px);
  max-width: 16ch;
}

.method-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #080808;
  padding: 20px;
  transition: transform 0.34s var(--hover-ease), border-color 0.34s var(--hover-ease), box-shadow 0.34s var(--hover-ease);
}

.step:hover {
  transform: translateY(-6px);
  border-color: #3e4f84;
  box-shadow: 0 16px 34px rgba(10, 24, 68, 0.34);
}

.step span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  border: 1px solid #303030;
  color: #b9b9b9;
}

.step h3 {
  margin-top: 14px;
  font-size: 22px;
}

.step p {
  margin-top: 8px;
  color: var(--soft);
}

.media {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.press {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.press-head h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.8vw, 48px);
}

.press-grid {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.press-item {
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, #0f0f0f, #080808);
  transition: border-color 0.34s var(--hover-ease), transform 0.34s var(--hover-ease), box-shadow 0.34s var(--hover-ease);
}

.press-item:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: #4a4a4a;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.press-source {
  margin: 0;
  font-size: 12px;
  color: #8f8f8f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.press-item h3 {
  margin-top: 8px;
  font-size: 22px;
}

.press-item span {
  margin-top: 14px;
  display: inline-block;
  color: #d8d8d8;
  font-size: 14px;
}

.ki-focus {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.ki-head h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 50px);
  max-width: 20ch;
}

.ki-grid {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ki-item {
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(34, 57, 129, 0.32), rgba(8, 8, 8, 0.95)),
    #0a0a0a;
  transition: transform 0.34s var(--hover-ease), border-color 0.34s var(--hover-ease), box-shadow 0.34s var(--hover-ease);
}

.ki-item:hover {
  transform: translateY(-6px);
  border-color: #4962b0;
  box-shadow: 0 18px 36px rgba(11, 24, 67, 0.4);
}

.ki-item h3 {
  font-size: 22px;
}

.ki-item p {
  margin-top: 8px;
  color: #b6b6b6;
  line-height: 1.6;
}

.seo-links {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.seo-links-head h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 50px);
  max-width: 20ch;
}

.seo-links-grid {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-link-card {
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, #0d0d0d, #080808);
  transition: transform 0.34s var(--hover-ease), border-color 0.34s var(--hover-ease), box-shadow 0.34s var(--hover-ease);
}

.seo-link-card:hover {
  transform: translateY(-6px);
  border-color: #3f4f83;
  box-shadow: 0 16px 34px rgba(10, 24, 68, 0.34);
}

.seo-link-card h3 {
  font-size: 24px;
}

.seo-link-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.wiki-hero {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.wiki-hero h2 {
  margin-top: 10px;
  font-size: clamp(32px, 5vw, 62px);
}

.wiki-hero p {
  margin-top: 14px;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.7;
}

.media-head h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.7vw, 48px);
  max-width: 18ch;
}

.media-gallery {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.media-card {
  border: 1px solid #242424;
  border-radius: 16px;
  background: #090909;
  padding: 12px;
  cursor: pointer;
  transition: transform 0.34s var(--hover-ease), border-color 0.34s var(--hover-ease), box-shadow 0.34s var(--hover-ease);
}

.media-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: #4a5b95;
  box-shadow: 0 20px 38px rgba(10, 24, 66, 0.4);
}

.media-card-large {
  grid-column: span 2;
}

.media-card video,
.media-card img {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  object-fit: cover;
}

.media-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 60;
  padding: 24px;
}

.media-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.media-modal-content {
  width: min(980px, 95vw);
}

.media-modal-body {
  border: 1px solid #2c2c2c;
  border-radius: 16px;
  overflow: hidden;
  background: #050505;
}

.media-modal-body img,
.media-modal-body video {
  width: 100%;
  max-height: 76vh;
  display: block;
  object-fit: contain;
  background: #000;
}

.media-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #3a3a3a;
  background: #0f0f0f;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.media-modal-caption {
  margin: 10px 2px 0;
  color: #c2c2c2;
  font-size: 14px;
}

.media-card h3 {
  margin-top: 10px;
  font-size: 20px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 80;
  border: 1px solid #2b3a70;
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 20%, rgba(54, 109, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(2, 16, 78, 0.96) 0%, rgba(5, 36, 126, 0.96) 52%, rgba(3, 22, 90, 0.96) 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.28s var(--hover-ease), transform 0.28s var(--hover-ease);
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
}

.cookie-banner-copy h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.cookie-banner-copy p {
  margin: 0;
  color: #ccd6f5;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-links {
  display: flex;
  gap: 14px;
  margin-top: 10px !important;
}

.cookie-links a {
  color: #eef3ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-panel {
  border-top: 1px solid rgba(145, 170, 255, 0.32);
  padding: 14px 18px 16px;
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #e8eeff;
  font-size: 14px;
}

.cookie-option input {
  accent-color: #35bfff;
}

.cookie-option-disabled {
  color: #a8b6e4;
}

.cookie-save {
  justify-self: start;
  margin-top: 4px;
}

.cookie-manage {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 75;
  border: 1px solid #3a4e8f;
  border-radius: 999px;
  background: linear-gradient(180deg, #0d1f64, #0a1648);
  color: #eaf0ff;
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.28s var(--hover-ease), box-shadow 0.28s var(--hover-ease), border-color 0.28s var(--hover-ease);
}

.cookie-manage img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cookie-manage:hover {
  transform: translateY(-3px);
  border-color: #5a75d0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.contact {
  padding: 86px 0 100px;
  text-align: center;
}

.legal {
  padding: 64px 0 74px;
  border-top: 1px solid var(--line);
}

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

.legal-grid article {
  border: 1px solid #262626;
  border-radius: 14px;
  background: #0a0a0a;
  padding: 18px;
}

.legal-grid h2 {
  font-size: 28px;
}

.legal-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px 26px;
  color: #8f8f8f;
  font-size: 14px;
}

.site-footer div {
  display: flex;
  gap: 14px;
}

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

.partners {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.press-contact {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.press-contact h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.press-contact p {
  color: var(--muted);
  margin: 12px 0 22px;
}

.partners-head h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.8vw, 48px);
}

.partner-grid {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-item {
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7d7d7;
  background: linear-gradient(180deg, #0d0d0d, #080808);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.32s var(--hover-ease), border-color 0.32s var(--hover-ease), box-shadow 0.32s var(--hover-ease);
}

.partner-item:hover {
  transform: translateY(-5px);
  border-color: #3f4e81;
  box-shadow: 0 14px 28px rgba(10, 22, 60, 0.35);
}

.contact h2 {
  font-size: clamp(34px, 4.9vw, 64px);
  max-width: 18ch;
  margin: 0 auto;
}

.contact p {
  margin: 18px auto 28px;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rainbow-spin {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

@keyframes hero-gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes methodik-bar-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 980px) {
  .orb {
    display: none;
  }

  .site-header {
    padding: 0 12px;
    gap: 8px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
    gap: 8px;
    justify-content: flex-end;
  }

  .header-actions .btn {
    height: 40px;
    padding: 0 14px;
    white-space: nowrap;
  }

  main {
    width: min(1180px, calc(100% - 24px));
  }

  h1 {
    max-width: 100%;
  }

  .hero-facts,
  .services-grid,
  .method-grid,
  .partner-grid,
  .ki-grid,
  .seo-links-grid,
  .press-grid,
  .legal-grid,
  .media-gallery {
    grid-template-columns: 1fr;
  }

  .methodik-card {
    min-height: auto;
    padding: 24px 0 0 22px;
    width: 100%;
  }

  .methodik-card h2 {
    max-width: 100%;
    font-size: clamp(30px, 7vw, 48px);
  }

  .methodik-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 268px;
    height: 268px;
    pointer-events: auto;
    overflow: hidden;
    margin-top: 8px;
  }

  .methodik-copy {
    max-width: 100%;
    padding-right: 22px;
  }

  .methodik-portrait-shell {
    right: 0;
    bottom: 0;
  }

  .methodik-portrait-shell img {
    right: 0;
    bottom: 0;
    width: min(74vw, 272px);
    height: auto;
    max-width: none;
    transform: none;
  }

  .media-card-large {
    grid-column: span 1;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}
