:root {
  --bg: #0f1115;
  --bg-alt: #171a21;
  --saffron: #ff9933;
  --saffron-light: #ffb366;
  --text: #f2f2f0;
  --text-muted: #a8a8a8;
  --border: rgba(255, 153, 51, 0.25);
}

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

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 153, 51, 0.12),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 153, 51, 0.08),
      transparent 45%
    ),
    var(--bg);
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.om {
  font-size: 2rem;
  color: var(--saffron);
  font-family: "Tiro Devanagari Hindi", serif;
}

.brand {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  max-width: 720px;
  margin: 0 auto;
}

.tagline {
  font-family: "Noto Sans Gujarati", sans-serif;
  font-size: 1.4rem;
  color: var(--saffron-light);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.message {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.status-card {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  margin-bottom: 3.5rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5c5c;
  box-shadow: 0 0 8px #ff5c5c;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.contact {
  border-top: 1px solid var(--border);
  padding-top: 2.2rem;
  width: 100%;
}

.contact h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.contact p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-link {
  color: var(--bg);
  background: var(--saffron);
  text-decoration: none;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-link:hover {
  background: var(--saffron-light);
  transform: translateY(-2px);
}

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