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

    :root {
      --bg: #0a0a0a;
      --surface: #111111;
      --border: #1e1e1e;
      --accent: #e8ff47;
      --accent2: #ff6b35;
      --text: #f0f0f0;
      --muted: #666;
      --font-display: 'Syne', sans-serif;
      --font-mono: 'DM Mono', monospace;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-display);
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom cursor */
    .cursor {
      width: 12px; height: 12px;
      background: var(--accent);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.15s ease, opacity 0.15s ease;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid var(--accent);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transition: all 0.12s ease;
      mix-blend-mode: difference;
      opacity: 0.5;
    }

    /* 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='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: 1000;
      opacity: 0.4;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 4rem;
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }
    nav.scrolled {
      background: rgba(10,10,10,0.95);
      border-color: var(--border);
      backdrop-filter: blur(10px);
    }
    .nav-logo {
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--accent);
      font-family: var(--font-mono);
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--accent); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: 0.4;
    }
    .hero-glow {
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(232,255,71,0.06) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .hero-tag {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--accent);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.2s forwards;
    }
    .hero-title {
      font-size: clamp(3.5rem, 8vw, 8rem);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.03em;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.4s forwards;
    }
    .hero-title span { color: var(--accent); }
    .hero-sub {
      margin-top: 2rem;
      font-family: var(--font-mono);
      font-size: 1rem;
      color: var(--muted);
      max-width: 440px;
      line-height: 1.7;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.6s forwards;
    }
    .hero-cta {
      margin-top: 3rem;
      display: flex;
      gap: 1rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.8s forwards;
    }
    .btn {
      display: inline-block;
      padding: 0.85rem 2rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: all 0.2s;
      cursor: none;
    }
    .btn-primary {
      background: var(--accent);
      color: #0a0a0a;
    }
    .btn-primary:hover {
      background: #fff;
      transform: translateY(-2px);
    }
    .btn-outline {
      border: 1px solid var(--border);
      color: var(--muted);
    }
    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 4rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--muted);
      letter-spacing: 0.1em;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.2s forwards;
    }
    .scroll-line {
      width: 40px;
      height: 1px;
      background: var(--muted);
      animation: scrollLine 2s ease infinite;
    }

    /* SECTIONS */
    section {
      padding: 8rem 4rem;
      position: relative;
    }
    .section-label {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--accent);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 4rem;
    }

    /* EXPERIENCE */
    #experience { border-top: 1px solid var(--border); }
    .exp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }
    .exp-item {
      background: var(--bg);
      padding: 2.5rem;
      transition: background 0.2s;
    }
    .exp-item:hover { background: var(--surface); }
    .exp-period {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--accent);
      letter-spacing: 0.1em;
      margin-bottom: 0.75rem;
    }
    .exp-role {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }
    .exp-company {
      font-family: var(--font-mono);
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }
    .exp-desc {
      font-size: 0.875rem;
      color: #888;
      line-height: 1.7;
    }
    .exp-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 1.2rem;
    }
    .tag {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      padding: 0.3rem 0.6rem;
      border: 1px solid var(--border);
      color: var(--muted);
      letter-spacing: 0.05em;
    }

    /* PROJECTS */
    #projects { border-top: 1px solid var(--border); }
    .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: 2.5rem;
      display: flex;
      flex-direction: column;
      transition: background 0.2s;
      position: relative;
      overflow: hidden;
    }
    .project-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .project-card:hover::before { transform: scaleX(1); }
    .project-card:hover { background: var(--surface); }
    .project-num {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--accent);
      opacity: 0.5;
      margin-bottom: 1.5rem;
    }
    .project-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    .project-desc {
      font-size: 0.85rem;
      color: #888;
      line-height: 1.7;
      flex: 1;
    }
    .project-footer {
      margin-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .project-link {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--accent);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: opacity 0.2s;
    }
    .project-link:hover { opacity: 0.7; }

    /* CONTACT */
    #contact { border-top: 1px solid var(--border); }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }
    .contact-big {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    .contact-big span { color: var(--accent); }
    .contact-sub {
      font-family: var(--font-mono);
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.7;
      margin-top: 1.5rem;
    }
    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 1rem;
    }
    .contact-link-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      color: var(--text);
      transition: color 0.2s;
    }
    .contact-link-item:hover { color: var(--accent); }
    .contact-link-label {
      font-size: 1.1rem;
      font-weight: 700;
    }
    .contact-link-arrow {
      font-size: 1.2rem;
      transition: transform 0.2s;
    }
    .contact-link-item:hover .contact-link-arrow { transform: translate(4px, -4px); }

    /* FOOTER */
    footer {
      padding: 2rem 4rem;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--muted);
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollLine {
      0%, 100% { transform: scaleX(1); opacity: 1; }
      50% { transform: scaleX(0.4); opacity: 0.4; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav, .hero, section, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
      .exp-grid, .projects-grid { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .hero-scroll { left: 1.5rem; }
      nav { padding: 1.2rem 1.5rem; }
    }

    @media (max-width: 530px){
        .hero-title{
            font-size: 3rem;
        }
        .nav-links li a{
            font-size: .7rem;
        }
    }

    @media (max-width: 460px){
        .hero-title{
            font-size: 2.5rem;
        }
        .nav-links{
            gap: 1rem;
        }
    }


/*

*/
    .achievements-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--muted);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.45rem 0.85rem;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .achievements-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .achievements-btn.open {
      border-color: var(--accent);
      color: var(--accent);
    }
    .btn-icon {
      font-size: 1rem;
      line-height: 1;
      transition: transform 0.3s ease;
      display: inline-block;
    }
    .achievements-btn.open .btn-icon {
      transform: rotate(45deg);
    }
    .achievements-panel {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
      opacity: 0;
    }
    .achievements-panel.open {
      max-height: 400px;
      opacity: 1;
    }
    .achievements-list {
      list-style: none;
      padding: 1rem 0 0.25rem 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .achievements-list li {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.6;
      padding-left: 1rem;
      position: relative;
    }
    .achievements-list li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-size: 0.7rem;
    }