/* ════════════════════════════════════════════════════════════
   HOLD THE LINE — Landing Page Styles
   Military FPS theme: dark olive, amber accents, HUD elements
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    --bg: #0a0d09;
    --bg-2: #10150e;
    --panel: rgba(22, 28, 18, 0.82);
    --panel-border: rgba(158, 172, 122, 0.22);
    --amber: #ffb02e;
    --amber-2: #ff7a18;
    --olive: #8fa662;
    --olive-dark: #4a5c33;
    --green: #4caf50;
    --green-dark: #2e7d32;
    --red: #ff3b30;
    --text: #e9e7da;
    --muted: #a3ac91;
    --mono: "Consolas", "Roboto Mono", monospace;
    --display: "Black Ops One", "Impact", sans-serif;
    --body: "Rajdhani", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--body);
    font-size: 17px;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* subtle global texture */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
}

::selection { background: rgba(255, 176, 46, 0.35); }

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

a { color: var(--amber); text-decoration: none; }
a:hover { color: #ffc95e; }

/* ── Typography helpers ─────────────────────────────────── */
.section-title {
    font-family: var(--display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 10px;
    color: var(--text);
}
.section-title .accent { color: var(--amber); }
.section-sub {
    text-align: center;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 42px;
    font-size: 1.05rem;
    line-height: 1.6;
}
.section-kicker {
    display: block;
    text-align: center;
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 4px;
    color: var(--olive);
    text-transform: uppercase;
    margin-bottom: 8px;
}

section { position: relative; padding: 90px 24px; z-index: 1; }
.container { max-width: 1160px; margin: 0 auto; }

/* hazard stripe divider */
.hazard {
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        #1a1f14 0 16px,
        rgba(255, 176, 46, 0.55) 16px 32px
    );
    opacity: 0.5;
}

/* ── Navbar ─────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: linear-gradient(180deg, rgba(8, 11, 7, 0.95), rgba(8, 11, 7, 0.82));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(158, 172, 122, 0.15);
}
.nav-logo {
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.nav-logo .logo-mark {
    width: 30px; height: 30px;
    flex: 0 0 auto;
}
.nav-logo em { color: var(--amber); font-style: normal; }
.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
}
.nav-links a {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
    padding: 9px 22px;
    background: linear-gradient(90deg, var(--amber), var(--amber-2));
    color: #14100a !important;
    font-weight: 700;
    border-radius: 4px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.nav-cta:hover { filter: brightness(1.1); }
.nav-burger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 4px 8px;
    width: auto;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 55% at 50% -5%, rgba(122, 143, 79, 0.28), transparent 60%),
        radial-gradient(ellipse 70% 60% at 85% 100%, rgba(255, 122, 24, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 55% at 12% 90%, rgba(50, 66, 36, 0.35), transparent 60%),
        linear-gradient(180deg, #0d120b 0%, #0a0d09 100%);
}
.hero::before {
    /* vignette + scanlines */
    content: "";
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(0,0,0,0.12) 0 2px, transparent 2px 5px),
        radial-gradient(ellipse 120% 90% at 50% 50%, transparent 55%, rgba(0,0,0,0.75) 100%);
    pointer-events: none;
}
.hero::after {
    /* animated scan line */
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(255, 176, 46, 0.05), transparent);
    animation: scan 7s linear infinite;
    pointer-events: none;
}
@keyframes scan {
    0% { top: -140px; }
    100% { top: 110%; }
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--olive);
    border: 1px solid rgba(158, 172, 122, 0.35);
    padding: 7px 18px;
    border-radius: 3px;
    margin-bottom: 28px;
    background: rgba(14, 18, 11, 0.6);
}
.hero-tag .blink {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: blink 1.6s ease infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 9vw, 6rem);
    line-height: 1.02;
    margin: 0 0 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #f5f2e4 30%, #cfc9a8 55%, #8d8a6d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 18px rgba(0,0,0,0.6));
}
.hero h1 .line-accent {
    background: linear-gradient(180deg, #ffd061 20%, var(--amber-2) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--muted);
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto 38px;
}
.hero-sub strong { color: var(--text); }

.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 46px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: transform 0.12s ease, filter 0.15s ease, box-shadow 0.15s ease;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    width: auto;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
    background: linear-gradient(90deg, var(--amber), var(--amber-2));
    color: #16110a;
    box-shadow: 0 6px 28px rgba(255, 140, 30, 0.35);
}
.btn-primary:hover { filter: brightness(1.12); box-shadow: 0 8px 34px rgba(255, 140, 30, 0.5); }
.btn-ghost {
    background: rgba(20, 26, 16, 0.7);
    color: var(--text);
    border: 1px solid rgba(158, 172, 122, 0.4);
    clip-path: none;
    border-radius: 4px;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); background: rgba(26, 32, 20, 0.85); }

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid rgba(158, 172, 122, 0.22);
    background: rgba(12, 16, 10, 0.65);
    backdrop-filter: blur(6px);
}
.hero-stat {
    padding: 16px 34px;
    text-align: center;
    border-right: 1px solid rgba(158, 172, 122, 0.22);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--amber);
    letter-spacing: 1px;
}
.hero-stat .lbl {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    animation: bob 2.2s ease infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* ── HUD panel (shared card style) ──────────────────────── */
.hud-panel {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    padding: 30px 28px;
    backdrop-filter: blur(10px);
}
.hud-corner {
    position: absolute;
    width: 16px; height: 16px;
    border: 0 solid var(--amber);
    opacity: 0.8;
    pointer-events: none;
}
.hud-corner.tl { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.hud-corner.tr { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; }
.hud-corner.bl { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; }
.hud-corner.br { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

/* ── Features ───────────────────────────────────────────── */
#features { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.feature-card { transition: transform 0.18s ease, border-color 0.18s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255, 176, 46, 0.45); }
.feature-icon {
    width: 52px; height: 52px;
    margin-bottom: 18px;
    color: var(--amber);
    filter: drop-shadow(0 0 12px rgba(255, 176, 46, 0.35));
}
.feature-card h3 {
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.feature-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.98rem;
}

/* ── Media / gallery ────────────────────────────────────── */
#media { background: var(--bg-2); }
.media-video-wrap {
    position: relative;
    max-width: 880px;
    margin: 0 auto 26px;
    border: 1px solid var(--panel-border);
    background: #05070482;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.media-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.media-placeholder {
    position: absolute; inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background:
        repeating-linear-gradient(-45deg, rgba(158,172,122,0.05) 0 14px, transparent 14px 28px),
        radial-gradient(ellipse at center, #131810, #0a0d08);
}
.media-placeholder .ph-icon { width: 46px; height: 46px; color: var(--olive); opacity: 0.8; }

.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.screen-slot {
    position: relative;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--panel-border);
    overflow: hidden;
    cursor: pointer;
    background: #0a0d08;
}
.screen-slot img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}
.screen-slot:hover img { transform: scale(1.06); }
.screen-slot .media-placeholder { position: absolute; inset: 0; font-size: 0.68rem; }

/* lightbox */
.lightbox {
    position: fixed; inset: 0;
    z-index: 300;
    background: rgba(4, 6, 3, 0.93);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4vh 4vw;
    cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border: 1px solid var(--panel-border);
    box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}

/* ── Command Center (auth / play) ───────────────────────── */
#play { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}
.hud-panel h2 {
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hud-panel h2::before {
    content: "";
    width: 8px; height: 8px;
    background: var(--amber);
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.tab-switch {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.35);
    padding: 5px;
    border: 1px solid rgba(158, 172, 122, 0.15);
}
.tab-button {
    flex: 1;
    padding: 10px 0;
    border: none;
    background: transparent;
    color: var(--muted);
    font-family: var(--body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
    width: auto;
}
.tab-button.active {
    background: linear-gradient(90deg, var(--amber), var(--amber-2));
    color: #16110a;
}

label {
    display: block;
    font-family: var(--mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 6px;
}
input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(158, 172, 122, 0.25);
    background: rgba(5, 8, 4, 0.7);
    color: var(--text);
    margin: 4px 0 16px;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    transition: border-color 0.15s ease;
}
input:focus { outline: none; border-color: var(--amber); }
input[type="file"] { padding: 8px; font-size: 0.85rem; }

button {
    width: 100%;
    padding: 13px;
    background: linear-gradient(90deg, var(--amber), var(--amber-2));
    border: none;
    font-family: var(--body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #16110a;
    cursor: pointer;
    transition: filter 0.15s ease;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
button:hover { filter: brightness(1.1); }
button:disabled { opacity: 0.35; cursor: not-allowed; filter: none; }

.auth-hint { margin-top: 12px; font-size: 0.9rem; color: var(--muted); }

.play-card { text-align: center; display: flex; flex-direction: column; }
.play-card h2 { justify-content: center; }
.play-card p { color: var(--muted); }
#play-button {
    margin-top: auto;
    padding: 18px 0;
    font-size: 1.25rem;
    letter-spacing: 4px;
    box-shadow: 0 6px 28px rgba(255, 140, 30, 0.3);
}
.token-chip {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(158, 172, 122, 0.15);
    font-family: var(--mono);
    font-size: 0.78rem;
    word-break: break-all;
    color: var(--muted);
}
.token-chip.active { color: var(--olive); border-color: rgba(143, 166, 98, 0.4); }

.logout-section { text-align: center; padding: 16px 0; }
.logout-section p { margin-bottom: 16px; font-size: 1.05rem; }
.logout-button {
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    clip-path: none;
}
.logout-button:hover { background: rgba(255, 59, 48, 0.12); filter: none; }

.profile-card { max-width: 980px; margin: 24px auto 0; }
.profile-card hr {
    margin: 22px 0;
    border: none;
    border-top: 1px solid rgba(158, 172, 122, 0.15);
}
.profile-card h3 {
    font-family: var(--display);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ── Donate ─────────────────────────────────────────────── */
#donate {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(46, 125, 50, 0.12), transparent 60%),
        var(--bg);
}
.donate-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.donate-card {
    position: relative;
    background: linear-gradient(165deg, rgba(16, 26, 14, 0.92) 55%, rgba(10, 32, 13, 0.92));
    border: 1px solid rgba(76, 175, 80, 0.35);
    width: 250px;
    padding: 34px 22px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.donate-card:hover {
    transform: translateY(-6px);
    border-color: rgba(76, 175, 80, 0.7);
    box-shadow: 0 14px 44px rgba(46, 125, 50, 0.3);
}
.donate-card.featured {
    border-color: var(--amber);
    box-shadow: 0 0 34px rgba(255, 176, 46, 0.18);
}
.donate-card .hud-corner { border-color: var(--green); }
.donate-card.featured .hud-corner { border-color: var(--amber); }
.donate-label {
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.donate-icon { width: 64px; height: 64px; color: var(--green); filter: drop-shadow(0 0 14px rgba(76, 175, 80, 0.5)); }
.donate-card.featured .donate-icon { color: var(--amber); filter: drop-shadow(0 0 14px rgba(255, 176, 46, 0.5)); }
.donate-amount {
    font-family: var(--mono);
    color: #9fdca2;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.donate-badge {
    position: absolute;
    top: -12px;
    background: linear-gradient(90deg, var(--amber), var(--amber-2));
    color: #16110a;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.donate-btn {
    background: linear-gradient(90deg, #43a047, var(--green-dark));
    color: #eafbea;
}
.donate-btn:hover { filter: brightness(1.15); }
.donate-card.featured .donate-btn {
    background: linear-gradient(90deg, var(--amber), var(--amber-2));
    color: #16110a;
}
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 36px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-wrap: wrap;
}
.pay-logo {
    height: 30px;
    width: auto;
    opacity: 0.9;
}

/* ── FAQ ────────────────────────────────────────────────── */
#faq { background: var(--bg-2); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--panel-border);
    background: var(--panel);
    margin-bottom: 12px;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-family: var(--mono);
    font-size: 1.3rem;
    color: var(--amber);
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--amber); }
.faq-item .faq-body {
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
    background: #070906;
    border-top: 1px solid rgba(158, 172, 122, 0.15);
    padding: 60px 24px 30px;
    position: relative;
    z-index: 1;
}
.footer-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}
.footer h4 {
    font-family: var(--display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 16px;
}
.footer-brand .nav-logo { margin-bottom: 14px; font-size: 1.05rem; }
.footer p, .footer li {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul a { color: var(--muted); }
.footer ul a:hover { color: var(--amber); }
.footer-requisites {
    font-family: var(--mono);
    font-size: 0.82rem;
    line-height: 1.9;
}
.footer-bottom {
    max-width: 1160px;
    margin: 44px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(158, 172, 122, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.85rem;
}
.footer-pay { display: flex; gap: 14px; align-items: center; }

/* ── Cookie banner ──────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    left: 20px; right: 20px; bottom: 20px;
    z-index: 200;
    max-width: 620px;
    margin: 0 auto;
    background: rgba(14, 18, 11, 0.97);
    border: 1px solid var(--panel-border);
    padding: 20px 24px;
    display: none;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 16px 60px rgba(0,0,0,0.6);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; flex: 1 1 280px; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { width: auto; padding: 10px 20px; font-size: 0.85rem; }
.cookie-decline {
    background: transparent;
    border: 1px solid rgba(158, 172, 122, 0.4);
    color: var(--muted);
    clip-path: none;
}
.cookie-decline:hover { filter: none; border-color: var(--muted); color: var(--text); }

/* ── Toast ──────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 250;
    padding: 14px 22px;
    background: rgba(10, 14, 8, 0.96);
    border: 1px solid var(--panel-border);
    border-left: 3px solid var(--amber);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    max-width: 340px;
}
.toast.success { color: #7ee29a; border-left-color: var(--green); }
.toast.error { color: #ff8d85; border-left-color: var(--red); }

/* ── Legal pages ────────────────────────────────────────── */
.legal-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 140px 24px 90px;
}
.legal-wrap h1 {
    font-family: var(--display);
    font-size: clamp(1.7rem, 5vw, 2.4rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.legal-updated {
    font-family: var(--mono);
    color: var(--olive);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.legal-wrap h2 {
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: 1px;
    margin: 38px 0 14px;
    color: var(--amber);
}
.legal-wrap p, .legal-wrap li {
    color: #c6ccb8;
    line-height: 1.75;
    font-size: 1rem;
}
.legal-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.92rem;
}
.legal-wrap th, .legal-wrap td {
    border: 1px solid rgba(158, 172, 122, 0.25);
    padding: 10px 14px;
    text-align: left;
    color: #c6ccb8;
}
.legal-wrap th { background: rgba(158, 172, 122, 0.08); color: var(--text); }
.legal-back {
    display: inline-block;
    margin-bottom: 30px;
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
    .nav-links {
        position: fixed;
        top: 59px; left: 0; right: 0;
        flex-direction: column;
        background: rgba(8, 11, 7, 0.98);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(158, 172, 122, 0.2);
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-burger { display: block; }
    section { padding: 64px 18px; }
    .hero { padding-top: 110px; }
    .hero-stat { padding: 12px 20px; }
}
