/* Homepage introduction followed by the team photograph. */
#home.home-sequence {
    display: block;
    position: relative;
    padding: 0 0 48px;
    color: #fff;
}
.home-info-screen {
    display: grid;
    align-items: center;
    min-height: 100svh;
}
.home-info-screen {
    padding: 112px 0 64px;
    scroll-margin-top: 0;
    background: linear-gradient(135deg, #0b131f, #182231);
}
.home-hero-copy { width: min(100%, 800px); min-width: 0; margin-inline: auto; text-align: center; }
.home-hero-copy > div:first-child { margin-bottom: 28px; border-color: #ffffffb3; font-size: 1rem; }
.home-hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}
.home-hero-copy > p { margin-top: 28px; margin-inline: auto; font-size: 1.125rem; line-height: 1.8; }
.home-hero-copy > div:has(> a) { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; }
.home-hero-copy > div:has(> a) > a { width: auto; max-width: 100%; min-height: 48px; padding: 14px 26px; font-size: 1rem; }
.home-hero-copy > div:has(> a) > a:last-child { border-color: #ffffffb3; }
.home-hero-copy > div:last-child { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: none; gap: 12px; margin-top: 30px; }
.home-hero-copy > div:last-child > div { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 12px; border-radius: 18px; }
.home-hero-copy > div:last-child svg { flex: 0 0 auto; width: 20px; height: 20px; margin: 0; }
.home-hero-copy > div:last-child span { font-size: 0.875rem; line-height: 1.5; }

.home-team-screen {
    position: relative;
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    padding: 8px;
    overflow: hidden;
    border: 1px solid #f2a51a73;
    border-radius: 30px;
    background: #ffffff0a;
    box-shadow: 0 20px 54px #00000033, inset 0 1px 0 #ffffff1a;
}
.home-team-screen img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 22px;
}

/* Keep the statistics below the framed photograph. */
#home.home-sequence + section { margin-top: 0 !important; padding-top: 24px; }

@media (max-width: 560px) {
    #home.home-sequence { padding-bottom: 32px; }
    .home-team-screen { width: calc(100% - 24px); padding: 5px; border-radius: 22px; }
    .home-team-screen img { aspect-ratio: 1600 / 1066; object-fit: contain; border-radius: 16px; }
    .home-info-screen { padding: 104px 0 48px; }
    .home-hero-copy > div:first-child { margin-bottom: 24px; font-size: 0.875rem; padding-inline: 12px; }
    .home-hero-copy > p { font-size: 1rem; margin-top: 24px; }
    .home-hero-copy > div:last-child { gap: 8px; }
    .home-hero-copy > div:last-child > div { flex-direction: column; gap: 8px; padding: 12px 6px; text-align: center; }
    .home-hero-copy > div:last-child span { font-size: 0.75rem; }
}
@media (max-height: 550px) and (min-width: 561px) {
    .home-info-screen { padding-block: 104px 40px; }
    .home-hero-copy h1 { font-size: 2rem; }
}
