: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);
  background: rgba(16,9,7,.72);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

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

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

.mark {
  width: 46px; height: 46px;
  border-radius: 18px;
  display: grid; place-items: center;
  border: 1px solid rgba(251,191,36,.35);
  background: rgba(251,191,36,.10);
  box-shadow: 0 0 45px rgba(251,191,36,.18);
  font-size: 22px;
}

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

nav { display: flex; align-items: center; gap: 30px; color: #d8c9bb; font-size: 14px; }
nav a:hover { color: var(--amber2); }

.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 { font-size: 24px; }
.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;
}

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 {
  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); font-size: 22px; }

.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; }

.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;
}

.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-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-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-address {
  font-style: normal;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 18px;
  font-size: 17px;
}

.legal-contact {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

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

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

.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) {
  nav { display: none; }
  .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-actions .btn { width: 100%; }
  .wrap { width: min(100% - 26px, 1180px); }
  .stats { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .brand span { letter-spacing: .18em; }
  .btn { width: 100%; }
  header .btn { width: auto; padding: 0 14px; }
  .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); }

.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;
  }
}
