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

:root {
    --bg: #080a0c;
    --surface: #111417;
    --surface-2: #171b1f;
    --border: rgba(255, 255, 255, 0.09);

    --text: #f7f8f9;
    --muted: #92999f;

    --green: #baff29;
    --green-soft: rgba(186, 255, 41, 0.12);

    --max-width: 1180px;
}


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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(186, 255, 41, 0.07),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}


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


.page {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}


/* NAV */

.nav {
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

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


.logo,
.footer-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1.3px;
}


.logo-four,
.footer-logo span {
    color: var(--green);
}


.status {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: var(--green);

    box-shadow: 0 0 12px rgba(186, 255, 41, 0.8);
}


/* HERO */

.hero {
    max-width: 900px;

    padding: 125px 0 130px;
}


.eyebrow {
    margin-bottom: 27px;

    color: var(--green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.16em;
}


.hero h1 {
    max-width: 900px;

    font-size: clamp(55px, 8vw, 104px);
    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -0.065em;
}


.hero h1 span {
    color: var(--green);
}


.hero-copy {
    max-width: 620px;

    margin-top: 34px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.7;
}


/* FAKE SEARCH */

.search-demo {
    width: min(100%, 620px);
    height: 68px;

    margin-top: 48px;

    display: flex;
    align-items: center;

    background: var(--surface);

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

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.32),
        inset 0 1px rgba(255, 255, 255, 0.03);

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


.search-demo:hover {
    transform: translateY(-2px);

    border-color: rgba(186, 255, 41, 0.35);
}


.search-icon,
.search-camera {
    width: 65px;

    display: grid;
    place-items: center;

    flex-shrink: 0;
}


.search-icon svg,
.search-camera svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: var(--muted);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.search-camera svg {
    width: 23px;
    height: 23px;
}


.search-text {
    flex: 1;

    color: #72797f;

    font-size: 15px;

    overflow: hidden;
}


#searchPhrase {
    transition: opacity 0.18s ease;
}


.coming {
    margin-top: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #b3b8bd;

    font-size: 13px;
    font-weight: 600;
}


.pulse {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--green);

    animation: pulse 2s infinite;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(186, 255, 41, 0.45);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(186, 255, 41, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(186, 255, 41, 0);
    }
}


/* FEATURES */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

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


.feature {
    min-height: 255px;

    padding: 38px 35px 45px;

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


.feature:first-child {
    padding-left: 0;
}


.feature:last-child {
    border-right: none;
}


.feature-number {
    margin-bottom: 50px;

    color: var(--green);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.1em;
}


.feature h2 {
    margin-bottom: 12px;

    font-size: 21px;
    letter-spacing: -0.04em;
}


.feature p {
    max-width: 280px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* STATEMENT */

.statement {
    padding: 120px 0;

    text-align: center;
}


.statement p {
    margin-bottom: 18px;

    color: var(--muted);

    font-size: 14px;
}


.statement h2 {
    max-width: 800px;

    margin: auto;

    font-size: clamp(35px, 5vw, 64px);
    line-height: 1.05;

    letter-spacing: -0.055em;
}


.statement h2 span {
    color: var(--green);
}


/* FOOTER */

footer {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: space-between;

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

    color: var(--muted);
}


.footer-logo {
    color: var(--text);
}


footer p {
    font-size: 12px;
}


/* MOBILE */

@media (max-width: 700px) {

    .page {
        width: min(calc(100% - 30px), var(--max-width));
    }


    .nav {
        height: 75px;
    }


    .logo {
        font-size: 21px;
    }


    .status {
        font-size: 10px;
    }


    .hero {
        padding: 82px 0 95px;
    }


    .eyebrow {
        font-size: 10px;
        margin-bottom: 22px;
    }


    .hero h1 {
        font-size: clamp(52px, 15vw, 76px);
    }


    .hero-copy {
        margin-top: 27px;

        font-size: 16px;
        line-height: 1.65;
    }


    .search-demo {
        height: 62px;

        margin-top: 38px;

        border-radius: 15px;
    }


    .search-icon,
    .search-camera {
        width: 52px;
    }


    .search-text {
        font-size: 13px;
    }


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


    .feature,
    .feature:first-child {
        min-height: auto;

        padding: 32px 0;

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


    .feature:last-child {
        border-bottom: none;
    }


    .feature-number {
        margin-bottom: 25px;
    }


    .statement {
        padding: 90px 0;
        text-align: left;
    }


    footer {
        padding: 30px 0;

        flex-direction: column;
        align-items: flex-start;

        gap: 12px;
    }
}