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

html,
body {
    width: 100%;
    height: 100%;
}

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

    background: #fafaf8;
    color: #111;

    overflow: hidden;
}


/* =========================================================
   FONDO CUADRICULADO
   ========================================================= */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    background-image:
    linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px);

background-size: 25px 25px;

    pointer-events: none;
}


/* =========================================================
   PANTALLA PRINCIPAL
   ========================================================= */

.hero {
    position: relative;

    width: 100vw;
    height: 100vh;

    min-height: 650px;

    overflow: hidden;
}


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

header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100px;

    padding: 0 5vw;

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

    z-index: 20;
}


/* LOGO */

/* =========================================================
   MODULAR.CL — LOGO
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    text-decoration: none;
    color: #111;

    height: 44px;
}


/* =========================================================
   ISOTIPO
   ========================================================= */

.brand-mark {
    position: relative;

    width: 48px;
    height: 38px;

    display: block;
}


/* MÓDULO PRINCIPAL */

.block-main {
    position: absolute;

    left: 0;
    top: 0;

    width: 38px;
    height: 38px;

    background: #111;
}


/*
   Generamos el vacío inferior derecho
   utilizando el color del fondo.
*/

.block-main::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 13px;
    height: 13px;

    background: #fafaf8;
}


/* =========================================================
   MÓDULO DESPLAZADO
   ========================================================= */

.block-small {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 13px;
    height: 13px;

    background: #111;
}


/* =========================================================
   NOMBRE
   ========================================================= */

.brand-name {
    font-size: 28px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -1.4px;

    white-space: nowrap;
}

.brand-name span {
    font-weight: 400;
}

/* NAVEGACIÓN */

nav {
    display: flex;
    gap: 40px;
}

nav a {
    position: relative;

    color: #111;
    text-decoration: none;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #111;

    transition: width .25s ease;
}

nav a:hover::after {
    width: 100%;
}


/* =========================================================
   LÍNEAS DE CONSTRUCCIÓN
   ========================================================= */

.grid-line-v {
    position: absolute;

    left: 31%;

    top: 0;

    width: 1px;
    height: 100%;

    background: rgba(0,0,0,.045);
}

.grid-line-h {
    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;
    height: 1px;

    background: rgba(0,0,0,.035);
}


/* =========================================================
   ETIQUETA
   ========================================================= */

.kicker {
    position: absolute;

    left: 5vw;
    top: 23%;

    color: #777;

    font-size: 10px;

    letter-spacing: 3.5px;

    text-transform: uppercase;
}


/* =========================================================
   BLOQUE DE TEXTO
   ========================================================= */

.intro {
    position: absolute;

    left: 5vw;
    top: 29%;

    width: 285px;

    z-index: 10;
}

.intro h1 {
    font-size: 43px;

    line-height: 1.03;

    font-weight: 400;

    letter-spacing: -2.5px;

    margin-bottom: 22px;
}

.intro p {
    width: 250px;

    color: #666;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   BOTONES
   ========================================================= */

.actions {
    display: flex;
    align-items: center;

    gap: 27px;

    margin-top: 32px;
}

.button {
    display: inline-flex;

    height: 43px;

    align-items: center;
    justify-content: center;

    padding: 0 21px;

    text-decoration: none;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 2px;

    transition: .25s ease;
}

.button-primary {
    background: #111;
    color: white;
}

.button-primary:hover {
    transform: translateY(-2px);
}

.button-secondary {
    color: #111;

    border-bottom: 1px solid #111;

    padding-left: 0;
    padding-right: 0;
}


/* =========================================================
   PLANO CENTRAL
   ========================================================= */

.plan {
    position: absolute;

    width: min(58vw, 900px);

    left: 50%;
    top: 52%;

    transform: translate(-42%, -50%);

    z-index: 5;
}

.plan img {
    display: block;

    width: 100%;
    height: auto;

    mix-blend-mode: multiply;

    filter:
        contrast(.97)
        brightness(1.03);
}


/* =========================================================
   INFORMACIÓN DEL MODELO
   ========================================================= */

.model {
    position: absolute;

    right: 5vw;
    top: 36%;

    width: 150px;

    z-index: 10;
}

.model-label {
    color: #777;

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.model-size {
    font-size: 42px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.model-rule {
    width: 30px;
    height: 1px;

    background: #111;

    margin-bottom: 24px;
}

.features {
    list-style: none;
}

.features li {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    color: #444;

    font-size: 11px;
}

.feature-dot {
    width: 5px;
    height: 5px;

    border: 1px solid #111;

    border-radius: 50%;
}


/* =========================================================
   TEXTO INFERIOR IZQUIERDO
   ========================================================= */

.bottom-left {
    position: absolute;

    left: 5vw;
    bottom: 7%;

    color: #777;

    font-size: 9px;

    line-height: 1.8;

    letter-spacing: 3px;

    text-transform: uppercase;

    z-index: 10;
}

.bottom-left strong {
    color: #111;
}


/* =========================================================
   TEXTO INFERIOR DERECHO
   ========================================================= */

.bottom-right {
    position: absolute;

    right: 5vw;
    bottom: 7%;

    color: #888;

    font-size: 9px;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    z-index: 10;
}




/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    body {
        overflow: auto;
    }

    .hero {
        min-height: 900px;
    }

    header {
        padding: 0 6vw;
    }

    .intro {
        left: 6vw;
        top: 17%;
    }

    .plan {
        width: 80vw;

        left: 50%;
        top: 53%;

        transform: translate(-50%, -50%);
    }

    .model {
        right: 6vw;
        top: 27%;
    }

    .bottom-left {
        left: 6vw;
    }

    .bottom-right {
        right: 6vw;
    }
}


@media (max-width: 650px) {

    .hero {
        min-height: 850px;
    }

    header {
        height: 75px;
        padding: 0 7vw;
    }

    .logo {
        font-size: 22px;
    }

    .logo-triangle {
        width: 27px;
        height: 27px;
    }

    nav {
        display: none;
    }

    .kicker {
        left: 7vw;
        top: 13%;
    }

    .intro {
        left: 7vw;
        top: 18%;
        width: 260px;
    }

    .intro h1 {
        font-size: 34px;
    }

    .intro p {
        font-size: 12px;
    }

    .actions {
        margin-top: 22px;
    }

    .plan {
        width: 105vw;

        left: 50%;
        top: 51%;

        transform: translate(-50%, -50%);
    }

    .model {
        right: 7vw;
        top: 72%;
    }

    .model-size {
        font-size: 30px;
    }

    .features {
        display: none;
    }

    .bottom-left {
        left: 7vw;
        bottom: 5%;
    }

    .bottom-right {
        display: none;
    }


    .grid-line-v {
        display: none;
    }
}
