 * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background-color: #0e0e10;
      font-family: 'Barlow', sans-serif;
      color: #f5f0e8;
      overflow-x: hidden;
    }

    /* Noise texture 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;
    }

    /* Animated gradient orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.12;
      animation: drift 12s ease-in-out infinite;
    }
    .orb-1 { width: 500px; height: 500px; background: #c9a84c; top: -100px; right: -100px; animation-delay: 0s; }
    .orb-2 { width: 400px; height: 400px; background: #f5f0e8; bottom: 100px; left: -80px; animation-delay: -4s; }
    .orb-3 { width: 300px; height: 300px; background: #c9a84c; top: 50%; left: 50%; animation-delay: -8s; }

    @keyframes drift {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
    }

    /* Hero text animation */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp 0.8s ease forwards; opacity: 0; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.25s; }
    .delay-3 { animation-delay: 0.4s; }
    .delay-4 { animation-delay: 0.55s; }
    .delay-5 { animation-delay: 0.7s; }

    /* Glow button */
    .btn-glow {
      position: relative;
      background: #c9a84c;
      color: #0e0e10;
      font-weight: 600;
      border-radius: 6px;
      transition: all 0.3s ease;
      box-shadow: 0 0 0 rgba(201,168,76,0);
    }
    .btn-glow:hover {
      background: #e8c96a;
      box-shadow: 0 0 30px rgba(201,168,76,0.5), 0 0 60px rgba(201,168,76,0.2);
      transform: translateY(-2px);
    }

    /* Feature card */
    .feat-card {
      background: #16161a;
      border: 1px solid #2a2a30;
      border-radius: 12px;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .feat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.35s;
    }
    .feat-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
    .feat-card:hover::before { opacity: 1; }

    /* Discord mockup */
    .discord-mock {
      background: #313338;
      border-radius: 12px;
      font-family: 'Barlow', sans-serif;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    }
    .discord-sidebar { background: #2b2d31; border-radius: 12px 0 0 12px; }
    .discord-msg { animation: fadeUp 0.5s ease forwards; opacity: 0; }
    .discord-msg:nth-child(1) { animation-delay: 0.2s; }
    .discord-msg:nth-child(2) { animation-delay: 0.5s; }
    .discord-msg:nth-child(3) { animation-delay: 0.9s; }
    .discord-msg:nth-child(4) { animation-delay: 1.3s; }

    .bot-badge {
      background: #5865f2;
      color: white;
      font-size: 9px;
      padding: 1px 5px;
      border-radius: 3px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    /* Divider */
    .gold-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    }

    /* Scroll indicator */
    @keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
    .scroll-bounce { animation: bounce 1.8s ease-in-out infinite; }

    /* Step numbers */
    .step-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 5rem;
      font-weight: 900;
      color: rgba(201,168,76,0.12);
      line-height: 1;
      position: absolute;
      top: -10px;
      left: -10px;
    }

    /* Kurdish text direction */
    .rtl { direction: rtl; font-family: 'Barlow', sans-serif; }

    /* Navbar */
    .navbar { backdrop-filter: blur(20px); background: rgba(14,14,16,0.85); border-bottom: 1px solid #2a2a30; }

    /* Tag pill */
    .tag-pill {
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.3);
      color: #c9a84c;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
    }

    /* Section fade-in on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .revealed { opacity: 1; transform: translateY(0); }

    /* Image placeholder */
    .img-placeholder {
      background: linear-gradient(135deg, #1e1e24 0%, #16161a 100%);
      border: 2px dashed #2a2a30;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #8a8a96;
      font-size: 0.85rem;
      gap: 8px;
    }