@import url('tailwind.css');
@import url('mainheader.css');
@import url('tooltip.css');

#page .landing .landing-title-block {
    display: inline-block;
    align-self: flex-start; /* Prevents flex stretch so width = content width, allowing subtitle to right-align under ClubSystems */
}

#page .landing .title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(52px, 13.5vw, 72px);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #212529;
}

#page .landing .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(29px, 7.5vw, 40px);
    font-weight: 400;
    font-style: italic;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: right;
    color: #212529;
}

@media (min-width: 768px) {
    #page .landing .title {
        font-size: clamp(40px, 5.5vw, 72px);
    }
    #page .landing .subtitle {
        font-size: clamp(22px, 3vw, 40px);
    }
}

#page .landing .copy {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: #212529;
    max-width: 440px;
}

#page .landing .e-btn {
    height: 4rem;
    font-size: 1.125rem;
}

/* Responsive display utilities for landing page.
   Declared outside @layer so they beat the layered .hidden rule
   from later-loaded Tailwind builds (Communication, M360, Shared). */
@media (min-width: 768px) {
    .md\:hidden { display: none; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Right column — hidden on mobile, flex on desktop.
   Uses a custom class to avoid Tailwind @layer cascade conflicts. */
#page .landing .landing-right-col {
    display: none;
}

@media (min-width: 768px) {
    #page .landing .landing-right-col {
        display: flex;
    }
}
