:root {
    --bg: #090b0b;
    --panel: #111615;
    --text: #f4f0e8;
    --muted: #b9afa1;
    --line: rgba(255,255,255,.12);
    --accent: #f5a72a;
    --accent2: #b8ff72;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    background: radial-gradient(circle at 20% 0%, rgba(184,255,114,.12), transparent 35%), radial-gradient(circle at 80% 10%, rgba(245,167,42,.10), transparent 32%), var(--bg);
    color: var(--text);
}
a { color: inherit; }
.site-header {
    min-height: 72px;
    padding: 18px clamp(18px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(9,11,11,.78);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: .02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; display: inline-grid; place-items: center; color: #10100b; background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.site-nav { display: flex; gap: 22px; align-items: center; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 650; }
.site-nav a:hover { color: var(--text); }
.nav-account { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--text) !important; }
.hero, .page-hero { padding: clamp(70px, 12vw, 150px) clamp(18px, 5vw, 72px); }
.hero-inner { max-width: 900px; }
.kicker { color: var(--accent2); text-transform: uppercase; letter-spacing: .16em; font-size: 13px; font-weight: 800; }
h1 { font-size: clamp(42px, 7vw, 84px); line-height: .95; margin: 14px 0 24px; letter-spacing: -.06em; }
.page-hero h1 { max-width: 980px; }
h2 { margin: 0 0 12px; font-size: 24px; letter-spacing: -.02em; }
.lead, .page-hero p:not(.kicker) { max-width: 760px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 14px; font-weight: 850; text-decoration: none; }
.btn.primary { background: var(--accent); color: #15100b; }
.btn.secondary { background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.section { padding: 0 clamp(18px, 5vw, 72px) clamp(60px, 9vw, 110px); }
.section.narrow { max-width: 920px; margin: 0 auto; }
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: 0 24px 80px rgba(0,0,0,.22); }
.card p, .legal-text p { color: var(--muted); line-height: 1.65; }
.product { min-height: 230px; display: flex; flex-direction: column; }
.text-link { color: var(--accent); font-weight: 850; text-decoration: none; margin-top: auto; }
.legal-text h2 { margin-top: 34px; }
.legal-note { margin-top: 36px; padding: 16px; border-radius: 14px; background: rgba(245,167,42,.08); border: 1px solid rgba(245,167,42,.22); }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 34px clamp(18px, 5vw, 72px); border-top: 1px solid var(--line); color: var(--muted); }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer-links a, .footer-cookie-btn { color: var(--muted); background: none; border: 0; padding: 0; cursor: pointer; font: inherit; text-decoration: none; }
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 100; max-width: 980px; margin: 0 auto; padding: 18px; border-radius: 22px; background: #101412; border: 1px solid var(--line); box-shadow: 0 18px 80px rgba(0,0,0,.45); display: none; gap: 16px; align-items: center; justify-content: space-between; }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); line-height: 1.45; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button { border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--text); border-radius: 12px; padding: 10px 14px; cursor: pointer; font-weight: 800; }
.cookie-actions .accept { background: var(--accent); color: #15100b; border-color: transparent; }
@media (max-width: 820px) {
    .site-header, .site-footer, .cookie-banner { flex-direction: column; align-items: flex-start; }
    .site-nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
    .grid.three { grid-template-columns: 1fr; }
    h1 { font-size: 42px; }
}
