:root {
  --bg: #100907;
  --bg2: #1a0f0a;
  --card: rgba(255,255,255,.055);
  --card2: rgba(0,0,0,.28);
  --line: rgba(255,255,255,.12);
  --text: #fff7ed;
  --muted: #c9b8a6;
  --muted2: #8f7f70;
  --amber: #fbbf24;
  --amber2: #fde68a;
  --teal: #5eead4;
  --rose: #fb7185;
  --shadow: 0 30px 90px rgba(0,0,0,.55);
  --radius: 30px;
}

* { box-sizing: border-box; }

/* Verhindert horizontales Mitwischen / Überbreite auf dem Handy */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  /* Nur vertikal wischen – kein seitliches „Rutschen“ der ganzen Seite */
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-x: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 8%, rgba(245,158,11,.24), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(251,113,133,.13), transparent 28%),
    radial-gradient(circle at 50% 92%, rgba(20,184,166,.15), transparent 34%),
    linear-gradient(180deg, #100907 0%, #160b08 52%, #070403 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.75) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.75) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: .55;
}

/* Negative Außenpositionen können sonst die Dokumentbreite sprengen */
.glow.one {
  width: min(360px, 90vw);
  height: min(360px, 90vw);
  background: rgba(245,158,11,.22);
  left: clamp(-80px, -15vw, -140px);
  top: 230px;
}

.glow.two {
  width: min(450px, 95vw);
  height: min(450px, 95vw);
  background: rgba(194,65,12,.20);
  right: clamp(-100px, -18vw, -180px);
  top: 120px;
}

.glow.three {
  width: min(380px, 90vw);
  height: min(380px, 90vw);
  background: rgba(45,212,191,.13);
  right: 10%;
  bottom: clamp(-120px, -20vw, -180px);
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(16,9,7,.78);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(251,191,36,.45) 35%, rgba(45,212,191,.28) 65%, transparent 96%);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }

.brand-text,
.mark-link {
  color: inherit;
  text-decoration: none;
}

.mark {
  width: 46px; height: 46px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(251,191,36,.35);
  background: rgba(251,191,36,.10);
  box-shadow: 0 0 45px rgba(251,191,36,.18);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mark-link:hover .mark {
  transform: translateY(-1px);
  border-color: rgba(251,191,36,.55);
  box-shadow: 0 0 52px rgba(251,191,36,.28);
}

.mark img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* Hamburger: nur mobil sichtbar */
.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: rgba(251,191,36,.14);
  border-color: rgba(251,191,36,.4);
}

.nav-toggle-bar {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .18s ease, top .22s ease;
}

.nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle-bar:nth-child(2) { top: 20px; }
.nav-toggle-bar:nth-child(3) { top: 26px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.brand-text strong { display: block; font-size: 18px; letter-spacing: -.02em; }
.brand-text span { display: block; margin-top: 2px; font-size: 11px; color: rgba(253,230,138,.62); letter-spacing: .32em; text-transform: uppercase; }

/* Desktop-Nav: Glas-Pille mit Chip-Links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 28px rgba(0,0,0,.16);
  color: #d8c9bb;
  font-size: 13.5px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  color: #d8c9bb;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.site-nav a:hover {
  color: var(--amber2);
  background: rgba(251,191,36,.1);
}

.site-nav a[aria-current="page"] {
  color: #1b1007;
  background: linear-gradient(180deg, #fcd34d, var(--amber));
  box-shadow: 0 8px 22px rgba(251,191,36,.28);
}

.site-nav a[aria-current="page"]:hover {
  color: #1b1007;
  background: linear-gradient(180deg, #fde68a, var(--amber2));
}

/* Buttons innerhalb der Nav (Portal: Anmelden) behalten Button-Look */
.site-nav a.btn {
  min-height: 36px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  margin-left: 4px;
}

.site-nav a.btn.primary {
  color: #1b1007;
  background: var(--amber);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(251,191,36,.2);
}

.site-nav a.btn.primary:hover {
  background: var(--amber2);
  color: #1b1007;
}

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

.header-btn-secondary { min-height: 42px; padding: 0 16px; font-size: 13px; }
.header-btn-primary { min-height: 42px; padding: 0 18px; font-size: 13px; white-space: nowrap; }
.header-btn-label-short { display: none; }

@media (max-width: 1180px) and (min-width: 901px) {
  .site-nav {
    gap: 1px;
    padding: 3px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12.5px;
  }

  .site-nav a.btn {
    padding: 0 12px;
    font-size: 12px;
  }

  .header-btn-secondary,
  .header-btn-primary {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .brand-text span { letter-spacing: .2em; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border .2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.btn.primary { background: var(--amber); color: #1b1007; border-color: transparent; box-shadow: 0 18px 55px rgba(251,191,36,.18); }
.btn.primary:hover { background: var(--amber2); }

.hero { position: relative; padding: 86px 0 96px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 64px;
  align-items: center;
  min-width: 0;
}

.hero-grid > * { min-width: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(251,191,36,.1);
  border: 1px solid rgba(251,191,36,.28);
  color: #fff1c2;
  font-size: 14px;
  font-weight: 700;
}

h1 {
  margin: 26px 0 22px;
  max-width: 850px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .93;
  letter-spacing: -.075em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 680px;
  color: #d6c7b8;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 660px; margin-top: 38px; }

.stat {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  border-radius: 24px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.stat b { display: block; color: var(--amber2); font-size: 28px; letter-spacing: -.04em; }
.stat span { display: block; margin-top: 5px; color: var(--muted2); font-size: 13px; }

a.stat-link {
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s, transform .2s;
}
a.stat-link:hover {
  border-color: rgba(251,191,36,.35);
  background: rgba(251,191,36,.08);
  transform: translateY(-2px);
}

.terminal-card {
  position: relative;
  border-radius: 42px;
  padding: 18px;
  background: rgba(26,15,10,.84);
  border: 1px solid rgba(253,230,138,.20);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.terminal-card::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 56px;
  background: linear-gradient(145deg, rgba(251,191,36,.20), rgba(20,184,166,.09), rgba(251,113,133,.08));
  filter: blur(32px);
}

.terminal-inner {
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  padding: 22px;
}

.card-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 18px; margin-bottom: 18px; }

.card-title { display: flex; align-items: center; gap: 12px; }
.card-title .icon { display: grid; place-items: center; }
.card-title .icon .lucide { width: 24px; height: 24px; color: var(--amber2); }
.card-title b { display: block; }
.card-title span { display: block; color: var(--muted2); font-size: 12px; margin-top: 3px; }

.dots { display: flex; gap: 7px; }
.dots i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.dots i:nth-child(1) { background: #fb7185; }
.dots i:nth-child(2) { background: #fbbf24; }
.dots i:nth-child(3) { background: #34d399; }

.codebox {
  border-radius: 24px;
  background: rgba(0,0,0,.32);
  box-shadow: inset 0 0 20px rgba(0,0,0,.25);
  padding: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  line-height: 1.7;
  color: #d8c9bb;
  overflow-x: auto;
  max-width: 100%;
}

.green { color: #86efac; }
.gold { color: #fde68a; }
.teal { color: #5eead4; }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 15px; }

.menu-grid div {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  padding: 13px;
  color: #e8ddd3;
  font-size: 14px;
}

section { position: relative; }

.section { padding: 88px 0; }

.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 46px;
  align-items: start;
  min-width: 0;
}

.split > * { min-width: 0; }

.kicker {
  display: inline-flex; gap: 9px; align-items: center;
  color: #bffdf4;
  border: 1px solid rgba(94,234,212,.22);
  background: rgba(94,234,212,.09);
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.kicker .lucide, .eyebrow .lucide, .topic-hero-eyebrow .lucide { width: 1em; height: 1em; flex-shrink: 0; }
.sidebar-card h3 .lucide { width: 1em; height: 1em; vertical-align: -0.15em; margin-right: 2px; }
.sidebar-nav a > span:first-child { display: inline-flex; align-items: center; justify-content: center; width: 1.25rem; flex-shrink: 0; }
.sidebar-nav a .lucide { width: 16px; height: 16px; }
.faq-icon { display: inline-flex; align-items: center; justify-content: center; }
.faq-icon .lucide { width: 18px; height: 18px; }

.lucide {
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
  stroke: currentColor;
}

h2 { margin: 18px 0 16px; font-size: clamp(36px, 5vw, 64px); line-height: .98; letter-spacing: -.055em; overflow-wrap: anywhere; }

.copy { color: var(--muted); font-size: 18px; line-height: 1.75; }

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

.card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  transition: transform .25s ease, border .25s ease, background .25s ease;
}

.card:hover { transform: translateY(-5px); border-color: rgba(251,191,36,.32); background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)); }

.card .emoji { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 18px; background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.18); }
.card .emoji .lucide { width: 22px; height: 22px; color: var(--amber2); }

.card h3 { margin: 20px 0 10px; font-size: 24px; letter-spacing: -.03em; }

.card p { margin: 0; color: #cbbcac; line-height: 1.65; }

.tag { display: inline-flex; margin-top: 18px; color: #ffd983; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.card-foot .tag { margin-top: 0; }

.band {
  border-block: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.22);
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 100%;
}

.ticker {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  padding: 18px 0;
  animation: ticker 48s linear infinite;
  color: #f9deb0;
  font-weight: 850;
  letter-spacing: -.015em;
  width: max-content;
}

.ticker span { display: inline-flex; gap: 18px; align-items: center; }

.ticker em { color: rgba(255,255,255,.22); font-style: normal; }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.showcase {
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(251,191,36,.13), rgba(255,255,255,.035) 35%, rgba(20,184,166,.10)),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 0;
  max-width: 100%;
}

.showcase-main {
  border-radius: 30px;
  min-height: 360px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 15%, rgba(251,191,36,.28), transparent 35%),
    linear-gradient(160deg, rgba(0,0,0,.28), rgba(0,0,0,.55)),
    url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='2'%3E%3Cpath d='M60 420 C160 300 230 500 330 350 S520 270 560 120'/%3E%3Cpath d='M40 170 C150 80 260 220 350 150 S500 40 570 90'/%3E%3Ccircle cx='150' cy='145' r='54'/%3E%3Ccircle cx='432' cy='315' r='86'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  border: 1px solid rgba(255,255,255,.13);
  min-width: 0;
}

.showcase-main b { display: block; font-size: 40px; line-height: 1; letter-spacing: -.05em; }

.showcase-main p { color: #e7d4bd; max-width: 350px; line-height: 1.65; }

.recipe-list { display: grid; gap: 14px; min-width: 0; }

.recipe {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.22);
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

a.recipe:hover {
  border-color: rgba(251,191,36,.35);
  background: rgba(0,0,0,.32);
  transform: translateY(-1px);
}

.showcase-title-link {
  color: inherit;
  text-decoration: none;
}

.showcase-title-link:hover {
  color: var(--amber2);
}

.recipe b { display: block; font-size: 18px; }

.recipe span { display: block; color: var(--muted2); margin-top: 7px; line-height: 1.5; }

.cta { padding: 96px 0 110px; }

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 46px;
  border: 1px solid rgba(251,191,36,.23);
  background: linear-gradient(135deg, rgba(251,191,36,.18), rgba(255,255,255,.04) 45%, rgba(20,184,166,.12));
  padding: clamp(30px, 6vw, 70px);
  box-shadow: var(--shadow);
  max-width: 100%;
}

.cta-box::after {
  content: "MO";
  position: absolute;
  right: -20px;
  bottom: -50px;
  font-size: 210px;
  font-weight: 1000;
  letter-spacing: -.12em;
  color: rgba(255,255,255,.045);
  line-height: 1;
  pointer-events: none;
}

.cta-box h2 { max-width: 820px; }
.cta-box p { max-width: 720px; }

footer {
  border-top: 1px solid rgba(255,255,255,.09);
  color: #9f9182;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.footer-inner--with-gsc {
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
}

.footer-gsc {
  width: 100%;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-gsc-label {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a7c6e;
}

.footer-gsc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.footer-gsc-list a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: #c9b8a6;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.footer-gsc-list a:hover {
  color: var(--amber2);
  border-color: rgba(232, 185, 92, .35);
  background: rgba(232, 185, 92, .08);
}

.gsc-related-note {
  margin: -6px 0 18px !important;
  font-size: 15px !important;
  color: var(--muted);
}

.gsc-query-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gsc-query-list li {
  margin: 0 !important;
}

.gsc-query-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--teal) !important;
  text-decoration: none !important;
  font-size: 15px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.gsc-query-list a:hover {
  color: var(--amber2) !important;
  border-color: rgba(232, 185, 92, .4);
  background: rgba(232, 185, 92, .1);
}

.footer-brand { display: grid; gap: 8px; }

.footer-nap {
  margin: 0;
  font-size: 14px;
  color: #9f9182;
  line-height: 1.5;
}

.footer-nap a {
  color: #c9b8a6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nap a:hover { color: var(--amber2); }

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

.footer-links a {
  color: #c9b8a6;
  transition: color .2s ease;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--amber2);
}

/* Impressum / rechtliche Unterseiten */
.legal-page .legal-main {
  padding: clamp(48px, 8vw, 88px) 0 clamp(72px, 10vw, 110px);
}

.legal-content.legal-content--wide {
  max-width: 920px;
}

.legal-content {
  max-width: 820px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin: 18px 0 12px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--amber2);
}

.legal-block h3 {
  margin: 22px 0 10px;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text);
}

.legal-block h3:first-child {
  margin-top: 0;
}

.legal-intro {
  margin-bottom: 36px;
}

.legal-block {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.09);
}

.legal-block:first-of-type {
  border-top: none;
  padding-top: 8px;
}

.legal-block p,
.legal-block li {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-block p + p {
  margin-top: 16px;
}

.legal-block a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  color: var(--amber2);
}

.legal-list {
  margin: 12px 0 16px;
  padding-left: 1.35em;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-list li {
  margin-bottom: 6px;
}

.legal-list li::marker {
  color: var(--amber);
}

.legal-provider-card {
  margin-top: 4px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.22);
}

.legal-address {
  font-style: normal;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
  font-size: 17px;
}

.legal-contact {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.legal-contact-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.legal-contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-contact-row:first-child {
  padding-top: 0;
}

.legal-contact dt {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted2);
}

.legal-contact dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
}

.legal-contact a {
  color: var(--teal);
  text-decoration: none;
  transition: color .2s ease;
}

.legal-contact a:hover {
  color: var(--amber2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-meta {
  color: var(--muted2) !important;
  font-size: 15px !important;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.09);
}

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

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

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(14,8,6,.97);
    box-shadow: 0 24px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 15px;
  }

  .site-nav a:hover {
    background: rgba(255,255,255,.06);
  }

  .site-nav a[aria-current="page"] {
    color: #1b1007;
    background: linear-gradient(180deg, #fcd34d, var(--amber));
  }

  .site-nav a.btn {
    margin-left: 0;
    margin-top: 6px;
    min-height: 46px;
    justify-content: center;
  }

  .nav { position: relative; flex-wrap: nowrap; gap: 12px; }
  .header-actions { margin-left: auto; }
  .header-btn-secondary { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid, .split, .showcase { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .terminal-card { margin-top: 20px; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .legal-content { border-radius: 30px; padding: 22px; }
  .legal-provider-card { padding: 18px; border-radius: 18px; }
  .legal-contact-row { grid-template-columns: 1fr; gap: 4px; }
  .legal-actions .btn { width: 100%; }
  .wrap { width: min(100% - 26px, 1180px); }
  .stats { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .brand-text span { letter-spacing: .18em; display: none; }
  .btn { width: 100%; }
  header .btn { width: auto; padding: 0 12px; font-size: 12px; }
  .header-btn-label-full { display: none; }
  .header-btn-label-short { display: inline; }
  .actions { width: 100%; }
  .terminal-inner, .showcase, .cta-box { padding: 20px; border-radius: 30px; }
}

/* ═══════════════════════════════════════════════
   TOPIC PAGES
   ═══════════════════════════════════════════════ */

.topic-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted2);
  padding: 28px 0 0;
}
.topic-breadcrumb a { color: var(--muted); transition: color .2s; }
.topic-breadcrumb a:hover { color: var(--amber2); }

.topic-hero { padding: clamp(32px, 6vw, 72px) 0 clamp(40px, 7vw, 80px); }

.topic-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.28);
  color: #fff1c2; font-size: 13px; font-weight: 700; margin-bottom: 22px;
}

.topic-page h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 80px);
  line-height: .96; letter-spacing: -.06em; max-width: 900px;
}

