/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badges {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--brand-500);
}

.hero h1 {
    font-size: 3.5rem;
    color: #00c3ff;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--brand-500);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-color);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.hero-dashboard-mock {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    display: flex;
}

.mock-sidebar {
    width: 250px;
    border-right: 1px solid #222;
    padding: 1rem;
}

.mock-line {
    height: 12px;
    background: #222;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.mock-content {
    flex: 1;
    padding: 2rem;
}

.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.mock-card {
    height: 120px;
    background: #1a1a1a;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .mock-sidebar {
        display: none;
    }

    .mock-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Strip */
.stats-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Features Page */
.feature-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-block:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
}

.feature-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--brand-500);
}

@media (max-width: 768px) {

    .feature-block,
    .feature-block:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Docs Page */
.docs-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.docs-sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.docs-nav {
    list-style: none;
    border-left: 1px solid var(--border-color);
}

.docs-nav li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--muted-color);
    border-left: 2px solid transparent;
    margin-left: -1px;
}

.docs-nav li a:hover,
.docs-nav li a.active {
    color: var(--brand-500);
    border-left-color: var(--brand-500);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2rem;
    color: #fff;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--muted-color);
}