@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #050b14;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}


/* BACKGROUND */

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 75%
    );

    pointer-events: none;
}


.background-glow {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    opacity: .18;
}


.glow-one {
    background: #1677ff;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);
}


.glow-two {
    background: #0758d9;

    right: -300px;
    top: 500px;
}


/* NAVBAR */

.navbar {
    max-width: 1180px;

    margin: auto;

    padding: 28px 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    position: relative;

    z-index: 5;
}


.brand {
    display: flex;

    align-items: center;

    gap: 12px;
}


.brand-icon {
    width: 44px;
    height: 44px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #1684ff,
        #52b4ff
    );

    font-size: 21px;
    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(22,132,255,.3);
}


.brand-text h3 {
    font-size: 16px;

    letter-spacing: .5px;
}


.brand-text span {
    display: block;

    margin-top: 2px;

    color: #65758b;

    font-size: 9px;
}


.launch-badge {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 15px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.025);

    color: #8998ac;

    font-size: 11px;
}


.pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #35dc91;

    box-shadow:
        0 0 0 4px rgba(53,220,145,.08),
        0 0 12px #35dc91;
}


/* HERO */

.hero {
    max-width: 1050px;

    margin: auto;

    padding:
        100px 25px
        110px;

    text-align: center;

    position: relative;

    z-index: 2;
}


.small-badge {
    display: inline-block;

    padding: 8px 14px;

    border-radius: 50px;

    border: 1px solid rgba(62,154,255,.18);

    background: rgba(28,126,255,.07);

    color: #68b5ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.hero h1 {
    max-width: 900px;

    margin: 28px auto 0;

    font-size: clamp(
        48px,
        7vw,
        82px
    );

    line-height: 1.02;

    letter-spacing: -4px;

    font-weight: 800;
}


.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #42a6ff,
            #8bd1ff
        );


    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}


.hero-description {
    max-width: 680px;

    margin: 28px auto 0;

    color: #8190a4;

    font-size: 15px;

    line-height: 1.8;
}


.hero-buttons {
    margin-top: 32px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;
}


.primary-button {
    padding: 14px 21px;

    border-radius: 9px;

    background: #1684ff;

    color: white;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 12px 35px rgba(22,132,255,.22);

    transition: .25s;
}


.primary-button:hover {
    transform: translateY(-2px);

    background: #2990ff;
}


.primary-button span {
    margin-left: 10px;

    font-size: 16px;
}


.limited {
    color: #5f6e82;

    font-size: 10px;
}


/* PRODUCT PREVIEW */

.product-preview {
    max-width: 880px;

    margin: 75px auto 0;

    padding: 7px;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.025);

    box-shadow:
        0 40px 100px rgba(0,0,0,.45);

    text-align: left;
}


.browser-bar {
    height: 42px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.06);
}


.browser-dots {
    display: flex;

    gap: 5px;
}


.browser-dots i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #3b485a;
}


.browser-address {
    color: #536175;

    font-size: 10px;
}


.browser-status {
    color: #39d892;

    font-size: 8px;
}


.preview-content {
    padding: 30px;
}


.preview-header {
    display: flex;

    justify-content: space-between;

    align-items: center;
}


.preview-header small {
    color: #4b9cf2;

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 700;
}


.preview-header h3 {
    margin-top: 6px;

    font-size: 15px;
}


.monitoring {
    color: #46d899;

    font-size: 9px;
}


.monitoring span {
    display: inline-block;

    width: 6px;
    height: 6px;

    margin-right: 5px;

    border-radius: 50%;

    background: #38d994;
}


.feedback-alert {
    margin-top: 25px;

    padding: 18px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.06);

    background: #0b1523;

    display: flex;

    align-items: center;

    gap: 15px;
}


.alert-symbol {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,91,91,.09);

    color: #ff7373;

    font-weight: 800;
}


.alert-details strong {
    font-size: 11px;
}


.alert-details p {
    margin-top: 5px;

    color: #66758a;

    font-size: 9px;
}


.alert-time {
    margin-left: auto;

    color: #566477;

    font-size: 9px;
}


.preview-bottom {
    margin-top: 15px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.preview-bottom div {
    padding: 14px;

    border-radius: 9px;

    background: rgba(255,255,255,.018);

    border: 1px solid rgba(255,255,255,.04);
}


.preview-bottom span {
    display: block;

    color: #526074;

    font-size: 7px;

    letter-spacing: 1px;
}


.preview-bottom strong {
    display: block;

    margin-top: 6px;

    color: #b5c2d1;

    font-size: 10px;
}


/* ABOUT */

.about {
    max-width: 750px;

    margin: auto;

    padding:
        90px 25px
        110px;

    text-align: center;

    position: relative;

    z-index: 2;
}


.section-tag {
    color: #4fa8ff;

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;
}


.about h2 {
    margin-top: 15px;

    font-size: 38px;

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.about p {
    margin-top: 22px;

    color: #7e8da1;

    font-size: 13px;

    line-height: 1.9;
}


/* FEATURES */

.features {
    max-width: 1050px;

    margin: auto;

    padding:
        20px 25px
        110px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

    position: relative;

    z-index: 2;
}


.feature-card {
    padding: 28px;

    min-height: 190px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,.06);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    transition: .25s;
}


.feature-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(48,145,255,.22);
}


.feature-number {
    color: #3b94ed;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


.feature-card h3 {
    margin-top: 30px;

    font-size: 15px;
}


.feature-card p {
    margin-top: 12px;

    color: #68778b;

    font-size: 11px;

    line-height: 1.7;
}


/* LAUNCH SECTION */

.launch-section {
    max-width: 1000px;

    margin: auto;

    padding:
        35px 40px;

    border-radius: 18px;

    border: 1px solid rgba(67,157,255,.13);

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(28,126,255,.11),
            transparent 45%
        ),
        rgba(255,255,255,.018);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.launch-content {
    display: flex;

    align-items: center;

    gap: 18px;
}


.launch-icon {
    width: 48px;
    height: 48px;

    border-radius: 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #1684ff;

    font-size: 20px;

    font-weight: 800;
}


.launch-section h2 {
    margin-top: 8px;

    font-size: 22px;

    letter-spacing: -.5px;
}


.launch-section p {
    margin-top: 6px;

    color: #68778b;

    font-size: 11px;
}


.product-by {
    color: #59697d;

    font-size: 10px;
}


.product-by strong {
    color: #a0afc1;
}


/* FOOTER */

footer {
    max-width: 1050px;

    margin: 100px auto 0;

    padding:
        30px 25px
        40px;

    border-top:
        1px solid rgba(255,255,255,.05);

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #536175;

    font-size: 9px;
}


footer strong {
    color: #9aaabd;

    letter-spacing: .5px;
}


footer span {
    margin-left: 8px;

    color: #465367;
}


footer p {
    font-size: 9px;
}


/* MOBILE */

@media (max-width: 700px) {

    .navbar {
        padding: 20px;
    }

    .launch-badge {
        display: none;
    }

    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 13px;
    }

    .product-preview {
        margin-top: 55px;
    }

    .preview-content {
        padding: 20px;
    }

    .preview-header {
        align-items: flex-start;
    }

    .feedback-alert {
        padding: 14px;
    }

    .alert-time {
        display: none;
    }

    .preview-bottom {
        grid-template-columns: 1fr;
    }

    .about {
        padding-top: 60px;
    }

    .about h2 {
        font-size: 32px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .launch-section {
        margin: 0 20px;

        padding: 28px;

        flex-direction: column;

        align-items: flex-start;
    }

    footer {
        margin-top: 70px;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }
}