:root {
    color-scheme: dark;
    --bg: #0b1020;
    --panel: rgba(20, 29, 53, 0.88);
    --border: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #9aa8c2;
    --accent: #67e8f9;
    --accent-2: #a78bfa;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font: 16px/1.5 Inter, ui-sans-serif, system-ui, sans-serif;
    background: radial-gradient(circle at 20% 0%, #24376b 0, transparent 38%), var(--bg);
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .02em; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; color: #0b1020; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.nav-link { color: var(--muted); }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; min-height: 72vh; }
.eyebrow { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 12px 0 18px; max-width: 680px; font-size: clamp(2.8rem, 7vw, 5.8rem); line-height: .98; letter-spacing: -.06em; }
h2 { margin: 0 0 10px; font-size: 2rem; }
p { color: var(--muted); }
.lead { max-width: 560px; font-size: 1.08rem; }
.actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; padding: 12px 18px; border: 1px solid var(--border); border-radius: 12px; font-weight: 750; cursor: pointer; background: rgba(255,255,255,.06); }
.button.primary { border-color: transparent; color: #07101c; background: linear-gradient(135deg, var(--accent), #c4b5fd); }
.button:hover { transform: translateY(-1px); }
.preview, .card { border: 1px solid var(--border); border-radius: 24px; background: var(--panel); box-shadow: 0 24px 80px rgba(0,0,0,.22); backdrop-filter: blur(18px); }
.preview { padding: 20px; transform: rotate(2deg); }
.window-bar { display: flex; gap: 6px; margin-bottom: 24px; }
.window-bar span { width: 9px; height: 9px; border-radius: 50%; background: #fb7185; }
.window-bar span:nth-child(2) { background: #facc15; }
.window-bar span:nth-child(3) { background: #4ade80; }
.mini-grid, .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini-card, .stat { padding: 16px; border-radius: 16px; background: rgba(255,255,255,.06); }
.mini-card strong, .stat strong { display: block; font-size: 1.35rem; }
.mini-card small, .stat small { color: var(--muted); }
.page { padding-bottom: 64px; }
.dashboard-header { margin: 48px 0 28px; display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.stats { grid-template-columns: repeat(3, 1fr); margin-bottom: 18px; }
.stat { min-height: 120px; }
.card { padding: 24px; }
.status { display: inline-flex; gap: 8px; align-items: center; color: #86efac; font-size: .9rem; }
.status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 14px #4ade80; }
.user-row { display: flex; align-items: center; gap: 14px; margin: 22px 0; }
.avatar { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: #0b1020; font-size: 1.2rem; font-weight: 900; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.user-row strong { display: block; }
.user-row span { color: var(--muted); font-size: .92rem; }
.cookie-banner { position: fixed; right: 20px; bottom: 20px; z-index: 10; display: flex; align-items: end; gap: 22px; width: min(720px, calc(100% - 40px)); padding: 18px; border: 1px solid var(--border); border-radius: 18px; background: rgba(11,16,32,.96); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.cookie-banner strong { display: block; margin-bottom: 4px; }
.cookie-banner p { margin: 0 0 6px; font-size: .9rem; }
.cookie-banner a { color: var(--accent); font-size: .85rem; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner button { white-space: nowrap; }
.cookie-banner[hidden] { display: none; }
@media (max-width: 760px) { .hero { grid-template-columns: 1fr; gap: 20px; } .preview { transform: none; } .stats { grid-template-columns: 1fr; } .dashboard-header { align-items: start; flex-direction: column; } }
@media (max-width: 620px) { .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); align-items: stretch; flex-direction: column; gap: 14px; } .cookie-actions { width: 100%; } .cookie-actions .button { flex: 1; padding-inline: 8px; } }
