body {
    background-color: #181A1F;
    width: 100dvw;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


#layout {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    padding: 21px;
}
#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 528px;
}

/* check-in page */
.checkin-container {
    max-width: 1180px;
    width: 100%;
}

.checkin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.checkin-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: linear-gradient(180deg, #403F43 0%, #020204 100%);
}

.brand-wordmark {
    height: 30px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
}

.headline {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.headline-unified {
    font-weight: 700;
    font-style: Bold;
    font-size: 80px;
    line-height: 140%;
    letter-spacing: 0px;
    color: rgba(4, 177, 125, 1);
}

.headline-sub {
    font-weight: 400;
    font-size: 42px;
    line-height: 140%;
    letter-spacing: 0px;
    color: white;
}

@media (max-width: 1024px) {
    .headline-unified { font-size: 43.2px; }
    .headline-sub { font-size: 25.92px; }
}

.store-badges {
    display: flex;
    gap: 20px;
    padding-top: 29px;
}

.store-badge {
    width: 180px;
    height: 60px;
    object-fit: cover;
}

.checkin-hero .hero-image {
    width: 410px;
    height: auto;
}

/* responsive */
@media (max-width: 1024px) {
    .checkin {
        gap: 54px;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .checkin-content { align-items: center; }
    .headline {
        font-size: 26px;
    }
    .brand-icon {
        width: 43.2px;
        height: 43.2px;
        border-radius: 12px;
    }
    .brand-wordmark { height: 16.2px; }
    .store-badges { gap: 10.8px; padding-top: 15.66px; }
    .store-badge { width: 97.2px; height: 32.4px; }
    .checkin-hero .hero-image { width: 221.4px; }
}

h1#app-title {
    margin: 0;
    color: white;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 600;
    @media(max-width: 1024px) {
        font-size: 36px;
    }
    @media(max-width: 576px) {
        font-size: 24px;
    }
}

#app-logo {
    width: 120px;
    height: 120px;
}

img#app-illustrator {
    width: 100%;
    height: auto;
}

@media (max-width: 1920px) {

}

@media (max-width: 1440px) {

}

@media (max-width: 1280px) {
    #container {
        max-width: 476px;
        gap: 27px;
    }
    #app-logo {
        width: 108px;
        height: 108px;
    }
}

@media (max-width: 1024px) {
    #container {
        max-width: 476px;
    }
}

@media (max-width: 768px) {
    #container {
        max-width: 476px;
    }
    #app-logo {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 576px) {
    #container {
        gap: 18px;
    }
}

@media (max-width: 430px) {
    #container {
        max-width: 317px;
    }
}