
/* =========================
   GRUNDVARIABLEN
========================= */

:root {
--font-ui:
Inter,
ui-sans-serif,
system-ui,
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Arial,
sans-serif;

--font-display:
Georgia,
"Times New Roman",
Times,
serif;
--bg: #070b12;
--bg-soft: #0b0f16;

  --surface: rgba(17, 24, 39, 0.72);
  --surface-strong: rgba(15, 23, 42, 0.92);

  --border: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(148, 163, 184, 0.28);

  --text: #f8fafc;
  --text-soft: #cbd5e1;
  --muted: #8b9bb0;

  --blue: #1565ff;
  --cyan: #00d4ff;
  --green: #22c55e;
  --gold: #fb8c00;
  --purple: #8b5cf6;

  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);

  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;

  --max-width: 1320px;
}

/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 5%, rgba(21, 101, 255, 0.16), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(0, 212, 255, 0.11), transparent 25%),
    radial-gradient(circle at 72% 72%, rgba(139, 92, 246, 0.10), transparent 30%),
    linear-gradient(180deg, #070b12 0%, #08111d 50%, #060a11 100%);
  font-family: var(--font-ui);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 50% 32%, black, transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(21, 101, 255, 0.055), transparent),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.28) 100%);
}

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

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

button,
select {
  cursor: pointer;
}

/* =========================
   GLOBALE EFFEKTE
========================= */

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--purple));
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.55);
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.45;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(21, 101, 255, 0.18), transparent 62%);
  mix-blend-mode: screen;
}

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

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

.tilt-card {
  transform-style: preserve-3d;
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.22s ease;
}

.tilt-card:hover {
  border-color: rgba(0, 212, 255, 0.36);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 18px;
  z-index: 100;
  max-width: calc(var(--max-width) + 48px);
  margin: 18px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 24px;
  z-index: -1;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    rgba(7, 11, 18, 0.82);
  backdrop-filter: blur(22px);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand,
.footer-brand {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(248, 250, 252, 0.42);
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 24px rgba(21, 101, 255, 0.18);
}

.brand-symbol.small {
  width: 38px;
  height: 38px;
  font-size: 18px;
  border-radius: 13px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.04em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 70px;
  max-width: 190px;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: auto;
  height: 230px;
  max-width: 310px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 25px 15px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(-50%) scale(0);
  box-shadow: 0 0 16px rgba(21, 101, 255, 0.9);
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

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

.icon-button,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition: 0.2s ease;
}

.icon-button:hover,
.menu-toggle:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.header-cta {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 13px;
  background: linear-gradient(135deg, #1565ff, #0f7cff);
  box-shadow: 0 12px 34px rgba(21, 101, 255, 0.28);
  font-weight: 700;
  transition: 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(21, 101, 255, 0.34);
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: var(--text);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  top: 96px;
  right: 24px;
  z-index: 99;
  width: min(280px, calc(100vw - 48px));
  padding: 14px;
  display: none;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--text-soft);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* =========================
   SUCH-OVERLAY
========================= */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 110px 22px 40px;
  background: rgba(1, 5, 12, 0.72);
  backdrop-filter: blur(18px);
}

.search-overlay.open {
  display: flex;
}

.search-box {
  position: relative;
  width: min(760px, 100%);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(7, 11, 18, 0.94);
  box-shadow: var(--shadow);
}

.search-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 24px;
}

.search-box h2 {
  margin-bottom: 18px;
}

.search-box input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  outline: none;
}

