/* =========================================================
   VARENDA TECHNOLOGIES LTD.
   COMING SOON WEBSITE
========================================================= */


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

:root {

    --brand: #1457d9;
    --brand-dark: #073a9b;
    --brand-light: #0e9fe8;

    --bg: #f8f9fb;
    --white: #ffffff;

    --black: #101217;
    --dark: #20242b;

    --gray-dark: #5d636d;
    --gray: #858b94;
    --gray-light: #b3b8c0;

    --border: #e2e5e9;

    --heading-font: "Manrope", sans-serif;
    --body-font: "DM Sans", sans-serif;

    --container-width: 1240px;
}


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

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {

    scroll-behavior: smooth;
}


body {

    margin: 0;

    background: var(--bg);

    color: var(--black);

    font-family: var(--body-font);

    -webkit-font-smoothing: antialiased;

    overflow-x: hidden;
}


img {

    display: block;

    max-width: 100%;
}


a {

    color: inherit;

    text-decoration: none;
}


::selection {

    background: var(--brand);

    color: #ffffff;
}


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

.container {

    width: min(
        calc(100% - 80px),
        var(--container-width)
    );

    margin-inline: auto;
}


/* =========================================================
   BACKGROUND
========================================================= */

.background-grid {

    position: fixed;

    inset: 0;

    z-index: -10;

    pointer-events: none;

    opacity: .45;

    background-image:

        linear-gradient(
            to right,
            rgba(16,18,23,.018) 1px,
            transparent 1px
        );

    background-size: 120px 100%;
}


.background-glow {

    position: fixed;

    width: 650px;
    height: 650px;

    right: -260px;
    top: -300px;

    z-index: -9;

    pointer-events: none;

    background:

        radial-gradient(
            circle,
            rgba(20,87,217,.07),
            transparent 68%
        );
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: relative;

    z-index: 50;

    background:

        rgba(
            248,
            249,
            251,
            .94
        );

    border-bottom:

        1px solid
        var(--border);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);
        padding: 50px 0 12px;
}


