* {
  box-sizing: border-box;
}

:root {
  --navy: #0f3268;
  --blue: #1464bd;
  --red: #e5242a;
  --muted: #69778d;
  --background: #f5f7fb;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  font-family: "Vazirmatn", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 50% 12%, rgba(20, 100, 189, 0.055), transparent 26rem),
    var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
}

.content {
  width: min(100%, 900px);
  text-align: center;
}

.logo {
  display: block;
  width: clamp(145px, 20vw, 225px);
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 50, 104, 0.08));
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 12px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background: var(--red);
}

.eyebrow p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(0.82rem, 1.5vw, 0.98rem);
  font-weight: 700;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.95rem, 4.7vw, 3.85rem);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -0.035em;
}

h1 strong {
  position: relative;
  color: var(--blue);
  white-space: nowrap;
}

h1 strong::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: -6px;
  width: 90%;
  height: 4px;
  border-radius: 20px;
  background: var(--red);
}

.description {
  max-width: 720px;
  margin: 17px auto 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.7vw, 1.08rem);
  line-height: 1.95;
  font-weight: 400;
}

.soon {
  direction: rtl;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--navy);
  font-size: clamp(1.18rem, 2.3vw, 1.55rem);
  font-weight: 800;
}

.soon i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.25s infinite ease-in-out;
}

.soon i:nth-of-type(2) {
  animation-delay: 0.16s;
}

.soon i:nth-of-type(3) {
  animation-delay: 0.32s;
}

@keyframes pulse {
  0%, 70%, 100% {
    opacity: 0.25;
    transform: translateY(0) scale(0.8);
  }

  35% {
    opacity: 1;
    transform: translateY(-4px) scale(1);
  }
}

@media (max-width: 600px) {
  .page {
    padding: 22px 16px;
  }

  .logo {
    width: clamp(135px, 43vw, 190px);
    margin-bottom: 12px;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 10px;
  }

  .eyebrow span {
    width: 19px;
  }

  .eyebrow p {
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(1.72rem, 8.6vw, 2.65rem);
    line-height: 1.52;
  }

  h1 strong::after {
    bottom: -4px;
    height: 3px;
  }

  .description {
    max-width: 520px;
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .soon {
    margin-top: 17px;
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soon i {
    animation: none;
    opacity: 1;
  }
}