.topic-lead {
  color: #d6c7b8;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.7; max-width: 720px; margin-bottom: 32px;
}

.topic-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }

.topic-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: var(--muted); font-size: 13px; font-weight: 600;
  font-family: ui-monospace, monospace; letter-spacing: .02em;
}

.topic-content { padding: clamp(40px, 7vw, 88px) 0; }

.topic-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px; align-items: start;
}

.topic-main { display: grid; gap: 32px; }

.topic-section {
  border-radius: 32px; border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 16px 52px rgba(0,0,0,.22);
}

.topic-section h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08; letter-spacing: -.04em; color: var(--amber2);
}

.topic-section p { margin: 0 0 16px; color: var(--muted); font-size: 17px; line-height: 1.78; }
.topic-section p:last-child { margin-bottom: 0; }

.topic-section a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.topic-section a:hover { color: var(--amber2); }

.topic-section ul, .topic-section ol {
  margin: 0 0 16px; padding-left: 1.4em;
  color: var(--muted); font-size: 17px; line-height: 1.78;
}
.topic-section ul li, .topic-section ol li { margin-bottom: 8px; }
.topic-section ul li::marker, .topic-section ol li::marker { color: var(--amber); }

/* Software – App-Vorstellungen */
.software-app { margin-bottom: 28px; }
.software-app:last-of-type { margin-bottom: 0; }
.software-app-head {
  position: relative; overflow: hidden;
  display: flex; align-items: center; flex-wrap: wrap; gap: 24px;
  margin-bottom: 28px;
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(251,191,36,.22), rgba(251,191,36,0) 55%),
    radial-gradient(120% 160% at 100% 100%, rgba(45,212,191,.16), rgba(45,212,191,0) 55%),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 16px 44px rgba(0,0,0,.26);
}
.software-app-icon {
  flex: 0 0 auto; width: 96px; height: 96px;
  border-radius: 22px; object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,.42);
}
.software-app-icon-lucide {
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12); color: var(--amber2);
}
.software-app-headtext { flex: 1 1 280px; min-width: 0; }
.software-app-badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px; margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(15,12,8,.4); border: 1px solid rgba(251,191,36,.4);
  color: var(--amber); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.software-app-headtext h2 { margin: 0; line-height: 1.05; }
