:root {
  --bg: #f7f9fb;
  --ink: #101820;
  --muted: #5f7180;
  --accent: #0f7f8d;
  --accent-strong: #0b5261;
  --line: rgba(217, 226, 235, 0.78);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Tajawal", "Noto Kufi Arabic", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.soon {
  position: relative;
  min-height: 100vh;
  padding: clamp(22px, 4vw, 56px);
  overflow: hidden;
  isolation: isolate;
}

.soon::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 249, 251, 0.12), rgba(247, 249, 251, 0.72) 48%, #f7f9fb 82%),
    linear-gradient(180deg, rgba(247, 249, 251, 0), #f7f9fb 88%);
}

.soon-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.soon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 8px;
}

.soon-content {
  display: grid;
  align-content: center;
  width: min(760px, 100%);
  min-height: calc(100vh - 132px);
  margin-right: auto;
  margin-left: 0;
}

.status {
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px 14px;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 127, 141, 0.22);
  border-radius: 8px;
  font-weight: 900;
}

h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.03;
  letter-spacing: 0;
}

.soon-content > p:not(.status) {
  max-width: 680px;
  margin: 0 0 34px;
  color: #3f4d5a;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.8;
}

.soon-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: white;
  background: var(--accent-strong);
  box-shadow: 0 18px 42px rgba(11, 82, 97, 0.22);
}

.soon-actions span {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 760px) {
  .soon {
    min-height: 100svh;
    padding: 18px;
  }

  .soon::after {
    background:
      linear-gradient(180deg, rgba(247, 249, 251, 0.18), rgba(247, 249, 251, 0.82) 42%, #f7f9fb 92%),
      linear-gradient(90deg, rgba(247, 249, 251, 0.74), rgba(247, 249, 251, 0.35));
  }

  .soon-image {
    object-position: 62% center;
  }

  .soon-content {
    min-height: calc(100svh - 86px);
    padding-top: 40px;
  }

  h1 {
    font-size: 43px;
  }

  .soon-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .soon-actions span {
    text-align: center;
  }
}
