:root {
  --background: 40 20% 96%;
  --foreground: 30 10% 12%;
  --primary: 38 80% 50%;
  --muted-foreground: 30 10% 38%;
  --accent: 28 60% 50%;

  --font-arabic: 'Noto Naskh Arabic', serif;
  --font-latin: 'Space Grotesk', sans-serif;
  --font-amiri-quran: 'Amiri Quran', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-latin);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root {
  min-height: 100vh;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: hsl(var(--background));
}

.bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    hsl(var(--background)),
    hsl(var(--background)),
    hsla(28, 60%, 50%, 0.1)
  );
}

.blob {
  width: 460px;
  height: 460px;
  will-change: transform;
  background: radial-gradient(
    circle at 50% 50%,
    hsla(38, 88%, 58%, 0.78) 0%,
    hsla(34, 84%, 52%, 0.52) 34%,
    hsla(30, 78%, 46%, 0.22) 58%,
    transparent 76%
  );
  filter: blur(10px);
}

@media (min-width: 768px) {
  .blob {
    width: 620px;
    height: 620px;
  }
}

.content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.title {
  font-family: var(--font-amiri-quran);
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 1;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  letter-spacing: 0;
  text-shadow: none;
}

@media (min-width: 768px) {
  .title {
    font-size: 8rem;
  }
}

.divider {
  margin: 0 auto 2rem;
  height: 1px;
  background-color: hsl(var(--primary));
}

.tagline {
  font-family: var(--font-arabic);
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin: 0 auto 3rem;
  max-width: 28rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .tagline {
    font-size: 1.25rem;
  }
}

.connect-label {
  font-family: var(--font-latin);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.email-cta {
  display: inline-block;
  font-family: var(--font-latin);
  font-size: 0.875rem;
  color: hsl(var(--primary));
  border: 1px solid hsla(38, 80%, 50%, 0.3);
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  text-decoration: none;
  letter-spacing: 0.025em;
  transition: background-color 0.3s ease;
}

.email-cta:hover {
  background-color: hsla(38, 80%, 50%, 0.1);
}

.ring {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 9999px;
  border: 1px solid hsla(38, 80%, 50%, 0.25);
  pointer-events: none;
}

.copyright {
  position: absolute;
  bottom: 2rem;
  font-family: var(--font-latin);
  font-size: 0.75rem;
  color: hsla(30, 10%, 38%, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
