
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #070809;
    --bg2: #0c0e10;
    --text: #f2f3f3;
    --muted: #72777d;
    --line: rgba(255,255,255,.09);

    --accent: #c6ff00;
    --accent-soft: rgba(198,255,0,.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);

    font-family: Inter, Arial, sans-serif;

    min-height: 100vh;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ==================================================
   NOISE
================================================== */

.noise {
    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 100;

    opacity: .035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ==================================================
   HEADER
================================================== */

.header {
    height: 88px;

    max-width: 1440px;

    margin: auto;

    padding: 0 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid var(--line);
}

.logo {
    display: flex;

    align-items: center;

    gap: 13px;
}

.logo-icon {
    width: 37px;
    height: 37px;

    display: flex;

    justify-content: center;
    align-items: center;

    background: var(--accent);

    color: #000;

    font-size: 20px;

    font-weight: 900;

    transform: skew(-8deg);
}

.logo strong {
    display: block;

    font-size: 16px;

    letter-spacing: 4px;
}

.logo span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 7px;

    letter-spacing: 2px;
}

.header-right {
    display: flex;

    align-items: center;

    gap: 35px;

    font-size: 9px;

    letter-spacing: 2px;
}

.live {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--accent);
}

.live i {
    width: 6px;
    height: 6px;

    display: block;

    background: var(--accent);

    border-radius: 50%;

    box-shadow: 0 0 15px var(--accent);

    animation: pulse 1.5s infinite;
}

.year {
    color: var(--muted);
}

@keyframes pulse {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }

}


/* ==================================================
   TICKER
================================================== */

.ticker {
    height: 39px;

    overflow: hidden;

    border-bottom: 1px solid var(--line);

    white-space: nowrap;
}

.ticker-track {
    height: 100%;

    display: inline-flex;

    align-items: center;

    gap: 28px;

    padding-left: 20px;

    color: #777c82;

    font-size: 9px;

    letter-spacing: 1.5px;

    animation: ticker 30s linear infinite;
}

.ticker-track span {
    color: var(--accent);

    font-weight: 800;
}

.ticker-track b {
    color: #363a3e;
}

@keyframes ticker {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* ==================================================
   HERO
================================================== */

.hero {
    max-width: 1440px;

    min-height: 690px;

    margin: auto;

    padding: 75px 40px 50px;

    display: grid;

    grid-template-columns: 45% 55%;

    align-items: center;
}


/* ==================================================
   HERO TEXT
================================================== */

.hero-left {
    position: relative;

    z-index: 5;
}

.section-label {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 27px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.section-label span {
    width: 30px;
    height: 2px;

    background: var(--accent);
}

h1 {
    font-size: clamp(65px, 8vw, 120px);

    line-height: .82;

    letter-spacing: -7px;

    font-weight: 900;
}

h1 em {
    color: var(--accent);

    font-style: normal;
}

.hero-title-outline {
    margin-top: 14px;

    font-size: clamp(35px, 4vw, 62px);

    line-height: .9;

    letter-spacing: -3px;

    font-weight: 900;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,.3);
}

.hero-description {
    max-width: 480px;

    margin-top: 35px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* ==================================================
   TELEGRAM
================================================== */

.telegram {
    position: relative;

    display: flex;

    align-items: center;

    width: 300px;

    height: 75px;

    margin-top: 35px;

    padding: 10px;

    background: var(--accent);

    color: #000;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.telegram:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(198,255,0,.18);
}

.telegram-plane {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #050606;

    color: var(--accent);

    border-radius: 50%;

    font-size: 19px;

    transform: rotate(-8deg);
}

.telegram-content {
    display: flex;

    flex-direction: column;

    margin-left: 14px;
}

.telegram-content small {
    margin-bottom: 4px;

    font-size: 7px;

    letter-spacing: 2px;

    opacity: .55;
}

.telegram-content strong {
    font-size: 13px;

    letter-spacing: .5px;
}

.telegram-arrow {
    margin-left: auto;

    margin-right: 10px;

    font-size: 25px;

    transition: transform .25s ease;
}

.telegram:hover .telegram-arrow {
    transform: translate(4px,-4px);
}

.telegram-line {
    position: absolute;

    left: 0;
    bottom: -5px;

    width: 55%;

    height: 1px;

    background: #fff;

    opacity: .5;
}


/* ==================================================
   CAR SCENE
================================================== */

.hero-right {
    height: 580px;

    position: relative;
}

.scene {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


/* background grid */

.scene::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 70%
        );
}


/* circles */

.scene::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 0 0 80px rgba(255,255,255,.015),
        0 0 0 160px rgba(255,255,255,.008);
}


