* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #08090b;
    --text: #f4f4f5;
    --muted: #9a9ca3;
    --line: rgba(255,255,255,0.10);
    --accent: #ffffff;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background-color: #08090b;
    background-image: url("fondo_tech.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    width: min(1180px, calc(100% - 60px));
    margin: auto;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 38px 0 30px;
}


/* HEADER */

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.logo span {
    font-weight: 400;
    color: #a8a8ad;
}

.status {
    border: 1px solid var(--line);
    padding: 9px 14px;
    border-radius: 30px;

    font-size: 11px;
    letter-spacing: 1.5px;
    color: #bfc0c5;

    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #8cffb0;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(140,255,176,0.7);
}


/* CONTENT */

.content {
    max-width: 900px;
    padding: 80px 0;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    color: #777980;
    margin-bottom: 28px;
}

h1 {
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -5px;
    font-weight: 700;

    margin-bottom: 42px;
}

h1 span {
    display: block;
    color: #777980;
}

.description {
    max-width: 720px;

    font-size: 20px;
    line-height: 1.65;

    color: #a6a7ad;

    margin-bottom: 18px;
}

.description strong {
    color: #eeeeef;
    font-weight: 500;
}

.highlight {
    max-width: 680px;

    margin-top: 38px;

    padding-left: 22px;

    border-left: 1px solid #55565b;

    font-size: 18px;
    line-height: 1.7;

    color: #d6d6d8;
}


/* TECHNOLOGIES */

.technologies {
    display: flex;
    align-items: center;

    margin-top: 65px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    padding: 25px 0;
}

.tech {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tech span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.tech small {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #696a70;
}

.separator {
    width: 1px;
    height: 30px;

    background: var(--line);

    margin: 0 35px;
}


/* FOOTER */

footer {
    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid var(--line);

    font-size: 11px;
    letter-spacing: 1px;

    color: #66676d;
}

footer strong {
    color: #a4a5aa;
    font-weight: 500;
}


/* MOBILE */

@media (max-width: 700px) {

    .container {
        width: min(100% - 36px, 1180px);
        padding-top: 25px;
    }

    .status {
        font-size: 9px;
        padding: 8px 10px;
    }

    .content {
        padding: 60px 0;
    }

    h1 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .description {
        font-size: 17px;
    }

    .highlight {
        font-size: 16px;
    }

    .technologies {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .separator {
        display: none;
    }

    footer {
        flex-direction: column;
        gap: 12px;
    }
}