@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --bg-light: #f8fafc;
    --bg-dark: #0c111d;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow: rgba(37, 99, 235, 0.15) 0px 4px 12px 0px;
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: var(--bg-dark);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    padding: 6rem 5% 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #172136 100%);
    color: var(--white);
    margin-bottom: 4rem;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-title::before,
.section-title::after {
    content: "";
    height: 2px;
    width: 40px;
    background: var(--primary);
    border-radius: 2px;
}

/* Dashboard Grid */
.dashboard-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 6rem;
}

/* Dashboard Button */
.dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--white);
    color: var(--text-main);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    min-width: 280px;
}

.dashboard-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
    color: var(--primary);
}

.dashboard-btn.primary {
    background-color: var(--primary);
    color: var(--white);
}

.dashboard-btn.primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: transparent;
}

.dashboard-btn i {
    font-size: 1.4rem;
}

/* Footer */
footer {
    padding: 4rem 5%;
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
    margin-top: auto;
}

.footer-content {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero p, .dashboard-grid {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero p { animation-delay: 0.2s; }
.dashboard-grid { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.25rem; }
    .hero { padding: 4rem 5% 3rem; }
    .dashboard-btn { width: 100%; }
}
