    :root {
      --bg: #0a0a0a;
      --bg2: #111111;
      --orange: #ff6b2b;
      --orange-glow: rgba(255, 107, 43, 0.18);
      --white: #f5f5f5;
      --gray: #888;
      --border: rgba(255,255,255,0.07);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom Cursor */
    .cursor {
      width: 12px; height: 12px;
      background: var(--orange);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.15s ease, opacity 0.15s;
      transform: translate(-50%, -50%);
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1.5px solid var(--orange);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.35s ease, opacity 0.2s;
      transform: translate(-50%, -50%);
      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: 20px 60px;
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 1.3rem;
      display: flex; align-items: center; gap: 10px;
      letter-spacing: -0.02em;
    }
    .nav-logo .dot { color: var(--orange); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      color: var(--gray); text-decoration: none; font-size: 0.88rem;
      font-weight: 500; transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1.5px; background: var(--orange);
      transition: width 0.25s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--orange); color: #fff;
      border: none; padding: 11px 26px;
      border-radius: 50px; font-family: 'DM Sans', sans-serif;
      font-weight: 500; font-size: 0.88rem; cursor: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .nav-cta:hover {
      background: #ff8050;
      transform: translateY(-1px);
      box-shadow: 0 6px 24px var(--orange-glow);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 120px 40px 80px;
      position: relative;
      overflow: hidden;
    }

    /* Background Glow */
    .hero::before {
      content: '';
      position: absolute;
      top: 30%; left: 50%;
      transform: translate(-50%, -50%);
      width: 700px; height: 400px;
      background: radial-gradient(ellipse, rgba(255,107,43,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    /* Grid lines */
    .hero::after {
      content: '';
      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;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid rgba(255,107,43,0.35);
      border-radius: 50px; padding: 7px 18px;
      font-size: 0.78rem; font-weight: 500;
      color: var(--orange); margin-bottom: 36px;
      background: rgba(255,107,43,0.07);
      animation: fadeUp 0.7s ease both;
    }
    .hero-badge .pulse {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 8px var(--orange);
      animation: pulse 1.8s ease infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    .hero-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 28px;
      animation: fadeUp 0.8s 0.1s ease both;
    }
    .hero-title .accent { color: var(--orange); }

    .hero-sub {
      max-width: 560px;
      color: var(--gray);
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 auto 48px;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-btns {
      display: flex; gap: 16px; align-items: center;
      justify-content: center; flex-wrap: wrap;
      animation: fadeUp 0.8s 0.3s ease both;
    }
    .btn-primary {
      background: var(--orange);
      color: #fff; border: none;
      padding: 14px 34px; border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; font-weight: 600;
      cursor: none; text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover {
      background: #ff8050; transform: translateY(-2px);
      box-shadow: 0 10px 40px var(--orange-glow);
    }
    .btn-secondary {
      color: var(--gray); text-decoration: none;
      font-size: 0.9rem; font-weight: 500;
      display: inline-flex; align-items: center; gap: 8px;
      transition: color 0.2s; cursor: none;
    }
    .btn-secondary:hover { color: var(--white); }
    .btn-secondary .play-icon {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; transition: border-color 0.2s;
    }
    .btn-secondary:hover .play-icon { border-color: var(--orange); }

    .hero-stats {
      display: flex; gap: 0; margin-top: 72px;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255,255,255,0.02);
      animation: fadeUp 0.8s 0.4s ease both;
    }
    .stat {
      padding: 24px 48px;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2rem; font-weight: 800;
      color: var(--white);
    }
    .stat-num span { color: var(--orange); }
    .stat-label { font-size: 0.78rem; color: var(--gray); margin-top: 4px; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── SKILLS MARQUEE ─── */
    .marquee-section {
      padding: 48px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .marquee-track {
      display: flex; gap: 48px;
      animation: marquee 22s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.85rem; color: var(--gray);
      font-weight: 500; flex-shrink: 0;
    }
    .marquee-item .m-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--orange);
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ─── ABOUT ─── */
    .section { padding: 110px 60px; max-width: 1200px; margin: 0 auto; }
    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 20px;
    }
    .section-tag::before {
      content: ''; width: 24px; height: 1.5px;
      background: var(--orange);
    }
    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800; line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }
    .section-title .accent { color: var(--orange); }

    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-text p {
      color: var(--gray); font-size: 1rem;
      line-height: 1.8; margin-bottom: 20px;
    }
    .about-img {
      position: relative;
    }
    .about-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }
    .code-block {
      font-family: 'Courier New', monospace;
      font-size: 0.82rem;
      line-height: 1.9;
      color: var(--gray);
    }
    .code-block .c-orange { color: var(--orange); }
    .code-block .c-white { color: var(--white); }
    .code-block .c-green { color: #5bdb8c; }
    .code-block .c-blue { color: #7eb8f7; }

    /* ─── PROJECTS ─── */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .project-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      cursor: none;
    }
    .project-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,107,43,0.3);
      box-shadow: 0 20px 60px rgba(255,107,43,0.08);
    }
    .project-card:first-child {
      grid-column: span 2;
    }
    .project-thumb {
      height: 220px;
      background: linear-gradient(135deg, #1a1a1a, #222);
      position: relative;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .project-thumb .p-icon {
      font-size: 4rem; opacity: 0.3;
    }
    .project-thumb::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 40%, var(--bg2));
    }
    .p1-bg { background: linear-gradient(135deg, #1a0f00, #2d1800); }
    .p2-bg { background: linear-gradient(135deg, #001a12, #002d1e); }
    .p3-bg { background: linear-gradient(135deg, #0a0015, #150028); }
    .project-body { padding: 24px; }
    .project-tags {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 12px;
    }
    .tag {
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 4px;
      background: rgba(255,107,43,0.1);
      color: var(--orange);
    }
    .project-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem; font-weight: 700;
      margin-bottom: 8px;
    }
    .project-desc {
      font-size: 0.85rem; color: var(--gray);
      line-height: 1.6; margin-bottom: 20px;
    }
    .project-link {
      font-size: 0.82rem; font-weight: 600;
      color: var(--orange); text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap 0.2s;
    }
    .project-link:hover { gap: 10px; }

    /* ─── SERVICES ─── */
    .services-wrap { background: #0d0d0d; }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .service-item {
      padding: 48px 40px;
      border: 1px solid var(--border);
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-item:hover { background: rgba(255,107,43,0.04); }
    .service-item::before {
      content: '';
      position: absolute; top: 0; left: -100%;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
      transition: left 0.5s;
    }
    .service-item:hover::before { left: 0; }
    .service-num {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem; font-weight: 800;
      letter-spacing: 0.1em; color: var(--orange);
      margin-bottom: 20px;
    }
    .service-icon {
      font-size: 2rem; margin-bottom: 20px;
    }
    .service-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem; font-weight: 700;
      margin-bottom: 12px;
    }
    .service-desc {
      font-size: 0.85rem; color: var(--gray); line-height: 1.7;
    }

    /* ─── CONTACT ─── */
    .contact-inner {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 80px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .contact-inner::before {
      content: '';
      position: absolute; top: -50%; left: 50%;
      transform: translateX(-50%);
      width: 500px; height: 300px;
      background: radial-gradient(ellipse, rgba(255,107,43,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .contact-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800; line-height: 1.05;
      letter-spacing: -0.03em; margin-bottom: 20px;
    }
    .contact-title .accent { color: var(--orange); }
    .contact-sub {
      color: var(--gray); font-size: 1rem;
      line-height: 1.7; max-width: 480px;
      margin: 0 auto 40px;
    }
    .contact-form {
      display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
    }
    .contact-input {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border);
      border-radius: 50px; padding: 14px 24px;
      color: var(--white); font-size: 0.9rem;
      font-family: 'DM Sans', sans-serif;
      outline: none; transition: border-color 0.2s;
    }
    .contact-input:focus { border-color: rgba(255,107,43,0.4); }
    .contact-input::placeholder { color: var(--gray); }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 60px;
      display: flex; align-items: center; justify-content: space-between;
      color: var(--gray); font-size: 0.82rem;
    }
    .footer-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 1.1rem; color: var(--white);
    }
    .footer-logo span { color: var(--orange); }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a {
      color: var(--gray); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--orange); }
    .social-links { display: flex; gap: 14px; }
    .social-btn {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gray); text-decoration: none; font-size: 0.85rem;
      transition: border-color 0.2s, color 0.2s;
    }
    .social-btn:hover { border-color: var(--orange); color: var(--orange); }

    /* Scroll animations */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }
