/* ═══════════════════════════════════════
   Cookie — Premium Dark Tech Aesthetic
   Fonts: Sora (display) + DM Sans (body)
   ═══════════════════════════════════════ */

:root {
    --bg: #09090b;
    --bg-elevated: #111113;
    --bg-card: #18181b;
    --bg-card-hover: #1f1f23;
    --border: #27272a;
    --border-subtle: #1c1c1f;
    --border-hover: #3f3f46;
    --text: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-dim: #52525b;
    --accent: #2563eb;
    --accent-hover: #3b82f6;
    --accent-subtle: rgba(37, 99, 235, .08);
    --accent-glow: rgba(37, 99, 235, .15);
    --accent-text: #60a5fa;
    --green: #22c55e;
    --amber: #f59e0b;
    --red: #ef4444;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --heading: 'Sora', system-ui, sans-serif;
    --body: 'DM Sans', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --max-w: 1200px;
    --transition: .2s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--body); background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--heading); letter-spacing: -.02em; line-height: 1.2; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ═══ NAV ═══ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(9, 9, 11, .85);
    backdrop-filter: blur(16px) saturate(1.6);
    border-bottom-color: var(--border-subtle);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
    width: 32px; height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--heading); font-weight: 800; font-size: .9rem; color: #fff;
}
.logo-text { font-family: var(--heading); font-weight: 700; font-size: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-muted); font-size: .875rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-discord { font-size: 1.1rem !important; }
.nav-cta {
    padding: 8px 20px; background: var(--accent); color: #fff;
    border-radius: 8px; font-family: var(--heading); font-weight: 600; font-size: .85rem;
    transition: all var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); }
.nav-mobile { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-mobile span { display: block; width: 20px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: var(--transition); }

/* ═══ HERO ═══ */
.hero {
    position: relative; padding: 160px 0 100px; overflow: hidden;
    min-height: 90vh; display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; top: -40%; left: -10%; width: 60%; height: 120%;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37,99,235,.06), transparent);
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 14px 4px 6px;
    background: var(--accent-subtle); border: 1px solid rgba(37,99,235,.15);
    border-radius: 100px; font-size: .78rem; color: var(--accent-text);
    font-weight: 600; margin-bottom: 24px;
}
.hero-eyebrow .dot {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent); display: flex; align-items: center; justify-content: center;
    font-size: .6rem; color: #fff;
}
.hero h1 { font-size: clamp(2.8rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent-text); }
.hero-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 480px; margin-bottom: 36px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius);
    font-family: var(--heading); font-weight: 600; font-size: .925rem;
    border: none; cursor: pointer; transition: all var(--transition);
    text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--border-hover); background: var(--bg-card); }

