@font-face {
    font-family: 'RoadRage';
    src: url('../fonts/Road_Rage.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 8px;
    color: #fff;
}

.logo::after {
    content: ".";
    color: #ff7a1a;
}

nav {
    display: flex;
    gap: 42px;
}

nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    font-size: .9rem;
    transition: .2s;
}

nav a:hover {
    color: #ff7a1a;
}

.header-btn {
    background: #ff7a1a;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    transition: .2s;
}

.header-btn:hover {
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.72) 0%,
            rgba(0,0,0,.42) 45%,
            rgba(0,0,0,.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.25) 0%,
            rgba(0,0,0,.15) 55%,
            rgba(0,0,0,.55) 100%
        ),
        url("../img/hero.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.hero h1 {
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: .88;
    text-transform: uppercase;
    font-weight: 900;
    max-width: 900px;
    text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.hero h1 .brush {
    display: block;
    font-family: 'RoadRage', Arial, sans-serif !important;

    font-size: 1.25em;
    line-height: .9;

    margin-top: 10px;
    margin-bottom: 35px;

    padding-left: 70px;
    padding-right: 30px;

    letter-spacing: 2px;

    transform: translateX(-25px) rotate(-3deg);
    transform-origin: left center;

    background: linear-gradient(
        180deg,
        #ffb15e 0%,
        #ff7a1a 45%,
        #e85d00 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

.hero-line {
    width: 80px;
    height: 2px;
    background: #ff7a1a;
    margin: 36px 0 28px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 500;
    color: #ffffff;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    background: #ff7a1a;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(0,0,0,.15);
    color: white;
    border: 1px solid rgba(255,255,255,.55);
}

.hero-stats {
    margin-top: 55px;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

.stat-card {
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: #ff7a1a;
    margin-bottom: 8px;
}

.stat-card span {
    text-transform: uppercase;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .5px;
}

.section {
    padding: 100px 0;
}

.dark {
    background: #080808;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section p {
    max-width: 850px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.partner-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.card {
    padding: 35px;
    background: #161616;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,.08);
    transition: .2s;
}

.card:hover {
    transform: translateY(-3px);
}

footer {
    padding: 40px;
    text-align: center;
    color: #888;
}

@media(max-width:1000px) {
    nav,
    .header-btn {
        display: none;
    }

    .hero {
        background-position: 65% center;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .hero h1 .brush {
        font-size: 1.35em;
        line-height: .55;
        margin-top: 18px;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }
}