/* ================================================
   LES AILES DES PAPILLONS — DESIGN SYSTEM v2
   Refonte UI/UX — Professionnel, Sobre, Moderne
   ================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2C2440;
  background: #F7F3FC;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
svg { display: block; }

/* ── Design Tokens ── */
:root {
  --deep:    #3D2470;
  --mid:     #6B4FA0;
  --light:   #9B7EC8;
  --lilac:   #C9B8E8;
  --pale:    #EDE6F7;
  --bg:      #F7F3FC;
  --cta:     #7C3AED;
  --cta-h:   #6D28D9;
  --white:   #FFFFFF;
  --text:    #2C2440;
  --muted:   #64748B;
  --border:  #E2D9F3;
  --divider: #F0EBF9;
  --green:   #16A34A;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(61,36,112,.06), 0 1px 5px rgba(61,36,112,.04);
  --shadow-md: 0 4px 20px rgba(61,36,112,.10), 0 1px 4px rgba(61,36,112,.05);
  --shadow-lg: 0 12px 40px rgba(61,36,112,.13), 0 3px 10px rgba(61,36,112,.06);
  --shadow-cta: 0 4px 18px rgba(124,58,237,.35);
  --t: 160ms ease;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; letter-spacing: -.018em; }
h1 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 700; }
h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 700; }
h3 { font-size: clamp(16px, 2vw, 20px); font-weight: 600; }
h4 { font-size: 15px; font-weight: 600; }
p  { line-height: 1.72; }

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--sm {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
.section      { padding: 92px 0; }
.section--sm  { padding: 64px 0; }
.section--white { background: var(--white); }
.section--bg    { background: var(--bg); }
.section--deep  { background: var(--deep); }

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cta);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ── Section header ── */
.sec-header { margin-bottom: 56px; }
.sec-header h2 { color: var(--deep); margin-bottom: 14px; }
.sec-header p  { font-size: 16.5px; color: var(--muted); max-width: 560px; line-height: 1.7; }
.sec-header--center { text-align: center; }
.sec-header--center p { margin: 0 auto; }

/* ── Divider ── */
.divider {
  width: 36px; height: 3px;
  background: var(--cta);
  border-radius: 2px;
  margin: 14px 0 0;
}
.sec-header--center .divider { margin: 14px auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .015em;
  padding: 11px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t), opacity var(--t);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--cta-h); box-shadow: 0 8px 28px rgba(124,58,237,.42); }

.btn-secondary {
  background: var(--white);
  color: var(--deep);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--lilac); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--mid);
  border: 1.5px solid var(--lilac);
}
.btn-outline:hover { background: var(--pale); border-color: var(--mid); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); }

.btn-lg { padding: 14px 32px; font-size: 14.5px; }
.btn-sm { padding: 8px 18px;  font-size: 12.5px; }

/* ── Badge / Pill ── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 99px;
}
.badge--purple { background: var(--pale); color: var(--mid); }
.badge--green  { background: #F0FDF4; color: var(--green); }
.badge--blue   { background: #EFF6FF; color: #2563EB; }
.badge--orange { background: #FFF7ED; color: #C2410C; }

/* ────────────────────────────────────────────────
   NOTICE BAR
──────────────────────────────────────────────── */
.notice-bar {
  background: var(--deep);
  color: var(--white);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  position: relative;
}
.notice-bar__text strong {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
  color: #D4B8FF;
}
.notice-bar__link {
  color: #D4B8FF;
  font-weight: 600;
  font-size: 12.5px;
  padding: 3px 12px;
  border-radius: 99px;
  border: 1px solid rgba(201,184,232,.4);
  transition: background var(--t), border-color var(--t);
}
.notice-bar__link:hover { background: rgba(255,255,255,.1); border-color: rgba(201,184,232,.7); }
.notice-bar__close {
  position: absolute; right: 20px;
  background: none; border: none;
  color: rgba(255,255,255,.4);
  cursor: pointer; padding: 4px; font-size: 16px; line-height: 1;
  transition: color var(--t);
}
.notice-bar__close:hover { color: var(--white); }

