/* ==========================================
   GLOBAL
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #020b24;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   HEADER
========================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(2, 11, 36, 0.9);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
}

.logo span {
    color: #6aa8ff;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: #d8d8d8;
    transition: .3s;
}

.nav-menu a:hover {
    color: white;
}

.header-btn {
    padding: 12px 24px;

    background: linear-gradient(
        135deg,
        #4c6fff,
        #8b5cf6
    );

    border-radius: 12px;
    font-weight: 600;
}

/* ==========================================
   HERO
========================================== */

.hero {
    background:
        radial-gradient(circle at 75% 30%,
            rgba(138,92,246,.5),
            transparent 40%),
        radial-gradient(circle at 80% 40%,
            rgba(89,120,255,.35),
            transparent 50%),
        linear-gradient(
            135deg,
            #02153f,
            #020b24
        );

    min-height: 90vh;

    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.hero-greeting {
    color: #6aa8ff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.hero h2 {
    background: linear-gradient(
        90deg,
        #5ba2ff,
        #c085ff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: #d0d7e7;
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    max-width: 520px;
    display: block;
    margin-left: auto;
}

/* ==========================================
   LEADERSHIP
========================================== */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.leadership-item {
    padding: 20px;
    border-radius: 18px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);
}

.leadership-item h4 {
    margin-bottom: 8px;
}

.leadership-item p {
    color: #c8d0e5;
    font-size: .95rem;
}

/* ==========================================
   BUTTONS
========================================== */

.hero-buttons {
    display: flex;
    gap: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 28px;

    border-radius: 14px;
    font-weight: 600;

    transition: .3s;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #4c6fff,
        #8b5cf6
    );
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.15);
}

/* ==========================================
   SNAPSHOT
========================================== */

.snapshot-section {
    background: #f5f6fb;
    color: #111827;

    padding: 80px 0;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.snapshot-card,
.initiatives-card {
    background: white;

    padding: 40px;
    border-radius: 24px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.snapshot-card h3,
.initiatives-card h3 {
    margin-bottom: 20px;
    color: #3b4dff;
}

.snapshot-card h2 {
    margin-bottom: 12px;
}

.company {
    color: #3b4dff;
    font-weight: 600;
    margin-bottom: 20px;
}

.metrics {
    margin-top: 35px;

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.metric {
    text-align: center;
}

.metric h4 {
    font-size: 2rem;
    color: #4c6fff;
}

/* ==========================================
   INITIATIVES
========================================== */

.initiative-item {
    padding: 20px;
    border-radius: 18px;
    background: #f6f7fc;
    margin-bottom: 18px;
}

.initiative-item h4 {
    color: #7c3aed;
    margin-bottom: 8px;
}

/* ==========================================
   IMPACT
========================================== */

.section-dark {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.impact-card {
    padding: 30px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);
}

/* ==========================================
   LINKEDIN
========================================== */

.linkedin-section {
    padding: 80px 0;
    background: #f5f6fb;
}

.linkedin-card {
    background: white;
    color: #111827;

    padding: 60px;
    border-radius: 24px;

    text-align: center;
}

.linkedin-card h2 {
    margin-bottom: 15px;
}

.linkedin-card p {
    margin-bottom: 25px;
}

/* ==========================================
   PASSIONS
========================================== */

.passions {
    padding: 90px 0;
}

.passion-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

.passion-card {
    padding: 25px;
    text-align: center;

    border-radius: 20px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);
}

/* ==========================================
   CONTACT
========================================== */

.contact-section {
    text-align: center;
    padding: 100px 0;
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-section p {
    margin-bottom: 30px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-links a {
    font-weight: 600;
    color: #7ea7ff;
}

/* ==========================================
   FOOTER
========================================== */

footer {
    padding: 30px;
    text-align: center;

    border-top:
        1px solid rgba(255,255,255,.08);

    color: #b6bfd5;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .hero-grid,
    .snapshot-grid,
    .impact-grid,
    .passion-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-image {
        max-width: 380px;
        margin: 0 auto;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .metrics {
        grid-template-columns: repeat(2,1fr);
    }

    .nav-menu {
        display: none;
    }

    .header-btn {
        display: none;
    }

    .contact-links {
        flex-direction: column;
    }
}