.search-results {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.search-result {
  padding: 15px;
  display: block;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.search-result span {
  color: var(--text-soft);
  font-size: 13px;
}

/* =========================
   ALLGEMEINE SEKTIONEN
========================= */

.section {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 32px;
}

.section.compact {
  padding-top: 32px;
  padding-bottom: 32px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.4vw, 104px);
  font-weight: 600;
  letter-spacing: -0.065em;
}

h1 span {
  color: var(--blue);
  text-shadow: 0 0 22px rgba(21, 101, 255, 0.7);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
}

.text-link {
  color: var(--cyan);
  font-weight: 800;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 840px;
  padding-top: 94px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-trust-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-trust-row i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.75);
}

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 15px;
  font-weight: 750;
  transition: 0.22s ease;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #0ea5ff);
  box-shadow: 0 20px 55px rgba(21, 101, 255, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.035);
}

.button:hover {
  transform: translateY(-2px);
}

/* =========================
   HERO DASHBOARD
========================= */

.hero-dashboard {
  position: relative;
  min-height: 540px;
}

.dashboard-card,
.side-card,
.notification-card,
.category-card,
.project-card,
.brand-panel,
.activity-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.main-card {
  width: min(700px, 100%);
  min-height: 430px;
  padding: 28px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.main-card::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.card-top,
.chart-header,
.section-heading,
.project-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.card-top h2 {
  font-size: 30px;
}

.mini-label {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

select {
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  outline: none;
}

.stat-grid {
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-box {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.stat-box span,
.stat-box small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.stat-box strong {
  margin: 8px 0 4px;
  display: block;
  font-size: 30px;
}

.stat-box small {
  color: var(--green);
}

.chart-card {
  height: 205px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(21, 101, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.chart-header {
  margin-bottom: 22px;
  color: var(--text-soft);
  font-size: 13px;
}

.chart-line {
  height: 120px;
  padding: 0 8px;
  display: flex;
  align-items: end;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(
      180deg,
      transparent 24%,
      rgba(255, 255, 255, 0.04) 25%,
      transparent 26%,
      transparent 49%,
      rgba(255, 255, 255, 0.04) 50%,
      transparent 51%,
      transparent 74%,
      rgba(255, 255, 255, 0.04) 75%,
      transparent 76%
    );
}

.chart-line span {
  flex: 1;
  min-width: 16px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 24px rgba(21, 101, 255, 0.35);
}

.progress-card {
  position: absolute;
  top: 36px;
  right: 4px;
  width: 250px;
  padding: 22px;
  border-radius: 24px;
}

.progress-ring {
  width: 132px;
  height: 132px;
  margin: 20px auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--bg-soft) 56%, transparent 57%),
    conic-gradient(var(--blue) 72%, rgba(255, 255, 255, 0.08) 0);
  box-shadow: 0 0 40px rgba(21, 101, 255, 0.23);
}

.progress-ring span {
  font-size: 28px;
  font-weight: 800;
}

.progress-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
  font-size: 13px;
}

.progress-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
  border-radius: 999px;
}

.dot.blue {
  background: var(--blue);
}

.dot.green {
  background: var(--green);
}

.dot.gold {
  background: var(--gold);
}

.notification-card {
  position: absolute;
  right: 46px;
  bottom: 42px;
  width: 300px;
  padding: 20px;
  border-radius: 22px;
  animation: floatCard 5s ease-in-out infinite;
}

.notification-card h3 {
  margin: 8px 0;
}

.notification-card p {
  margin-bottom: 12px;
  color: var(--text-soft);
  line-height: 1.55;
}

.notification-card a {
  color: var(--cyan);
  font-weight: 700;
}

.floating-node {
  position: absolute;
  z-index: 4;
  height: 34px;
  padding: 0 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.09);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.node-one {
  top: 18px;
  right: 270px;
}

.node-two {
  bottom: 18px;
  left: 18px;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* =========================
   KATEGORIEN
========================= */

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 255, 0.22), transparent 70%);
}

.category-card h2 {
  margin: 20px 0 12px;
  font-size: 31px;
}

.category-card p {
  margin-bottom: 22px;
  color: var(--text-soft);
  line-height: 1.58;
}

.category-card a {
  color: var(--cyan);
  font-weight: 750;
}

.category-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.category-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--cyan);
  border-radius: 5px;
}

