 :root {
      --font-en: 'Nunito Sans', sans-serif;
      --font-ar: 'IBM Plex Sans Arabic', sans-serif;
      --clr-bg:  #030914;
      --ease:    cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html, body {
      height: 100%;
      font-family: var(--font-en);
      background: var(--clr-bg);
      color: #fff;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .page {
      position: relative;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1.25rem;
      overflow: hidden;
    }

    /* ══════════════════════════════════════════════
       MASTER UNIFIED BACKGROUND
       This perfectly scales the entire Figma background
       maintaining exact coordinate relationships.
    ══════════════════════════════════════════════ */
    .unified-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100vw;
      min-width: 1200px; /* Ensures it crops instead of shrinking too much on mobile */
      height: 100vh;
      min-height: 800px;
      z-index: 0;
      pointer-events: none;
    }
    
    .unified-bg svg {
      width: 100%;
      height: 100%;
      object-fit: cover; /* This makes it act like a responsive background image */
      display: block;
    }

    /* ══════════════════════════════════════════════
       MAIN CONTENT 
    ══════════════════════════════════════════════ */
    .content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      max-width: 500px; 
      min-height: 600px;
      gap: clamp(1.5rem, 4vh, 2.5rem); 
      transform: translateY(-3vh); 
      animation: rise 0.85s var(--ease) both;
    }

    @keyframes rise {
      from { opacity: 0; transform: translateY(15px); }
      to   { opacity: 1; transform: translateY(-15px); }
    }

  /* ── Card ── */
    .card {
      width: 100%;
     min-height: clamp(320px, 50vh, 416px);
      border-radius: 24px;

      background: linear-gradient(to right, rgba(3, 7, 15, 0.85) 0%, rgba(255, 255, 255, 0.02) 100%); 
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      
      border: 2px solid rgba(255, 255, 255, 0.06); 
      overflow: hidden;
      
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.25);
        
      animation: cardIn 1s var(--ease) 0.1s both;

      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .card__body {
      padding: 2.5rem 2rem 1.5rem; 
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem; 
      position: relative;
      z-index: 2;
    }

    .logo {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 0.25rem;
    }

    .logo svg {
      width: 105px; 
      height: auto;
      display: block;
    }

    .headline-ar {
      font-family: var(--font-ar);
      font-weight: 700;
      font-size: clamp(1.1rem, 2.8vw, 1.55rem);
      line-height: 1.55;
      color: #fff;
      direction: rtl;
      margin-top: 0.25rem;
    }

    .tagline-en {
      font-family: var(--font-en);
      font-weight: 600;
      font-size: clamp(0.85rem, 3.5vw, 18px);
      color: #fff;
      letter-spacing: 0.01em;
    }

    /* ── Inner Card Waves ── */
    .card__waves {
      width: 100%;
      position: relative;
      overflow: hidden;
      margin-top: 1rem; 
      margin-bottom: 3.5rem; 
      z-index: 1;
    }
    
    .card__waves svg {
      width: 100%;
      height: auto;
      display: block;
      transform: scale(1.05); 
      transform-origin: center center; 
    }

    /* ── Access Section ── */
    .access {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      width: 100%;
      animation: rise 0.85s var(--ease) 0.22s both;
    }

    .access__label-row {
      display: flex;
      align-items: center;
      gap: 0.875rem;
    }

    .access__line {
      width: clamp(36px, 5.5vw, 20px);
      height: 0.9px;
      background:rgba(190, 219, 255, 1);
    }

    .access__label {
      font-family: var(--font-en);
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color:#BEDBFF;
    }

    /* ── Fixed Button ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-family: var(--font-en);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      color: #fff;
      padding: 0.85rem 2.5rem;
      border-radius: 15px;
      
      background: rgba(62, 119, 241, 0.25);
      border: 1px solid rgba(162, 244, 253, 0.35);
      box-shadow: 0 0 20px rgba(21, 93, 252, 0.4);
      
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s var(--ease);
    }

    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.15) 50%, transparent 80%);
      transform: translateX(-120%);
      transition: transform 0.55s ease;
    }
    
    .btn:hover::before { transform: translateX(120%); }

    .btn:hover {
      background: rgba(21, 93, 252, 0.40);
      border-color: rgba(162, 244, 253, 0.65);
      box-shadow: 0 0 28px rgba(21, 93, 252, 0.6), 0 0 10px rgba(162, 244, 253, 0.3);
      transform: translateY(-2px);
    }

    .access__footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      text-align: center;
    }
    .note-en { font-size: 1rem; color: rgba(255, 255, 255, 0.8); }
    .note-ar { font-family: var(--font-ar); font-size: 0.9rem; color:rgba(255, 255, 255, 0.8); direction: rtl; }

    @media (max-width: 600px) {
      .content { 
        transform: translateY(-2vh); 
      }
      
      .card__body {
        padding: 2rem 1.25rem 1rem; 
        
      }

      .card__waves {
        margin-bottom: 2rem; 
      }

      .access {
        gap: 1rem; 
      }
      
      .access__footer {
        margin-top: 0;
      }
    }