    * { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg: #0a0a0f;
      --bg-soft: #12121a;
      --card: #16161f;
      --border: rgba(255,255,255,0.08);
      --text: #ededf0;
      --text-soft: #a1a1aa;
      --accent: #ff6b35;
      --accent-2: #f7c948;
      --gradient: linear-gradient(135deg, #ff6b35 0%, #f7c948 100%);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Animated background */
    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background:
        radial-gradient(circle at 20% 30%, rgba(255,107,53,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247,201,72,0.1) 0%, transparent 50%);
      z-index: -1;
      pointer-events: none;
    }

    h1, h2, h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      padding: 20px 0;
      z-index: 100;
      backdrop-filter: blur(12px);
      background: rgba(10,10,15,0.7);
      border-bottom: 1px solid var(--border);
    }
    nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      color: var(--text-soft);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
    }
    .hero-content { max-width: 800px; }
    .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.3);
        border-radius: 100px;
        font-size: 0.85rem;
        color: #22c55e;
        margin-bottom: 24px;
        }
        .badge::before {
        content: '';
        width: 8px; height: 8px;
        background: #22c55e;
        border-radius: 50%;
        animation: pulse 2s infinite;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
        }
        @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            opacity: 1;
        }
        70% {
            box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
            opacity: 1;
        }
        100% {
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
            opacity: 1;
        }
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 1.05;
      margin-bottom: 24px;
    }
    .hero h1 span {
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero p {
      font-size: 1.2rem;
      color: var(--text-soft);
      margin-bottom: 40px;
      max-width: 600px;
    }
    .cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 100px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--gradient);
      color: #0a0a0f;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(255,107,53,0.4);
    }
    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }
    .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* SECTIONS */
    section { padding: 100px 0; }
    .section-header {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 64px;
    }
    .section-label {
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }
    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 16px;
    }
    .section-header p {
      color: var(--text-soft);
      font-size: 1.1rem;
    }

    /* PROJECTS GRID */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 24px;
    }
    .project-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.6s forwards;
    }
    .project-card:nth-child(1) { animation-delay: 0.05s; }
    .project-card:nth-child(2) { animation-delay: 0.1s; }
    .project-card:nth-child(3) { animation-delay: 0.15s; }
    .project-card:nth-child(4) { animation-delay: 0.2s; }
    .project-card:nth-child(5) { animation-delay: 0.25s; }
    .project-card:nth-child(6) { animation-delay: 0.3s; }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .project-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255,107,53,0.3);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }
    .project-image {
      aspect-ratio: 16/10;
      background: var(--bg-soft);
      position: relative;
      overflow: hidden;
    }
    .project-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }
    .project-card:hover .project-image img { transform: scale(1.05); }
    .project-image-placeholder {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--bg-soft), var(--card));
      color: var(--accent);
    }
    .project-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
    .project-tag {
      display: inline-block;
      font-size: 0.75rem;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
      font-weight: 600;
    }
    .project-info h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
    }
    .project-info p {
      color: var(--text-soft);
      font-size: 0.95rem;
      margin-bottom: 20px;
      flex: 1;
    }
    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 500;
    }
    .project-link::after {
      content: '→';
      transition: transform 0.3s;
    }
    .project-card:hover .project-link::after { transform: translateX(4px); }

    /* SERVICES */
    .services {
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .service-card {
      padding: 32px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      transition: all 0.3s;
    }
    .service-card:hover {
      border-color: rgba(255,107,53,0.3);
      transform: translateY(-4px);
    }
    .service-icon {
      width: 48px; height: 48px;
      background: var(--gradient);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }
    .service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
    .service-card p { color: var(--text-soft); font-size: 0.95rem; }

    /* CONTACT */
    .contact-box {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 64px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .contact-box::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 50%);
      pointer-events: none;
    }
    .contact-box > * { position: relative; }
    .contact-box h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
    .contact-box p { color: var(--text-soft); margin-bottom: 32px; font-size: 1.1rem; }
    .email-link {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      color: var(--text);
      text-decoration: none;
      border-bottom: 2px solid var(--accent);
      padding-bottom: 4px;
      transition: color 0.3s;
    }
    .email-link:hover { color: var(--accent); }

    /* FOOTER */
    footer {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--text-soft);
      font-size: 0.9rem;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      section { padding: 60px 0; }
      .hero { padding: 100px 0 40px; }
      .contact-box { padding: 40px 24px; }
    }