:root {
    --emerald-growth: #10b981;
    --ocean-blue: #3b82f6;
    --slate-bg: #f8fafc;
    --glass-border: rgba(255, 255, 255, 0.3);
    --font-primary: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--slate-bg);
    color: #1e293b;
    font-family: var(--font-primary);
    line-height: 1.6;
}

.nexus-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.msp-brand {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--emerald-growth), var(--ocean-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav a {
    text-decoration: none;
    color: #64748b;
    margin-left: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.header-nav a:hover { color: var(--emerald-growth); }

.hero-dashboard {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05), transparent 40%);
}

.hero-content-msp h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0f172a;
}

.hero-content-msp p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 40px;
}

.cta-scaling {
    background: var(--emerald-growth);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.hero-image-msp img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.metrics-strip {
    display: flex;
    justify-content: space-between;
    padding: 40px 8%;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.growth-metric-node { text-align: center; }
.growth-metric-node .value { font-size: 2.5rem; font-weight: 800; color: var(--ocean-blue); }
.growth-metric-node .label { color: #64748b; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; }

.strategy-ledger {
    padding: 100px 8%;
}

.strategy-ledger h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
}

.strategy-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.strategy-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, border-color 0.3s;
}

.strategy-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald-growth);
}

.strategy-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.strategy-card h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--emerald-growth);
    border-radius: 50%;
}

.faq-dashboard-section {
    max-width: 800px;
    margin: 100px auto;
}

.faq-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-card-q {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    background: #fcfcfc;
}

.faq-card-a {
    padding: 0 30px 25px;
    display: none;
    color: #64748b;
}

.enrollment-dashboard {
    background: #0f172a;
    color: #fff;
    padding: 100px 8%;
    border-radius: 40px;
    margin: 50px 8%;
    text-align: center;
}

.msp-enroll-form {
    max-width: 600px;
    margin: 50px auto 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.msp-enroll-form .full-width { grid-column: span 2; }
.msp-enroll-form label { display: block; margin-bottom: 8px; font-size: 0.9rem; opacity: 0.8; }
.msp-enroll-form input, .msp-enroll-form select {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
}

.msp-enroll-form button {
    grid-column: span 2;
    padding: 18px;
    background: var(--emerald-growth);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
}

.nexus-footer {
    padding: 80px 8%;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.cookie-glass {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 20px 40px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    z-index: 2000;
}

@media (max-width: 1024px) {
    .hero-dashboard { grid-template-columns: 1fr; text-align: center; }
    .hero-content-msp h1 { font-size: 2.8rem; }
    .msp-enroll-form { grid-template-columns: 1fr; }
    .msp-enroll-form .full-width { grid-column: span 1; }
    .msp-enroll-form button { grid-column: span 1; }
}
