/* reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    }

    body {
    margin: 0;
    font-family: "sole-sans-variable", sans-serif;
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

a {
    cursor: pointer;
}

a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* hero contaienr */
.container-full {
    background-image: url('../images/background.png');
    background-position: center;
    background-size: cover;
}

.hero {
    max-width: 1440px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.hero-inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:  1fr 1fr;
    padding: 2rem;
    gap: clamp(2rem, 6vw, 5rem);
}

/* content */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .08em;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw + 1rem, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin: .5rem 0;
    word-break: break-word;
}

.subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.features li {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: .5rem;
    position: relative;
    padding-left: 1.2rem;
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
}


/* buttons */
.stores {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stores img {
    max-width: 150px;
    height: 44px;
}

.logo {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3.5rem;
}

.logo img {
    width: 150px;
    height: auto;
}


/* image */
.hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    max-width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 3rem 2rem;
    }

    .hero-content {
        align-items: left;
    }

    .hero h1 {
        font-size: 45px;
    }
}
