:root {
  --color-bg: #07090b;
  --color-surface: #11141a;
  --color-surface-alt: #161a22;
  --color-primary: #e53935;
  --color-primary-soft: rgba(229, 57, 53, 0.16);
  --color-text: #f9fafb;
  --color-text-muted: #9ca3af;
  --color-border: #2d333b;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.35);
  --container-width: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151823 0, #05060a 55%, #050509 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: var(--color-primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.simple-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.simple-nav a {
  color: #ffecec;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  font-weight: 500;
}

.simple-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6b6b, #e53935);
  transition: width 0.2s ease-out;
}

.simple-nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 72px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 4vw, 3rem);
  letter-spacing: 0.03em;
}

.hero-subtitle {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: #fcdada;
  max-width: 30rem;
}

.hero-description {
  margin: 0 0 24px;
  color: var(--color-text-muted);
  max-width: 32rem;
  font-size: 0.98rem;
}

.primary-button {
  border: none;
  outline: none;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  background: var(--color-primary);
  color: #fff;
  cursor: not-allowed;
  box-shadow: 0 14px 28px rgba(229, 57, 53, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.92;
}

.primary-button[disabled] {
  filter: saturate(0.98);
}

.hero-card {
  background: radial-gradient(circle at top, #1f2430 0, #10131a 60%, #05060a 100%);
  border-radius: 28px;
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 360px;
  margin-left: auto;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hero-card-title {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero-card-location {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(15, 118, 110, 0.1);
  color: #a5f3fc;
}

.hero-card-body {
  background: rgba(5, 6, 10, 0.8);
  border-radius: 20px;
  padding: 14px 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.prayer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 8px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.prayer-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.prayer-row span:last-child {
  color: #fee2e2;
  font-weight: 500;
}

.hero-card-note {
  margin: 10px 2px 2px;
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.section {
  padding: 40px 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #181b24 0, #07090b 55%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section h2 {
  font-size: 1.5rem;
  margin: 0 0 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.08), rgba(15, 23, 42, 0.9));
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  border: 1px solid rgba(229, 57, 53, 0.25);
  box-shadow: var(--shadow-subtle);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--color-text-muted);
}

.privacy-content {
  background: rgba(5, 6, 10, 0.85);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-subtle);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.privacy-content h3 {
  margin: 16px 0 8px;
  font-size: 1rem;
  color: var(--color-text);
}

.privacy-content p {
  margin: 0 0 10px;
}

.privacy-content ul {
  margin: 0 0 10px 18px;
  padding: 0;
}

.privacy-content li {
  margin-bottom: 4px;
}

.contact-email {
  margin-top: 10px;
  font-size: 1rem;
}

.contact-email a {
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0 22px;
  background: radial-gradient(circle at top, #111827 0, #050509 55%);
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 56px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    margin: 10px auto 0;
  }

  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 10px 0;
  }

  .simple-nav {
    gap: 12px;
    font-size: 0.8rem;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .section {
    padding: 30px 0;
  }

  .privacy-content {
    padding: 14px 14px 12px;
  }
}


