/* =========================================
   RESET
========================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

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

    color: #ffffff;

    background: #050505;

    overflow-x: hidden;
}


/* =========================================
   VARIABLES
========================================= */

:root {

    --black: #050505;

    --black-light: #090909;

    --purple: #b000ff;

    --purple-bright: #bb00ff;

    --blue: #3b82f6;

    --blue-light: #60a5fa;

    --cyan: #22d3ee;

    --text: #ffffff;

    --muted: #9ca3af;

    --border:
        rgba(255, 255, 255, 0.09);

    --max-width: 1180px;
}


/* =========================================
   CONTAINER
========================================= */

.container {

    width:
        min(
            calc(100% - 40px),
            var(--max-width)
        );

    margin-left: auto;
    margin-right: auto;
}


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

.navbar {

    height: 82px;

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

    background:
        rgba(5, 5, 5, 0.9);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    position: relative;

    z-index: 20;
}


.nav-inner {

    height: 100%;

    display: flex;

    align-items: center;
}


/* =========================================
   SULIX BRAND
========================================= */

.sulix-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    text-decoration: none;
}


.sulix-logo {

    width: 48px;

    height: 48px;

    object-fit: contain;

    display: block;

    border-radius: 50%;
}


.sulix-name {

    display: flex;

    flex-direction: column;

    line-height: 1;
}


.sulix-name strong {

    font-size: 18px;

    letter-spacing: 2px;
}


.sulix-name span {

    margin-top: 5px;

    color: #8b95a5;

    font-size: 8px;

    letter-spacing: 3px;
}


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

.hero {

    min-height: 700px;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 15% 50%,
            rgba(37, 99, 235, 0.13),
            transparent 35%
        ),

        radial-gradient(
            circle at 85% 50%,
            rgba(176, 0, 255, 0.07),
            transparent 35%
        );
}


.hero-inner {

    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    align-items: center;

    gap: 70px;

    padding:
        80px 0;
}


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

.hero-content {

    max-width: 650px;
}


/* =========================================
   EYEBROW
========================================= */

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        9px 14px;

    border:
        1px solid
        rgba(96, 165, 250, 0.3);

    border-radius: 999px;

    background:
        rgba(37, 99, 235, 0.07);

    color:
        var(--blue-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.eyebrow-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        var(--cyan);

    box-shadow:
        0 0 10px
        rgba(34, 211, 238, 0.9);
}


/* =========================================
   HEADING
========================================= */

h1 {

    margin-top: 25px;

    font-size:
        clamp(50px, 7vw, 82px);

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 800;
}


