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

  :root {
    --bg: #0a0a0f;
    --bg2: #12121a;
    --bg3: #1a1a26;
    --accent: #c8f04e;
    --accent2: #7b6ef6;
    --text: #f0eee8;
    --muted: #7a7a8a;
    --border: rgba(255,255,255,0.07);
    --card-bg: rgba(255,255,255,0.03);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
  }

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

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(16px);
    background: rgba(10,10,15,0.7);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    color: var(--text);
    text-decoration: none;
  }

  .nav-logo span { color: var(--accent); }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

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

  /* SECTIONS */
  section { position: relative; z-index: 1; }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,240,78,0.08);
    border: 1px solid rgba(200,240,78,0.2);
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 2rem;
    width: fit-content;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-tag::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }

  .hero-name .line2 {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(200,240,78,0.5);
  }

  .hero-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  .role-pill {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.82rem;
    padding: 6px 16px;
    border-radius: 100px;
    transition: all 0.2s;
  }

  .role-pill:hover {
    background: rgba(200,240,78,0.08);
    border-color: rgba(200,240,78,0.3);
    color: var(--accent);
  }

  .hero-bio {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
  }

  .btn-primary {
    background: var(--accent);
    color: #0a0a0f;
  }

  .btn-primary:hover {
    background: #d9ff5a;
    transform: translateY(-2px);
  }

  .btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
  }

  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.2);
    background: var(--card-bg);
    transform: translateY(-2px);
  }

  /* SECTION WRAPPER */
  .section-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 2rem;
  }

  .section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 3.5rem;
  }

  /* ABOUT */
  #about { background: var(--bg2); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-text { color: var(--muted); font-size: 1.05rem; font-weight: 300; }
  .about-text p + p { margin-top: 1rem; }

  .skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .skill-tag {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.82rem;
    padding: 7px 16px;
    border-radius: 8px;
    transition: all 0.2s;
  }

  .skill-tag:hover {
    background: rgba(123,110,246,0.1);
    border-color: rgba(123,110,246,0.3);
    color: var(--accent2);
  }

  /* PROJECTS */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .project-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .project-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
  .project-card:hover::before { transform: scaleX(1); }

  .project-number {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .project-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
  }

  .project-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; font-weight: 300; }

  .project-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

  .project-tag {
    background: rgba(200,240,78,0.06);
    border: 1px solid rgba(200,240,78,0.15);
    color: rgba(200,240,78,0.7);
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
  }

  /* CONTACT */
  #contact { background: var(--bg2); }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-text { color: var(--muted); font-size: 1rem; font-weight: 300; }

  .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.2s;
  }

  .social-link:hover {
    border-color: rgba(200,240,78,0.3);
    background: rgba(200,240,78,0.04);
    transform: translateX(4px);
  }

  .social-link .s-left { display: flex; align-items: center; gap: 12px; }
  .social-handle { color: var(--muted); font-size: 0.82rem; }

  .social-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
  }

  .icon-email { background: rgba(200,240,78,0.1); }
  .icon-github { background: rgba(255,255,255,0.06); }
  .icon-twitter { background: rgba(29,161,242,0.1); }
  .icon-linkedin { background: rgba(10,102,194,0.1); }

  /* FOOTER */
  footer {
    text-align: center;
    padding: 2rem;
    color: var(--muted);
    font-size: 0.82rem;
    border-top: 1px solid var(--border);
    position: relative; z-index: 1;
  }

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

  /* DECORATIVE BG BLOBS */
  .blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
  }

  .blob-1 {
    width: 500px; height: 500px;
    background: rgba(123,110,246,0.06);
    top: -100px; right: -100px;
  }

  .blob-2 {
    width: 400px; height: 400px;
    background: rgba(200,240,78,0.04);
    bottom: 200px; left: -150px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 700px) {
    .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    nav { padding: 1rem; }
    .nav-links { gap: 1.2rem; }
    .hero-name { font-size: 3rem; }
    .section-wrap { padding: 4rem 1.2rem; }
  }