:root {
      --zik-bg: #0c0c0e;
      --zik-surface: #141416;
      --zik-border: #2a2a2f;
      --zik-accent: #1AFF7A;
      --zik-accent2: #ff4f6d;
      --zik-text: #f0f0f0;
      --zik-muted: #7a7a88;
    }

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

    html, body {
      height: 100%;
    }

    body {
      background-color: var(--zik-bg);
      color: var(--zik-text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
    }

    .bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }

    /* Grain */
    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* Glow blob */
    .glow-blob {
      position: fixed;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }
    .glow-blob-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(26,255,122,0.07) 0%, transparent 70%);
      top: -100px;
      left: -100px;
    }
    .glow-blob-2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,79,109,0.05) 0%, transparent 70%);
      bottom: 0;
      right: -80px;
    }

    /* Header */
    header {
      position: relative;
      z-index: 10;
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #1a1a20;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    /* Main hero */
    main {
      position: relative;
      z-index: 10;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 3rem 2rem;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--zik-accent);
      border: 1px solid rgba(26,255,122,0.25);
      padding: 0.35rem 0.9rem;
      border-radius: 2px;
      margin-bottom: 1rem;
      animation: fadeUp 0.6s ease both;
    }

    .tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--zik-accent);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 15vw, 9rem);
      line-height: 0.9;
      letter-spacing: 0.02em;
      margin-bottom: 1.8rem;
      animation: fadeUp 0.6s ease 0.1s both;
    }

    h1 .line-2 {
      color: var(--zik-accent);
      display: block;
    }

    .subtitle {
      font-size: clamp(0.9rem, 2vw, 1.05rem);
      color: var(--zik-muted);
      line-height: 1.7;
      margin-bottom: 3rem;
      animation: fadeUp 0.6s ease 0.2s both;
    }

    /* Buttons */
    .btn-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      width: 100%;
      max-width: 320px;
      animation: fadeUp 0.6s ease 0.3s both;
    }

    .btn-primary {
      width: 100%;
      background: var(--zik-accent);
      color: #0c0c0e;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.15rem;
      letter-spacing: 0.1em;
      padding: 1rem 2rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(26,255,122,0.22);
    }
    .btn-primary:active { transform: translateY(0); }

    .btn-secondary {
      width: 100%;
      background: transparent;
      color: var(--zik-text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      padding: 0.85rem 2rem;
      border: 1px solid var(--zik-border);
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-secondary:hover {
      border-color: rgba(240,240,240,0.25);
      background: rgba(240,240,240,0.03);
    }

    /* Instagram icon */
    .icon-insta {
      width: 17px;
      height: 17px;
      flex-shrink: 0;
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      width: 100%;
      color: var(--zik-border);
      font-size: 0.7rem;
    }
    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--zik-border);
    }

    /* Footer */
    footer {
      position: relative;
      z-index: 10;
      padding: 1.2rem 2rem;
      border-top: 1px solid #1a1a20;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    footer p {
      font-size: 0.72rem;
      color: var(--zik-muted);
      letter-spacing: 0.05em;
    }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--zik-bg); }
    ::-webkit-scrollbar-thumb { background: var(--zik-border); border-radius: 3px; }