/* dloper-dashboard.css – custom styling for dashboard page */

/* Hero Section Redesign */
.dashboard-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #0f3460 100%);
    overflow: hidden;
    padding: 80px 20px 60px;
}

.dashboard-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.dashboard-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.dashboard-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    text-align: center;
    color: white;
}

.dashboard-hero-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.dashboard-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.dashboard-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections with Bold Colors */
.section-creators {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.section-creators::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-business {
    background: linear-gradient(135deg, #fafafa 0%, #f0f4f8 100%);
    color: #111;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.section-business::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.section-creators .section-eyebrow {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
}

.section-business .section-eyebrow {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.section-header h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Grid Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.section-creators .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(20px);
    color: white;
}

.section-creators .feature-card:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.section-business .feature-card {
    background: white;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: var(--shadow-subtle);
    color: #111;
}

.section-business .feature-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
}

/* Feature Icon Circles */
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.section-creators .feature-icon {
    background: rgba(37, 99, 235, 0.3);
    color: #60a5fa;
}

.section-business .feature-icon {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

/* CTA Section Redesign */
.dashboard-cta {
    background: linear-gradient(135deg, #0f3460 0%, #000000 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dashboard-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dashboard-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.dashboard-cta h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.dashboard-cta p {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: rgba(37, 99, 235, 0.8);
    background: rgba(37, 99, 235, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-hero {
        min-height: 80vh;
        padding: 60px 20px 40px;
    }
    
    .dashboard-hero h1 {
        font-size: 2rem;
    }

    .section-creators,
    .section-business {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .dashboard-hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