/* ────────────────────────────────────────────────
   HEADER
──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.site-header.is-scrolled { box-shadow: 0 1px 24px rgba(61,36,112,.09); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.logo__name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.logo__sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  display: block;
  letter-spacing: .01em;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; }
.nav-item  { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 0;
  transition: color var(--t);
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--cta);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-link:hover { color: var(--deep); }
.nav-link.active,
.current-menu-item > .nav-link,
.current_page_item > .nav-link {
  color: var(--cta);
  font-weight: 600;
}
.nav-link.active::after,
.current-menu-item > .nav-link::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--deep);
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav-panel.is-open { display: block; }
.mobile-nav-panel__inner {
  padding: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav-panel a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--t), border-color var(--t);
}
.mobile-nav-panel a:hover { background: var(--pale); border-color: var(--lilac); }
.mobile-nav-panel a.is-active {
  background: var(--pale);
  border-color: var(--lilac);
  color: var(--cta);
  font-weight: 600;
}

/* ────────────────────────────────────────────────
   HERO (Home)
──────────────────────────────────────────────── */
.hero {
  background: var(--deep);
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 80% -10%, rgba(147,51,234,.25) 0%, transparent 60%),
    radial-gradient(ellipse 500px 500px at -5% 110%, rgba(107,79,160,.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,184,232,.12) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 22px;
  padding: 5px 14px 5px 5px;
  border: 1px solid rgba(201,184,232,.2);
  border-radius: 99px;
  background: rgba(255,255,255,.04);
}
.hero__label-dot {
  width: 18px; height: 18px;
  background: rgba(124,58,237,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__label-dot::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #C084FC;
}
.hero__title {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero__title em {
  font-style: normal;
  color: #C084FC;
}
.hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 500px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.hero__trust-item svg {
  width: 14px; height: 14px;
  color: rgba(201,184,232,.6);
  fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

/* Hero stats card (right panel) */
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(24px);
}
.hero__card-head {
  padding: 20px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
}
.hero__card-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}
.hero__stat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--t);
}
.hero__stat-row:last-of-type { border-bottom: none; }
.hero__stat-row:hover { background: rgba(255,255,255,.04); }
.hero__stat-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__stat-icon svg {
  width: 17px; height: 17px;
  color: var(--lilac);
  fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.hero__stat-body { flex: 1; }
.hero__stat-val {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.hero__stat-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(201,184,232,.12);
  color: var(--lilac);
  border: 1px solid rgba(201,184,232,.18);
  white-space: nowrap;
}
.hero__card-foot {
  padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__card-foot span { font-size: 11.5px; color: rgba(255,255,255,.35); }
.hero__card-foot a    { font-size: 12.5px; color: var(--lilac); font-weight: 600; transition: color var(--t); }
.hero__card-foot a:hover { color: var(--white); }

/* ────────────────────────────────────────────────
   PAGE HERO (sub-pages)
──────────────────────────────────────────────── */
.page-hero {
  background: var(--deep);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 100% 50%, rgba(147,51,234,.18) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at -10% 50%, rgba(107,79,160,.15) 0%, transparent 65%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,184,232,.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  margin-bottom: 18px;
}
.breadcrumb a   { color: rgba(255,255,255,.5); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.breadcrumb strong { color: rgba(255,255,255,.8); font-weight: 500; }
.page-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.page-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  max-width: 580px;
  line-height: 1.75;
}
.page-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* ────────────────────────────────────────────────
   STATS BAND
──────────────────────────────────────────────── */
.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 30px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-item:last-child { border-right: none; }
.stat-item__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-item__icon svg { width: 22px; height: 22px; color: var(--mid); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--mid);
}
.stat-item__val {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -.02em;
}
.stat-item__lbl { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ────────────────────────────────────────────────
   MISSION CARDS
──────────────────────────────────────────────── */
.missions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cta), var(--mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--lilac);
}
.mission-card:hover::before { transform: scaleX(1); }
.mission-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mission-card__icon svg { width: 22px; height: 22px; color: var(--mid); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.mission-card h3 { color: var(--deep); margin-bottom: 10px; font-size: 17px; }
.mission-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ────────────────────────────────────────────────
   ACTION CARDS
──────────────────────────────────────────────── */
.actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.action-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.action-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--lilac); }
.action-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.action-card__icon svg { width: 20px; height: 20px; color: var(--white); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.action-card h3 { font-size: 15px; color: var(--deep); margin-bottom: 8px; }
.action-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ────────────────────────────────────────────────
   DISEASE CARDS
──────────────────────────────────────────────── */
.disease-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.disease-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.disease-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lilac); }
.disease-card__thumb {
  height: 120px;
  background: linear-gradient(145deg, var(--deep), #5B2D8E);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.disease-card__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,184,232,.1) 1px, transparent 1px);
  background-size: 22px 22px;
}
.disease-card__thumb svg {
  width: 48px; height: 48px;
  color: rgba(255,255,255,.28);
  fill: none; stroke: currentColor; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round;
  position: relative; z-index: 1;
}
.disease-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.disease-card h3 { font-size: 16px; color: var(--deep); margin-bottom: 8px; }
.disease-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.68; flex: 1; margin-bottom: 16px; }
.disease-card__link {
  font-size: 13px;
  color: var(--cta);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.disease-card__link svg { width: 14px; height: 14px; transition: transform var(--t); }
.disease-card:hover .disease-card__link svg { transform: translateX(3px); }

/* ────────────────────────────────────────────────
   EVENT CARD
──────────────────────────────────────────────── */
.event-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.event-card__main {
  background: linear-gradient(145deg, var(--deep) 0%, #5B2D8E 100%);
  padding: 52px 52px 44px;
  position: relative;
  overflow: hidden;
}
.event-card__main::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,184,232,.09) 1px, transparent 1px);
  background-size: 26px 26px;
}
.event-card__main::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(147,51,234,.2);
}
.event-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.event-status__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #86EFAC;
  box-shadow: 0 0 6px rgba(134,239,172,.6);
}
.event-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.event-card__location {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.event-card__location svg { width: 14px; height: 14px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.countdown { display: flex; gap: 10px; margin-bottom: 36px; position: relative; z-index: 1; }
.cd-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 12px 14px;
  text-align: center;
  min-width: 68px;
}
.cd-num { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 700; color: var(--white); line-height: 1; }
.cd-lbl { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .07em; margin-top: 4px; }
.event-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

.event-card__info {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.event-info-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.event-info-item__icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-info-item__icon svg { width: 16px; height: 16px; color: var(--mid); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.event-info-item__label { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.event-info-item__val   { font-size: 13.5px; font-weight: 600; color: var(--deep); }
.event-info-item__sub   { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ────────────────────────────────────────────────
   NEWS CARDS
──────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 22px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lilac); }
.news-card__thumb {
  position: relative;
  overflow: hidden;
}
.news-card__thumb-img {
  width: 100%; height: 200px;
  object-fit: cover;
  background: linear-gradient(145deg, var(--deep) 0%, #5B2D8E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card:first-child .news-card__thumb-img { height: 240px; }
.news-card__thumb-img svg {
  width: 64px; height: 64px;
  color: rgba(255,255,255,.18);
  fill: none; stroke: currentColor; stroke-width: 1;
}
.news-card__cat-overlay {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}
.news-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.news-card__meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.news-card__meta-sep { opacity: .4; }
.news-card h3 { font-size: 15.5px; color: var(--deep); margin-bottom: 10px; line-height: 1.45; }
.news-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.68; flex: 1; }
.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--divider);
}
.news-card__read { font-size: 13px; color: var(--cta); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.news-card__read svg { width: 13px; height: 13px; transition: transform var(--t); }
.news-card:hover .news-card__read svg { transform: translateX(3px); }
.news-card__author { display: flex; align-items: center; gap: 7px; }
.author-av { width: 24px; height: 24px; border-radius: 50%; background: var(--pale); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; color: var(--mid); }

/* ────────────────────────────────────────────────
   FORUM COMPONENTS
──────────────────────────────────────────────── */
.forum-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.forum-cats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.forum-cat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.forum-cat:hover { border-color: var(--lilac); background: var(--white); }
.forum-cat__icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.forum-cat__icon svg { width: 15px; height: 15px; color: var(--mid); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.forum-cat__name  { font-size: 13px; font-weight: 600; color: var(--deep); }
.forum-cat__count { font-size: 11px; color: var(--muted); }

.forum-threads-list { display: flex; flex-direction: column; gap: 8px; }
.forum-thread {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.forum-thread:hover { border-color: var(--lilac); background: var(--white); }
.forum-thread__av {
  width: 38px; height: 38px;
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.av-2 { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.av-3 { background: linear-gradient(135deg, #D97706, #B45309); }
.av-4 { background: linear-gradient(135deg, #059669, #047857); }
.av-5 { background: linear-gradient(135deg, #DB2777, #BE185D); }
.forum-thread__body { flex: 1; min-width: 0; }
.forum-thread__title { font-size: 14px; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.forum-thread__meta  { font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.forum-thread__sep   { opacity: .4; }
.forum-thread__replies {
  background: var(--pale);
  color: var(--mid);
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ────────────────────────────────────────────────
   IBAN SECTION
──────────────────────────────────────────────── */
.iban-section {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.iban-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 0%, rgba(147,51,234,.22) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 20% 100%, rgba(107,79,160,.18) 0%, transparent 65%);
}
.iban-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,184,232,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.iban-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.iban-left h2 { color: var(--white); margin-bottom: 14px; }
.iban-left .eyebrow { color: var(--lilac); }
.iban-left .eyebrow::before { background: var(--lilac); }
.iban-left p  { color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.78; margin-bottom: 28px; }

.iban-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 30px;
  backdrop-filter: blur(20px);
}
.iban-card__org   { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 2px; }
.iban-card__type  { font-size: 11.5px; color: rgba(255,255,255,.38); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.iban-card__label { font-size: 10.5px; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.iban-card__number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: 5px;
}
.iban-card__benef { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.iban-card__comm  {
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.58);
  margin-bottom: 24px;
}
.iban-card__comm strong { color: rgba(255,255,255,.82); }
.amounts { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 22px; }
.amount-opt {
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.72);
  padding: 8px 18px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
}
.amount-opt:hover, .amount-opt.is-active {
  background: var(--cta);
  border-color: var(--cta);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.iban-card__copy { width: 100%; margin-top: 4px; }

/* Sponsor tiers */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.sponsor-tier {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 20px;
}
.sponsor-tier__title { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.sponsor-tier__range { font-size: 12px; color: rgba(255,255,255,.38); margin-bottom: 12px; }
.sponsor-tier__perk  { font-size: 12.5px; color: rgba(255,255,255,.58); display: flex; align-items: flex-start; gap: 7px; margin-bottom: 6px; }
.sponsor-tier__perk::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: rgba(201,184,232,.15); border: 1px solid rgba(201,184,232,.25); flex-shrink: 0; margin-top: 2px; }

/* ────────────────────────────────────────────────
   NEWSLETTER
──────────────────────────────────────────────── */
.newsletter {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.newsletter-box {
  display: flex;
  align-items: center;
  gap: 72px;
}
.newsletter-left  { flex: 1; }
.newsletter-left h2 { font-size: 22px; color: var(--deep); margin-bottom: 6px; }
.newsletter-left p  { font-size: 14.5px; color: var(--muted); }
.newsletter-right { flex: 1; }
.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.newsletter-input {
  flex: 1;
  height: 46px;
  padding: 0 18px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.newsletter-input:focus { border-color: var(--mid); box-shadow: 0 0 0 3px rgba(107,79,160,.1); }
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-note { font-size: 12px; color: var(--muted); margin-top: 10px; display: flex; align-items: center; gap: 5px; }
.newsletter-note svg { width: 12px; height: 12px; color: var(--muted); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ────────────────────────────────────────────────
   PARTNERS
──────────────────────────────────────────────── */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 10px 28px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color var(--t), color var(--t);
  min-width: 160px;
}
.partner-item:hover { border-color: var(--lilac); color: var(--deep); }

/* ────────────────────────────────────────────────
   FORMS
──────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--mid);
  box-shadow: 0 0 0 3px rgba(107,79,160,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }

/* ────────────────────────────────────────────────
   CONTACT INFO
──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-card__icon svg { width: 20px; height: 20px; color: var(--mid); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h3 { font-size: 15px; color: var(--deep); margin-bottom: 8px; }
.contact-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.contact-card a:hover { color: var(--cta); }

/* ────────────────────────────────────────────────
   DOCUMENTS LIST
──────────────────────────────────────────────── */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color var(--t);
}
.doc-item:hover { border-color: var(--lilac); }
.doc-item__left { display: flex; align-items: center; gap: 14px; }
.doc-item__icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-item__icon svg { width: 18px; height: 18px; color: var(--mid); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.doc-item__name { font-size: 14px; font-weight: 600; color: var(--deep); }
.doc-item__size { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ────────────────────────────────────────────────
   TEAM CARDS
──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--t), box-shadow var(--t);
}
.team-card:hover { border-color: var(--lilac); box-shadow: var(--shadow-sm); }
.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--pale);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--lilac);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__avatar svg { width: 36px; height: 36px; color: var(--mid); fill: none; stroke: currentColor; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
.team-card__name { font-family: 'Poppins', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--deep); margin-bottom: 3px; }
.team-card__role { font-size: 12.5px; color: var(--muted); }

/* ────────────────────────────────────────────────
   OBJECTIVES
──────────────────────────────────────────────── */
.objective-list { display: flex; flex-direction: column; gap: 12px; }
.objective-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t);
}
.objective-item:hover { border-color: var(--lilac); }
.objective-item__num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.objective-item h4 { font-size: 14.5px; color: var(--deep); margin-bottom: 4px; }
.objective-item p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ────────────────────────────────────────────────
   LAYOUTS
──────────────────────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
.surface-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.surface-card--deep {
  background: linear-gradient(145deg, var(--deep) 0%, #5B2D8E 100%);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}
.surface-card--deep h3, .surface-card--deep h4 { color: var(--white); }
.surface-card--deep p { color: rgba(255,255,255,.68); }
.stack-md { display: flex; flex-direction: column; gap: 20px; }
.stack-lg { display: flex; flex-direction: column; gap: 28px; }
.inline-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
}
.metric-box__value {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-box__label { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.surface-card--deep .metric-box {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.1);
}
.surface-card--deep .metric-box__value { color: var(--white); }
.surface-card--deep .metric-box__label { color: rgba(255,255,255,.55); }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--divider);
}
.feature-item:first-child { border-top: none; padding-top: 0; }
.feature-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item__icon svg {
  width: 18px;
  height: 18px;
  color: var(--mid);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-item h4 { font-size: 14px; color: var(--deep); margin-bottom: 4px; }
.feature-item p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.link-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--lilac);
  border-left-color: var(--cta);
}
.link-card__kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 10px;
}
.link-card h3 { font-size: 17px; color: var(--deep); margin-bottom: 8px; }
.link-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.68; margin-bottom: 18px; }
.link-card a  { font-size: 13px; font-weight: 600; color: var(--cta); display: flex; align-items: center; gap: 5px; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--divider);
}
.timeline-item:first-child { border-top: none; padding-top: 0; }
.timeline-item__meta {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
}
.timeline-item h4 { font-size: 14.5px; color: var(--deep); margin-bottom: 4px; }
.timeline-item p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* CTA Band */
.cta-band {
  background: linear-gradient(145deg, var(--deep) 0%, #5B2D8E 100%);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,184,232,.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-band h3 { font-size: 22px; color: var(--white); margin-bottom: 6px; position: relative; z-index: 1; }
.cta-band p  { font-size: 14.5px; color: rgba(255,255,255,.68); position: relative; z-index: 1; }
.cta-band .gap-row { position: relative; z-index: 1; }

/* ────────────────────────────────────────────────
   ARTICLES LIST
──────────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-tab {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
}
.filter-tab:hover, .filter-tab.is-active {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--white);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--lilac); }
.article-card__img {
  height: 180px;
  background: linear-gradient(145deg, var(--deep), #5B2D8E);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.article-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,184,232,.1) 1px, transparent 1px);
  background-size: 20px 20px;
}
.article-card__img svg {
  width: 52px; height: 52px;
  color: rgba(255,255,255,.18);
  fill: none; stroke: currentColor; stroke-width: .8;
  position: relative; z-index: 1;
}
.article-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.article-card__meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.article-card h3 { font-size: 15px; color: var(--deep); margin-bottom: 8px; line-height: 1.42; }
.article-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.article-card a  { font-size: 13px; color: var(--cta); font-weight: 600; display: flex; align-items: center; gap: 4px; margin-top: auto; }
.article-card a svg { width: 13px; height: 13px; transition: transform var(--t); }
.article-card:hover a svg { transform: translateX(3px); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}
.page-item {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
}
.page-item:hover, .page-item.is-active {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--white);
}

/* ────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
.site-footer {
  background: #1B1030;
  color: var(--white);
}
.footer-top {
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 52px;
}
.footer-brand__logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand__logo-wrap img { width: 36px; height: 36px; border-radius: 7px; object-fit: contain; }
.footer-brand__name { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); }
.footer-brand__desc { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.72; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 8px; margin-bottom: 24px; }
.footer-social {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.footer-social:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.2); }
.footer-social svg { width: 15px; height: 15px; color: rgba(255,255,255,.65); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-iban {
  background: rgba(124,58,237,.14);
  border: 1px solid rgba(124,58,237,.22);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.footer-iban__label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.35); margin-bottom: 5px; }
.footer-iban__number { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #D4B8FF; letter-spacing: .04em; }

.footer-col__title {
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.28);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.52); transition: color var(--t); }
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 14px; height: 14px; color: rgba(255,255,255,.32); flex-shrink: 0; margin-top: 3px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.52); line-height: 1.55; }
.footer-contact-item a:hover { color: var(--lilac); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom__copy { font-size: 12.5px; color: rgba(255,255,255,.28); }
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a { font-size: 12.5px; color: rgba(255,255,255,.28); transition: color var(--t); }
.footer-bottom__links a:hover { color: rgba(255,255,255,.6); }

/* ────────────────────────────────────────────────
   NOTICE BOX
──────────────────────────────────────────────── */
.notice-box {
  background: var(--pale);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cta);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
}
.notice-box p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.notice-box strong { color: var(--deep); }

/* ────────────────────────────────────────────────
   COMMUNITY JOIN SECTION
──────────────────────────────────────────────── */
.community-section {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.community-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 70% -20%, rgba(147,51,234,.25) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 10% 110%, rgba(107,79,160,.2) 0%, transparent 60%);
}
.community-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,184,232,.09) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.community-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.community-inner .eyebrow { color: var(--lilac); }
.community-inner .eyebrow::before { background: var(--lilac); }
.community-inner h2 { color: var(--white); margin-bottom: 16px; }
.community-inner p  { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.75; margin-bottom: 36px; }
.community-inner .hero__cta { justify-content: center; }
.community-inner .hero__trust { justify-content: center; border-top-color: rgba(255,255,255,.1); }

/* ────────────────────────────────────────────────
   UTILITIES
──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* ────────────────────────────────────────────────
   SINGLE POST / MALADIE CONTENT
──────────────────────────────────────────────── */
.maladie-content-section { background: #ffffff !important; }
.post-content {
  max-width: 740px;
  margin: 0 auto;
  color: #2C2440;
  background: #ffffff;
}
.post-content h2,
.post-content .wp-block-heading { color: #3D2470 !important; margin: 2em 0 .6em; font-size: clamp(18px, 2.2vw, 24px); }
.post-content h3 { color: #3D2470 !important; margin: 1.8em 0 .5em; font-size: clamp(16px, 1.8vw, 20px); }
.post-content p,
.post-content .wp-block-paragraph { color: #2C2440 !important; font-size: 16px; line-height: 1.8; margin-bottom: 1.4em; background: transparent !important; }
.post-content ul, .post-content ol { margin: 1em 0 1.4em 1.5em; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { font-size: 16px; color: #2C2440 !important; line-height: 1.75; margin-bottom: .5em; }
.post-content a  { color: var(--cta); text-decoration: underline; }

/* ────────────────────────────────────────────────
   PARTNERS
──────────────────────────────────────────────── */
.partners-block { margin-top: 32px; }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}
.partner-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  text-align: center;
  transition: background var(--t), border-color var(--t);
}
.partner-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }
.partner-card__logo img { max-width: 100px; max-height: 56px; object-fit: contain; filter: brightness(0) invert(1); opacity: .75; }
.partner-card__name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); }

/* ────────────────────────────────────────────────
   ACTUALITÉS — Filter bar
──────────────────────────────────────────────── */
.actu-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 68px;
  z-index: 90;
}
.actu-filter-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.actu-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  background: var(--pale);
  border: 1px solid transparent;
  transition: all var(--t);
  text-decoration: none;
}
.actu-filter-pill:hover { background: var(--white); border-color: var(--lilac); color: var(--deep); }
.actu-filter-pill.is-active { background: var(--deep); color: var(--white); border-color: var(--deep); }
.actu-filter-count { font-size: 11px; opacity: .6; }

/* ────────────────────────────────────────────────
   ACTUALITÉS — Featured post
──────────────────────────────────────────────── */
.actu-section { padding-top: 56px; }
.actu-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.actu-featured__img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--deep), #5B2D8E);
}
.actu-featured__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.actu-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.actu-featured__cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--cta);
  background: var(--pale);
  padding: 3px 10px;
  border-radius: 99px;
}
.actu-featured__date { font-size: 13px; color: var(--muted); }
.actu-featured__title { font-family: 'Poppins', sans-serif; font-size: clamp(22px, 2.8vw, 34px); font-weight: 700; color: var(--deep); line-height: 1.28; margin-bottom: 18px; }
.actu-featured__title a { color: inherit; text-decoration: none; }
.actu-featured__title a:hover { color: var(--cta); }
.actu-featured__excerpt { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.actu-featured__btn { align-self: flex-start; }

/* ────────────────────────────────────────────────
   ACTUALITÉS — Grid
──────────────────────────────────────────────── */
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* ────────────────────────────────────────────────
   ACTUALITÉS — Empty state
──────────────────────────────────────────────── */
.actu-empty {
  text-align: center;
  padding: 80px 0 60px;
  max-width: 480px;
  margin: 0 auto;
}
.actu-empty__icon {
  width: 72px; height: 72px;
  background: var(--pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.actu-empty__icon svg { width: 32px; height: 32px; color: var(--mid); }
.actu-empty h2 { color: var(--deep); font-size: 24px; margin-bottom: 12px; }
.actu-empty p  { color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .missions-grid     { grid-template-columns: repeat(2, 1fr); }
  .actions-grid      { grid-template-columns: repeat(2, 1fr); }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .stats-band__grid  { grid-template-columns: repeat(2, 1fr); }
  .disease-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero__inner   { grid-template-columns: 1fr; }
  .hero__card    { display: none; }
  .event-card    { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: 1fr; }
  .iban-inner    { grid-template-columns: 1fr; }
  .forum-layout  { grid-template-columns: 1fr; }
  .newsletter-box { flex-direction: column; gap: 28px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .sponsor-grid  { grid-template-columns: 1fr; }
  .split-layout  { grid-template-columns: 1fr; }
  .link-grid     { grid-template-columns: 1fr; }
  .inline-metrics { grid-template-columns: 1fr; }
  .cta-band      { flex-direction: column; align-items: flex-start; }
  .actu-featured { grid-template-columns: 1fr; gap: 28px; }
  .actu-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container, .container--sm { padding: 0 20px; }
  .section { padding: 64px 0; }
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .missions-grid   { grid-template-columns: 1fr; }
  .actions-grid    { grid-template-columns: 1fr; }
  .disease-grid    { grid-template-columns: 1fr; }
  .articles-grid   { grid-template-columns: 1fr; }
  .actu-grid       { grid-template-columns: 1fr; }
  .actu-filter-bar { top: 0; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 18px; }
  .hero { padding: 72px 0 60px; }
  .page-hero { padding: 40px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 44px 0 36px; }
  .notice-bar { padding: 10px 50px 10px 20px; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }
  .forum-cats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}