/* labels */

.scene-label {
    position: absolute;

    z-index: 10;

    color: #575d62;

    font-size: 8px;

    letter-spacing: 3px;
}

.scene-label.top {
    top: 10px;
    left: 10px;
}

.scene-label.bottom {
    right: 20px;
    bottom: 15px;
}

.coordinates {
    position: absolute;

    right: 15px;
    top: 15px;

    z-index: 5;

    color: #44494e;

    font-size: 8px;

    line-height: 1.7;

    letter-spacing: 2px;

    text-align: right;
}


/* ==================================================
   SPEED
================================================== */

.speed {
    position: absolute;

    width: 450px;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(198,255,0,.5),
        transparent
    );

    transform: rotate(-10deg);

    opacity: .4;
}

.speed-1 {
    top: 180px;
    left: 0;
}

.speed-2 {
    top: 220px;
    left: 50px;
}

.speed-3 {
    top: 260px;
    left: -40px;
}


/* ==================================================
   CAR
================================================== */

.car {
    position: absolute;

    width: 550px;
    height: 230px;

    left: 50%;
    top: 50%;

    transform:
        translate(-47%,-50%)
        perspective(600px)
        rotateY(-5deg);

    transition:
        transform .6s cubic-bezier(.2,.8,.2,1);
}

.scene:hover .car {
    transform:
        translate(-47%,-50%)
        perspective(600px)
        rotateY(-5deg)
        translateX(35px);
}


/* body */

.body {
    position: absolute;

    left: 30px;
    bottom: 30px;

    width: 490px;
    height: 105px;

    background:
        linear-gradient(
            160deg,
            #25292d,
            #0e1012 55%,
            #181b1e
        );

    border-radius:
        50px 110px 35px 30px;

    border:
        1px solid rgba(255,255,255,.17);

    box-shadow:
        inset 0 10px 30px rgba(255,255,255,.03),
        0 30px 50px rgba(0,0,0,.8);
}


/* roof */

.roof {
    position: absolute;

    left: 145px;
    top: 55px;

    width: 240px;
    height: 105px;

    background:
        linear-gradient(
            130deg,
            #202429,
            #080a0c
        );

    transform:
        skewX(-20deg);

    border-radius: 70px 90px 5px 5px;

    border-top: 1px solid rgba(255,255,255,.17);
}


/* windshield */

.windshield {
    position: absolute;

    left: 177px;
    top: 68px;

    width: 170px;
    height: 73px;

    background:
        linear-gradient(
            120deg,
            #090b0d,
            #1a2025
        );

    transform: skewX(-20deg);

    border:
        1px solid rgba(255,255,255,.12);
}


/* hood */

.hood {
    position: absolute;

    left: 345px;
    bottom: 87px;

    width: 160px;
    height: 55px;

    background: #111417;

    border-top:
        1px solid rgba(255,255,255,.14);

    transform: skewX(-12deg);

    border-radius: 5px 40px 0 0;
}


/* lights */

.front-light {
    position: absolute;

    z-index: 3;

    width: 42px;
    height: 12px;

    background: var(--accent);

    border-radius: 50%;

    box-shadow:
        0 0 10px var(--accent),
        0 0 35px var(--accent),
        0 0 70px rgba(198,255,0,.5);

    transform: skewX(-20deg);

    animation: headlights 2.5s infinite;
}

.left-light {
    right: 25px;
    bottom: 91px;
}

.right-light {
    right: 63px;
    bottom: 97px;

    opacity: .7;
}

@keyframes headlights {

    0%, 100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.6);
    }

}


/* wheels */

.wheel {
    position: absolute;

    z-index: 5;

    width: 82px;
    height: 82px;

    bottom: 0;

    background:
        radial-gradient(
            circle,
            #111 0 20%,
            #292d30 21% 30%,
            #080909 31% 57%,
            #222 58% 62%,
            #050606 63%
        );

    border-radius: 50%;

    border: 4px solid #080909;

    box-shadow:
        0 5px 20px #000;
}

