:root {
  --white: #FAFAFA;
  --black: #0A0A0A;
  --grey1: #1A1A1A;
  --grey2: #2A2A2A;
  --grey3: #555555;
  --grey4: #888888;
  --grey5: #CCCCCC;
  --grey6: #F0F0F0;
  --grey7: #F7F7F7;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-muted: #A8883A;
  --gold-glow: rgba(201,168,76,0.08);
  --gold-border: rgba(201,168,76,0.25);
  --text-secondary: #B8B8B8;
  --text-tertiary: #9E9E9E;
  --text-muted: #8A8A8A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Mono', monospace;
  background: var(--black);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  font-size: 14px;
}
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-glow);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--grey1);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Amiri', serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: transparent;
  color: var(--gold);
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold-border);
  font-weight: 400;
  transition: all 0.3s;
  letter-spacing: 2px;
  font-size: 10px;
}
.nav-links .nav-cta:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  position: absolute;
  transition: all 0.3s;
}
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 11px; }
.mobile-menu-btn span:nth-child(3) { top: 22px; }
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.03) 0%, transparent 70%);
  border-radius: 50%;
}
.geo-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, var(--gold-muted) 80px, var(--gold-muted) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, var(--gold-muted) 80px, var(--gold-muted) 81px);
  pointer-events: none;
}
.hero-content { max-width: 900px; text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--gold-border); padding: 0.5rem 1.5rem;
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold);
  font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 3rem; animation: fadeUp 0.8s ease both;
}
.hero-title-arabic {
  font-family: 'Amiri', serif; font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--white); line-height: 1.2; margin-bottom: 0.75rem;
  direction: rtl; animation: fadeUp 0.8s ease 0.1s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300; color: var(--text-tertiary); letter-spacing: 5px;
  text-transform: uppercase; margin-bottom: 2.5rem; animation: fadeUp 0.8s ease 0.2s both;
}
.hero-desc {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--text-secondary); max-width: 580px; margin: 0 auto 3.5rem;
  line-height: 1.8; font-weight: 300; animation: fadeUp 0.8s ease 0.3s both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: var(--gold); padding: 1rem 2.5rem;
  border: 1px solid var(--gold-border); text-decoration: none;
  font-family: 'DM Mono', monospace; font-weight: 400; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; transition: all 0.4s ease;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-cta:hover { background: var(--gold-glow); border-color: var(--gold); transform: translateY(-2px); }
.hero-cta svg { width: 18px; height: 18px; stroke: var(--gold); }
.section-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-border), transparent); }
.features { padding: 7rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold-muted); }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 300; letter-spacing: -0.5px; margin-bottom: 1rem; line-height: 1.2;
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text-tertiary);
  max-width: 500px; margin-bottom: 4rem; line-height: 1.7; font-weight: 300;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.08); }
.feature-card { background: var(--black); padding: 2.5rem; transition: all 0.4s ease; }
.feature-card:hover { background: var(--grey1); }
.feature-icon { font-size: 1.2rem; margin-bottom: 1.5rem; opacity: 0.8; }
.feature-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--white); margin-bottom: 0.75rem; letter-spacing: 0.5px; }
.feature-card p { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
.verse-section { padding: 8rem 2rem; background: var(--grey1); position: relative; overflow: hidden; }
.verse-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.02; background-image: repeating-linear-gradient(0deg, transparent, transparent 50px, var(--gold) 50px, var(--gold) 51px), repeating-linear-gradient(90deg, transparent, transparent 50px, var(--gold) 50px, var(--gold) 51px); }
.verse-inner { max-width: 750px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.verse-ornament { color: var(--gold-muted); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 8px; margin-bottom: 3rem; opacity: 0.5; }
.verse-arabic { font-family: 'Amiri', serif; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 2; color: var(--white); direction: rtl; margin-bottom: 2rem; }
.verse-translation { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold-light); font-style: italic; font-weight: 300; margin-bottom: 1.5rem; line-height: 1.8; }
.verse-ref { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; }
footer { padding: 5rem 2rem 2rem; max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 3rem; border-bottom: 1px solid var(--gold-glow); gap: 2rem; flex-wrap: wrap; }
.footer-brand p { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--text-muted); max-width: 300px; margin-top: 1rem; line-height: 1.8; font-weight: 300; }
.footer-links { display: flex; gap: 4rem; }
.footer-col h4 { font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 1.25rem; }
.footer-col a { display: block; text-decoration: none; color: var(--text-muted); font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 300; margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-muted); font-weight: 300; }
.legal-page { padding: 10rem 2rem 5rem; max-width: 720px; margin: 0 auto; }
.legal-page .page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--white); font-weight: 300; letter-spacing: 1px; margin-bottom: 0.5rem; }
.legal-page .page-updated { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gold-glow); }
.legal-page h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--white); margin-top: 3rem; margin-bottom: 0.75rem; letter-spacing: 0.5px; }
.legal-page p, .legal-page li { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--text-secondary); line-height: 2; margin-bottom: 1rem; font-weight: 300; }
.legal-page strong { color: var(--white); font-weight: 500; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page li { margin-bottom: 0.5rem; }
.legal-page a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-border); transition: border-color 0.3s; }
.legal-page a:hover { border-color: var(--gold); }
.support-page { padding: 10rem 2rem 5rem; max-width: 720px; margin: 0 auto; }
.support-page .page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--white); font-weight: 300; letter-spacing: 1px; margin-bottom: 0.5rem; }
.support-page .page-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text-tertiary); margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gold-glow); line-height: 1.7; font-weight: 300; }
.support-card { background: var(--grey1); border: 1px solid rgba(201,168,76,0.08); padding: 2.5rem; margin-bottom: 1px; }
.support-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; letter-spacing: 0.5px; }
.support-card p { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--text-muted); line-height: 1.9; font-weight: 300; }
.support-card a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-border); transition: border-color 0.3s; }
.support-card a:hover { border-color: var(--gold); }
.faq-section { margin-top: 4rem; }
.faq-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--white); margin-bottom: 2rem; letter-spacing: 0.5px; }
.faq-item { padding: 1.75rem 0; border-bottom: 1px solid rgba(201,168,76,0.06); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--white); margin-bottom: 0.6rem; font-size: 1.1rem; letter-spacing: 0.3px; }
.faq-a { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--text-muted); line-height: 1.9; font-weight: 300; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { .nav-links { display: none; } .mobile-menu-btn { display: block; } .features-grid { grid-template-columns: 1fr; } .footer-top { flex-direction: column; } .footer-links { gap: 2rem; } .hero { padding: 7rem 1.5rem 3rem; } }
@media (min-width: 769px) and (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
