.home-hero {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 1100px;
    margin: 0 auto;
}

.glass-panel {
    background: rgba(14, 18, 32, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.glass-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(255, 143, 63, 0.18), rgba(47, 107, 255, 0.08) 45%, transparent 75%);
    pointer-events: none;
}

.glass-panel > * {
    position: relative;
    z-index: 2;
}

.eyebrow--pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 143, 63, 0.2);
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    margin: 1rem 0;
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions--center {
    justify-content: center;
}

.metric-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.metric {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.metric strong {
    display: block;
    font-size: 1.75rem;
}

.content section {
    margin-top: clamp(3rem, 6vw, 5rem);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 1.75rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 9, 21, 0.7);
    min-height: 220px;
}

.feature-card h3 {
    margin-top: 0;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 2rem;
}

.timeline {
    display: grid;
    gap: 1.25rem;
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
}

.step-index {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    font-weight: 600;
}

.cta-panel {
    text-align: center;
    padding: clamp(2rem, 4vw, 3.5rem);
}

.cta-panel h2 {
    margin: 0.5rem 0 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.cta-panel p {
    margin: 0 auto 2rem;
    max-width: 540px;
    color: var(--text-muted);
    line-height: 1.6;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
