:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #182b27;
  background: #f7f5ef;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

.page {
  display: flex;
  width: min(100% - 48px, 1180px);
  min-height: 100svh;
  margin-inline: auto;
  flex-direction: column;
}

.topbar, .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar { padding-block: 32px; }

.wordmark {
  color: inherit;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.8px;
  text-decoration: none;
}

.wordmark span { color: #e46b4f; }

.country {
  color: #72817b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.message {
  position: relative;
  display: flex;
  min-height: 68vh;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 72px 100px;
}

.message::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 2%;
  width: clamp(220px, 32vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgb(24 43 39 / 9%);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgb(24 43 39 / 2%), 0 0 0 70px rgb(24 43 39 / 2%);
  content: "";
  transform: translateY(-50%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: #60756c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e46b4f;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .98;
}

.description {
  max-width: 460px;
  margin: 28px 0 0;
  color: #64736d;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.coming-soon {
  margin-top: 36px;
  padding: 12px 18px;
  border: 1px solid #d7ddd4;
  border-radius: 999px;
  color: #354a42;
  font-size: 13px;
  font-weight: 650;
}

.arabic {
  margin: 16px 0 0;
  color: #78877f;
  font-size: 15px;
}

.footer {
  gap: 20px;
  padding-block: 24px 28px;
  border-top: 1px solid #e2e5dd;
  color: #78847e;
  font-size: 11px;
}

@media (max-width: 600px) {
  .page { width: min(100% - 36px, 1180px); }
  .topbar { padding-block: 22px; }
  .message { min-height: 70svh; padding-block: 56px; }
  .message::after { top: 18%; right: -15%; width: 190px; transform: none; }
  .eyebrow { margin-bottom: 22px; font-size: 10px; }
  h1 { font-size: clamp(52px, 15vw, 76px); }
  .description { max-width: 340px; margin-top: 22px; font-size: 16px; }
  .footer { align-items: flex-start; font-size: 10px; }
}