h1 small {

    display: block;

    margin-top: 14px;

    color:
        var(--blue-light);

    font-size:
        clamp(28px, 4vw, 45px);

    line-height: 1;

    letter-spacing: -2px;
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-description {

    max-width: 590px;

    margin-top: 30px;

    color:
        var(--muted);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================
   DOWNLOAD BUTTON
========================================= */

.download-button {

    width: 270px;

    margin-top: 35px;

    padding:
        15px 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #3b82f6
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 18px 45px
        rgba(37, 99, 235, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.download-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 22px 55px
        rgba(37, 99, 235, 0.4);
}


.download-button strong {

    width: 36px;

    height: 36px;

    border-radius: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255, 255, 255, 0.14);

    font-size: 20px;
}


/* =========================================
   APP INFORMATION
========================================= */

.app-info {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 22px;
}


.info-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        #aeb7c6;

    font-size: 13px;
}


.check {

    width: 17px;

    height: 17px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(34, 211, 238, 0.1);

    color:
        var(--cyan);

    font-size: 10px;
}


/* =========================================
   PROVIDED TEXT
========================================= */

.provided {

    max-width: 540px;

    margin-top: 28px;

    color:
        #68758a;

    font-size: 12px;

    line-height: 1.7;
}


.provided strong {

    color:
        #8b96a8;
}


/* =========================================
   LOGO AREA
========================================= */

.logo-area {

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   GRRGRR OUTER LOGO
========================================= */

.grrgrr-logo {

    width: 440px;

    height: 440px;

    position: relative;

    border-radius: 50%;

    background: #000000;

    border:
        5px solid var(--purple);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow:

        0 0 10px
        rgba(176, 0, 255, 0.9),

        0 0 30px
        rgba(176, 0, 255, 0.45);
}


/* =========================================
   GRRGRR SYMBOL
========================================= */

.grr-symbol {

    width: 175px;

    height: 195px;

    position: relative;

    margin-bottom: 5px;
}


/* =========================================
   TOP SYMBOL
========================================= */

.symbol-top {

    position: absolute;

    width: 100%;

    height: 68%;

    left: 0;

    top: 0;

    border-radius: 50%;

    background:
        var(--purple);
}


/* =========================================
   TOP BLACK HOLE
========================================= */

.top-hole {

    position: absolute;

    width: 52%;

    height: 52%;

    left: 24%;

    top: 24%;

    border-radius: 50%;

    background:
        #000000;
}


/* =========================================
   TOP RIGHT EXTENSION
========================================= */

.top-extension {

    position: absolute;

    width: 35%;

    height: 28%;

    right: -1%;

    top: 0;

    background:
        var(--purple);
}


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

.symbol-bottom {

    position: absolute;

    width: 80%;

    height: 35%;

    left: 10%;

    bottom: 0;

    background:
        var(--purple);

    border-radius:
        0 0 50% 50%;
}


/* =========================================
   BOTTOM BLACK HOLE
========================================= */

.bottom-hole {

    position: absolute;

    width: 57%;

    height: 72%;

    left: 21.5%;

    top: 0;

    background:
        #000000;

    border-radius:
        0 0 50% 50%;
}


/* =========================================
   GRRGRR NAME
========================================= */

.grr-name {

    color:
        #ffffff;

    font-size: 47px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: -2px;
}


/* =========================================
   LIVE
========================================= */

.grr-live {

    margin-top: 16px;

    color:
        #ffffff;

    font-size: 38px;

    font-weight: 400;

    line-height: 1;
}


/* =========================================
   DOWNLOAD INFORMATION SECTION
========================================= */

.download-section {

    padding:
        100px 0;

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

    background:
        #080808;
}


.section-title {

    max-width: 650px;
}


.section-title > span {

    color:
        var(--blue-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.section-title h2 {

    margin-top: 15px;

    font-size:
        clamp(32px, 5vw, 48px);

    letter-spacing: -2px;
}


.section-title p {

    margin-top: 18px;

    color:
        var(--muted);

    line-height: 1.7;
}


/* =========================================
   STEPS
========================================= */

.steps {

    display: grid;

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

    gap: 18px;

    margin-top: 55px;
}


.step {

    padding: 30px;

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

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}


.step:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(176, 0, 255, 0.3);
}


.step-number {

    color:
        var(--purple-bright);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.step h3 {

    margin-top: 30px;

    font-size: 21px;
}


.step p {

    margin-top: 12px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


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

.footer {

    padding:
        35px 0;

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

    background:
        #030303;
}


.footer-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;
}


.footer-logo {

    width: 42px;

    height: 42px;

    object-fit: contain;

    border-radius: 50%;
}


.footer-brand strong {

    font-size: 12px;

    letter-spacing: 1.5px;
}


.footer-brand p {

    margin-top: 5px;

    color:
        #68758a;

    font-size: 11px;
}


.copyright {

    color:
        #68758a;

    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hero-inner {

        grid-template-columns: 1fr;

        gap: 70px;

        text-align: center;
    }


    .hero-content {

        margin-left: auto;

        margin-right: auto;
    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;
    }


    .download-button {

        margin-left: auto;

        margin-right: auto;
    }


    .app-info {

        justify-content: center;
    }


    .provided {

        margin-left: auto;

        margin-right: auto;
    }


    .section-title {

        margin-left: auto;

        margin-right: auto;

        text-align: center;
    }


    .steps {

        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 550px) {

    .container {

        width:
            calc(100% - 28px);
    }


    .navbar {

        height: 72px;
    }


    .sulix-logo {

        width: 42px;

        height: 42px;
    }


    .sulix-name strong {

        font-size: 16px;
    }


    .hero {

        min-height: auto;
    }


    .hero-inner {

        padding:
            55px 0 70px;

        gap: 65px;
    }


    h1 {

        font-size: 51px;

        letter-spacing: -3px;
    }


    h1 small {

        font-size: 28px;

        letter-spacing: -1px;
    }


    .hero-description {

        font-size: 16px;
    }


    .download-button {

        width: 100%;
    }


    .app-info {

        gap: 11px;
    }


    /* GrrGrr logo */

    .grrgrr-logo {

        width: 330px;

        height: 330px;

        border-width: 4px;
    }


    .grr-symbol {

        width: 125px;

        height: 140px;

        margin-bottom: 4px;
    }


    .grr-name {

        font-size: 35px;

        letter-spacing: -1.5px;
    }


    .grr-live {

        margin-top: 12px;

        font-size: 29px;
    }


    .download-section {

        padding:
            75px 0;
    }


    .footer-inner {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 360px) {

    .grrgrr-logo {

        width: 285px;

        height: 285px;
    }


    .grr-symbol {

        width: 105px;

        height: 120px;
    }


    .grr-name {

        font-size: 31px;
    }


    .grr-live {

        font-size: 26px;
    }

}