.software-app-tagline {
  margin: 8px 0 0; color: var(--text); opacity: .82;
  font-size: clamp(16px, 1.8vw, 19px); line-height: 1.4;
}
.software-app-headtext .topic-tags { margin-top: 16px; }
.software-app-cta {
  flex: 0 0 auto; margin-left: auto;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.software-app-cta .btn.primary,
.software-app-cta .btn.primary:hover { color: #1b1007; text-decoration: none; }
.software-app-cta .btn { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 640px) {
  .software-app-cta { margin-left: 0; width: 100%; }
}
@media (max-width: 560px) {
  .software-app-head { flex-direction: column; align-items: flex-start; gap: 18px; }
}
.software-app h3 {
  margin: 28px 0 12px;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -.02em; color: var(--text);
}
.software-feature-list { columns: 2; column-gap: 36px; }
.software-feature-list li { break-inside: avoid; }
@media (max-width: 640px) {
  .software-feature-list { columns: 1; }
}
.software-note {
  display: flex; gap: 12px; align-items: flex-start;
  border-radius: 16px; padding: 16px 18px;
  background: rgba(251,191,36,.08);
  border: 1px solid rgba(251,191,36,.28);
}
.software-note .software-note-icon { flex: 0 0 auto; color: var(--amber); display: inline-flex; margin-top: 2px; }
.software-note strong { color: var(--text); }
.software-screenshot { margin: 24px 0; }
.software-screenshot img {
  display: block; max-width: 360px; width: 100%; height: auto; margin: 0 auto;
  border-radius: 18px; border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.software-screenshot figcaption {
  margin-top: 12px; text-align: center;
  font-size: 14px; color: var(--muted);
}
.software-quote {
  margin: 0 0 16px; padding: 14px 18px;
  border-left: 3px solid var(--amber);
  border-radius: 0 12px 12px 0;
  background: rgba(255,255,255,.04);
  color: var(--text); font-style: italic;
}
.software-steps { margin: 0 0 16px; padding-left: 1.4em; color: var(--muted); font-size: 17px; line-height: 1.78; }
.software-steps li { margin-bottom: 6px; }
.software-steps li::marker { color: var(--amber); }
.software-download-meta { color: var(--muted); font-size: 14px; }
.software-download-hint {
  display: flex; align-items: flex-start; gap: 5px;
  margin: 4px 0 0; max-width: 320px;
  color: var(--muted); font-size: 11px; line-height: 1.45;
}
.software-download-hint svg { flex: 0 0 auto; width: 12px; height: 12px; margin-top: 2px; opacity: .8; }
@media (max-width: 640px) {
  .software-download-hint { max-width: none; }
}

.code-block {
  background: rgba(0,0,0,.38); border-radius: 16px;
  padding: 16px 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13.5px; line-height: 1.65; color: #d8c9bb;
  overflow-x: auto; margin: 16px 0;
  border: 1px solid rgba(255,255,255,.08);
}

/* Sidebar */
.topic-sidebar { display: grid; gap: 20px; position: sticky; top: 90px; }

.sidebar-card {
  border-radius: 28px; border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  padding: 24px; box-shadow: 0 14px 44px rgba(0,0,0,.2);
}

.sidebar-card h3 { margin: 0 0 16px; font-size: 15px; font-weight: 800; letter-spacing: -.02em; color: var(--amber2); }

.sidebar-nav { display: grid; gap: 6px; }

.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 13px; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  font-size: 14px; color: var(--muted);
  transition: background .2s, border-color .2s, color .2s;
}

.sidebar-nav a:hover, .sidebar-nav a[aria-current="page"] {
  background: rgba(251,191,36,.12);
  border-color: rgba(251,191,36,.28);
  color: var(--amber2);
}

.sidebar-note { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0 0 16px; }

/* FAQ */
.topic-faq h2 {
  margin: 0 0 24px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.04em; color: var(--text);
}

.faq-list { display: grid; gap: 12px; }

.faq-item {
  border-radius: 22px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04); overflow: hidden;
}

.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: inherit; font-size: 16px; font-weight: 700; color: var(--text);
  transition: color .2s; line-height: 1.4;
}
.faq-q:hover { color: var(--amber2); }
.faq-icon { font-size: 18px; flex-shrink: 0; transition: transform .3s; color: var(--amber); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none; padding: 0 22px 18px;
  color: var(--muted); font-size: 16px; line-height: 1.75;
}
.faq-a a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.faq-item.open .faq-a { display: block; }

