:root {
  color-scheme: light;
  font-family: "Noto Sans Arabic", "Geeza Pro", "Segoe UI", sans-serif;
  color: #171714;
  background: #f4efe5;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 14% 15%, rgba(230, 94, 47, 0.1), transparent 24rem),
    #f4efe5;
}

main {
  width: min(100% - 40px, 1180px);
  min-height: 100svh;
  margin-inline: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-block: 32px 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f4efe5;
  background: #171714;
  font-size: 12px;
}

.hero {
  align-self: center;
  max-width: 760px;
  padding-block: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #5c5a52;
  font-size: 14px;
  font-weight: 600;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e65e2f;
  box-shadow: 0 0 0 6px rgba(230, 94, 47, 0.12);
  animation: breathe 2.4s ease-in-out infinite;
}

h1 {
  margin: 0;
  font-size: clamp(72px, 14vw, 184px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.intro {
  max-width: 560px;
  margin: 36px 0 0;
  color: #5c5a52;
  font-size: clamp(18px, 2.4vw, 27px);
  line-height: 1.7;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 20, 0.16);
  color: #747167;
  font-size: 12px;
  letter-spacing: 0.04em;
}

@keyframes breathe {
  50% {
    box-shadow: 0 0 0 10px rgba(230, 94, 47, 0.04);
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 28px, 1180px);
    padding-block: 20px;
  }

  .hero {
    padding-block: 56px;
  }

  .intro {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow span {
    animation: none;
  }
}
