/* Container Spacing */
.home-landing-page {
    min-height: 80vh;
    padding: 2rem 1rem;
}

/* Outer Hero Card Container */
.hero-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 24px;
    max-width: 680px;
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

/* Header Tag / Badge */
.header-tag.welcome-badge {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* Mascot Wrapper */
.mascot-box img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

/* Typography */
.hero-title {
    font-family: 'Annie Use Your Telescope', serif;
    font-size: clamp(1.8rem, 6vw, 2.75rem); 
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.color-run span {
    display: inline-block;
    margin-right: 0.15em;
}

.hero-subtitle {
    color: #64748b;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: 400;
}

/* Button Group Base Rules */
.cta-group {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom,
.btn-secondary-custom {
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

/* Primary CTA Button (Solid Dark Slate) */
.btn-primary-custom {
    background-color: #0f172a !important;
    color: #ffffff !important;
    border: 1.5px solid #0f172a !important;
    gap: 8px;
    box-shadow: none !important;
}

.btn-primary-custom:hover {
    background-color: #334155 !important;
    border-color: #334155 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-primary-custom i {
    transition: transform 0.2s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(4px);
}

/* Secondary CTA Button (Ghost / Clean Outline) */
.btn-secondary-custom {
    background-color: #ffffff !important;
    color: #475569 !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: none !important;
}

.btn-secondary-custom:hover {
    background-color: #f8fafc !important;
    border-color: #0f172a !important;
    color: #0f172a !important;
    transform: translateY(-2px);
}

/* Mobile Tweaks (< 576px) */
@media (max-width: 576px) {
    .hero-card {
        padding: 28px 16px;
    }

    .mascot-box img {
        width: 110px;
        height: 110px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 10px 20px;
        font-size: 0.88rem;
    }
}