.nav-inner {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   FULL BRAND LOGO
========================================================= */

.brand {

    width: 260px;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: flex-start;
}


.full-logo {

    width: 245px;

    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================================
   NAV STATUS
========================================================= */

.nav-status {

    display: flex;

    align-items: center;

    gap: 11px;

    color: var(--gray);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.status-dot {

    width: 6px;

    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--brand);

    box-shadow:

        0 0 0 4px
        rgba(20,87,217,.08);
}


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

.hero {

    position: relative;

    padding: 155px 0 160px;

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

    overflow: hidden;
}


.hero-container {

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        310px;

    align-items: center;

    gap: 80px;
}


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

.hero-content {

    max-width: 850px;

    animation:

        heroReveal
        .9s
        cubic-bezier(.16,1,.3,1)
        both;
}


@keyframes heroReveal {

    from {

        opacity: 0;

        transform:
            translateY(28px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}


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

.eyebrow {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 31px;

    color: var(--gray);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .2em;
}


.eyebrow-line {

    width: 38px;

    height: 1px;

    background: var(--brand);
}


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

.hero h1 {

    max-width: 900px;

    margin: 0;

    font-family:
        var(--heading-font);

    font-size:

        clamp(
            56px,
            7.4vw,
            94px
        );

    font-weight: 700;

    line-height: .98;

    letter-spacing: -.075em;
}


.hero h1 span {

    color: var(--brand);
}


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

.hero-description {

    max-width: 610px;

    margin-top: 39px;

    color: var(--gray-dark);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   STATUS
========================================================= */

.coming-status {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 34px;

    padding:

        11px
        15px;

    border:

        1px solid
        var(--border);

    background:

        rgba(
            255,
            255,
            255,
            .55
        );

    color: var(--dark);

    font-size: 10px;

    font-weight: 600;
}


.pulse-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--brand);

    box-shadow:

        0 0 0 4px
        rgba(20,87,217,.08);
}


/* =========================================================
   HERO LOGO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    height: 330px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-logo-ring {

    width: 245px;

    height: 245px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:

        1px solid
        rgba(16,18,23,.10);

    border-radius: 50%;

    background:

        rgba(
            255,
            255,
            255,
            .28
        );
}


.hero-logo-ring::before {

    content: "";

    position: absolute;

    width: 210px;

    height: 210px;

    border:

        1px dashed
        rgba(20,87,217,.18);

    border-radius: 50%;

    animation:

        logoRotate
        25s
        linear
        infinite;
}


@keyframes logoRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/*
   The hero uses the full logo, but keeps it
   visually restrained.
*/

.hero-logo {

    position: relative;

    z-index: 2;

    width: 170px;

    display: flex;

    justify-content: center;

    align-items: center;
}


.hero-logo img {

    width: 100%;

    height: auto;

    object-fit: contain;
}


.hero-visual-label {

    position: absolute;

    bottom: 12px;

    right: 5px;

    color: var(--gray-light);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .2em;
}


/* =========================================================
   SERVICES
========================================================= */

.services {

    padding: 145px 0 160px;

    border-bottom:

        1px solid
        var(--border);
}


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

.services-header {

    display: grid;

    grid-template-columns:

        70px
        minmax(0,1fr)
        330px;

    gap: 45px;

    align-items: start;

    margin-bottom: 80px;
}


.section-number {

    padding-top: 5px;

    color: var(--brand);

    font-family:
        var(--heading-font);

    font-size: 11px;

    font-weight: 700;
}


.section-label {

    margin-bottom: 15px;

    color: var(--gray-light);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .2em;
}


.services-header h2 {

    font-family:
        var(--heading-font);

    font-size:

        clamp(
            38px,
            4.5vw,
            58px
        );

    line-height: 1.07;

    letter-spacing: -.06em;

    font-weight: 700;
}


.services-description {

    padding-top: 4px;

    color: var(--gray-dark);

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   SERVICES LIST
========================================================= */

.services-list {

    border-top:

        1px solid
        var(--border);
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.service {

    position: relative;

    display: grid;

    grid-template-columns:

        70px
        minmax(0,1fr)
        42px;

    gap: 45px;

    align-items: center;

    min-height: 145px;

    padding: 25px 0;

    border-bottom:

        1px solid
        var(--border);

    transition:

        padding
        .35s
        cubic-bezier(.16,1,.3,1);
}


/* Hover background */

.service::before {

    content: "";

    position: absolute;

    left: -20px;

    right: -20px;

    top: 0;

    bottom: 0;

    z-index: -1;

    background: var(--white);

    opacity: 0;

    transform:
        scaleY(.75);

    transition:

        opacity
        .3s ease,

        transform
        .3s ease;
}


.service:hover {

    padding-left: 18px;

    padding-right: 18px;
}


.service:hover::before {

    opacity: 1;

    transform:
        scaleY(1);
}


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

.service-number {

    align-self: start;

    padding-top: 6px;

    color: var(--gray-light);

    font-size: 10px;

    font-weight: 700;

    transition: color .3s ease;
}


.service:hover
.service-number {

    color: var(--brand);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-info h3 {

    margin-bottom: 8px;

    font-family:
        var(--heading-font);

    font-size:

        clamp(
            19px,
            2vw,
            25px
        );

    line-height: 1.25;

    letter-spacing: -.035em;

    font-weight: 650;
}


.service-info p {

    max-width: 650px;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   SERVICE ARROW
========================================================= */

.service-arrow {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:

        1px solid
        var(--border);

    border-radius: 50%;

    color: var(--gray);

    font-size: 14px;

    transition:

        .35s ease;
}


.service:hover
.service-arrow {

    background: var(--brand);

    border-color: var(--brand);

    color: white;

    transform:
        rotate(45deg);
}


/* =========================================================
   FINAL SECTION
========================================================= */

.final-section {

    padding: 150px 0 160px;
}


.final-content {

    text-align: center;
}


.final-label {

    display: inline-block;

    margin-bottom: 26px;

    color: var(--brand);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .2em;
}


.final-content h2 {

    font-family:
        var(--heading-font);

    font-size:

        clamp(
            50px,
            6.5vw,
            82px
        );

    line-height: 1;

    letter-spacing: -.07em;

    font-weight: 700;
}


.final-content h2 span {

    color: var(--brand);
}


.final-content p {

    margin-top: 23px;

    color: var(--gray);

    font-size: 13px;
}


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

.footer {

    padding: 30px 0;

    border-top:

        1px solid
        var(--border);
}


.footer-inner {

    display: grid;

    grid-template-columns:

        1fr
        1fr
        1fr;

    align-items: center;
}


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

.footer-brand {

    width: 190px;

    display: flex;

    align-items: center;
}


.footer-logo {

    width: 180px;

    height: auto;

    display: block;

    object-fit: contain;
}


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

.footer-inner p {

    text-align: center;

    color: var(--gray-light);

    font-size: 10px;
}


.copyright {

    text-align: right;

    color: var(--gray-light);

    font-size: 10px;
}


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

@media (max-width: 1050px) {


    .container {

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


    .hero {

        padding:
            115px
            0
            125px;
    }


    .hero-container {

        grid-template-columns:

            minmax(0,1fr)
            240px;

        gap: 55px;
    }


    .hero-logo-ring {

        width: 200px;

        height: 200px;
    }


    .hero-logo-ring::before {

        width: 170px;

        height: 170px;
    }


    .hero-logo {

        width: 140px;
    }


    .services-header {

        grid-template-columns:

            50px
            minmax(0,1fr)
            270px;

        gap: 30px;
    }


    .service {

        grid-template-columns:

            50px
            minmax(0,1fr)
            40px;

        gap: 30px;
    }

}


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

@media (max-width: 720px) {


    .container {

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


    /* NAV */

    .nav-inner {

        min-height: 70px;
    }


    .brand {

        width: 195px;

        height: 65px;
    }


    .full-logo {

        width: 185px;
    }


    .nav-status {

        display: none;
    }


    /* HERO */

    .hero {

        padding:
            80px
            0
            90px;
    }


    .hero-container {

        display: block;
    }


    .hero h1 {

        font-size:

            clamp(
                48px,
                13vw,
                68px
            );
    }


    .hero-description {

        margin-top: 28px;

        font-size: 14px;

        line-height: 1.8;
    }


    .coming-status {

        margin-top: 28px;

        font-size: 9px;
    }


    .hero-visual {

        display: none;
    }


    /* SERVICES */

    .services {

        padding:
            90px
            0
            100px;
    }


    .services-header {

        display: block;

        margin-bottom: 55px;
    }


    .section-number {

        margin-bottom: 20px;
    }


    .services-description {

        margin-top: 25px;
    }


    .service {

        grid-template-columns:

            32px
            minmax(0,1fr)
            30px;

        gap: 16px;

        min-height: 145px;
    }


    .service:hover {

        padding-left: 10px;

        padding-right: 10px;
    }


    .service-info h3 {

        font-size: 17px;
    }


    .service-info p {

        font-size: 11px;

        line-height: 1.65;
    }


    .service-arrow {

        width: 29px;

        height: 29px;

        font-size: 12px;
    }


    /* FINAL */

    .final-section {

        padding:
            90px
            0
            100px;
    }


    .final-content h2 {

        font-size:

            clamp(
                43px,
                12vw,
                60px
            );
    }


    /* FOOTER */

    .footer {

        padding: 27px 0;
    }


    .footer-inner {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .footer-brand {

        width: 160px;
    }


    .footer-logo {

        width: 155px;
    }


    .footer-inner p {

        text-align: left;
    }


    .copyright {

        text-align: left;
    }

}


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

@media (max-width: 420px) {


    .container {

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


    .brand {

        width: 170px;

        height: 58px;
    }


    .full-logo {

        width: 160px;
    }


    .hero {

        padding:
            70px
            0
            80px;
    }


    .hero h1 {

        font-size: 45px;
    }


    .services {

        padding:
            70px
            0
            80px;
    }


    .services-header h2 {

        font-size: 32px;
    }


    .service {

        grid-template-columns:

            26px
            minmax(0,1fr)
            28px;

        gap: 12px;
    }


    .service-info h3 {

        font-size: 16px;
    }


    .service-info p {

        font-size: 10.5px;
    }


    .final-section {

        padding:
            75px
            0
            85px;
    }


    .final-content h2 {

        font-size: 41px;
    }


    .footer-brand {

        width: 145px;
    }


    .footer-logo {

        width: 140px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;
    }

}