/* ===== Hero ===== */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
}

.hero h1 {
    color: var(--accent-blue);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(74, 165, 255, 0.2);
}

.hero p.sub-headline {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

/* ===== Feature List ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-list li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}