/* ============ POWER CAPITAL — Global / Charte ============ */
@font-face {
  font-family: 'BDO Grotesk';
  src: url('../fonts/BDOGrotesk-Variable.woff2') format('woff2');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
/* Poppins self-hosted (no Google Fonts CDN → RGPD-safe, no third-party request) */
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
/* Inter self-hosted (fallback family) */
@font-face { font-family: 'Inter'; src: url('../fonts/Inter-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }

:root {
  --navy: #0B1324;
  --ink: #071125;
  --ink2: #061226;
  --blue: #0453FE;
  --blue-light: #76B1FE;
  --blue-pale: #E6F0FD;
  --grey-text: #5E6673;
  --grey-light: #9AA1AC;
  --border: #EBEBEE;
  --border2: #E3E8F0;
  --bg-soft: #F7F9FC;
  --bg-soft2: #F4F6FA;
  --grad-brand: linear-gradient(120deg, #071125 0%, #0453FE 46%, #76B1FE 76%, #E6F0FD 100%);
  --orange: #E8833A;
  --green: #1FA99A;
  --max: 1200px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'BDO Grotesk', 'Poppins', sans-serif;
  /* 8px spacing scale — keeps the vertical rhythm regular ("carré") */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
  --section-pad: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  padding: 12px 22px;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { opacity: .92; transform: translateY(-1px); }
.btn--block { width: 100%; padding: 16px; font-size: 16px; }

/* ---- Section titles (BDO Grotesk, per Framer specs) ---- */
.section-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.1px;
  color: #000;
}
.section-title--sm { font-size: 34px; line-height: 1.05; letter-spacing: -0.6px; }

/* ---- Rules / separators ---- */
.rule { border: none; height: 1px; background: var(--border); width: 100%; margin: 0; }
.rule--full { width: 100%; }
.rule--gradient {
  display: block;
  height: 2px;
  width: 100%;
  max-width: var(--max);
  background: var(--grad-brand);
  border-radius: 2px;
}

/* ---- Logo overlay on images ---- */
.image-logo-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: auto;
  z-index: 2;
  opacity: 0.92;
}
