/* ==========================================================================
   PUSH IT GmbH — website styles
   ========================================================================== */

/* --- tokens --------------------------------------------------------------- */

:root {
  --accent: #d93025;          /* Flaechen, Rahmen, Grosstext */
  --accent-text: #f2564a;     /* Fliesstext-Rot: >=4,5:1 auf allen dunklen Flaechen */
  --ok: #28c840;
  --warn: #febc2e;
  --stop: #ff5f57;

  --bg: #0d0d0d;
  --bg-band: #090909;
  --bg-ticker: #0a0a0a;
  --deep: #070707;
  --panel: #171717;
  --panel-2: #1c1c1c;
  --panel-3: #222;

  --line: #262626;
  --line-soft: #1e1e1e;
  --line-card: #2a2a2a;
  --line-hover: #464646;

  --head: #f6f6f6;
  --text: #f4f4f4;
  --body: #a5a5a5;
  --muted: #949494;
  --dim: #8a8a8a;
  --dim-2: #8a8a8a;
  --faint: #3a3a3a;

  --sans: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1220px;
  --gutter: 40px;
}

/* --- reset ---------------------------------------------------------------- */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Sticky-Header (67 px) darf Ankerziele und Fokus nicht verdecken */
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

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

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- keyframes ------------------------------------------------------------ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes blink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes radarSpin { to { transform: rotate(360deg); } }
@keyframes blip {
  0%, 8% { opacity: 0; transform: scale(0.4); }
  14%    { opacity: 1; transform: scale(1.5); }
  34%    { opacity: 0.85; transform: scale(1); }
  62%    { opacity: 0; }
  100%   { opacity: 0; }
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(236, 70, 38, 0.5); }
  50%      { opacity: 0.65; box-shadow: 0 0 0 7px rgba(236, 70, 38, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* --- primitives ----------------------------------------------------------- */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

.page { animation: fadeUp 0.45s ease both; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 500;
}

h1, h2, h3 {
  font-family: var(--display);
  color: var(--head);
  font-weight: 600;
}

.h-xl {
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 20px 0 0;
  text-wrap: balance;
}

.h-lg {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 14px 0 0;
}

.h-md {
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 18px;
  line-height: 1.62;
  color: var(--body);
  margin: 24px 0 0;
  max-width: 60ch;
}

.prose {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}

.accent { color: var(--accent-text); }

/* nur für Screenreader */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.notes {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--dim);
}

.notes--stack {
  flex-direction: column;
  gap: 12px;
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { filter: brightness(0.92); }

.btn--ghost {
  background: var(--panel);
  color: var(--text);
  border-color: var(--line-card);
}
.btn--ghost:hover { border-color: var(--line-hover); }

.btn--dark { background: var(--bg); color: #fff; padding: 17px 30px; font-size: 16px; border-radius: 12px; }
.btn--dark:hover { filter: brightness(1.4); }

.btn--sm { padding: 10px 17px; font-size: 14px; border-radius: 10px; }

.btn--link {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent-text);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--link:hover { text-decoration: underline; }

/* chips / tags */

.chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.chip {
  font-family: var(--mono);
  font-size: 11.5px;
  color: #a8a8a8;
  background: var(--panel-2);
  border: 1px solid var(--line-card);
  border-radius: 6px;
  padding: 4px 9px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.chip:hover { border-color: #4a4a4a; color: #d6d6d6; }

.chip--sm { font-size: 11px; padding: 3px 8px; }

.marker {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* --- header --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 14, 19, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 15px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  transition: opacity 0.15s ease;
}
.brand:hover { opacity: 0.82; }
.brand svg { display: block; height: 26px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav__link {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px 6px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease;
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav__cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: var(--panel);
  border: 1px solid var(--line-card);
  border-radius: 10px;
  padding: 9px 11px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.nav-toggle span + span { margin-top: 4px; }

/* --- hero ----------------------------------------------------------------- */

.hero {
  padding: 74px var(--gutter) 50px;
  position: relative;
  overflow: hidden;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#1a1a1a 1px, transparent 1px),
    linear-gradient(90deg, #1a1a1a 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse 70% 95% at 72% 30%, black 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 95% at 72% 30%, black 0%, transparent 72%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero .notes { margin-top: 38px; }

/* --- SOC panel ------------------------------------------------------------ */

.soc {
  background: var(--deep);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.soc__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.soc__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease infinite;
  flex-shrink: 0;
}

.soc__title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9c9c9;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.soc__host {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--dim-2);
  white-space: nowrap;
}

.soc__body { padding: 24px; }

.soc__top {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.radar {
  position: relative;
  width: 185px;
  height: 185px;
  flex-shrink: 0;
  margin: 0 auto;
}
.radar__ring,
.radar__ring--2,
.radar__ring--3 {
  position: absolute;
  border: 1px solid #232323;
  border-radius: 50%;
}
.radar__ring { inset: 0; border-color: var(--line); }
.radar__ring--2 { inset: 15.5%; }
.radar__ring--3 { inset: 31%; }
.radar__cross-h {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--line-soft);
}
.radar__cross-v {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: var(--line-soft);
}
.radar__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 285deg,
    color-mix(in srgb, var(--accent) 45%, transparent) 360deg
  );
  animation: radarSpin 4s linear infinite;
}
.radar__center {
  position: absolute;
  left: 50%; top: 50%;
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--accent);
}
.radar__blip {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blip 4s ease infinite;
}
.radar__blip--1 { left: 64%; top: 26%; }
.radar__blip--2 { left: 30%; top: 60%; animation-delay: 1.4s; }
.radar__blip--3 { left: 72%; top: 68%; width: 5px; height: 5px; background: var(--warn); animation-delay: 2.7s; }

.soc__stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  min-width: 170px;
}

.stat__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim-2);
  white-space: nowrap;
}

.stat__value {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--head);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.meter__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-2);
}
.meter__head b { color: #c9c9c9; font-weight: 400; }

.meter__track {
  margin-top: 7px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  overflow: hidden;
}
.meter__fill {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
}
.meter__fill--ok { background: var(--ok); }

.soc__feed {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  min-width: 0;
}
.feed-row__dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  flex-shrink: 0;
  background: var(--ok);
}
.feed-row__dot--warn { background: var(--warn); }
.feed-row__text {
  color: #8e8e8e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.feed-row--latest .feed-row__text { color: #d6d6d6; }

.soc__note {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--dim);
}

