* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}


/* NAVBAR */

.navbar {
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 32px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
}

.hero-logo-image {
    width: min(330px, 80%);
    height: auto;
    object-fit: contain;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 20px;
    font-weight: 650;
}

.brand-mark {
    width: 44px;
    height: 44px;

    border: 1px solid #d9eeee;
    border-radius: 50%;

    background: #f0fbfb;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Georgia, serif;
    font-style: italic;
    font-size: 14px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #555555;
    text-decoration: none;
    font-size: 15px;

    transition: 0.2s;
}

nav a:hover {
    color: #000000;
}


/* HERO */

.hero {
    min-height: 650px;

    background: #eefafa;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 90px max(32px, calc((100vw - 1140px) / 2));
}

.hero-content {
    max-width: 600px;
}

.eyebrow,
.section-label {
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;

    color: #4e7777;
}

.hero h1 {
    font-size: clamp(58px, 7vw, 96px);
    line-height: 0.98;

    letter-spacing: -4px;

    margin-bottom: 32px;
}

.hero-description {
    max-width: 540px;

    font-size: 19px;
    color: #4c5555;

    margin-bottom: 36px;
}

.button {
    display: inline-block;

    background: #111111;
    color: white;

    padding: 14px 24px;

    border-radius: 100px;

    text-decoration: none;

    font-size: 15px;

    transition: 0.2s;
}

.button:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}


/* BIG LOGO */

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.big-logo {
    position: relative;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    display: flex;
    align-items: center;
    justify-content: center;
}

.big-logo span {
    font-family: Georgia, serif;
    font-size: 110px;
    font-style: italic;
    letter-spacing: -12px;
}

.big-logo small {
    position: absolute;

    right: 50px;
    bottom: 75px;

    font-family: cursive;
    font-size: 28px;

    transform: rotate(-8deg);
}


/* GENERAL SECTIONS */

.section {
    max-width: 1140px;

    margin: auto;

    padding: 130px 32px;
}

.section h2 {
    max-width: 850px;

    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;

    letter-spacing: -2.5px;

    margin-bottom: 35px;
}

.section-text {
    max-width: 700px;

    font-size: 18px;
    color: #606060;
}


/* APPS */

.apps-section {
    border-top: 1px solid #eeeeee;
}

.app-card {
    margin-top: 60px;

    background: #f7fafa;

    border-radius: 26px;

    padding: 38px;

    display: flex;
    gap: 30px;

    align-items: center;

    transition: 0.25s;
}

.app-card:hover {
    transform: translateY(-4px);
}

.app-icon {
    flex-shrink: 0;

    width: 100px;
    height: 100px;

    border-radius: 24px;

    background: linear-gradient(135deg,
            #166ed8,
            #49a5ff);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 40px;
    font-weight: 700;
}

.app-category {
    color: #648080;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.app-info h3 {
    font-size: 29px;

    margin: 5px 0 8px;
}

.app-info p {
    color: #666666;

    max-width: 650px;

    margin-bottom: 15px;
}

.app-info a {
    color: #111111;
    font-weight: 600;
    text-decoration: none;
}


/* CONTACT */

.contact-section {
    border-top: 1px solid #eeeeee;
}

.email {
    display: inline-block;

    margin-top: 30px;

    color: #111111;

    font-size: clamp(22px, 3vw, 36px);

    font-weight: 600;
    text-decoration: none;

    border-bottom: 2px solid #111111;
}


/* FOOTER */

footer {
    max-width: 1140px;

    margin: auto;

    padding: 40px 32px;

    border-top: 1px solid #eeeeee;

    display: flex;
    justify-content: space-between;

    color: #777777;

    font-size: 13px;
}


/* MOBILE */

@media (max-width: 800px) {

    .navbar {
        padding: 20px;
    }

    nav {
        display: none;
    }

    .hero {
        min-height: auto;

        grid-template-columns: 1fr;

        padding: 80px 24px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-logo {
        margin-top: 80px;
    }

    .big-logo {
        width: 250px;
        height: 250px;
    }

    .big-logo span {
        font-size: 80px;
    }

    .big-logo small {
        right: 38px;
        bottom: 57px;
    }

    .section {
        padding: 90px 24px;
    }

    .app-card {
        align-items: flex-start;

        flex-direction: column;

        padding: 28px;
    }

    footer {
        margin: 0 24px;
        padding: 35px 0;

        flex-direction: column;

        gap: 8px;
    }
}