.book-icon::before {
  border-radius: 1px 5px 5px 1px;
}

.bot-icon::before {
  border-radius: 9px;
}

.system-icon::before {
  transform: rotate(45deg);
}

/* =========================
   PROJEKTE
========================= */

.section-heading {
  margin-bottom: 28px;
}

.filter-row {
  margin-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-button {
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
  transition: 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: rgba(21, 101, 255, 0.45);
  background: rgba(21, 101, 255, 0.22);
  color: var(--text);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-card.hidden {
  opacity: 0.18;
  transform: scale(0.97);
  pointer-events: none;
}

.project-visual {
  position: relative;
  height: 170px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #111827, #020617);
}

.project-visual-content {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.project-type {
  min-height: 32px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.7);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}

.project-visual-content strong {
  font-family: var(--font-display);
  color: rgba(248, 250, 252, 0.82);
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-shadow: 0 0 34px rgba(0, 212, 255, 0.18);
}

.e36-visual {
  background:
    linear-gradient(0deg, rgba(7, 11, 18, 0.25), rgba(7, 11, 18, 0.25)),
    radial-gradient(circle at 70% 55%, rgba(251, 140, 0, 0.35), transparent 26%),
    linear-gradient(135deg, #1f2937, #020617);
}

.vault-visual {
  background:
    radial-gradient(circle at 62% 44%, rgba(251, 140, 0, 0.35), transparent 24%),
    linear-gradient(135deg, #172554, #020617);
}

.leitstelle-visual {
  background:
    radial-gradient(circle at 78% 42%, rgba(239, 68, 68, 0.35), transparent 24%),
    linear-gradient(135deg, #111827, #020617);
}

.assistant-visual {
  background:
    radial-gradient(circle at 62% 43%, rgba(0, 212, 255, 0.36), transparent 24%),
    linear-gradient(135deg, #0f172a, #020617);
}

.project-body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.project-title-row {
  align-items: flex-start;
  margin-bottom: 10px;
}

.project-title-row span {
  white-space: nowrap;
}

.status-badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.status-badge.active {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.status-badge.planned {
  background: rgba(251, 140, 0, 0.12);
  color: #fdba74;
  border: 1px solid rgba(251, 140, 0, 0.28);
}

.project-body p {
  min-height: 96px;
  margin: 14px 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.project-meta {
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-meta span {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.progress-line {
  margin-top: auto;
}

.progress-line > div:first-child {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.progress-line strong {
  color: var(--text);
}

.progress-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.project-link {
  margin-top: 18px;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  transition: 0.2s ease;
}

.project-link:hover {
  border-color: rgba(0, 212, 255, 0.38);
  background: rgba(21, 101, 255, 0.16);
  transform: translateY(-1px);
}

/* =========================
   ALTER MARKENBEREICH
   Wird noch von Unterseiten / älteren Bereichen unterstützt
========================= */

.brand-system {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  align-items: stretch;
}

.brand-left {
  padding: 28px 0;
}

.brand-left p:not(.eyebrow),
.activity-card p {
  margin: 20px 0 24px;
  color: var(--text-soft);
  line-height: 1.75;
}

.brand-panel {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-radius: var(--radius-lg);
}

.system-block {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.system-block h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

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

.swatches span {
  min-height: 76px;
  padding: 10px;
  display: flex;
  align-items: end;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--swatch);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
}

.typography-block {
  display: grid;
  gap: 12px;
}

.typography-block div {
  display: flex;
  align-items: end;
  gap: 14px;
}

.typography-block strong {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.8;
}

.typography-block span {
  color: var(--text-soft);
}

.ui-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ui-preview button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(21, 101, 255, 0.24);
  color: var(--text);
}

.ui-preview label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
}

.ui-preview input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

/* =========================
   BRAND STORY
========================= */

.brand-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.brand-story-left {
  max-width: 620px;
}

.brand-story-left h2 {
  margin-bottom: 24px;
}

.brand-story-left p {
  color: var(--text-soft);
  line-height: 1.78;
  margin-bottom: 18px;
}

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

.brand-story-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brand-principle-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 212, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand-principle-card.large {
  grid-row: span 2;
  min-height: 516px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 140, 0, 0.18), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(0, 212, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.72);
}

.brand-principle-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21, 101, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.principle-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(248, 250, 252, 0.12);
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
}

.brand-principle-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.brand-principle-card p {
  position: relative;
  z-index: 2;
  color: var(--text-soft);
  line-height: 1.72;
}

/* =========================
   ROADMAP
========================= */

.roadmap-section {
  padding-top: 70px;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
}

.roadmap-feature,
.roadmap-item {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.roadmap-feature {
  min-height: 430px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.roadmap-feature::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 68%);
}

.roadmap-feature::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251, 140, 0, 0.14), transparent 70%);
}

.roadmap-label {
  position: absolute;
  top: 24px;
  left: 24px;
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.64);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-feature h3 {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.roadmap-feature p {
  position: relative;
  z-index: 2;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 26px;
}

.roadmap-progress {
  position: relative;
  z-index: 2;
}

.roadmap-progress > div:first-child {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.roadmap-progress strong {
  color: var(--text);
}

.roadmap-list {
  display: grid;
  gap: 16px;
}

.roadmap-item {
  min-height: 132px;
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  border-radius: 24px;
}

.roadmap-item-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
}

.roadmap-item h3 {
  margin-bottom: 8px;
}

.roadmap-item p {
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}

.roadmap-status {
  min-height: 28px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.roadmap-status.active {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.roadmap-status.planned {
  background: rgba(251, 140, 0, 0.12);
  color: #fdba74;
  border: 1px solid rgba(251, 140, 0, 0.28);
}

/* =========================
   AKTIVITÄT
========================= */

.activity-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-xl);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 15px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.timeline-item i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.75);
}

.timeline-item div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-soft);
}

.timeline-item strong {
  color: var(--text);
}

/* =========================
   BOTTOM DOCK
========================= */

.bottom-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  padding: 8px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.dock-item {
  padding: 12px 16px;
  border-radius: 15px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 750;
}

.dock-item:hover,
.dock-item.active {
  background: rgba(21, 101, 255, 0.2);
  color: var(--text);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 50px 32px 110px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 44px;
  align-items: start;
}

.footer-brand-block p {
  max-width: 460px;
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.72;
}

.footer-status {
  width: fit-content;
  margin-top: 22px;
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.footer-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.7);
}

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

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-ui);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: var(--cyan);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   UNTERSEITEN
========================= */

