:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e6e3;
  --fg-muted: #8a8a9a;
  --accent: #c8a86e;
  --accent-light: #dfc08a;
  --accent-glow: rgba(200, 168, 110, 0.15);
  --border: rgba(255,255,255,0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,168,110,0.08), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  background: var(--accent-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  max-width: 800px;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .accent { color: var(--accent); }

.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero-arabic {
  margin-top: 3.5rem;
  font-size: 1.6rem;
  color: var(--accent-light);
  font-family: var(--font-display);
  opacity: 0.6;
  direction: rtl;
  letter-spacing: 0.02em;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 6rem 2rem;
  text-align: center;
}

.problem-inner {
  max-width: 700px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.problem p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.problem .highlight {
  color: var(--accent);
  font-weight: 500;
}

/* ---- FEATURES ---- */
.features {
  padding: 5rem 2rem 6rem;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(200,168,110,0.3);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ---- LANGUAGES ---- */
.languages {
  padding: 5rem 2rem;
  text-align: center;
}

.languages h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.languages .subtitle {
  color: var(--fg-muted);
  max-width: 550px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.lang-pills {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lang-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  text-align: center;
}

.lang-pill .native {
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  color: var(--accent-light);
}

.lang-pill .label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}

/* ---- CLOSING ---- */
.closing {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(200,168,110,0.06), transparent);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  max-width: 650px;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .hero { padding: 4rem 1.5rem 3rem; min-height: 80vh; }
  .problem, .features, .languages, .closing { padding: 4rem 1.5rem; }

  .lang-pills { flex-direction: column; align-items: center; }
  .lang-pill { width: 200px; }
}