:root{
      --bg:#1118e7;
      --card:#0b1220;
      --accent:#7c3aed;
      --muted:#94a3b8;
      --glass: rgba(255,255,255,0.03);
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      background:linear-gradient(180deg,var(--bg), #abaeb4 120%);
      color:#c9def9;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.45;
    }
    .container{max-width:1100px;margin:32px auto;padding:24px}

    header{
      display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;
    }
    .brand{display:flex;gap:14px;align-items:center}
    .brand .logo{width:72px;height:72px;border-radius:10px;overflow:hidden;flex-shrink:0;border:2px solid rgba(255,255,255,0.06)}
    .brand h1{font-size:18px;margin:0}
    .brand p{margin:0;font-size:12px;color:var(--muted)}
    nav a{color:var(--muted);text-decoration:none;margin-left:16px;font-weight:600}
    nav a:hover{color:var(--accent)}

    .hero{
      display:grid;grid-template-columns:1fr 360px;gap:28px;align-items:center;margin-bottom:28px;
    }
    .card{
      background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-radius:14px;padding:20px;border:1px solid rgba(255,255,255,0.04);
      box-shadow: 0 6px 20px rgba(2,6,23,0.6);
    }

    .intro h2{margin:0 0 8px 0;font-size:26px}
    .intro p.lead{margin:0;color:var(--muted)}

    .profile-figure{display:flex;flex-direction:column;gap:12px;align-items:center}
    .profile-figure img{width:100%;height:auto;border-radius:10px;border:1px solid rgba(255,255,255,0.04)}
    .contact{width:100%}
    .contact .item{display:flex;gap:10px;align-items:center;padding:8px 10px;border-radius:8px;background:var(--glass);margin-bottom:8px}
    .contact .label{min-width:90px;color:var(--muted);font-size:13px}
    .chip{display:inline-block;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,0.02);font-weight:600}

    .sections{display:grid;grid-template-columns:1fr 340px;gap:24px}
    .skills{display:flex;flex-wrap:wrap;gap:8px}
    .skill{padding:8px 10px;border-radius:8px;background:rgba(255,255,255,0.02);font-weight:600}

    .projects{display:grid;gap:12px}
    .project{padding:12px;border-radius:10px;background:linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));border:1px solid rgba(255,255,255,0.03)}
    .project h4{margin:0 0 6px 0}
    .meta{font-size:13px;color:var(--muted)}

    aside.card h3{margin-top:0}
    .edu-item{margin-bottom:12px}
    .hobbies{display:flex;flex-direction:column;gap:8px}

    footer{margin-top:26px;text-align:center;color:var(--muted);font-size:14px}

    /* Responsive */
    @media (max-width:980px){
      .hero{grid-template-columns:1fr;}
      .sections{grid-template-columns:1fr}
    }