:root {
  --bg: #060912;
  --bg2: #0d1120;
  --card: #10152a;
  --line: rgba(255, 255, 255, 0.09);
  --text: #eef0f6;
  --muted: #9ba1b5;
  --akzent: #8a29e2;
  --akzent2: #d946ef;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family:
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.55;
}
a {
  color: var(--akzent2);
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.demo-band {
  background: linear-gradient(90deg, var(--akzent), var(--akzent2));
  color: #0a0612;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}
.demo-band a {
  color: #0a0612;
  text-decoration: underline;
}
header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
header.top .marke {
  font-weight: 800;
  font-size: 1.3rem;
}
header.top .marke span {
  color: var(--akzent2);
}
nav.top a {
  color: var(--text);
  text-decoration: none;
  margin-left: 22px;
  font-size: 0.95rem;
  opacity: 0.85;
}
nav.top a:hover {
  opacity: 1;
}
.hero {
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 16px;
  line-height: 1.1;
}
.hero p.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 640px;
}
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 10px;
  background: var(--akzent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 18px;
  margin-right: 12px;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
section {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}
section h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}
section p.sub {
  color: var(--muted);
  margin-top: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.karte {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.karte h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.karte .preis {
  color: var(--akzent2);
  font-weight: 700;
  margin-top: 10px;
}
.karte .kategorie {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.sterne {
  color: #f5c542;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--akzent), var(--akzent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.zeiten-tabelle {
  margin-top: 18px;
  border-collapse: collapse;
}
.zeiten-tabelle td {
  padding: 4px 16px 4px 0;
  color: var(--muted);
}
.zeiten-tabelle td:first-child {
  color: var(--text);
}
footer {
  padding: 40px 0 60px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
footer a {
  color: var(--text);
}
.manager-cta {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.manager-cta .txt {
  max-width: 560px;
}
