/* Hero Section Styles */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* padding: 3rem 0 4rem; */
    /* background: var(--background); */
    overflow: hidden;
    min-height: 100vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 0.375rem 0.75rem;
    /* background: var(--muted); */
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: fit-content;
}

.status-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    will-change: opacity;
    transform: translateZ(0);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-content h1 {
    font-family: var(--font-sans);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--foreground);
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-content p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-foreground);
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    will-change: transform;
    transform: translateZ(0);
}

.primary-button:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: var(--shadow-md);
}

.primary-button--glow {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 0, 0, 0.05);
}

.primary-button--glow:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15), 0 0 60px rgba(0, 0, 0, 0.08);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--foreground);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: var(--muted);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.secondary-button--ghost {
    border: none;
    background: transparent;
}

.secondary-button--ghost:hover {
    background: var(--muted);
}

.secondary-button i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.secondary-button:hover i {
    transform: translateX(0.25rem);
}

/* Hero Metrics */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.hero-metrics > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1;
}

.metric-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual / Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 100%;
    max-width: 24rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
}

.hero-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: var(--shadow-xl);
}

.hero-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1.25rem;
    /* background: var(--muted); */
    border-bottom: 1px solid var(--border);
}

.hero-card__badge {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-card__status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

.hero-card__status .status-dot {
    width: 0.375rem;
    height: 0.375rem;
}

.hero-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hero-card__body h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
    line-height: 1.2;
}

.hero-card__body p {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

.hero-card__body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-card__body li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--foreground);
}

.hero-card__body li i {
    color: var(--primary);
    font-size: 0.875rem;
}

.hero-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1.25rem;
    /* background: var(--muted); */
    border-top: 1px solid var(--border);
}

.hero-card__footer > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        display: flex;
        justify-content: start;
        align-items: flex-start;
        padding: 0rem 0 3rem;
    }

    .hero-grid {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-content {
        gap: 1.25rem;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }

    .hero-content p {
        font-size: 0.9375rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        /* width: 100%; */
        justify-content: center;
    }

    .hero-metrics {
        /* grid-template-columns: 1fr; */
        gap: 1.25rem;
        padding-top: 1.25rem;
    }

    .metric-value {
        font-size: 1.375rem;
    }

    .hero-card__header,
    .hero-card__body,
    .hero-card__footer {
        padding: 0.875rem;
    }

    .hero-card__body h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero {
        display: flex;
        justify-content: start;
        align-items: flex-start;
        padding: 0rem 0 2.5rem;
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.625rem;
    }

    .hero-actions {
        gap: 0.625rem;
    }

    .primary-button,
    .secondary-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-metrics {
        gap: 0.875rem;
    }

    .metric-value {
        font-size: 1.25rem;
    }

    .metric-label {
        font-size: 0.6875rem;
    }
}
