/* Mobile-critical hero + base index styles (above-the-fold LCP) */
body.index-page {
    font-family: "Inter", "Poppins", sans-serif;
    background: #0b1120;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
}

.hero-section {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.8));
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.8) 0%,
        rgba(30, 41, 59, 0.7) 50%,
        rgba(59, 130, 246, 0.3) 100%
    );
}

.hero-particles {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 3rem);
    align-items: center;
    width: min(100%, 1080px);
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.hero-text {
    text-align: center;
    color: white;
    max-width: clamp(320px, 80vw, 520px);
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(1.45rem, 5vw, 2.1rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(0.9rem, 3vw, 1.3rem);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line:last-child {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.84);
    margin-bottom: clamp(1.1rem, 3.5vw, 1.75rem);
}

body.index-page .hero-section .hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 clamp(0.75rem, 2.5vw, 1.25rem);
    display: grid;
    gap: clamp(0.5rem, 3vw, 0.75rem);
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.55;
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
}

.hero-highlights li i {
    color: #38bdf8;
    font-size: 0.95rem;
}

body.index-page .hero-visual {
    max-width: 400px;
    padding: 0 1rem;
}

.hero-scroll-indicator {
    position: relative;
    z-index: 2;
}