.subpage-hero {
  min-height: 620px;
  padding-top: 120px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 48px;
  align-items: center;
}

.subpage-hero-content h1 {
  max-width: 820px;
}

.subpage-hero-content h1 span {
  color: var(--blue);
  text-shadow: 0 0 22px rgba(21, 101, 255, 0.7);
}

.subpage-info-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.subpage-info-card h2 {
  margin: 10px 0 16px;
  font-size: clamp(30px, 3vw, 44px);
}

.subpage-info-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.contact-meta {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.contact-meta div {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-meta span {
  color: var(--muted);
  font-size: 13px;
}

.contact-meta strong {
  color: var(--text);
  font-size: 13px;
  text-align: right;
}

/* =========================
   KONTAKTSEITE
========================= */

.contact-page {
  padding-top: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.contact-form-card,
.sidebar-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.contact-form-card {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.form-header {
  margin-bottom: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-card label {
  margin-bottom: 16px;
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  outline: none;
  transition: 0.2s ease;
}

.contact-form-card textarea {
  min-height: 160px;
  padding-top: 14px;
  resize: vertical;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  min-height: 0;
  margin: 0 0 16px;
  padding: 0;
  border-radius: 16px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
  transition: 0.2s ease;
}

.form-message.success,
.form-message.error {
  padding: 14px 16px;
  border: 1px solid var(--border);
}

.form-message.success {
  border-color: rgba(34, 197, 94, 0.32);
  background: rgba(34, 197, 94, 0.1);
  color: #bbf7d0;
}

.form-message.error {
  border-color: rgba(239, 68, 68, 0.34);
  background: rgba(239, 68, 68, 0.1);
  color: #fecaca;
}

.contact-form-card button[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.08);
}

.form-footer {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-footer p {
  max-width: 420px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.sidebar-card h3 {
  margin: 8px 0 18px;
}

.clean-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.clean-list li {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
}

.clean-list li::before {
  content: "→";
  margin-right: 8px;
  color: var(--cyan);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(21, 101, 255, 0.12);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

/* =========================
   RECHTLICHE UNTERSEITEN
========================= */

.legal-hero {
  min-height: 420px;
  padding-top: 130px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}

.legal-hero-content h1 {
  max-width: 820px;
}

.legal-hero-content h1 span {
  color: var(--blue);
  text-shadow: 0 0 22px rgba(21, 101, 255, 0.7);
}

.legal-section {
  padding-top: 20px;
}

.legal-card {
  max-width: 980px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.legal-block {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.legal-block:last-of-type {
  margin-bottom: 0;
}

.legal-block h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 38px);
}

.legal-block p {
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-block a {
  color: var(--cyan);
  font-weight: 700;
}

.legal-note {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(251, 140, 0, 0.35);
  border-radius: 18px;
  background: rgba(251, 140, 0, 0.09);
  color: var(--text-soft);
  line-height: 1.7;
}

.legal-note strong {
  color: var(--gold);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero,
  .brand-system,
  .brand-story,
  .roadmap-layout,
  .activity-card,
  .subpage-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: auto;
  }

  .hero-dashboard {
    min-height: auto;
  }

  .progress-card,
  .notification-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 16px;
  }

  .category-strip,
  .project-grid,
  .brand-story-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-story-left {
    max-width: 780px;
  }
  .footer-main {
  grid-template-columns: 1fr;
}

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

@media (max-width: 740px) {
  .site-header {
    top: 10px;
    margin-top: 10px;
    padding: 0 12px;
  }
.site-footer {
  padding-left: 18px;
  padding-right: 18px;
}

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

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

.footer-bottom {
  flex-direction: column;
}
  .site-header::before {
    inset: 0 12px;
  }

  .brand-name {
    font-size: 26px;
  }

  .header-cta,
  .icon-button {
    display: none;
  }

  .section {
    padding: 70px 18px;
  }

  .section.compact {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .subpage-hero {
    padding-top: 90px;
  }

  .legal-hero {
    min-height: auto;
    padding-top: 100px;
  }

  h1 {
    font-size: clamp(52px, 14vw, 72px);
  }

  .hero-text {
    font-size: 16px;
  }

  .main-card {
    padding: 20px;
  }

  .stat-grid,
  .category-strip,
  .project-grid,
  .brand-panel,
  .brand-story-right,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand-principle-card.large {
    min-height: 320px;
  }

  .brand-principle-card {
    min-height: 230px;
  }

.roadmap-item {
grid-template-columns: 1fr;
}

.roadmap-feature {
min-height: 360px;
padding: 24px;
}

.brand-logo {
height: 40px;
max-width: 160px;
}

.footer-logo {
height: 38px;
max-width: 160px;
}

  .card-top,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-item div {
    flex-direction: column;
    gap: 4px;
  }

  .bottom-dock {
    width: calc(100% - 22px);
    justify-content: flex-start;
    overflow-x: auto;
  }

  .site-footer {
  padding-left: 18px;
  padding-right: 18px;
}

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

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

.footer-bottom {
  flex-direction: column;
}

  .contact-form-card,
  .subpage-info-card,
  .sidebar-card,
  .legal-card {
    padding: 22px;
  }
}