/* --- ticker --------------------------------------------------------------- */

.ticker {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-ticker);
  padding: 13px 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerMove 36s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__set {
  display: flex;
  flex-shrink: 0;
}

.ticker__item {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--dim);
  padding-right: 52px;
  white-space: nowrap;
}
.ticker__item i { color: var(--accent-text); font-style: normal; }

/* --- trust strip ---------------------------------------------------------- */

.trust { padding: 6px var(--gutter) 8px; }

.trust__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  padding: 26px 0 22px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust__label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

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

.pill {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: #c9c9c9;
  padding: 7px 15px;
  border: 1px solid var(--line-card);
  border-radius: 999px;
  background: var(--panel);
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.pill:hover {
  border-color: var(--line-hover);
  color: var(--head);
  transform: translateY(-2px);
}

/* --- KPIs ----------------------------------------------------------------- */

.kpis { padding: 54px var(--gutter) 18px; }

.kpis__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.kpis--bordered .kpis__grid {
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.kpi__value {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 3.6vw, 46px);
  letter-spacing: -0.02em;
  color: var(--head);
  line-height: 1;
  transition: color 0.2s ease;
}
.kpi:hover .kpi__value { color: var(--accent); }

.kpi__label {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 230px;
}

/* --- section head --------------------------------------------------------- */

.section { padding: 64px var(--gutter); }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

/* --- service pillars (home) ----------------------------------------------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar {
  background: var(--panel);
  border: 1px solid var(--line-card);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pillar:hover {
  border-color: var(--line-hover);
  transform: translateY(-3px);
}

.pillar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pillar__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-text);
  font-weight: 500;
}
.pillar__dot {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent);
}
.pillar__tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 22px;
}
.pillar h3 {
  font-size: 23px;
  letter-spacing: -0.015em;
  margin: 8px 0 0;
  line-height: 1.12;
}
.pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 14px 0 22px;
}
.pillar .chips { margin-top: auto; }

/* --- ansilume ------------------------------------------------------------- */

.ansilume { padding: 0 var(--gutter) 72px; }

.ansilume__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--panel) 0%, #121212 100%);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line-card));
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.ansilume__badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--mono);
  font-size: 11px;
  color: #a8a8a8;
  border: 1px solid var(--line-card);
  background: var(--panel-2);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.ansilume h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 16px 0 0;
}

