/* ═══════════════════════════════════════════════════
   Vrrrt! Global Styles
   Dark theme · Orange accent · Space Grotesk
   ═══════════════════════════════════════════════════ */

:root {
    --bg: #0a0e17;
    --bg2: #111827;
    --bg3: #1a2035;
    --border: #2a3050;
    --text: #e0e4f0;
    --text2: #8890a8;
    --text3: #5a6280;
    --green: #22c55e;
    --red: #ef4444;
    --blue: #3b82f6;
    --gold: #fbbf24;
    --orange: #f97316;
    --purple: #a855f7;
    --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --mono: 'Space Mono', 'SF Mono', 'Consolas', monospace;
    --max-w: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

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

/* ─── Nav ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    cursor: pointer;
    text-decoration: none;
}
.nav-logo .v { color: var(--orange); }
.nav-logo .mid { color: #fff; }
.nav-logo .bang { color: var(--orange); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
    background: #ea6c0a;
    text-decoration: none;
    transform: translateY(-1px);
}

.nav-login {
    color: var(--text2) !important;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    padding: 7px 16px;
    border-radius: 8px;
    transition: border-color 0.2s, color 0.2s;
}
.nav-login:hover {
    border-color: var(--text2);
    color: #fff !important;
    text-decoration: none;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

/* ─── Footer ─── */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
    margin-top: 80px;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 280px;
}

.footer-wordmark {
    font-size: 20px;
    font-weight: 800;
}
.footer-wordmark .v { color: var(--orange); }
.footer-wordmark .mid { color: #fff; }
.footer-wordmark .bang { color: var(--orange); }

.footer-tagline {
    font-size: 12px;
    color: var(--text2);
    margin-top: 8px;
    font-style: italic;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text2);
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: var(--text2);
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 32px auto 0;
    padding: 16px 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 11px;
    color: var(--text3);
}

.footer-legal a {
    font-size: 11px;
    color: var(--text3);
    margin-left: 16px;
}

/* ─── Cookie Notice ─── */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
}

.cookie-notice-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-notice-inner p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin: 0;
}

.cookie-notice-inner a {
    color: var(--orange);
    text-decoration: underline;
}

#cookie-accept {
    background: var(--orange);
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

#cookie-accept:hover {
    background: #fb923c;
}

/* ─── Footer Entity + Disclaimer ─── */
.footer-entity {
    font-size: 12px;
    color: var(--text3);
    opacity: 0.7;
    margin-top: 8px;
    text-align: center;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text2);
    opacity: 1.0;
    line-height: 1.7;
    max-width: 720px;
    margin: 16px auto 0;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ─── Inline Disclaimer ─── */
.inline-disclaimer {
    font-size: 12px;
    color: var(--text2);
    opacity: 1.0;
    line-height: 1.6;
    text-align: center;
    padding: 10px 16px;
    margin: 12px auto 0;
    max-width: 720px;
}

.inline-disclaimer a {
    color: var(--orange);
    text-decoration: underline;
}

.inline-disclaimer a:hover {
    opacity: 0.8;
}

/* ─── Results Disclaimer Callout ─── */
.results-disclaimer {
    background: rgba(249, 115, 22, 0.04);
    border-left: 3px solid var(--orange);
    border-radius: 0 6px 6px 0;
    padding: 12px 16px;
    margin: 0 0 24px 0;
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

.results-disclaimer a {
    color: var(--orange);
    text-decoration: underline;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
}
.btn-primary:hover {
    background: #ea6c0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
    text-decoration: none;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--text2);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* ─── Section spacing ─── */
.section {
    padding: 80px 0;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--text2);
    max-width: 560px;
    line-height: 1.6;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: rgba(10, 14, 23, 0.97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        gap: 20px;
    }

    .section-title { font-size: 28px; }
    .section { padding: 56px 0; }

    .footer-inner { flex-direction: column; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal a { margin-left: 0; margin-right: 16px; }

    .cookie-notice-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