/* Hero Mockup */
.hero-visual { position: relative; }
.hero-mockup {
    width: 100%; max-width: 540px; aspect-ratio: 16/10;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03) inset;
    position: relative;
}
.mk-top { height: 32px; background: var(--bg-elevated); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.mk-dot { width: 8px; height: 8px; border-radius: 50%; }
.mk-dot:nth-child(1) { background: #ff5f57; }
.mk-dot:nth-child(2) { background: #ffbd2e; }
.mk-dot:nth-child(3) { background: #28ca42; }
.mk-body { padding: 12px; display: grid; grid-template-columns: 120px 1fr; gap: 10px; height: calc(100% - 32px); }
.mk-sidebar { background: var(--bg-elevated); border-radius: 8px; padding: 10px; }
.mk-bar { height: 6px; background: var(--border); border-radius: 3px; margin-bottom: 7px; }
.mk-bar.active { background: var(--accent); opacity: .5; width: 75%; }
.mk-main { display: flex; flex-direction: column; gap: 8px; }
.mk-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mk-stat { background: var(--bg-elevated); border-radius: 6px; padding: 8px; text-align: center; }
.mk-stat-v { font-family: var(--heading); font-size: .9rem; font-weight: 800; color: var(--accent-text); }
.mk-stat-l { font-size: .45rem; color: var(--text-dim); margin-top: 1px; }
.mk-card { background: var(--bg-elevated); border-radius: 6px; padding: 10px; flex: 1; }
.mk-line { height: 5px; background: var(--border); border-radius: 2px; margin-bottom: 5px; }

/* Floating badge on mockup */
.hero-mockup::after {
    content: 'v8.0'; position: absolute; bottom: 12px; right: 12px;
    background: var(--accent); color: #fff; font-family: var(--heading);
    font-size: .6rem; font-weight: 700; padding: 3px 10px; border-radius: 6px;
    letter-spacing: .5px;
}

/* ═══ TRUST BAR ═══ */
.trust {
    padding: 48px 0; border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-elevated);
}
.trust-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-val { font-family: var(--heading); font-size: 2rem; font-weight: 800; color: var(--text); }
.trust-label { font-size: .8rem; color: var(--text-dim); margin-top: 2px; }

/* ═══ SECTION ═══ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-elevated); }
.sec-header { text-align: center; margin-bottom: 56px; }
.sec-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--heading); font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--accent-text); margin-bottom: 12px;
}
.sec-label::before, .sec-label::after { content: ''; width: 16px; height: 1px; background: var(--accent); opacity: .4; }
.sec-title { font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.sec-desc { color: var(--text-secondary); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ═══ FEATURES ═══ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    transition: all .3s ease; position: relative;
}
.feat:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-2px); }
.feat-num {
    font-family: var(--mono); font-size: .7rem; font-weight: 500;
    color: var(--text-dim); margin-bottom: 16px;
    padding: 4px 10px; background: var(--accent-subtle); border-radius: 6px;
    display: inline-block;
}
.feat h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feat p { color: var(--text-secondary); font-size: .88rem; line-height: 1.65; }

/* ═══ PRICING ═══ */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.price-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 28px;
    display: flex; flex-direction: column; transition: all .3s ease; position: relative;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 16px 48px var(--accent-glow);
}
.price-card.popular::before {
    content: 'Empfohlen'; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: var(--accent); color: #fff; font-family: var(--heading);
    font-size: .7rem; font-weight: 700; padding: 4px 16px; border-radius: 100px;
    letter-spacing: .3px;
}
.price-name { font-family: var(--heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.price-desc { color: var(--text-dim); font-size: .8rem; margin-bottom: 20px; }
.price-amount { font-family: var(--heading); font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; }
.price-amount span { font-size: .85rem; font-weight: 500; color: var(--text-dim); }
.price-period { color: var(--text-dim); font-size: .75rem; margin-bottom: 24px; }
.price-list { list-style: none; flex: 1; margin-bottom: 24px; }
.price-list li {
    padding: 7px 0; color: var(--text-secondary); font-size: .85rem;
    display: flex; align-items: center; gap: 10px;
}
.price-list li i.fa-check { color: var(--green); font-size: .7rem; }
.price-list li i.fa-xmark { color: var(--text-dim); font-size: .7rem; }
.price-list li.off { color: var(--text-dim); }
.price-list li a { color: var(--accent-text); text-decoration: underline; }
.price-btn {
    display: block; width: 100%; padding: 12px; text-align: center;
    border-radius: var(--radius); font-family: var(--heading); font-weight: 600;
    font-size: .9rem; cursor: pointer; transition: all var(--transition); border: none;
}
.price-btn-fill { background: var(--accent); color: #fff; }
.price-btn-fill:hover { background: var(--accent-hover); }
.price-btn-line { background: transparent; color: var(--text); border: 1px solid var(--border); }
.price-btn-line:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; cursor: pointer; user-select: none;
}
.faq-q h3 { font-size: 1rem; font-weight: 600; }
.faq-q .icon {
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--accent-subtle); color: var(--accent-text);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; transition: transform .3s ease, background .3s;
    flex-shrink: 0;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { color: var(--text-secondary); font-size: .9rem; padding-bottom: 20px; line-height: 1.7; }
.faq-a a { color: var(--accent-text); text-decoration: underline; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--accent); color: #fff; }

/* ═══ CTA ═══ */
.cta-section { padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-content p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 24px; }

/* ═══ FOOTER ═══ */
.footer { padding: 64px 0 24px; border-top: 1px solid var(--border-subtle); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-desc { color: var(--text-dim); font-size: .85rem; margin-top: 12px; max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-family: var(--heading); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); font-size: .85rem; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid var(--border-subtle);
    color: var(--text-dim); font-size: .75rem;
}
.footer-legal a { color: var(--text-muted); text-decoration: underline; }

/* ═══ COOKIE BANNER ═══ */
.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: rgba(9,9,11,.92); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border); padding: 16px 24px;
    animation: slideUp .4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-inner p { color: var(--text-secondary); font-size: .82rem; flex: 1; min-width: 300px; }
.cookie-inner a { color: var(--accent-text); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.ck-accept { padding: 8px 18px; background: var(--accent); color: #fff; border: none; border-radius: 8px; font-family: var(--body); font-weight: 600; font-size: .8rem; cursor: pointer; }
.ck-decline { padding: 8px 18px; background: var(--bg-card); color: var(--text-muted); border: 1px solid var(--border); border-radius: 8px; font-family: var(--body); font-weight: 500; font-size: .8rem; cursor: pointer; }

/* ═══ CHECKOUT OVERLAY ═══ */
.checkout-overlay { display: none; position: fixed; inset: 0; background: rgba(9,9,11,.85); backdrop-filter: blur(10px); z-index: 300; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.checkout-overlay.active { display: flex; }
.checkout-spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.checkout-overlay p { color: var(--text-secondary); font-size: .9rem; }

/* ═══ LEGAL PAGES ═══ */
.legal { max-width: 720px; margin: 0 auto; padding: 120px 24px 64px; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: var(--text-dim); font-size: .85rem; margin-bottom: 32px; }
.legal-back:hover { color: var(--text); }
.legal h1 { font-size: 2rem; margin-bottom: 8px; }
.legal .updated { color: var(--text-dim); font-size: .82rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.1rem; color: var(--accent-text); margin-top: 32px; margin-bottom: 8px; }
.legal p, .legal li { color: var(--text-secondary); font-size: .9rem; line-height: 1.75; }
.legal ul { padding-left: 24px; margin: 8px 0; }
.legal a { color: var(--accent-text); text-decoration: underline; }
.legal .note { background: var(--accent-subtle); border: 1px solid rgba(37,99,235,.15); border-radius: 12px; padding: 16px; margin: 20px 0; font-size: .85rem; color: var(--accent-text); }

/* ═══ DANKE PAGE ═══ */
.danke { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; position: relative; }
.danke::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--accent-glow); filter: blur(120px); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.danke-card { position: relative; z-index: 1; max-width: 520px; width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 48px 36px; text-align: center; }
.danke-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(34,197,94,.1); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: var(--green); animation: pop .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .price-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-mockup { max-width: 440px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 24px; gap: 12px; }
    .nav-links.open { display: flex; }
    .nav-mobile { display: flex; }
    .trust-inner { gap: 32px; }
    .feat-grid, .price-grid { grid-template-columns: 1fr; }
    .price-grid { max-width: 400px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-inner p { min-width: 0; }
}
