body { background: radial-gradient(circle at 20% 0%, #12314f, #050912 58%, #02030a); }

:root { --bg: #07111f; --panel: rgba(255,255,255,.08); --text: #f4fbff; --muted: #a7b6ca; --accent: #6ee7ff; --line: rgba(255,255,255,.14); }
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }
a { color: inherit; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px clamp(18px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.brand { font-size: 28px; font-weight: 900; letter-spacing: .08em; }
.brand span { color: var(--accent); }
nav { display: flex; flex-wrap: wrap; gap: 14px; }
nav a { text-decoration: none; color: var(--muted); }
main { width: min(1180px, calc(100vw - 30px)); margin: 32px auto; }
.hero { padding: clamp(28px, 6vw, 78px); border: 1px solid var(--line); border-radius: 28px; background: var(--panel); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.hero h1 { font-size: clamp(40px, 8vw, 88px); margin: 0 0 14px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.status-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin: 22px 0; }
.status-strip article, .card { background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 20px; }
.status-strip span { display: block; color: var(--muted); font-size: 14px; }
.status-strip strong { font-size: 22px; }
.content-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
table { width: 100%; border-collapse: collapse; margin-top: 14px; }
th, td { text-align: left; border-bottom: 1px solid var(--line); padding: 10px; }
.gallery-placeholder { min-height: 180px; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: 18px; color: var(--muted); }
footer { text-align: center; color: var(--muted); padding: 38px; }
@media (max-width: 820px) { .status-strip, .content-grid { grid-template-columns: 1fr; } .site-header { align-items: flex-start; flex-direction: column; } }

/* v0.4 Passliste */
.card.wide { grid-column: span 1; }
.front-pass-list { display: grid; gap: 16px; }
.front-pass-day { border: 1px solid var(--line); border-radius: 18px; padding: 14px; background: rgba(255,255,255,.035); overflow-x: auto; }
.front-pass-day h3 { margin: 0 0 10px; color: var(--accent); }
.front-pass-day table { min-width: 620px; }
@media (min-width: 980px) { .card.wide { grid-column: span 2; } }
