:root {
    --red: #c0392b;
    --red-soft: #9e2b22;
    --bg: #0a0808;
    --surface: rgba(22, 18, 18, 0.55);
    --surface-2: rgba(28, 22, 22, 0.7);
    --line: rgba(255, 255, 255, 0.07);
    --line-red: rgba(192, 57, 43, 0.35);
    --text: #ece8e8;
    --muted: #9b9494;
    --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    min-height: 100%;
    background: var(--bg);
}

body {
    font-family: 'Manrope', sans-serif;
    background: transparent;
    color: var(--text);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

h1, h2, h3, .logo { font-family: 'Unbounded', sans-serif; }

.bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background-color: var(--bg);
}
.bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(1) brightness(0.34) contrast(1.06);
    transform: translateZ(0);
}
.bg-tint {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 70% at 50% 0%, rgba(192, 57, 43, 0.18), transparent 62%),
        radial-gradient(ellipse 80% 50% at 80% 100%, rgba(120, 30, 25, 0.1), transparent 55%),
        linear-gradient(180deg, rgba(10, 8, 8, 0.08) 0%, rgba(10, 8, 8, 0.28) 55%, rgba(10, 8, 8, 0.48) 100%);
}

body > :not(.bg):not(.bg-tint) {
    position: relative;
    z-index: 2;
}

header {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 7vw;
    background: rgba(10, 8, 8, 0.55);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.logo {
    font-weight: 700; font-size: 1.25rem; letter-spacing: -0.5px;
    text-decoration: none; color: var(--text); cursor: pointer;
}
.logo span { color: var(--red); }

.nav { display: flex; gap: 8px; align-items: center; }
.nav button, .nav a {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-width: 7.6rem;
    color: var(--muted); text-decoration: none; font-family: 'Manrope', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    background: transparent; border: none;
    padding: 10px 18px; border-radius: 6px; cursor: pointer;
    transition: color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.nav button:hover, .nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.nav button.active, .nav a.active { color: #fff; background: rgba(192, 57, 43, 0.18); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 56px 22px 70px; }

.page-head { text-align: center; margin-bottom: 40px; }
.page-head .tagline {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.74rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--red); border-radius: 444px;
    padding: 8px 18px; margin-bottom: 22px;
    background: rgba(122, 29, 18, 0.185);
}
.page-head h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.05; margin-bottom: 12px; }
.page-head h1 .accent { color: var(--red); }
.page-head p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 0.95rem; }

.btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 600;
    padding: 14px 24px; border-radius: 6px;
    border: none; background: rgba(255, 255, 255, 0.04); color: #fff;
    cursor: pointer; text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}
.btn:hover { background: rgba(255, 255, 255, 0.07); }
.btn-primary { background: var(--red); }
.btn-primary:hover { background: #d6483a; box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4); }

a.link { color: var(--red); text-decoration: none; font-weight: 600; }
a.link:hover { text-decoration: underline; }

.footer { padding: 40px 22px; border-top: 1px solid var(--line); text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 26px; margin-bottom: 14px; flex-wrap: wrap; }
.footer-links a { color: #6f6868; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #b2acac; }
.copy { color: #4d4747; font-size: 0.76rem; }

.nav [data-lucide], .btn [data-lucide] { width: 17px; height: 17px; display: inline-flex; }
[data-lucide] svg { width: 100%; height: 100%; display: block; }

@media (max-width: 750px) {
    .wrap { padding: 34px 16px 50px; }
    header { padding: 14px 18px; }
    .nav a { padding: 9px 12px; }
}