.menu-grid a {
  display: block; text-decoration: none;
  border-radius: 18px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  padding: 13px; color: #e8ddd3; font-size: 14px;
  transition: background .2s, border-color .2s, color .2s;
}
.menu-grid a:hover { background: rgba(251,191,36,.12); border-color: rgba(251,191,36,.28); color: var(--amber2); }

@media (max-width: 900px) {
  .topic-grid { grid-template-columns: 1fr; }
  .topic-sidebar { position: static; }
}
@media (max-width: 620px) {
  .topic-section { border-radius: 24px; }
  .sidebar-card { border-radius: 22px; }
}

/* Über MO – Timeline */
.mo-timeline {
  display: grid;
  gap: 0;
  padding: 8px 0 0;
}

.mo-timeline-title {
  margin: 0 0 28px;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -.02em;
}

.mo-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mo-timeline-item:first-of-type { padding-top: 0; }
.mo-timeline-item:last-of-type { border-bottom: none; padding-bottom: 0; }

.mo-timeline-year {
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 15px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-top: 4px;
}

.mo-timeline-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.mo-timeline-body p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.mo-timeline-body p + p { margin-top: 14px; }

.mo-timeline-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mo-timeline-body a:hover { color: var(--amber2); }

.mo-timeline-item--now .mo-timeline-year { color: var(--amber2); }

