:root,
[data-theme='dark'] {
  --bg: #0d0d0f;
  --surface: #161618;
  --border: rgba(255, 255, 255, 0.07);
  --text: #f0f0f5;
  --muted: #6b6b7a;
  --orange: #ff6b1a;
  color-scheme: dark;
}
[data-theme='light'] {
  --bg: #eef0f4;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --text: #1a1a22;
  --muted: #5c5c6e;
  --orange: #e85a00;
  color-scheme: light;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Cairo, Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 760px; margin: 0 auto; padding: 1.25rem 1.1rem 3rem; }
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.top img { height: 40px; width: auto; }
[data-theme='light'] .lockup-dark { display: none; }
[data-theme='dark'] .lockup-light { display: none; }
.top-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.locale-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: -0.5rem 0 1.5rem;
  padding: 0.7rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.locale-chip {
  display: inline-block;
  flex-shrink: 0;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 999px;
}
.lang {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.cta {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none !important;
}
h1 { font-size: 1.65rem; line-height: 1.35; margin: 0 0 0.6rem; }
.lead { color: var(--muted); margin: 0 0 1.5rem; font-size: 1.02rem; }
.faq-item, .legal-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.85rem;
}
h2 { font-size: 1.15rem; margin: 1.6rem 0 0.8rem; }
h3 { font-size: 1.02rem; margin: 0 0 0.45rem; }
.faq-item p, .legal-section p { margin: 0 0 0.55rem; }
.legal-section p:last-child { margin-bottom: 0; }
.foot {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.foot nav { display: flex; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 8px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin: 1.2rem 0 1.6rem; }
.ghost {
  display: inline-block;
  color: var(--text) !important;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
}
.roles { display: grid; gap: 10px; margin: 1rem 0 1.5rem; }
@media (min-width: 640px) { .roles { grid-template-columns: 1fr 1fr 1fr; } }
.role {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}
.role h2 { margin: 0 0 0.35rem; font-size: 1rem; }
.role p { margin: 0; color: var(--muted); font-size: 0.92rem; }
