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

    :root {
      --bg: #050508;
      --surface: #0d0d14;
      --border: #1a1a2e;
      --accent: #6c63ff;
      --accent2: #00f5c4;
      --text: #e8e8f0;
      --muted: #5a5a7a;
      --mono: 'Space Mono', monospace;
      --sans: 'Syne', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* 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: 999;
      opacity: 0.4;
    }

    /* glow blobs */
    .blob {
      position: fixed;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }
    .blob-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(108,99,255,0.12) 0%, transparent 70%);
      top: -200px; left: -200px;
      animation: drift1 20s ease-in-out infinite alternate;
    }
    .blob-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,245,196,0.08) 0%, transparent 70%);
      bottom: -100px; right: -100px;
      animation: drift2 25s ease-in-out infinite alternate;
    }
    @keyframes drift1 { to { transform: translate(100px, 80px); } }
    @keyframes drift2 { to { transform: translate(-80px, -60px); } }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 20px 40px;
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      backdrop-filter: blur(20px);
      background: rgba(5,5,8,0.7);
    }
    .logo {
      font-family: var(--mono);
      font-size: 18px;
      letter-spacing: -0.5px;
      color: var(--text);
    }
    .logo span { color: var(--accent2); }
    .nav-tag {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .nav-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent2);
      box-shadow: 0 0 10px var(--accent2);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

    /* HERO */
    .hero {
      position: relative; z-index: 1;
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: center; align-items: flex-start;
      padding: 120px 40px 80px;
      max-width: 1100px; margin: 0 auto;
    }
    .hero-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }
    .hero h1 {
      font-family: var(--sans);
      font-weight: 800;
      font-size: clamp(52px, 8vw, 110px);
      line-height: 0.92;
      letter-spacing: -3px;
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 0.8s 0.4s forwards;
    }
    .hero h1 .line2 {
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    }
    .hero h1 .accent { color: var(--accent); }
    .hero-desc {
      font-size: 17px;
      line-height: 1.7;
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.8s 0.6s forwards;
    }
    .hero-cta {
      display: flex; gap: 16px; flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
    }
    .btn {
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 1px;
      padding: 14px 28px;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 0 30px rgba(108,99,255,0.3);
    }
    .btn-primary:hover {
      background: #7c74ff;
      box-shadow: 0 0 50px rgba(108,99,255,0.5);
      transform: translateY(-2px);
    }
    .btn-ghost {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover {
      color: var(--text);
      border-color: var(--muted);
      transform: translateY(-2px);
    }

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

    /* STATS BAR */
    .stats-bar {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 28px 40px;
      display: flex; gap: 0;
      max-width: 1100px; margin: 0 auto;
    }
    .stat {
      flex: 1;
      padding: 0 32px;
      border-right: 1px solid var(--border);
    }
    .stat:first-child { padding-left: 0; }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: var(--mono);
      font-size: 32px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -1px;
    }
    .stat-num span { color: var(--accent2); }
    .stat-label {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* SERVICES */
    .section {
      position: relative; z-index: 1;
      max-width: 1100px; margin: 0 auto;
      padding: 100px 40px;
    }
    .section-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .section h2 {
      font-weight: 800;
      font-size: clamp(36px, 5vw, 60px);
      letter-spacing: -2px;
      line-height: 1;
      margin-bottom: 60px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }
    .card {
      background: var(--bg);
      padding: 36px 32px;
      transition: background 0.2s;
      position: relative;
      overflow: hidden;
    }
    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      opacity: 0;
      transition: opacity 0.3s;
    }
    .card:hover { background: var(--surface); }
    .card:hover::before { opacity: 1; }
    .card-icon {
      font-size: 28px;
      margin-bottom: 20px;
    }
    .card h3 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .card p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--muted);
    }
    .card-tag {
      display: inline-block;
      margin-top: 20px;
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent2);
      border: 1px solid rgba(0,245,196,0.2);
      padding: 4px 10px;
      border-radius: 2px;
    }

    /* TECH STACK */
    .stack-row {
      display: flex; flex-wrap: wrap; gap: 12px;
      margin-top: 40px;
    }
    .stack-item {
      font-family: var(--mono);
      font-size: 12px;
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 3px;
      color: var(--muted);
      transition: all 0.2s;
    }
    .stack-item:hover {
      border-color: var(--accent);
      color: var(--text);
    }

    /* CONTACT */
    .contact-box {
      border: 1px solid var(--border);
      padding: 60px;
      position: relative;
      overflow: hidden;
    }
    .contact-box::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top left, rgba(108,99,255,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .contact-box h2 {
      font-weight: 800;
      font-size: clamp(32px, 4vw, 52px);
      letter-spacing: -2px;
      margin-bottom: 16px;
    }
    .contact-box p {
      color: var(--muted);
      font-size: 16px;
      margin-bottom: 36px;
      max-width: 480px;
    }
    .contact-email {
      font-family: var(--mono);
      font-size: 14px;
      color: var(--accent2);
      text-decoration: none;
      border-bottom: 1px solid rgba(0,245,196,0.3);
      padding-bottom: 2px;
      transition: border-color 0.2s;
    }
    .contact-email:hover { border-color: var(--accent2); }

    /* FOOTER */
    footer {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border);
      padding: 28px 40px;
      max-width: 1100px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    footer p {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--muted);
    }
    footer span { color: var(--accent2); }

    @media (max-width: 600px) {
      nav { padding: 16px 20px; }
      .hero { padding: 100px 20px 60px; }
      .stats-bar { flex-direction: column; gap: 24px; padding: 28px 20px; }
      .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 24px; }
      .stat:last-child { border-bottom: none; }
      .section { padding: 60px 20px; }
      .contact-box { padding: 36px 24px; }
      footer { padding: 24px 20px; }
    }