.mo-timeline-item--now .mo-timeline-body {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(251,191,36,.22);
  background: linear-gradient(135deg, rgba(251,191,36,.08), rgba(45,212,191,.06));
}

@media (max-width: 700px) {
  .mo-timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }
}

/* ═══════════════════════════════════════════════
   CTA & FORM PAGES
   ═══════════════════════════════════════════════ */

.topic-article-cta { margin-top: 48px; }
.topic-article-cta .cta-box { padding: clamp(24px, 4vw, 40px); border-radius: 32px; }
.topic-article-cta .cta-box::after { font-size: 120px; right: -10px; bottom: -30px; }
.topic-article-cta h2 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 12px; }
.topic-article-cta .actions { margin-top: 20px; }

.topic-grid-single { grid-template-columns: 1fr !important; max-width: 760px; }

.contact-form-wrap {
  margin-top: 12px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.22);
}

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

.form-field { display: grid; gap: 8px; }

.form-field label {
  font-size: 14px;
  font-weight: 700;
  color: #e7d4bd;
}

.form-optional { font-weight: 500; color: var(--muted2); }

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font: inherit;
  transition: border-color .2s ease, background .2s ease;
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(251,191,36,.45);
  background: rgba(255,255,255,.08);
}

.hp-field {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-hint {
  margin: 0;
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.55;
}

.form-hint a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--amber2);
}

.form-checkbox a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-message {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.55;
}

.form-success {
  border: 1px solid rgba(45,212,191,.35);
  background: rgba(45,212,191,.1);
  color: #ccfbf1;
}

.form-error {
  border: 1px solid rgba(248,113,113,.35);
  background: rgba(248,113,113,.1);
  color: #fecaca;
}

.form-error ul { margin: 8px 0 0; padding-left: 18px; }

.sidebar-partner {
  border-color: rgba(251,191,36,.22);
  background: linear-gradient(135deg, rgba(251,191,36,.08), rgba(255,255,255,.03));
}

.sidebar-agencyos {
  border-color: rgba(45,212,191,.22);
  background: linear-gradient(135deg, rgba(45,212,191,.08), rgba(255,255,255,.03));
}

.topic-case-study { margin-top: 40px; }

.case-study-box {
  padding: clamp(22px, 4vw, 32px);
  border-radius: 28px;
  border: 1px solid rgba(45,212,191,.25);
  background: linear-gradient(135deg, rgba(45,212,191,.1), rgba(255,255,255,.03));
}

.case-study-box p {
  margin: 12px 0 20px;
  color: #e7d4bd;
  line-height: 1.65;
  max-width: 640px;
}

.agencyos-hint {
  font-size: 15px !important;
  color: var(--muted2) !important;
}

