
:root {
    --bg: #05050a;
    --bg-soft: #0f1117;
    --accent: #0088C7;
    --accent-soft: rgba(0,136,199,0.12);
    --text: #f5f5f7;
    --muted: #9ea0aa;
    --card-bg: #11131b;
    --border-soft: #2a2d3a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #111522 0, #05050a 55%, #020207 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom, rgba(5,5,10,0.92), rgba(5,5,10,0.6), transparent);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.nav-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-circle {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: radial-gradient(circle at 20% 0, #4fd2ff, #0088C7 45%, #00335a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.nav-title-main {
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-title-sub {
    font-size: 0.8rem;
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--muted);
    flex-wrap: wrap;
}

.nav-links a {
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
}

/* Hero / Coming Soon (Startseite) */
main.hero-main {
    flex: 1;
    padding: 40px 16px 24px;
}

.hero {
    max-width: 900px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: center;
}

@media (max-width: 800px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }
}

.hero-kicker {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 3.3vw, 2.6rem);
    font-weight: 650;
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 16px;
}

.hero-list {
    font-size: 0.86rem;
    color: var(--muted);
    margin: 0 0 18px;
    padding-left: 18px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.badge {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    color: var(--muted);
    background: rgba(10,10,18,0.8);
}

.badge-pill {
    border-color: var(--accent-soft);
    background: var(--accent-soft);
    color: #e1f6ff;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.btn-primary {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #00a2ff, #0088C7);
    color: #fff;
    cursor: pointer;
}

.btn-secondary {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.85rem;
    background: rgba(8,10,18,0.9);
    color: var(--text);
    cursor: pointer;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Right card */
.hero-right {
    position: relative;
}

.hero-card {
    background: radial-gradient(circle at 0 0, rgba(79,210,255,0.12), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(0,0,0,0.4), rgba(10,12,20,0.95));
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px 18px 16px;
    box-shadow: 0 26px 80px rgba(0,0,0,0.6);
    font-size: 0.85rem;
}

.hero-card-title {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.hero-card-sub {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.hero-card-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 10px;
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-card-list li {
    margin-bottom: 4px;
}

.hero-card-mini {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(3,5,12,0.7);
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
}

.hero-card-mini span {
    color: var(--muted);
}

.hero-card-mini strong {
    color: var(--text);
}

/* Legal / Content pages */
main.page-main {
    flex: 1;
    padding: 40px 16px 32px;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-card {
    background: rgba(7,9,16,0.9);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px 18px 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.5);
    font-size: 0.85rem;
    color: var(--muted);
}

.page-title {
    font-size: 1.2rem;
    margin: 0 0 4px;
    color: var(--text);
}

.page-subtitle {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0 0 12px;
}

.page-card h2,
.page-card h3 {
    color: var(--text);
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.page-card h3 {
    font-size: 0.9rem;
}

.page-card p {
    margin: 0 0 6px;
}

.page-card a {
    text-decoration: underline;
}

/* Footer */
.footer {
    max-width: 900px;
    margin: 0 auto;
    padding: 18px 16px 26px;
    font-size: 0.78rem;
    color: var(--muted);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links a {
    color: var(--muted);
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: calc(100% - 24px);
    background: rgba(7,9,16,0.98);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
    z-index: 50;
}

.cookie-bar-text {
    margin-right: 12px;
}

.cookie-bar-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-bar-btn {
    border-radius: 999px;
    border: none;
    padding: 6px 14px;
    font-size: 0.8rem;
    cursor: pointer;
    background: linear-gradient(135deg, #00a2ff, #0088C7);
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .nav-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-bar-btn {
        align-self: flex-end;
    }
}
