<style>
  * { border-radius: 0 !important; }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --bg: #ffffff;
    --bg2: #f7f7f5;
    --border: rgba(0,0,0,0.08);
    --text: #1a1a1a;
    --muted: #888;
    --accent: #4f46e5;
  }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
  }
  a { color: var(--accent); text-decoration: none; }
  a:hover { text-decoration: underline; }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 56px;
  }
  .nav-name { font-size: 15px; font-weight: 500; }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a { color: var(--muted); font-size: 14px; }
  .nav-links a:hover { color: var(--text); text-decoration: none; }

  .hero { margin-bottom: 72px; }
  .hero h1 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .hero p { color: var(--muted); font-size: 16px; max-width: 480px; }
  .hero-links { margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap; }
  .btn {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text);
    background: var(--bg2);
  }
  .btn:hover { border-color: rgba(0,0,0,0.18); text-decoration: none; background: #efefec; }
  .btn-primary { border-color: var(--accent); color: var(--accent); background: #f0effd; }
  .btn-primary:hover { background: #e6e4fb; }

  section { margin-bottom: 64px; }
  .section-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
  }

  .exp-list { display: flex; flex-direction: column; }
  .exp-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
  .exp-item:last-child { border-bottom: none; }
  .exp-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    border: none;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    overflow: hidden;
  }
    
  .exp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0px;
  }
  .exp-body { flex: 1; }
  .exp-header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .exp-role { font-size: 14px; font-weight: 500; }
  .exp-date { font-size: 12px; color: var(--muted); white-space: nowrap; }
  .exp-company { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
  .exp-desc { font-size: 13px; color: var(--muted); }

  .project-list { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
  .project {
    padding: 20px 22px;
    background: var(--bg2);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }
  .project:hover { background: #f0f0ec; }
  .project + .project { border-top: 1px solid var(--border); }
  .project-info h3 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
  .project-info p { font-size: 13px; color: var(--muted); }
  .project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
  .tag {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    background: #eeecfd;
    color: var(--accent);
    border: 1px solid rgba(79,70,229,0.15);
  }
  .project-link { font-size: 12px; color: var(--muted); white-space: nowrap; padding-top: 2px; }
  .project-link:hover { color: var(--text); text-decoration: none; }

  .skills-grid { display: flex; flex-wrap: wrap; gap: 8px; }
  .skill {
    font-size: 13px;
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--muted);
    background: var(--bg2);
  }

  .about p { color: var(--muted); font-size: 15px; }
  .about-inner {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .profile-pic {
    width: 120px;
    min-width: 120px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
    border: 1px solid var(--border);
  }
    footer {
      border-top: 1px solid var(--border);
      padding: 32px 0 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
  footer span { font-size: 13px; color: var(--muted); }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { font-size: 13px; color: var(--muted); }
  .footer-links a:hover { color: var(--text); text-decoration: none; }


</style>
