.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(102, 204, 255, 0.35), transparent 45%),
        radial-gradient(circle at right, rgba(102, 204, 255, 0.18), transparent 55%);
    z-index: 1;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148, 163, 184, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.2) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.6;
}

.orb-one {
    width: 320px;
    height: 320px;
    background: rgba(102, 204, 255, 0.45);
    top: 15%;
    left: 8%;
}

.orb-two {
    width: 280px;
    height: 280px;
    background: rgba(102, 204, 255, 0.25);
    bottom: 10%;
    right: 12%;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.05;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

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

.metric {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 14px;
    padding: 1rem;
}

.metric-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 0.4rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.hero-card h3 {
    margin-bottom: 0.75rem;
}

.hero-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.hero-checklist {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-checklist li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.hero-checklist li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.hero-eyebrow,
.hero-title,
.hero-subtitle,
.hero-cta,
.hero-metrics,
.hero-card {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease-out forwards;
}

.hero-eyebrow {
    animation-delay: 0.05s;
}

.hero-title {
    animation-delay: 0.15s;
}

.hero-subtitle {
    animation-delay: 0.25s;
}

.hero-cta {
    animation-delay: 0.35s;
}

.hero-metrics {
    animation-delay: 0.45s;
}

.hero-card {
    animation-delay: 0.3s;
    transform: translateY(30px);
    animation-name: heroFadeUpCard;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUpCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .hero-metrics{
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow,
    .hero-title,
    .hero-subtitle,
    .hero-cta,
    .hero-metrics,
    .hero-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}