/* ═══════════════════════════════════════════════
   Masa7a — Coming Soon page
   ═══════════════════════════════════════════════ */

:root {
  --primary:        #1A6B3C;
  --primary-light:  #2D8C53;
  --secondary:      #F5A623;
  --bg-dark:        #0D1B2A;
  --bg-deep:        #06101A;
  --text:           #F8FAFC;
  --text-muted:     rgba(248, 250, 252, .7);
  --border:         rgba(255, 255, 255, .12);
}

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

html, body {
  min-height: 100%;
  font-family: 'Cairo', system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #0D2A1A 0%, var(--bg-deep) 70%);
  overflow-x: hidden;
}

/* ── Decorative background blobs ───────────────── */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.blob-1 { top: -140px; right: -120px; width: 420px; height: 420px; background: var(--primary); animation: float1 18s ease-in-out infinite; }
.blob-2 { bottom: -180px; left: -120px; width: 460px; height: 460px; background: var(--secondary); opacity: .25; animation: float2 24s ease-in-out infinite; }
.blob-3 { top: 40%; left: 30%; width: 320px; height: 320px; background: var(--primary-light); opacity: .2; animation: float3 30s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -50px); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-60px, -30px); } }

/* ── Stage ─────────────────────────────────────── */
.stage {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ── Brand ─────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.brand-icon { display: flex; }
.brand-text { text-align: start; line-height: 1; }
.brand-ar {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--text);
}
.brand-en {
  display: block;
  margin-top: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--secondary);
}

/* ── Headline ──────────────────────────────────── */
.headline {
  margin-top: 4px;
  font-size: clamp(1.55rem, 4.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.35;
  max-width: 600px;
}
.line-ar { display: block; }
.line-en {
  display: block;
  margin-top: 8px;
  font-size: .58em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .2px;
  direction: ltr;
}

.tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── Countdown ─────────────────────────────────── */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.cd-unit {
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cd-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cd-lbl {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .5px;
}
.cd-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  padding-bottom: 14px;
}

/* ── Subscribe form ────────────────────────────── */
.subscribe {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  padding: 6px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.subscribe input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
}
.subscribe input::placeholder { color: rgba(255,255,255,.45); }
.subscribe button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border: none;
  padding: 0 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.subscribe button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 107, 60, .45);
}
.btn-check { display: none; }
.subscribe.success .btn-text { display: none; }
.subscribe.success .btn-check { display: inline-flex; }
.subscribe.success { border-color: var(--secondary); }

.form-note {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: -10px;
}
.form-note.success { color: var(--secondary); font-weight: 600; }

/* ── Features row ──────────────────────────────── */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin-top: 8px;
}
.features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--text-muted);
  padding: 8px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-1 { background: var(--secondary); }
.dot-2 { background: var(--primary-light); }
.dot-3 { background: #4CAF50; }

/* ── Footer ────────────────────────────────────── */
.footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.social {
  display: flex;
  gap: 12px;
}
.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background .15s, color .15s, transform .15s;
}
.social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.copyright {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

/* ── Small screens ─────────────────────────────── */
@media (max-width: 520px) {
  .countdown { padding: 10px 14px; gap: 4px; }
  .cd-unit { min-width: 56px; }
  .cd-num { font-size: 1.7rem; }
  .cd-sep { font-size: 1.2rem; padding-bottom: 12px; }
  .subscribe { flex-direction: column; border-radius: 18px; padding: 8px; }
  .subscribe button { padding: 12px 0; }
  .features li { font-size: .8rem; }
}
