:root {
    --night-black: #011422;
    --blazer-blue: #002b4b;
    --own-blue: #32a1b2;
    --own-secondary-blue: #7ac3cc;
    --pale-grey: #f8f8f8;
    --blue-grey: #adb3b7;
    --iron-red: #8e3241;
    --muted: #beccd8;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
    background: var(--night-black);
}

body {
    margin: 0;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    color: var(--pale-grey);
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--own-secondary-blue);
}

a:focus-visible {
    outline: 2px solid var(--own-blue);
    outline-offset: 3px;
}

.page {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    padding: 56px 0 48px;
}

.disc {
    width: min(320px, 80vw);
    justify-self: center;
    order: -1;
}

.wordmark {
    margin: 0;
    font-weight: 200;
    font-size: clamp(2.6rem, 9vw, 5rem);
    line-height: 1;
    letter-spacing: 0.16em;
    margin-right: -0.16em;
}

.rule {
    width: 136px;
    height: 3px;
    margin: 28px 0 24px;
    background: var(--own-blue);
    border: 0;
}

.tagline {
    margin: 0;
    color: var(--own-secondary-blue);
    font-size: 0.95rem;
    letter-spacing: 0.22em;
}

.pitch {
    max-width: 34em;
    margin-top: 32px;
    color: var(--muted);
}

.pitch p {
    margin: 0 0 12px;
}

.pitch .lead {
    margin-bottom: 16px;
    color: var(--pale-grey);
    font-size: 1.25rem;
}

.stores {
    --badge-height: 52px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.store {
    display: block;
    height: var(--badge-height);
    overflow: hidden;
    line-height: 0;
}

.store img {
    display: block;
    width: auto;
}

.badge-apple {
    height: var(--badge-height);
}

.badge-google {
    height: calc(var(--badge-height) * 250 / 168);
    margin: calc(var(--badge-height) * -41 / 168);
}

.band {
    background: var(--blazer-blue);
    padding: 40px 0 44px;
}

.band h2 {
    margin: 0 0 20px;
    color: var(--own-secondary-blue);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.22em;
}

.channels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.channels a {
    color: var(--pale-grey);
    letter-spacing: 0.04em;
}

.masthead {
    padding: 28px 0 0;
}

.masthead-wordmark {
    color: var(--pale-grey);
    font-weight: 200;
    font-size: 1.5rem;
    letter-spacing: 0.16em;
    text-decoration: none;
}

.published {
    max-width: 760px;
    padding: 40px 0 56px;
    color: var(--muted);
}

.published h1 {
    margin: 0 0 28px;
    color: var(--pale-grey);
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    font-weight: 300;
    line-height: 1.2;
}

.published h1::after {
    content: "";
    display: block;
    width: 96px;
    height: 3px;
    margin-top: 20px;
    background: var(--own-blue);
}

.published h2 {
    margin: 40px 0 12px;
    color: var(--own-secondary-blue);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.published strong {
    color: var(--pale-grey);
    font-weight: 600;
}

.published ul {
    padding-left: 1.25em;
}

.published li {
    margin-bottom: 6px;
}

footer {
    margin-top: auto;
    padding: 32px 0 calc(32px + env(safe-area-inset-bottom));
    color: var(--blue-grey);
    font-size: 0.85rem;
}

footer ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

footer a {
    color: var(--blue-grey);
}

footer p {
    margin: 0;
}

@media (min-width: 800px) {
    .hero {
        grid-template-columns: 1.1fr 1fr;
        gap: 56px;
        padding: 96px 0 88px;
    }

    .disc {
        width: 100%;
        max-width: 420px;
        order: 0;
        justify-self: end;
    }
}