.left-wheel {
    left: 90px;
}

.right-wheel {
    right: 65px;
}


/* wheel light */

.wheel-light {
    position: absolute;

    z-index: 6;

    bottom: 28px;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    border: 2px solid var(--accent);

    box-shadow:
        0 0 15px rgba(198,255,0,.3);
}

.left-wheel-light {
    left: 121px;
}

.right-wheel-light {
    right: 96px;
}


/* ==================================================
   GLOW
================================================== */

.car-glow {
    position: absolute;

    width: 420px;
    height: 140px;

    left: 50%;
    top: 58%;

    transform: translate(-50%,-50%);

    background: var(--accent);

    opacity: .1;

    filter: blur(90px);
}


/* ==================================================
   HEADLIGHT FLARES
================================================== */

.flare {
    position: absolute;

    width: 250px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--accent),
        transparent
    );

    opacity: .25;

    z-index: 7;
}

.flare-left {
    right: 100px;
    top: 57%;
}

.flare-right {
    right: 40px;
    top: 61%;

    width: 180px;
}


/* ==================================================
   NUMBER
================================================== */

.car-number {
    position: absolute;

    right: 30px;
    bottom: 35px;

    font-size: 150px;

    font-weight: 900;

    color: rgba(255,255,255,.025);

    line-height: 1;
}


/* ==================================================
   FEATURES
================================================== */

.features {
    max-width: 1440px;

    margin: auto;

    padding: 0 40px;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    border-top: 1px solid var(--line);
}

.feature {
    min-height: 145px;

    padding: 30px;

    display: flex;

    align-items: center;

    gap: 25px;

    border-right: 1px solid var(--line);

    transition:
        background .25s ease,
        padding .25s ease;
}

.feature:first-child {
    border-left: 1px solid var(--line);
}

.feature:hover {
    background: var(--bg2);

    padding-left: 35px;
}

.feature-number {
    color: var(--accent);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.feature-content {
    flex: 1;
}

.feature h3 {
    font-size: 13px;

    letter-spacing: 3px;

    margin-bottom: 7px;
}

.feature p {
    color: var(--muted);

    font-size: 11px;
}

.feature-arrow {
    color: #555a5f;

    font-size: 20px;

    transition: .25s;
}

.feature:hover .feature-arrow {
    color: var(--accent);

    transform: translateX(5px);
}


/* ==================================================
   BOTTOM
================================================== */

.bottom {
    max-width: 1440px;

    margin: auto;

    min-height: 300px;

    padding: 90px 40px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;
}

.bottom-big {
    font-size: clamp(40px,6vw,75px);

    line-height: .85;

    font-weight: 900;

    letter-spacing: -4px;
}

.bottom-big span {
    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,.3);
}

.bottom-telegram {
    padding: 15px 22px;

    border: 1px solid var(--line);

    font-size: 10px;

    letter-spacing: 3px;

    transition: .25s;
}

.bottom-telegram span {
    margin-left: 25px;

    color: var(--accent);

    font-size: 18px;
}

.bottom-telegram:hover {
    border-color: var(--accent);

    background: var(--accent-soft);
}


/* ==================================================
   FOOTER
================================================== */

footer {
    max-width: 1440px;

    margin: auto;

    padding: 25px 40px;

    border-top: 1px solid var(--line);

    display: flex;

    justify-content: space-between;

    color: #44494d;

    font-size: 8px;

    letter-spacing: 2px;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 900px) {

    .header {
        height: 75px;

        padding: 0 20px;
    }

    .header-right {
        gap: 15px;
    }

    .year {
        display: none;
    }

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

        padding:
            60px
            20px
            20px;
    }

    h1 {
        letter-spacing: -4px;
    }

    .hero-title-outline {
        font-size: 30px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-right {
        height: 400px;

        margin-top: 30px;
    }

    .car {
        transform:
            translate(-50%,-50%)
            scale(.72);
    }

    .scene:hover .car {
        transform:
            translate(-50%,-50%)
            scale(.72)
            translateX(15px);
    }

    .features {
        grid-template-columns: 1fr;

        padding: 0 20px;
    }

    .feature {
        border-left: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .bottom {
        min-height: 230px;

        padding: 60px 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }

    footer {
        padding: 25px 20px;

        flex-direction: column;

        gap: 10px;
    }

}
