:root {
    --bg: #09080d;
    --bg-soft: #0e0c14;
    --bg-card: #111019;

    --white: #f5f3fa;
    --muted: #8f8b99;

    --purple: #9b5cff;
    --purple-bright: #b77aff;
    --purple-dark: #6e35c7;

    --border: rgba(255,255,255,0.10);
    --border-light: rgba(255,255,255,0.16);

    --max-width: 1500px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--bg);
    color: var(--white);

    font-family: "Inter", sans-serif;

    overflow-x: hidden;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 88px;

    padding: 0 6vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    position: relative;
    z-index: 20;

    background: rgba(9,8,13,0.92);
}


.logo {
    color: var(--white);

    text-decoration: none;

    font-size: 15px;
    font-weight: 900;

    line-height: .85;

    letter-spacing: -1px;
}


.logo span {
    color: var(--purple);

    opacity: .7;
}


.navbar nav {
    display: flex;

    gap: 38px;
}


.navbar nav a {
    color: var(--muted);

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    transition: .25s;
}


.navbar nav a:hover,
.navbar nav a.active {
    color: var(--white);
}


.partner-link {
    color: var(--white);

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================
   HERO
========================= */

.hero {
    height: 720px;

    position: relative;

    display: flex;
    align-items: flex-end;

    overflow: hidden;
}


.hero-image {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .5;

    filter: saturate(.75);
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9,8,13,.98) 0%,
            rgba(9,8,13,.75) 45%,
            rgba(9,8,13,.25) 100%
        ),
        linear-gradient(
            0deg,
            var(--bg) 0%,
            transparent 55%
        );
}


.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    top: 100px;

    background: var(--purple);

    opacity: .12;

    filter: blur(130px);

    border-radius: 50%;
}


.hero-content {
    position: relative;
    z-index: 2;

    padding: 0 10vw 90px;

    max-width: 1050px;
}


.hero-tag {
    color: var(--purple-bright);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 25px;
}


.hero h1 {
    font-size: clamp(50px, 7vw, 105px);

    line-height: .88;

    letter-spacing: -6px;

    font-weight: 900;
}


.hero h1 span {
    color: var(--purple);

    opacity: .8;
}


.hero-content p {
    margin-top: 30px;

    max-width: 560px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}


.hero-date {
    display: flex;

    gap: 35px;

    margin-top: 40px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255,255,255,.4);
}


/* =========================
   GENERAL
========================= */

.intro,
.products,
.timeline-section {
    max-width: var(--max-width);

    margin: auto;
}


.side-label {
    color: rgba(255,255,255,.3);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;
}


/* =========================
   INTRO
========================= */

.intro {
    padding: 150px 8vw;

    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 70px;

    border-bottom: 1px solid var(--border);
}


.intro-content {
    max-width: 850px;
}


.intro h2 {
    font-size: clamp(45px, 6vw, 82px);

    line-height: .9;

    letter-spacing: -5px;

    margin-bottom: 45px;
}


.intro h2 em {
    display: block;

    font-style: normal;

    color: var(--purple);

    opacity: .7;
}


.intro p {
    max-width: 680px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 22px;
}


/* =========================
   PRODUCTS
========================= */

.products {
    padding: 150px 8vw;
}


.section-heading {
    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 70px;

    margin-bottom: 90px;
}


.section-heading h2 {
    font-size: clamp(45px, 6vw, 82px);

    line-height: .9;

    letter-spacing: -5px;
}


.section-heading h2 span {
    color: var(--purple);

    opacity: .7;
}


.product-row {
    display: grid;

    grid-template-columns: 1.25fr .75fr;

    min-height: 500px;

    border-top: 1px solid var(--border);

    align-items: stretch;
}


.product-row.reverse {
    grid-template-columns: .75fr 1.25fr;
}


.product-row.reverse .product-image {
    order: 2;
}


.product-image {
    overflow: hidden;

    min-height: 450px;

    position: relative;
}


.product-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(155,92,255,.15),
        transparent 55%
    );

    pointer-events: none;
}


.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;
}


.product-row:hover .product-image img {
    transform: scale(1.04);
}


.product-info {
    padding: 80px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-left: 1px solid var(--border);
}


.product-row.reverse .product-info {
    border-left: 0;

    border-right: 1px solid var(--border);
}


.product-number {
    color: var(--purple);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 30px;
}


.product-info h3 {
    font-size: 42px;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.product-info p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    max-width: 400px;

    margin-bottom: 30px;
}


.product-info a {
    color: var(--white);

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================
   TIMELINE
========================= */

.timeline-section {
    padding: 150px 8vw;

    border-top: 1px solid var(--border);

    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 70px;
}


.timeline {
    max-width: 850px;
}


.timeline-item {
    display: grid;

    grid-template-columns: 90px 1px 1fr;

    gap: 30px;

    min-height: 170px;
}


.time {
    color: var(--purple);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.line {
    width: 1px;

    height: 100%;

    background: var(--border);

    position: relative;
}


.line::before {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    background: var(--purple);

    border-radius: 50%;

    left: -3px;
}


.timeline-item h3 {
    font-size: 17px;

    letter-spacing: 1px;

    margin-bottom: 14px;
}


.timeline-item p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    max-width: 600px;
}


/* =========================
   FINAL
========================= */

.final {
    padding: 170px 20px;

    text-align: center;

    border-top: 1px solid var(--border);

    position: relative;

    overflow: hidden;
}


.final::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 300px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: var(--purple);

    opacity: .08;

    filter: blur(120px);
}


.final-small {
    position: relative;

    color: var(--purple);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 30px;
}


.final h2 {
    position: relative;

    font-size: clamp(55px, 9vw, 125px);

    line-height: .85;

    letter-spacing: -7px;
}


.final h2 span {
    display: block;

    color: var(--purple);

    opacity: .7;
}


.final a {
    position: relative;

    display: inline-block;

    margin-top: 45px;

    color: var(--white);

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    border-bottom: 1px solid var(--purple);

    padding-bottom: 10px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 30px 6vw;

    border-top: 1px solid var(--border);

    display: flex;

    justify-content: space-between;

    color: rgba(255,255,255,.3);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .navbar {
        padding: 0 25px;
    }

    .navbar nav {
        display: none;
    }

    .hero {
        height: 650px;
    }

    .hero-content {
        padding: 0 25px 60px;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

    .intro,
    .timeline-section,
    .section-heading {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-left: 25px;
        padding-right: 25px;
    }

    .products {
        padding: 100px 25px;
    }

    .product-row,
    .product-row.reverse {
        display: flex;

        flex-direction: column;
    }

    .product-row.reverse .product-image {
        order: 0;
    }

    .product-image {
        min-height: 300px;
    }

    .product-info {
        padding: 50px 25px;

        border-left: 0;

        border-top: 1px solid var(--border);
    }

    .product-row.reverse .product-info {
        border-right: 0;
    }

    .timeline-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .timeline-item {
        grid-template-columns: 65px 1px 1fr;

        gap: 18px;
    }

    .final {
        padding: 120px 25px;
    }

    footer {
        padding: 25px;

        gap: 20px;

        flex-direction: column;

        align-items: flex-start;
    }

}