@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');
:root {
    --red: #c0392b;
    --red-bright: #e74c3c;
    --red-dark: #7b1c12;
    --bg: #070707;
    --bg2: #0e0e0e;
    --bg3: #141414;
    --bg4: #1a1a1a;
    --text: #f0f0f0;
    --muted: #777;
    --muted2: #aaa;
    --border: rgba(192, 57, 43, 0.2);
    --border2: rgba(255, 255, 255, 0.06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    min-height: 100vh;
    /* SCROLLBAR */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: url('pointer.png'), default;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 2px;
}


/* ── NAV ── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 5vw, 60px);
    background: rgba(7, 7, 7, 0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--red-bright);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo em {
    color: rgba(255, 255, 255, 0.74);
    font-style: normal;
    font-size: 14px;
    letter-spacing: 3px;
    margin-left: 4px;
}

.nav-logo:hover {
    cursor: url('link.png'), default;
}

.weisetext {
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 2px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    cursor: url('link.png'), default;
}

.nav-links a.active {
    color: var(--red-bright);
}

.nav-cta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    border: none;
    padding: 8px 18px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.nav-cta:hover {
    background: var(--red-bright);
    cursor: url('link.png'), default;
}


/* HAMBURGER */

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: url('link.png'), default;
    padding: 4px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--muted2);
    transition: all .3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* MOBILE MENU */

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    z-index: 190;
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(16px);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted2);
    text-decoration: none;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border2);
    transition: color .2s;
}

.mobile-menu a:hover {
    color: var(--red-bright);
}

.mobile-menu a.active {
    color: var(--red-bright);
}

.mobile-menu .m-cta {
    margin-top: 12px;
    color: #fff;
    background: var(--red);
    text-align: center;
    padding: 14px;
    border-bottom: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}


/* PAGE WRAPPER */

.page {
    padding-top: 60px;
}


/* ── SECTION BASICS ── */

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 60px);
}

.section-full {
    padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 60px);
}

.s-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--red-bright);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.s-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: 4px;
    color: #fff;
    line-height: 1;
    margin-bottom: 14px;
}

.s-sub {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
}


/* DIVIDER */

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
    opacity: .15;
    margin: 0;
}


/* ── BUTTONS ── */

.btn {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 32px;
    cursor: url('link.png'), default;
    border: none;
    transition: background .2s, transform .15s, color .2s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-red {
    color: #fff;
    background: var(--red);
}

.btn-red:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--muted2);
    background: transparent;
    border: 1px solid var(--border2);
    clip-path: none;
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red-bright);
    transform: translateY(-2px);
}


/* ── REVEAL ANIMATION ── */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.v {
    opacity: 1;
    transform: translateY(0);
}


/* ── FOOTER ── */

footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: clamp(24px, 4vw, 40px) clamp(16px, 5vw, 60px);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--red-bright);
}

.footer-logo em {
    color: rgba(255, 255, 255, 0.3);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 3px;
    margin-left: 6px;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--red-bright);
}

.footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
}

@media(max-width:900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

a:hover {
    cursor: url('link.png'), default;
}