.ansilume p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 480px;
}

.cmd {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--deep);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: #c9c9c9;
  max-width: 100%;
}
.cmd__prompt { color: var(--accent-text); }
.cmd code {
  font: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ext-link {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-text);
  text-decoration: none;
}
.ext-link:hover { text-decoration: underline; }

/* hairline grid of tiles (used by ansilume + values band) */

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.tile {
  background: #121212;
  padding: 26px;
  transition: background 0.15s ease;
}
.tile:hover { background: var(--panel); }
.tile h3 {
  font-size: 17px;
  margin: 0;
  line-height: 1.2;
}
.tile p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 11px 0 0;
  max-width: none;
}

.tile--lg { padding: 28px; }
.tile--lg h3 { font-size: 18px; }
.tile--lg p { font-size: 14.5px; margin-top: 12px; }

/* --- approach band -------------------------------------------------------- */

.band {
  background: var(--bg-band);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 80px var(--gutter);
}

.band__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.band h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 16px 0 0;
}

.band p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 20px 0 0;
  max-width: 340px;
}

/* --- process -------------------------------------------------------------- */

.process { padding: 78px var(--gutter); }
.process h2 { margin: 14px 0 38px; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  padding: 26px 26px 26px 0;
  border-top: 2px solid var(--line-card);
  transition: border-color 0.2s ease;
}
.step:hover { border-top-color: var(--accent); }
.step__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-text);
  font-weight: 500;
}
.step h3 { font-size: 20px; margin: 14px 0 0; }
.step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 12px 0 0;
  padding-right: 14px;
}

/* --- testimonial ---------------------------------------------------------- */

.quote { padding: 10px var(--gutter) 80px; }

.quote__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line-card);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 44px;
  align-items: center;
}

/* blockquote + figcaption liegen flach im figure (figcaption darf nicht
   in einem div stecken) — Spalte 2, das Anführungszeichen überspannt beide */
.quote__mark { grid-row: 1 / -1; }
.quote blockquote,
.quote figcaption { grid-column: 2; }

.quote__mark {
  font-family: var(--display);
  font-size: 90px;
  font-weight: 700;
  color: var(--accent);
  line-height: 0.6;
}

.quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--head);
}

.quote figcaption {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.quote figcaption span { color: #878787; }

/* --- CTA ------------------------------------------------------------------ */

.cta { padding: 0 var(--gutter) 90px; }

.cta__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  background: var(--accent);
  border-radius: 22px;
  padding: 64px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.cta__copy { position: relative; z-index: 1; }
.cta h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  line-height: 1.05;
  max-width: 640px;
}
.cta p {
  font-size: 17px;
  line-height: 1.55;
  color: #fff;
  margin: 16px 0 0;
  max-width: 520px;
}
.cta .btn { position: relative; z-index: 1; }

.cta__watermark {
  position: absolute;
  right: -60px;
  bottom: -90px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 280px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 0.7;
  pointer-events: none;
  user-select: none;
}

/* --- leistungen ----------------------------------------------------------- */

.page-head { padding: 74px var(--gutter) 30px; }
.page-head__inner { max-width: 840px; margin: 0 auto; }
.page-head .lead { max-width: none; }

.services {
  padding: 24px var(--gutter) 40px;
}
.services__list {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service {
  background: var(--panel);
  border: 1px solid var(--line-card);
  border-radius: 20px;
  padding: 44px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  transition: border-color 0.2s ease;
}
.service:hover { border-color: var(--line-hover); }
.service--highlight {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line-card));
}