.agencyos-hint a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tavernenpost-section { padding-bottom: 20px; }

.tavernenpost-box {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 32px;
  border: 1px solid rgba(251,191,36,.2);
  background: rgba(0,0,0,.22);
}

.tavernenpost-form { margin-top: 0; }

.card-link {
  display: inline-block;
  margin-top: 14px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--amber2);
  text-align: right;
  white-space: nowrap;
  transition: color .2s ease;
}

.card-foot .card-link { margin-top: 0; margin-left: 0; }

.card-link:hover { color: var(--amber); }

.project-showcase {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(40px, 7vw, 72px);
}

.project-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.project-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .project-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .project-showcase { grid-template-columns: 1fr; }
}

.mehr-projekte-page .topic-hero {
  padding-bottom: clamp(12px, 2vw, 20px);
}

.mehr-projekte-page .topic-lead {
  margin-bottom: 18px;
}

.mehr-projekte-page .topic-tags {
  margin-bottom: 0;
}

.mehr-projekte-page .topic-content {
  padding-top: clamp(12px, 2vw, 24px);
}

.project-card-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.project-card-meta {
  color: #ffd983;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

button.topic-tag.project-filter,
button.tag.project-card-tag {
  cursor: pointer;
  font: inherit;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}

button.topic-tag.project-filter:hover,
button.tag.project-card-tag:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.2);
  color: #e7d4bd;
}

button.topic-tag.project-filter.is-active,
button.tag.project-card-tag.is-active {
  background: rgba(251,191,36,.14);
  border-color: rgba(251,191,36,.35);
  color: var(--amber2);
}

button.tag.project-card-tag {
  align-self: flex-start;
  width: auto;
  max-width: max-content;
  margin-top: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #e7d4bd;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.project-card.is-filtered-out {
  display: none;
}

/* ── Hub-Seiten: Werkbank / Karte / Projekte ── */

.hub-page .hub-pillar,
.hub-page .hub-recipe,
.hub-page .hub-featured {
  scroll-margin-top: 96px;
}

.hub-pillar-head,
.hub-recipe-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.hub-pillar-head h2,
.hub-recipe-head h2 {
  margin: 0 0 6px;
}

.hub-pillar-head .tag,
.hub-featured .tag {
  display: inline-block;
  margin-top: 2px;
}

.hub-pillar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(251,191,36,.28);
  background:
    radial-gradient(circle at 30% 25%, rgba(251,191,36,.28), transparent 60%),
    rgba(255,255,255,.04);
  color: #ffd983;
}

.hub-recipe-eyebrow {
  margin: 0 0 4px;
  color: #ffd983;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hub-recipe-lead {
  font-size: 1.05em;
  color: #e7d4bd;
}

.hub-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.hub-link-list li {
  margin: 0;
}

.hub-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #e7d4bd;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.hub-link-list a:hover {
  border-color: rgba(251,191,36,.4);
  background: rgba(251,191,36,.1);
  color: var(--amber2);
}

.hub-featured-cta {
  margin-top: 18px;
}

.hub-featured h2 a {
  color: inherit;
  text-decoration: none;
}

.hub-featured h2 a:hover {
  color: var(--amber2);
}

/* ── A11y / Skip + Focus ── */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--amber2);
  color: #1b1007;
  font-weight: 800;
  font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible,
.faq-q:focus-visible {
  outline: 2px solid var(--amber2);
  outline-offset: 3px;
}

#main-content:focus {
  outline: none;
}

.hub-featured-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

