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

    :root {
      --bg:       #0a0a0a;
      --surface:  #111111;
      --border:   #1e1e1e;
      --muted:    #3a3a3a;
      --sub:      #6b6b6b;
      --text:     #e8e8e8;
      --accent:   #f0e060;
      --accent2:  #60c0f0;
      --font-display: 'Syne', sans-serif;
      --font-body:    'DM Sans', sans-serif;
      --font-mono:    'DM Mono', monospace;
      --max-w: 860px;
      --ease: cubic-bezier(.22,1,.36,1);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ─── NOISE OVERLAY ──────────────────────────────────── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: .5;
    }

    /* ─── LAYOUT ─────────────────────────────────────────── */
    .container {
      position: relative; z-index: 1;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
    }

    section { padding: 80px 0; border-top: 1px solid var(--border); }
    section:first-of-type { border-top: none; }

    /* ─── NAV ────────────────────────────────────────────── */
    nav {
      position: sticky; top: 0; z-index: 100;
      padding: 18px 0;
      background: rgba(10,10,10,.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 16px;
      letter-spacing: -.02em;
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--sub);
      letter-spacing: .04em;
      transition: color .2s;
    }

    .nav-links a:hover { color: var(--text); }

    /* ─── HERO ───────────────────────────────────────────── */
    #hero { padding: 100px 0 80px; border-top: none; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: start;
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: .12em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp .6s var(--ease) .1s forwards;
    }

    .hero-name {
      font-family: var(--font-display);
      font-size: clamp(52px, 9vw, 88px);
      font-weight: 800;
      line-height: .92;
      letter-spacing: -.04em;
      color: var(--text);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp .7s var(--ease) .2s forwards;
    }

    .hero-name span { color: var(--accent); }

    .hero-bio {
      font-size: 15px;
      color: var(--sub);
      max-width: 420px;
      line-height: 1.7;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp .7s var(--ease) .35s forwards;
    }

    .hero-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      opacity: 0;
      animation: fadeUp .7s var(--ease) .5s forwards;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: .04em;
      color: var(--sub);
      transition: border-color .2s, color .2s, background .2s;
    }

    .pill:hover {
      border-color: var(--muted);
      color: var(--text);
      background: var(--surface);
    }

    .pill svg { flex-shrink: 0; }

    .hero-photo-wrap {
      opacity: 0;
      animation: fadeIn .8s var(--ease) .3s forwards;
    }

    .hero-photo {
      width: 160px;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
      border: 1px solid var(--border);
      filter: grayscale(20%);
      transition: filter .3s;
    }

    .hero-photo:hover { filter: grayscale(0%); }

    .hero-photo-placeholder {
      width: 160px;
      height: 200px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--surface);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--sub);
      font-family: var(--font-mono);
      font-size: 11px;
    }

    /* ─── SECTION HEADER ─────────────────────────────────── */
    .sec-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: .12em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .sec-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ─── ABOUT / EDUCATION ──────────────────────────────── */
    .edu-list { display: flex; flex-direction: column; gap: 16px; }

    .edu-item {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      transition: border-color .2s;
    }

    .edu-item:hover { border-color: var(--muted); }

    .edu-info { flex: 1; }

    .edu-school {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 3px;
    }

    .edu-degree {
      font-size: 13px;
      color: var(--sub);
    }

    .edu-grade {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--accent);
      white-space: nowrap;
    }

    /* ─── SKILLS ─────────────────────────────────────────── */
    .skills-groups { display: flex; flex-direction: column; gap: 32px; }

    .skill-group-title {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--sub);
      letter-spacing: .06em;
      margin-bottom: 14px;
    }

    .skill-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chip {
      padding: 6px 14px;
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 12px;
      font-family: var(--font-mono);
      color: var(--text);
      background: var(--surface);
      transition: border-color .2s, color .2s;
      cursor: default;
    }

    .chip:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* ─── PROJECTS ───────────────────────────────────────── */
    .projects-grid {
      display: grid;
      gap: 16px;
    }

    .project-card {
      padding: 24px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: border-color .25s, transform .25s;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 12px;
    }

    .project-card:hover {
      border-color: var(--muted);
      transform: translateY(-2px);
    }

    .project-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .project-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      letter-spacing: -.02em;
    }

    .project-links { display: flex; gap: 10px; flex-shrink: 0; }

    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: .06em;
      color: var(--sub);
      border: 1px solid var(--border);
      padding: 4px 10px;
      border-radius: 4px;
      transition: color .2s, border-color .2s;
    }

    .project-link:hover { color: var(--accent); border-color: var(--accent); }

    .project-desc {
      font-size: 13px;
      color: var(--sub);
      line-height: 1.65;
    }

    .project-tech {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .tech-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      padding: 3px 9px;
      border-radius: 4px;
      background: rgba(240,224,96,.08);
      color: var(--accent);
      border: 1px solid rgba(240,224,96,.15);
    }

    /* ─── CONTACT ────────────────────────────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
    }

    .contact-card {
      padding: 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: border-color .2s;
    }

    .contact-card:hover { border-color: var(--muted); }

    .contact-icon {
      width: 38px; height: 38px;
      border-radius: 8px;
      background: rgba(240,224,96,.07);
      border: 1px solid rgba(240,224,96,.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }

    .contact-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--sub);
      letter-spacing: .06em;
      margin-bottom: 3px;
    }

    .contact-value {
      font-size: 13px;
      color: var(--text);
      word-break: break-all;
    }

    /* ─── RESUME BTN ─────────────────────────────────────── */
    .resume-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      padding: 11px 22px;
      background: var(--accent);
      color: #0a0a0a;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: -.01em;
      border-radius: 8px;
      transition: opacity .2s, transform .2s;
    }

    .resume-btn:hover { opacity: .85; transform: translateY(-1px); }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 36px 0;
      position: relative; z-index: 1;
    }

    footer .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    footer p {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--sub);
    }

    footer p span { color: var(--accent); }

    .footer-links { display: flex; gap: 20px; }

    .footer-links a {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--sub);
      transition: color .2s;
    }

    .footer-links a:hover { color: var(--text); }

    /* ─── ANIMATIONS ─────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── SCROLLBAR ──────────────────────────────────────── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 2px; }

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 640px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-photo-wrap { order: -1; }
      .hero-photo, .hero-photo-placeholder { width: 100px; height: 124px; }
      .hero-name { font-size: clamp(44px, 14vw, 72px); }
      .nav-links { gap: 18px; }
    }