:root {
  --navy-950: #020d1a;
  --navy-900: #03172d;
  --navy-800: #062747;
  --blue-500: #0872c9;
  --blue-400: #159ce4;
  --white: #ffffff;
  --muted: #aec3d6;
  --line: rgba(255, 255, 255, 0.14);
  --pointer-x: 72%;
  --pointer-y: 35%;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--navy-950);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(21, 156, 228, 0.14), transparent 32rem),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 56%, #052440 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1440px);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 68px) clamp(24px, 7vw, 112px) clamp(24px, 3.5vw, 48px);
  overflow: hidden;
  isolation: isolate;
}

.site-header,
.hero,
.site-footer {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.brand-logo {
  display: block;
  width: clamp(230px, 25vw, 322px);
  height: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 7vw, 112px);
  padding: clamp(70px, 10vh, 126px) 0;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 820px;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 26px;
  color: #69bff1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  content: "";
  background: var(--blue-400);
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 7.2vw, 7.2rem);
  font-weight: 680;
  letter-spacing: -0.062em;
  line-height: 0.92;
  text-wrap: balance;
}

.intro {
  width: 100%;
  max-width: 590px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 36px;
  padding: 11px 17px 11px 14px;
  border: 1px solid rgba(105, 191, 241, 0.35);
  border-radius: 999px;
  background: rgba(7, 91, 149, 0.18);
  color: #dff4ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55c8ff;
  box-shadow: 0 0 0 5px rgba(85, 200, 255, 0.1);
}

.arabic-copy {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  margin: 42px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #8fa9bf;
  font-family: Tahoma, Arial, sans-serif;
}

.arabic-copy p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
}

.arabic-copy .arabic-title {
  flex: 0 0 auto;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #7893a9;
  font-size: 0.74rem;
  letter-spacing: 0.035em;
}

.footer-rule {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.21);
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 86px 0 76px;
  }

  .hero-copy {
    max-width: 650px;
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding-inline: 22px;
  }

  .brand-logo {
    width: 230px;
  }

  .hero {
    padding: 68px 0 54px;
  }

  h1 {
    font-size: clamp(2.85rem, 12.5vw, 3.35rem);
    letter-spacing: -0.052em;
  }

  .intro {
    margin-top: 26px;
  }

  .arabic-copy {
    display: block;
  }

  .arabic-copy .arabic-title {
    margin-bottom: 6px;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    line-height: 1.6;
    text-align: center;
  }

  .footer-rule {
    display: none;
  }
}