.service__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.service__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 54px;
  color: var(--line-card);
  letter-spacing: -0.03em;
  line-height: 0.8;
}
.service__tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.service h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
  line-height: 1.12;
}
.service p {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--muted);
  margin: 16px 0 22px;
}

.points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-card);
  border: 1px solid var(--line-card);
  border-radius: 14px;
  overflow: hidden;
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.points li {
  background: var(--panel-2);
  padding: 22px;
  transition: background 0.15s ease;
}
.points li:hover { background: var(--panel-3); }
.points .marker { margin-bottom: 13px; }
.points span {
  font-size: 14.5px;
  line-height: 1.5;
  color: #d6d6d6;
}

.closer { padding: 30px var(--gutter) 90px; }
.closer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line-card);
  border-radius: 20px;
  padding: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.closer h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 560px;
  line-height: 1.1;
}

/* --- über uns ------------------------------------------------------------- */

.about-hero { padding: 74px var(--gutter) 30px; }
.about-hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-hero .prose + .prose { margin-top: 18px; }

.term {
  background: var(--deep);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.term__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}
.term__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--stop);
}
.term__dot--y { background: var(--warn); }
.term__dot--g { background: var(--ok); }
.term__path {
  margin-left: 10px;
  font-family: var(--mono);
  color: var(--dim-2);
  font-size: 12px;
  white-space: nowrap;
}

.term__body {
  padding: 26px 26px 18px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pixel-logo {
  display: grid;
  grid-template-columns: repeat(5, 13px);
  grid-auto-rows: 13px;
  gap: 3px;
  flex-shrink: 0;
  margin-top: 8px;
}
.pixel-logo i.on {
  background: var(--accent);
  border-radius: 2px;
}

.fetch {
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 2.05;
  color: #c9c9c9;
  min-width: 0;
}
.fetch__row {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: fadeUp 0.3s ease both;
}
.fetch__user { color: var(--accent-text); font-weight: 600; }
.fetch__at { color: var(--dim-2); }
.fetch__rule { color: var(--faint); }
.fetch__key {
  display: inline-block;
  width: 88px;
  color: var(--dim-2);
}
.fetch__caret {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #c9c9c9;
  vertical-align: -2px;
  margin-left: 8px;
  animation: blink 1.1s steps(1) infinite;
}

.term__swatches {
  padding: 0 26px 24px;
  display: flex;
  gap: 6px;
}
.term__swatches span {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  transition: transform 0.15s ease;
}
.term__swatches span:hover { transform: scale(1.3); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--panel);
  border: 1px solid var(--line-card);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.value-card__key {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-text);
  font-weight: 500;
  margin-top: 3px;
}
.value-card h3 { font-size: 19px; margin: 0; line-height: 1.2; }
.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 10px 0 0;
}

.domains-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}
.domains-intro p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

.domains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-card);
  border: 1px solid var(--line-card);
  border-radius: 18px;
  overflow: hidden;
}
.domain {
  background: var(--panel);
  padding: 30px;
  transition: background 0.15s ease;
}
.domain:hover { background: var(--panel-2); }
.domain__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.domain__id {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--dim);
}
.domain h3 { font-size: 19px; margin: 18px 0 0; line-height: 1.18; }
.domain .chips { margin-top: 16px; gap: 6px; }

/* --- kontakt -------------------------------------------------------------- */

.contact { padding: 74px var(--gutter) 90px; }
.contact__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact .lead { max-width: 440px; }
.contact .notes { margin-top: 34px; }

