/* Ankasso — Guides SEO marchés africains. Charte or-sur-noir, autonome. */
:root {
  --black: #0b0b0c;
  --surface: #131316;
  --surface-2: #1a1a1e;
  --line: rgba(212, 175, 55, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #f4f0e6;
  --muted: #a7a39a;
  --gold-1: #f9e08a;
  --gold-2: #d4af37;
  --gold-3: #a9791f;
  --gold-grad: linear-gradient(135deg, #f9e08a 0%, #e6c04f 45%, #b8860b 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --radius: 16px;
  --radius-lg: 22px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--text); font-family: var(--font-body); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 22px; }

/* Header */
.hdr { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; max-width: 880px; margin: 0 auto; padding-left: 22px; padding-right: 22px; }
.hdr__logo { height: 34px; width: auto; display: block; }
.lang { display: inline-flex; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 4px; background: var(--surface); }
.lang button { font-family: var(--font-head); font-weight: 600; font-size: 12.5px; color: var(--muted); background: transparent; border: 0; border-radius: 999px; padding: 6px 12px; cursor: pointer; }
.lang button.is-active { color: #1a1300; background: var(--gold-grad); }

/* Breadcrumb */
.crumb { font-size: 13px; color: var(--muted); padding: 6px 0 0; }
.crumb a:hover { color: var(--gold-2); }
.crumb span { color: var(--gold-3); }

/* Article */
.article { padding: 14px 0 60px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; margin: 18px 0 16px; }
.article h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 5.4vw, 46px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 14px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lead { color: var(--muted); font-size: 18px; max-width: 680px; margin-bottom: 18px; }
.meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 12.5px; color: var(--muted); margin-bottom: 26px; }
.meta .tag { border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; color: var(--text); }
.article > .wrap > p, .section p { color: var(--text); font-size: 16.5px; margin-bottom: 14px; }
.section { margin: 30px 0; }
.section h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(20px, 3.4vw, 27px); letter-spacing: -0.01em; margin-bottom: 10px; }
.list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 6px 0 4px; }
.list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--text); }
.list li::before { content: "◆"; color: var(--gold-2); font-size: 10px; margin-top: 7px; flex: 0 0 auto; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.note { border-left: 3px solid var(--gold-2); background: var(--surface-2); border-radius: 0 12px 12px 0; padding: 16px 18px; color: var(--muted); font-size: 15px; }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 4px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; list-style: none; font-family: var(--font-head); font-weight: 600; font-size: 16px; padding: 14px 0; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold-2); font-size: 20px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); font-size: 15.5px; padding: 0 0 14px; margin: 0; }

/* CTA */
.cta { margin: 38px 0 8px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02)); padding: 28px; }
.cta h2 { font-family: var(--font-head); font-weight: 800; font-size: 22px; margin-bottom: 8px; }
.cta p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 15px; padding: 13px 22px; border-radius: 999px; background: var(--gold-grad); color: #1a1300; box-shadow: 0 10px 30px var(--gold-glow); transition: transform .15s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px var(--gold-glow); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line); box-shadow: none; }
.btn--ghost:hover { border-color: var(--gold-2); transform: none; box-shadow: none; }

/* Related + hub cards */
.related { margin-top: 34px; }
.related h2 { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.gcard { display: flex; flex-direction: column; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: border-color .15s ease, transform .15s ease; }
.gcard:hover { border-color: var(--gold-2); transform: translateY(-2px); }
.gcard__flag { font-size: 22px; }
.gcard__region { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-3); }
.gcard__h { font-family: var(--font-head); font-weight: 700; font-size: 17px; line-height: 1.25; }
.gcard__cta { margin-top: auto; color: var(--gold-2); font-size: 14px; font-weight: 600; }

/* Hub */
.hub { padding: 22px 0 60px; }
.hub__kicker { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); }
.hub h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 6vw, 52px); line-height: 1.05; letter-spacing: -0.02em; margin: 10px 0 14px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hub__lead { color: var(--muted); font-size: 18px; max-width: 640px; margin-bottom: 30px; }

/* Footer */
.ftr { border-top: 1px solid var(--line-soft); padding: 26px 0 60px; margin-top: 30px; }
.ftr .wrap { display: flex; flex-direction: column; gap: 14px; }
.ftr__logo { height: 28px; width: auto; }
.ftr p { color: var(--muted); font-size: 12.5px; max-width: 760px; }
.backlink { display: inline-block; color: var(--muted); font-size: 13.5px; margin: 8px 0 4px; }
.backlink:hover { color: var(--gold-2); }

@media (max-width: 560px) {
  .article h1 { font-size: 30px; }
  .cards { grid-template-columns: 1fr; }
}
