body.page-home {
    display: flex;
    flex-direction: column;
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(20, 83, 45, 0.5) 0%, transparent 55%),
        var(--color-bg);
}

.hero-section {
    flex: 1;
    padding: var(--space-4) var(--space-4) var(--space-10);
    display: flex;
    flex-direction: column;
}

.hero-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    width: 100%;
}

.hero-title-area {
    text-align: center;
    margin-bottom: var(--space-6);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-4);
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary-light);
}

.hero-badge__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-success);
    animation: pulse-ring 2s ease-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
    text-wrap: balance;
}

.hero-title__brand {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.hero-title__brand img {
    height: 1.2em;
    margin-inline-start: var(--space-2);
}

.hero-subtitle {
    color: var(--color-text-muted);
    font-size: clamp(0.875rem, 2.5vw, 1.0625rem);
    max-width: 36rem;
    margin: 0 auto;
    text-wrap: pretty;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-section {
        padding: var(--space-8) var(--space-6) var(--space-10);
    }

    .hero-title-area {
        margin-bottom: var(--space-10);
    }
}

@media (min-width: 1200px) {
    .features-grid {
        max-width: 64rem;
    }
}