.contact__card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-card);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  align-self: start;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 32px;
  text-decoration: none;
  border-bottom: 1px solid var(--line-card);
  transition: background 0.15s ease;
}
.contact-row:last-child { border-bottom: none; }
a.contact-row:hover { background: var(--panel-2); }

.contact-row__kind {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--accent-text);
  width: 60px;
  flex-shrink: 0;
}
.contact-row__body { min-width: 0; }
.contact-row__value {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 23px);
  color: var(--head);
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}
.contact-row__value--mail { font-size: clamp(15px, 1.7vw, 22px); }
.contact-row__hint {
  display: block;
  font-size: 13.5px;
  color: var(--dim);
  margin-top: 5px;
}
.contact-row__arrow {
  margin-left: auto;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}

/* --- footer --------------------------------------------------------------- */

.site-footer {
  background: var(--bg-band);
  color: #a8a8a8;
  padding: 64px var(--gutter) 32px;
  border-top: 1px solid var(--line-soft);
}

.site-footer__cols {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
}

.site-footer__brand svg { display: block; height: 28px; width: auto; }
.site-footer__tagline {
  font-family: var(--display);
  font-size: 16px;
  color: #8b8b8b;
  margin: 20px 0 0;
  max-width: 260px;
  line-height: 1.4;
}
.site-footer__addr {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--dim-2);
  margin-top: 18px;
  line-height: 1.7;
  font-style: normal;
}

.site-footer h2 {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-2);
  margin: 0 0 16px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
}
.site-footer a {
  color: #a8a8a8;
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer a:hover { color: #fff; }
.site-footer__links--stack a { display: block; }
.site-footer__direct a { display: block; margin-bottom: 11px; }
.site-footer__direct a:last-child { margin-bottom: 0; }

.site-footer__bottom {
  max-width: var(--wrap);
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--dim-2);
}
.site-footer__legal {
  display: flex;
  gap: 20px;
}
.site-footer__legal a:hover { color: #a8a8a8; }

/* --- legal pages ---------------------------------------------------------- */

.legal { padding: 64px var(--gutter) 90px; }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal h2 {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 44px 0 0;
}
.legal p, .legal li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body);
}
.legal a { color: var(--accent-text); }

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 1040px) {
  .hero__inner,
  .ansilume__inner,
  .band__inner,
  .about-hero__inner,
  .contact__inner,
  .domains-intro,
  .service {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .band p, .ansilume p { max-width: none; }
  .domains { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .quote__inner { padding: 44px; gap: 28px; }
}

@media (max-width: 860px) {
  /* Ohne JavaScript bleibt die Navigation ausgeklappt und der Toggle verborgen —
     ein totes Bedienelement wäre sonst die einzige Navigation. */
  .site-header__inner { flex-wrap: wrap; }
  .nav {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-bottom: 10px;
  }
  .js .nav-toggle { display: block; }
  .js .nav { display: none; }
  .js .nav.is-open { display: flex; }
  .nav__link {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav__link.is-active { border-bottom-color: var(--accent); }
  .nav__cta { margin: 10px 0 0; }

  .kpis__grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .cta__watermark { font-size: 200px; right: -30px; bottom: -60px; }
}

@media (max-width: 680px) {
  :root { --gutter: 22px; }

  .hero { padding-top: 54px; }
  .section, .process, .band { padding-top: 52px; padding-bottom: 52px; }
  .ansilume__inner, .service, .quote__inner, .closer__inner { padding: 28px; }
  .cta__inner { padding: 40px 28px; }
  .contact-row { padding: 24px; gap: 14px; }
  .contact-row__kind { width: 46px; }

  .soc__host { display: none; }
  .soc__body { padding: 20px; }

  .tiles, .points, .domains { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .kpis__grid { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr; }

  .quote__inner { grid-template-columns: 1fr; }
  .quote__mark { line-height: 1; }
  .step { padding-right: 0; }
  .step p { padding-right: 0; }
}
