    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #0e0e0e;
      --bg2: #141414;
      --bg3: #1a1a1a;
      --pink: #ff3e8e;
      --pink2: #ff78ae;
      --white: #f0ede8;
      --gray: #888;
      --gray2: #555;
      --border: rgba(255,255,255,0.07);
      --font-display: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --font-mono: 'DM Mono', monospace;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--font-body);
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom Cursor */
    #cursor {
      width: 12px; height: 12px;
      background: var(--pink);
      border-radius: 50%;
      position: fixed; pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease, width 0.2s, height 0.2s, background 0.2s;
      mix-blend-mode: screen;
    }
    #cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,62,142,0.5);
      border-radius: 50%;
      position: fixed; pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: all 0.15s ease;
    }
    body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 20px; height: 20px; }

    /* Noise overlay */
    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='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.03'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 1000; opacity: 0.4;
    }

    /* ──────────────── NAV ──────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 60px;
      border-bottom: 1px solid transparent;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(14,14,14,0.92);
      backdrop-filter: blur(20px);
      border-color: var(--border);
      padding: 18px 60px;
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 17px; font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--white);
      text-decoration: none;
    }
    .nav-logo span { color: var(--pink); }
    .nav-links { display: flex; gap: 40px; align-items: center; }
    .nav-links a {
      color: var(--gray);
      text-decoration: none;
      font-size: 13px; font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--pink);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-socials { display: flex; gap: 16px; align-items: center; }
    .nav-socials a {
      color: var(--gray2);
      transition: color 0.2s;
      display: flex; align-items: center;
    }
    .nav-socials a:hover { color: var(--pink); }
    .nav-socials svg { width: 16px; height: 16px; }

    /* ──────────────── HERO ──────────────── */
    #home {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 120px 60px 60px;
      position: relative;
      overflow: hidden;
    }
    .hero-bg-text {
      position: absolute;
      bottom: -30px; right: -20px;
      font-family: var(--font-display);
      font-size: clamp(120px, 18vw, 260px);
      font-weight: 800;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.03);
      user-select: none; pointer-events: none;
      line-height: 1;
      letter-spacing: -0.05em;
    }
    .hero-left { position: relative; z-index: 2; }
    .hero-image-wrap {
      position: relative;
      width: 440px; max-width: 100%;
    }
    .hero-image-frame {
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
    }
    .hero-image-frame img {
      width: 100%; display: block;
      filter: grayscale(100%) contrast(1.1);
      transition: filter 0.6s ease;
    }
    .hero-image-frame:hover img { filter: grayscale(20%) contrast(1.05); }
    .hero-image-accent {
      position: absolute;
      top: -16px; left: -16px;
      width: 100px; height: 100px;
      border-top: 2px solid var(--pink);
      border-left: 2px solid var(--pink);
      pointer-events: none;
    }
    .hero-image-accent2 {
      position: absolute;
      bottom: -16px; right: -16px;
      width: 100px; height: 100px;
      border-bottom: 2px solid var(--pink);
      border-right: 2px solid var(--pink);
      pointer-events: none;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,62,142,0.1);
      border: 1px solid rgba(255,62,142,0.2);
      border-radius: 2px;
      padding: 6px 14px;
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 30px;
    }
    .hero-tag::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--pink);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero-right { position: relative; z-index: 2; padding-left: 60px; }
    .hero-greeting {
      font-family: var(--font-mono);
      font-size: 13px; color: var(--gray);
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }
    .hero-name {
      font-family: var(--font-display);
      font-size: clamp(52px, 6vw, 88px);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }
    .hero-name .line2 { color: var(--pink); display: block; }
    .hero-name .word-here {
      color: var(--white);
      -webkit-text-stroke: 1px var(--gray2);
    }
    .hero-divider {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, var(--pink), transparent);
      margin: 28px 0;
    }
    .hero-desc {
      font-size: 15px; font-weight: 300;
      color: rgba(240,237,232,0.65);
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 40px;
    }
    .hero-desc strong { color: var(--white); font-weight: 500; }
    .hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--pink);
      color: #fff;
      border: none;
      padding: 14px 30px;
      font-family: var(--font-display);
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: none;
      text-decoration: none;
      clip-path: polygon(0 0, 95% 0, 100% 15%, 100% 100%, 5% 100%, 0 85%);
      transition: background 0.2s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--pink2); transform: translateY(-2px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--border);
      padding: 13px 28px;
      font-family: var(--font-display);
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: none;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, transform 0.2s;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-outline:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
    .hero-scroll-hint {
      position: absolute;
      bottom: 40px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      color: var(--gray2);
      font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
      font-family: var(--font-mono);
      animation: float 3s ease-in-out infinite;
    }
    .hero-scroll-hint .line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, var(--gray2), transparent);
    }
    @keyframes float {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ──────────────── STATS BAR ──────────────── */
    .stats-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg2);
      display: flex; align-items: stretch;
      overflow: hidden;
    }
    .stat-item {
      flex: 1; padding: 28px 40px;
      display: flex; flex-direction: column; gap: 6px;
      border-right: 1px solid var(--border);
      position: relative; overflow: hidden;
      transition: background 0.3s;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: var(--bg3); }
    .stat-item::before {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 100%;
      height: 2px; background: var(--pink);
      transition: right 0.4s ease;
    }
    .stat-item:hover::before { right: 0; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 32px; font-weight: 800;
      color: var(--white);
    }
    .stat-num span { color: var(--pink); }
    .stat-label {
      font-size: 11px; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gray);
      font-family: var(--font-mono);
    }

    /* ──────────────── SECTIONS SHARED ──────────────── */
    section { padding: 100px 60px; position: relative; }
    .section-header { margin-bottom: 70px; }
    .section-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--pink);
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-eyebrow::before {
      content: '';
      width: 24px; height: 1px; background: var(--pink);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.5vw, 60px);
      font-weight: 800; line-height: 1.05;
      letter-spacing: -0.02em;
    }
    .section-title em {
      font-style: normal; color: var(--pink);
      font-style: italic;
    }

    /* ──────────────── ABOUT ──────────────── */
    #about { background: var(--bg); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .about-text p {
      font-size: 15px; font-weight: 300;
      color: rgba(240,237,232,0.7);
      line-height: 1.85;
      margin-bottom: 20px;
    }
    .about-text p strong { color: var(--white); font-weight: 500; }
    .about-text p .highlight {
      color: var(--pink); background: rgba(255,62,142,0.08);
      padding: 1px 6px; border-radius: 2px;
    }
    .skills-title {
      font-family: var(--font-display);
      font-size: 16px; font-weight: 700;
      margin-bottom: 24px; margin-top: 40px;
      color: var(--white);
    }
    .skills-grid { display: flex; flex-wrap: wrap; gap: 10px; }
    .skill-chip {
      padding: 8px 18px;
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.04em;
      border: 1px solid var(--border);
      color: var(--gray);
      transition: all 0.2s;
      font-family: var(--font-mono);
      position: relative; overflow: hidden;
    }
    .skill-chip::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(255,62,142,0.08);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    .skill-chip:hover { border-color: var(--pink); color: var(--pink2); }
    .skill-chip:hover::before { transform: translateX(0); }
    .about-sidebar { position: sticky; top: 120px; }
    .about-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 36px;
      position: relative; overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), transparent);
    }
    .about-card-name {
      font-family: var(--font-display);
      font-size: 26px; font-weight: 800;
      margin-bottom: 4px;
    }
    .about-card-role {
      font-size: 13px; color: var(--pink);
      font-family: var(--font-mono);
      letter-spacing: 0.06em;
      margin-bottom: 28px;
    }
    .about-detail {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 0; border-bottom: 1px solid var(--border);
      font-size: 13px;
    }
    .about-detail:last-of-type { border-bottom: none; }
    .about-detail-icon { color: var(--pink); font-size: 16px; width: 18px; text-align: center; }
    .about-detail-label { color: var(--gray); min-width: 80px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
    .about-detail-val { color: var(--white); }
    .social-links { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
    .social-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 9px 16px;
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.06em;
      text-decoration: none;
      border: 1px solid var(--border);
      color: var(--gray);
      font-family: var(--font-mono);
      transition: all 0.2s;
    }
    .social-btn:hover { border-color: var(--pink); color: var(--pink); }
    .social-btn svg { width: 14px; height: 14px; }

    /* ──────────────── EXPERIENCE ──────────────── */
    #experience { background: var(--bg2); }
    .timeline { position: relative; }
    .timeline::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, var(--pink), transparent);
    }
    .timeline-item {
      padding: 0 0 60px 50px;
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .timeline-item.visible { opacity: 1; transform: translateY(0); }
    .timeline-dot {
      position: absolute; left: -6px; top: 4px;
      width: 13px; height: 13px;
      background: var(--bg2);
      border: 2px solid var(--pink);
      border-radius: 50%;
      transition: background 0.2s;
    }
    .timeline-item:hover .timeline-dot { background: var(--pink); }
    .timeline-date {
      font-family: var(--font-mono);
      font-size: 11px; letter-spacing: 0.1em;
      color: var(--pink); text-transform: uppercase;
      margin-bottom: 10px;
    }
    .timeline-role {
      font-family: var(--font-display);
      font-size: 22px; font-weight: 700;
      margin-bottom: 4px;
    }
    .timeline-company {
      font-size: 14px; color: var(--gray);
      margin-bottom: 16px;
    }
    .timeline-desc {
      font-size: 14px; font-weight: 300;
      color: rgba(240,237,232,0.6);
      line-height: 1.75; max-width: 600px;
    }
    .timeline-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
    .timeline-tag {
      font-family: var(--font-mono);
      font-size: 10px; letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 12px;
      background: rgba(255,62,142,0.08);
      border: 1px solid rgba(255,62,142,0.2);
      color: var(--pink2);
    }

    /* ──────────────── PROJECTS ──────────────── */
    #projects { background: var(--bg); }
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }
    .project-card {
      background: var(--bg);
      padding: 40px 36px;
      position: relative; overflow: hidden;
      cursor: none;
      transition: background 0.3s;
    }
    .project-card:hover { background: var(--bg2); }
    .project-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 0; background: var(--pink);
      transition: height 0.3s ease;
    }
    .project-card:hover::before { height: 2px; }
    .project-num {
      font-family: var(--font-mono);
      font-size: 11px; color: var(--gray2);
      margin-bottom: 24px;
      letter-spacing: 0.1em;
    }
    .project-icon {
      width: 48px; height: 48px;
      background: rgba(255,62,142,0.1);
      border: 1px solid rgba(255,62,142,0.2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      font-size: 20px;
      transition: background 0.2s;
    }
    .project-card:hover .project-icon { background: rgba(255,62,142,0.2); }
    .project-title {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .project-desc {
      font-size: 13px; font-weight: 300;
      color: rgba(240,237,232,0.55);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .project-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
    .project-tech {
      font-family: var(--font-mono);
      font-size: 10px; letter-spacing: 0.06em;
      padding: 3px 10px;
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--gray);
    }
    .project-links { display: flex; gap: 12px; }
    .project-link {
      font-family: var(--font-mono);
      font-size: 10px; letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--gray);
      display: flex; align-items: center; gap: 6px;
      transition: color 0.2s;
    }
    .project-link:hover { color: var(--pink); }
    .project-link svg { width: 12px; height: 12px; }
    .project-card.featured {
      grid-column: span 2;
    }
    .project-card.featured .project-title { font-size: 26px; }
    .project-card.featured .project-desc { font-size: 14px; max-width: 500px; }

    /* ──────────────── CONTACT ──────────────── */
    #contact {
      background: var(--bg2);
      text-align: center;
    }
    .contact-inner { max-width: 700px; margin: 0 auto; }
    .contact-subtext {
      font-size: 15px; font-weight: 300;
      color: rgba(240,237,232,0.55);
      line-height: 1.7; margin: 24px 0 50px;
    }
    .contact-email-link {
      font-family: var(--font-display);
      font-size: clamp(22px, 3vw, 36px);
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.02em;
      display: inline-flex; align-items: center; gap: 16px;
      transition: color 0.2s;
      margin-bottom: 60px;
    }
    .contact-email-link:hover { color: var(--pink); }
    .contact-email-link::before {
      content: '';
      width: 10px; height: 10px;
      background: var(--pink);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .contact-socials { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
    .contact-social {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 26px;
      border: 1px solid var(--border);
      color: var(--gray);
      text-decoration: none;
      font-family: var(--font-mono);
      font-size: 12px; letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.25s;
      position: relative; overflow: hidden;
    }
    .contact-social::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(255,62,142,0.07);
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .contact-social:hover { border-color: var(--pink); color: var(--pink); }
    .contact-social:hover::before { transform: translateY(0); }
    .contact-social svg { width: 16px; height: 16px; position: relative; }

    /* ──────────────── FOOTER ──────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 28px 60px;
      display: flex; align-items: center; justify-content: space-between;
      background: var(--bg);
    }
    .footer-left {
      font-family: var(--font-mono);
      font-size: 11px; color: var(--gray2);
      letter-spacing: 0.06em;
    }
    .footer-right {
      font-family: var(--font-mono);
      font-size: 11px; color: var(--gray2);
      letter-spacing: 0.06em;
    }
    .footer-right span { color: var(--pink); }

    /* ──────────────── ANIMATIONS ──────────────── */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ──────────────── SCROLLBAR ──────────────── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--gray2); border-radius: 2px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--pink); }

    /* ──────────────── RESPONSIVE ──────────────── */
    @media (max-width: 900px) {
      nav { padding: 20px 30px; }
      nav.scrolled { padding: 14px 30px; }
      .nav-links { display: none; }
      section { padding: 70px 30px; }
      #home { grid-template-columns: 1fr; padding: 120px 30px 60px; gap: 50px; }
      .hero-right { padding-left: 0; }
      .hero-image-wrap { width: 100%; max-width: 380px; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-sidebar { position: static; }
      .projects-grid { grid-template-columns: 1fr; }
      .project-card.featured { grid-column: span 1; }
      footer { flex-direction: column; gap: 10px; text-align: center; padding: 20px 30px; }
      .stats-bar { flex-wrap: wrap; }
      .stat-item { min-width: 50%; }
    }