:root {
  --bg-dark:        #0D1B14;
  --bg-card:        #1A2E22;
  --green-primary:  #1B4332;
  --green-light:    #2D6A4F;
  --gold:           #D4A843;
  --gold-light:     #F0C96A;
  --text-primary:   #FFFFFF;
  --text-secondary: #A8C5B0;
  --text-muted:     #5A7A63;
  --max-width:      1100px;
  --font-serif:     Georgia, 'Times New Roman', serif;
  --font-sans:      -apple-system, BlinkMacSystemFont, 'SF Pro', 'Helvetica Neue', Arial, sans-serif;
}

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

html, body { background: var(--bg-dark); }

body {
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--gold-light); }

main {
  display: flex;
  flex-direction: column;
  gap: 96px;
  padding: 40px 20px;
}

section {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 60px 20px 20px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -40px 0 0 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 168, 67, 0.18), transparent 55%),
    radial-gradient(circle at 50% 30%, rgba(45, 106, 79, 0.25), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero-icon {
  width: 128px;
  height: 128px;
  margin: 0 auto 28px;
  border-radius: 28px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(212, 168, 67, 0.18);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 24px;
}
.lede {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* App Store button */
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.appstore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.appstore-btn svg { flex-shrink: 0; }
.appstore-btn span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}
.appstore-btn small {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.9;
}
.appstore-btn strong {
  font-size: 1.15rem;
  font-weight: 600;
}
.appstore-btn.coming-soon {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold) !important;
}
.hero-meta {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ---------- Section headings ---------- */

h2.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}
h2.section-title .accent {
  color: var(--gold);
  font-style: italic;
}

/* ---------- Features ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  padding: 32px 24px;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.3);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(212, 168, 67, 0.3));
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 400;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---------- How it works ---------- */

.how-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.how-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--bg-card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(212, 168, 67, 0.08);
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
}
.how-steps h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 400;
}
.how-steps p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---------- Pricing ---------- */

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 580px;
  margin: 0 auto 24px;
}
.price-card {
  background: var(--bg-card);
  padding: 36px 24px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(212, 168, 67, 0.12);
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.18);
}
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 400;
}
.price {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.price small {
  font-size: 1rem;
  color: var(--text-muted);
}
.price-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ---------- Verse callout ---------- */

.verse {
  text-align: center;
  padding: 40px 20px;
  max-width: 640px;
  margin: 0 auto;
}
.verse .arabic {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.6;
  direction: rtl;
}
.verse .translation {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.verse cite {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: normal;
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding: 40px 20px;
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--gold); }
.copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}

/* ---------- Mobile ---------- */

@media (max-width: 640px) {
  main { gap: 64px; padding: 20px; }
  .hero { padding: 40px 16px 8px; }
  .hero-icon { width: 104px; height: 104px; }
  .hero h1 { font-size: 2.75rem; }
  .tagline { font-size: 1.2rem; }
  .lede { font-size: 1rem; }
  h2.section-title { font-size: 2rem; margin-bottom: 36px; }
  .how-steps li { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px; }
  .step-num { width: 44px; height: 44px; font-size: 1.4rem; }
  .verse .arabic { font-size: 1.4rem; }
}

/* ---------- Privacy page ---------- */

.privacy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.privacy-nav {
  margin-bottom: 32px;
}
.privacy-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.privacy-nav a:hover { color: var(--gold); }
.privacy-page h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 400;
}
.privacy-page h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 40px 0 14px;
  font-weight: 400;
  color: var(--gold);
}
.privacy-page p, .privacy-page ul {
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.privacy-page ul {
  padding-left: 24px;
}
.privacy-page li {
  margin-bottom: 8px;
}
.privacy-page strong { color: var(--text-primary); }
.privacy-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.privacy-page th, .privacy-page td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
  color: var(--text-secondary);
}
.privacy-page th {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.privacy-page hr {
  border: 0;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  margin: 36px 0;
}
.privacy-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
</content>
</invoke>