:root {
    --brand-blue: #2A8BEA;
    --brand-light-blue: #20B2FF;
    --brand-cyan: #48CAED;
    --brand-pink: #F73C5C;
    --brand-orange: #FF9D00;
    --brand-white: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-bd: rgba(255, 255, 255, 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body.page {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-white);
    background-color: var(--brand-blue);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page__main {
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
}

.container {
    width: 100%;
    max-width: 760px
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-bd);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.brand {
    text-align: center;
    margin-bottom: 18px
}

.brand__logo {
    display: inline-block;
    height: auto;
    max-width: 280px;
    width: 60vw
}

.brand__descriptor {
    margin: 8px 0 0;
    font-size: 1.125rem;
    letter-spacing: .02em;
    opacity: .92
}

.contacts__title,
.company__title,
.marketplaces__title {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.contacts {
    margin-top: 10px
}

.contacts__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.contacts__item {
    margin: 10px 0
}

.contacts__label {
    font-weight: 700;
    margin-right: 8px;
    white-space: nowrap
}

.contacts__value {
    color: var(--brand-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contacts__value:hover {
    text-decoration-thickness: 2px
}

.contacts__value:focus-visible {
    outline: 2px solid var(--brand-light-blue);
    outline-offset: 2px
}

.contacts__note {
    display: inline-block;
    margin-left: 8px;
    opacity: .85;
    font-size: .95rem
}

.company {
    margin-top: 14px
}

.company__line {
    margin: 6px 0
}

.company__label {
    font-weight: 700;
    margin-right: 6px
}

.marketplaces {
    margin-top: 18px
}

.marketplaces__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.marketplaces__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
}

.marketplaces__icon-box {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-white);
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

.marketplaces__icon {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}

.marketplaces__link {
    color: var(--brand-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.marketplaces__link:hover {
    text-decoration-thickness: 2px
}

.meta {
    margin-top: 22px;
}

.meta__copy {
    display: block;
    opacity: .9;
}

.meta__brand {
    font-weight: 700;
}

.meta__legal {
    margin-top: 4px;
    opacity: .9;
    font-weight: 700;
}

@media (min-width:768px) {
    .brand__descriptor {
        font-size: 1.25rem
    }

    .contacts__title,
    .company__title,
    .marketplaces__title {
        font-size: 1.375rem
    }

    .card {
        padding: 28px 24px
    }
}