:root {
  color-scheme: light;
  --ink: #2f2223;
  --muted: #6f6060;
  --paper: #fffaf3;
  --wine: #7d263a;
  --saffron: #dfa72c;
  --green: #3f6b56;
  --line: #eadfd3;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgb(223 167 44 / 14%), transparent 26rem),
    radial-gradient(circle at 85% 80%, rgb(63 107 86 / 10%), transparent 24rem),
    var(--paper);
  font-family:
    Inter, "Noto Sans Arabic", "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(70rem, calc(100% - 2rem));
  margin-inline: auto;
  padding-block: 1.25rem;
}

.brand {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  color: white;
  background: var(--wine);
  border-radius: 50%;
  place-items: center;
}

select {
  padding: 0.55rem 0.8rem;
  color: var(--ink);
  background: rgb(255 255 255 / 70%);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  font: inherit;
}

main {
  display: grid;
  min-height: calc(100vh - 9rem);
  padding: 2rem 1rem 5rem;
  place-items: center;
}

.hero {
  width: min(46rem, 100%);
  text-align: center;
}

.eyebrow {
  margin-block-end: 1rem;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0 auto;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

[dir="rtl"] h1 {
  letter-spacing: -0.035em;
}

.hero p {
  max-width: 37rem;
  margin: 1.75rem auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.status {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  color: var(--green);
  background: rgb(255 255 255 / 65%);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0.25rem rgb(63 107 86 / 12%);
}

.site-footer {
  padding: 1.5rem 1rem 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer a {
  color: var(--wine);
  font-weight: 750;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 35rem) {
  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }
}
