:root{
    /* Light Premium Theme */
    --bg:#F8FAFC;             /* slate-50 */
    --surface:#FFFFFF;
    --surface2:#F1F5F9;       /* slate-100 */
    --text:#0F172A;           /* slate-900 */
    --muted:#475569;          /* slate-600 */
    --muted2:#64748B;         /* slate-500 */
    --line:#E2E8F0;           /* slate-200 */

    /* Accents (Professional) */
    --accent:#4F46E5;         /* indigo-600 */
    --accent2:#2563EB;        /* blue-600 */
    --accentSoft:#EEF2FF;     /* indigo-50 */

    --shadow: 0 18px 44px rgba(15, 23, 42, .08);
    --shadow2: 0 10px 26px rgba(15, 23, 42, .08);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; scroll-behavior:smooth; }
body{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-decoration-color: var(--accent); }

.container{ max-width: 1120px; margin: 0 auto; padding: 0 18px; }

/* Background Glow (Light subtle) */
.bgGlow{
    position: fixed;
    width: 560px; height: 560px;
    filter: blur(80px);
    opacity: .18;
    pointer-events: none;
    z-index: 0;
}
.bgGlow--1{ left:-220px; top:-220px; background: #93C5FD; }   /* blue-300 */
.bgGlow--2{ right:-240px; bottom:-260px; background: #C4B5FD; } /* violet-300 */

/* Topbar */
.topbar{
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(248,250,252,.82);
    border-bottom: 1px solid var(--line);
}
.topbar__inner{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 14px;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand__dot{
    width: 10px; height: 10px; border-radius: 999px;
    background: linear-gradient(120deg, var(--accent2), var(--accent));
}
.brand__name{ font-weight: 900; letter-spacing: -0.2px; }
.brand__role{ color: var(--muted2); font-size: 12px; }

.topbar__actions{ display:flex; align-items:center; gap:10px; flex-wrap: wrap; }

/* Buttons */
.btn{
    border: 1px solid var(--line);
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 13px;
    cursor:pointer;
    transition: all .18s ease;
    display:inline-flex;
    align-items:center;
    gap: 8px;
    background: var(--surface);
    color: var(--text);
}
.btn:hover{
    transform: translateY(-1px);
    border-color: rgba(79,70,229,.35);
    box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.btn--primary{
    background: linear-gradient(120deg, var(--accent2), var(--accent));
    color: #fff;
    border: 0;
}
.btn--ghost{
    background: rgba(255,255,255,.85);
}

/* Hero */
.hero{ position: relative; z-index: 1; padding: 44px 0 26px; }
.hero__grid{
    display:grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    color: var(--muted);
}
.badge__dot{
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(79,70,229,.12);
}

.hero__title{
    font-family: Poppins, Inter, sans-serif;
    font-size: 46px;
    line-height: 1.05;
    margin: 16px 0 10px;
    letter-spacing: -1px;
}

.gradientText{
    background: linear-gradient(120deg, var(--accent2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__subtitle{
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.hero__cta{ margin-top: 18px; display:flex; gap: 10px; flex-wrap: wrap; }

.stats{
    margin-top: 18px;
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
}
.stat{
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 12px 14px;
    border-radius: 16px;
    min-width: 120px;
    box-shadow: 0 10px 26px rgba(15,23,42,.05);
}
.stat__num{ margin:0; font-size: 18px; font-weight: 900; }
.stat__label{ margin: 4px 0 0 0; color: var(--muted2); font-size: 12px; }

/* Profile Card */
.profileCard{
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.profileCard__top{
    display:flex;
    gap: 12px;
    align-items:center;
}
.avatar{
    width: 56px; height: 56px; border-radius: 18px;
    background: linear-gradient(120deg, rgba(37,99,235,.16), rgba(79,70,229,.16));
    display:flex; align-items:center; justify-content:center;
    border: 1px solid rgba(99,102,241,.25);
}
.avatar span{ font-weight: 900; letter-spacing: -.3px; color: #1E1B4B; }
.profileCard__name{ margin:0; font-weight: 900; }
.profileCard__meta{ margin: 2px 0 0 0; color: var(--muted2); font-size: 12px; }

.profileCard__list{ margin-top: 14px; display:flex; flex-direction:column; gap: 10px; }
.infoRow{
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px 12px;
    display:flex;
    gap: 10px;
    align-items:center;
    background: rgba(248,250,252,.8);
    transition: all .16s ease;
}
.infoRow i{ color: var(--accent2); width: 18px; }
.infoRow:hover{
    border-color: rgba(79,70,229,.35);
    transform: translateY(-1px);
}

.profileCard__bottom{
    margin-top: 14px;
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pill{
    border: 1px solid rgba(79,70,229,.20);
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 12px;
    background: var(--accentSoft);
    color: #3730A3;
}

/* Main Layout */
.mainGrid{
    position: relative;
    z-index: 1;
    display:grid;
    grid-template-columns: 360px 1fr;
    gap: 18px;
    padding-bottom: 40px;
}

.sidebar{
    position: sticky;
    top: 76px;
    align-self: start;
    height: fit-content;
    display:flex;
    flex-direction:column;
    gap: 14px;
}

/* Navigation Card */
.navCard{
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    padding: 14px;
    box-shadow: var(--shadow2);
}
.navCard__title{
    margin: 0 0 10px;
    font-size: 12px;
    color: var(--muted2);
    font-weight: 900;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.navLink{
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
    transition: all .15s ease;
}
.navLink i{ color: var(--accent); width: 18px; }
.navLink:hover{
    background: rgba(79,70,229,.08);
    color: var(--text);
}

/* Content Cards */
.card{
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    background: var(--surface);
    box-shadow: var(--shadow2);
}
.card__head{ margin-bottom: 10px; }
.card__title{ margin:0; font-size: 16px; font-weight: 900; }
.card__sub{ margin: 6px 0 0 0; color: var(--muted2); font-size: 12px; }

/* Skills */
.stack{ margin-top: 14px; }
.stack__label{
    margin:0 0 10px;
    font-weight: 900;
    font-size: 12px;
    color: var(--muted2);
    text-transform: uppercase;
    letter-spacing: .9px;
}
.chips{ display:flex; flex-wrap: wrap; gap: 8px; }
.chip{
    border: 1px solid var(--line);
    background: rgba(248,250,252,.9);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #1F2937;
}

/* Jobs */
.timeline{ display:flex; flex-direction:column; gap: 14px; margin-top: 6px; }
.job{
    border: 1px solid var(--line);
    background: rgba(248,250,252,.92);
    border-radius: 20px;
    padding: 16px;
}
.job__top{ display:flex; justify-content: space-between; align-items:flex-start; gap: 12px; }
.job__company{ margin:0; font-size: 16px; font-weight: 900; }
.job__role{ margin: 4px 0 0 0; color: var(--accent); font-weight: 900; font-size: 13px; }
.job__date{ color: var(--muted2); font-size: 12px; white-space: nowrap; }

.bullets{
    margin: 12px 0 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}
.bullets li{ margin-bottom: 7px; }

/* Projects */
.projectsGrid{
    margin-top: 6px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.projectCard{
    border: 1px solid var(--line);
    background: rgba(248,250,252,.92);
    border-radius: 20px;
    padding: 16px;
    transition: transform .18s ease;
}
.projectCard:hover{ transform: translateY(-3px); }
.projectCard__title{ margin:0; font-weight: 900; }
.projectCard__desc{ margin: 8px 0 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.projectCard__tags{ margin-top: 12px; display:flex; flex-wrap: wrap; gap: 8px; }
.projectCard__tags span{
    font-size: 11px;
    padding: 6px 10px;
    border: 1px solid rgba(79,70,229,.18);
    border-radius: 999px;
    color: #3730A3;
    background: var(--accentSoft);
}

/* Footer */
.footer{
    margin-top: 18px;
    text-align:center;
    color: var(--muted2);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 980px){
    .hero__grid{ grid-template-columns: 1fr; }
    .mainGrid{ grid-template-columns: 1fr; }
    .sidebar{ position: relative; top:0; }
    .projectsGrid{ grid-template-columns: 1fr; }
    .hero__title{ font-size: 36px; }
}
