/* Influence Partners — Landing recrutement (Community / Social Media Managers).
 * Thème sombre / doré, autonome (n'utilise pas styles.css du parcours KYC). */

:root {
  --bg: #0f0f1a;
  --bg-2: #14141f;
  --panel: #1a1a2e;
  --panel-2: #1e1e35;
  --border: rgba(201, 185, 154, 0.18);
  --border-strong: rgba(201, 185, 154, 0.34);
  --gold: #c9b99a;
  --gold-2: #d8c9aa;
  --gold-soft: rgba(201, 185, 154, 0.1);
  --text: #ffffff;
  --muted: #a7a7b8;
  --muted-2: #76768a;
  --green: #4cc78a;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --maxw: 1140px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(1200px 620px at 50% -10%, rgba(201, 185, 154, 0.1) 0%, transparent 62%),
    radial-gradient(900px 500px at 88% 8%, rgba(201, 185, 154, 0.05) 0%, transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------ Wordmark --------------------------- */
.wordmark { text-align: left; line-height: 1; }
.wm-1 {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: 22px; letter-spacing: 5px; color: var(--text);
}
.wm-2 {
  display: block; font-family: var(--sans); font-weight: 500;
  font-size: 9px; letter-spacing: 6px; color: var(--gold);
  margin-top: 4px; padding-left: 3px;
}

/* -------------------------------- Nav ------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(15, 15, 26, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; letter-spacing: .3px; color: var(--muted);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 13.5px; font-weight: 600; letter-spacing: .3px;
  padding: 11px 22px; border-radius: 999px;
  background: var(--gold); color: var(--bg) !important;
  transition: background .15s ease, transform .05s ease;
}
.nav-cta:hover { background: var(--gold-2); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); margin: 4px 0; transition: .2s; }

/* ------------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: .3px;
  cursor: pointer; border-radius: 999px; border: 1px solid transparent;
  padding: 15px 30px; min-height: 54px; text-align: center;
  transition: background .15s ease, transform .05s ease, box-shadow .15s ease, border-color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold); color: var(--bg);
  box-shadow: 0 12px 30px rgba(201, 185, 154, 0.2);
}
.btn-primary:hover { background: var(--gold-2); }
.btn-ghost {
  background: transparent; color: var(--gold); border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--gold-soft); }
.btn-lg { font-size: 16px; padding: 17px 36px; min-height: 58px; }
.btn-block { width: 100%; }

/* -------------------------------- Hero ----------------------------- */
.hero { padding: 88px 0 72px; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-strong); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 26px;
  background: var(--gold-soft);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(76, 199, 138, .18); }
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 6vw, 68px); line-height: 1.04; letter-spacing: .3px;
  margin: 0 0 22px; max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lead {
  font-size: clamp(16px, 2vw, 19px); color: var(--muted); font-weight: 300;
  max-width: 56ch; margin: 0 0 34px; line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: 13px; color: var(--muted-2); margin-top: 20px; display: flex; align-items: center; gap: 8px; }

/* Stat band */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border);
}
.stat .num { font-family: var(--serif); font-weight: 600; font-size: 40px; color: var(--gold); line-height: 1; }
.stat .lbl { font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 300; }

/* ------------------------------ Sections --------------------------- */
section { position: relative; }
.section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.tag {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.12; margin: 0 0 16px; letter-spacing: .3px;
}
.section-head p { font-size: 16px; color: var(--muted); font-weight: 300; margin: 0; }

/* Cards grid */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: 0 22px 44px rgba(0, 0, 0, .35); }
.card .ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  font-size: 24px; margin-bottom: 18px;
  background: var(--gold-soft); border: 1px solid var(--border);
}
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 23px; margin: 0 0 9px; }
.card p { font-size: 14.5px; color: var(--muted); font-weight: 300; margin: 0; line-height: 1.6; }

/* Benefits (smaller cards) */
.benefit { text-align: left; }
.benefit .ico { width: 46px; height: 46px; font-size: 22px; }
.benefit h3 { font-size: 20px; }

/* ------------------------------- Steps ----------------------------- */
.steps-wrap { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.step-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: flex-start;
  padding: 26px 0; border-bottom: 1px solid var(--border);
}
.step-row:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 24px;
  color: var(--gold); background: var(--panel); border: 1px solid var(--border-strong);
}
.step-row h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin: 6px 0 7px; }
.step-row p { font-size: 15px; color: var(--muted); font-weight: 300; margin: 0; max-width: 60ch; }

/* ---------------------------- Profile list ------------------------- */
.profile {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: #d7d7e0; font-weight: 300; }
.checklist .ck {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(76, 199, 138, .14); color: var(--green); font-size: 14px; margin-top: 1px;
}
.profile-aside {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px;
}
.profile-aside h3 { font-family: var(--serif); font-weight: 600; font-size: 26px; margin: 0 0 10px; }
.profile-aside p { font-size: 15px; color: var(--muted); font-weight: 300; }
.aside-stat { display: flex; align-items: baseline; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.aside-stat b { font-family: var(--serif); font-size: 34px; color: var(--gold); font-weight: 600; }
.aside-stat span { font-size: 13.5px; color: var(--muted); }

/* -------------------------------- FAQ ------------------------------ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; background: var(--panel); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: var(--text);
  font-family: var(--sans); font-weight: 500; font-size: 16px; padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .pm { color: var(--gold); font-size: 22px; flex: none; transition: transform .2s ease; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* ------------------------------- CTA band -------------------------- */
.cta-band {
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(201, 185, 154, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-strong); border-radius: 26px;
  padding: 64px 32px;
}
.cta-band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4vw, 46px); margin: 0 0 14px; line-height: 1.1; }
.cta-band p { font-size: 17px; color: var(--muted); font-weight: 300; max-width: 52ch; margin: 0 auto 30px; }

/* ------------------------------- Footer ---------------------------- */
.footer { border-top: 1px solid var(--border); padding: 44px 0; margin-top: 84px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 13.5px; color: var(--muted); transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer .copy { font-size: 12.5px; color: var(--muted-2); }

/* ----------------------------- Reveal anim ------------------------- */
/* Visible par défaut : si JS ne s'exécute pas, rien n'est caché.
   L'animation ne s'active que lorsque landing.js ajoute .reveal-on sur <html>. */
.reveal { opacity: 1; transform: none; }
html.reveal-on .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.reveal-on .reveal.in { opacity: 1; transform: none; }

/* ----------------------------- Responsive -------------------------- */
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .profile { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border); padding: 22px 24px;
  }
  .nav.open .nav-links .nav-cta { width: 100%; text-align: center; }
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 48px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .cta-band { padding: 48px 22px; }
  .container { padding: 0 18px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
