/* ============================================================
   SOUL MONTREAL — Design System v3
   Nightlife / Spotlights / Club atmosphere
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ─── Reset & base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Nightlife palette */
  --purple-900: #07060f;
  --purple-800: #0e0c1a;
  --purple-700: #160e2e;
  --purple-600: #4a1d8a;
  --purple-500: #7c3aed;
  --purple-400: #a855f7;
  --purple-300: #d8b4fe;
  --purple-100: #f3e8ff;
  --purple-50:  #faf5ff;

  /* Spotlight colors */
  --spot-warm:  #ff8c42;   /* warm amber spotlight */
  --spot-cool:  #38bdf8;   /* cool blue spotlight */
  --spot-magenta: #e879f9; /* magenta accent */
  --spot-green: #00e5a0;   /* electric green */

  /* Accents */
  --rose:    #f43f5e;
  --yellow:  #fbbf24;
  --green:   #00e5a0;
  --blue:    #38bdf8;

  /* Neutrals */
  --dark:    #07060f;
  --gray-800:#2d2d30;
  --gray-600:#6b6b80;
  --gray-400:#9999b0;
  --gray-100:#f2f3f6;
  --white:   #ffffff;

  /* Semantic */
  --bg:      var(--purple-900);
  --bg2:     var(--purple-800);
  --surface: rgba(255,255,255,0.04);
  --border:  rgba(255,255,255,0.08);
  --text:    #f0eeff;
  --text-muted: rgba(255,255,255,0.78);
  --accent:  var(--purple-500);

  --nav-h:   130px;
  --font:    'Inter', sans-serif;
  --serif:   'Playfair Display', serif;
  --radius:  12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--purple-900);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Scrollbar ─── */
/* Standard (Firefox + Chrome 121+) */
html {
  scrollbar-color: rgba(168,85,247,0.4) rgba(14,12,26,0.95);
  scrollbar-width: auto;
}
/* Webkit fallback (older Chrome/Edge/Safari) */
::-webkit-scrollbar { width: 25px; }
::-webkit-scrollbar-track { background: rgba(14,12,26,0.95); }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.4); border-radius: 99px; border: 8px solid rgba(14,12,26,0.95); background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(168,85,247,0.6); border: 8px solid rgba(14,12,26,0.95); background-clip: padding-box; }

/* ─── Grain texture overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

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

/* ─── Typography ─── */
h1 { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); line-height: 1.15; font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.25; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.serif { font-family: var(--serif); }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spot-warm);
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(255,140,66,0.4);
}

/* ─── Layout ─── */
.container {
  width: min(1060px, 92%);
  margin-inline: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.container--narrow { width: min(1060px, 92%); margin-inline: auto; padding-left: 32px; padding-right: 32px; }

.section { padding: 60px 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── Gradients & glass ─── */
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
}

.gradient-bg {
  background: linear-gradient(160deg, #07060f 0%, #0e0c1a 50%, #160e2e 100%);
}

.gradient-text {
  background: linear-gradient(135deg, var(--spot-warm) 0%, #fff 35%, var(--spot-cool) 65%, var(--spot-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-purple {
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-400) 100%);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), #9d44fa);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(124,58,237,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #9d44fa, var(--purple-400));
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(124,58,237,0.65), 0 0 20px rgba(168,85,247,0.3);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--purple-700);
}
.btn-white:hover {
  background: var(--purple-100);
  transform: translateY(-2px);
  color: var(--purple-700);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-300);
  padding: 0;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: ' →'; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s, box-shadow 0.3s;
}
.nav--scrolled {
  background: rgba(7, 6, 15, 0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(124,58,237,0.15);
  box-shadow: 0 1px 40px rgba(0,0,0,0.6);
}

.nav__inner {
  width: min(1060px, 92%);
  margin-inline: auto;
  padding-left: 32px;
  padding-right: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-icon { height: 36px; width: auto; aspect-ratio: 99/135; }
.nav__logo-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.nav__logo-sub {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-300);
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav__links a.active {
  color: var(--purple-300);
  text-shadow: 0 0 14px rgba(168,85,247,0.5), 0 0 30px rgba(168,85,247,0.2);
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.3);
}

/* ─── Language toggle (single button showing the OTHER language) ─── */
.lang-switch { display:flex; align-items:center; margin-left: 8px; order: 10; }
.lang-btn { display:inline-flex; align-items:center; gap:5px; padding:5px 12px; border-radius:99px; font-size:0.75rem; font-weight:700; letter-spacing:0.05em; color:var(--text-muted); text-decoration:none; transition:all 0.2s; cursor:pointer; border:1px solid rgba(255,255,255,0.1); }
.lang-btn:hover { color:var(--white); background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.2); }
.lang-btn img { border-radius:2px; object-fit:cover; }



.nav__cta { order: 4; width: 210px; display: flex; align-items: center; justify-content: center; }

.nav__page-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-300);
  padding: 8px 16px;
  border-radius: 50px;
  text-shadow: 0 0 12px rgba(168,85,247,0.4);
  background: rgba(168,85,247,0.08);
}

/* ─── Hamburger button ─── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 202;
  position: relative;
  order: 5;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Drawer overlay ─── */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ─── Side drawer ─── */
.nav__mobile {
  position: fixed;
  top: 0; bottom: 0; right: 0;
  width: min(320px, 85vw);
  background: linear-gradient(180deg, var(--purple-900) 0%, #0e0622 100%);
  border-left: 1px solid rgba(124,58,237,0.2);
  padding: 100px 32px 40px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile a {
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.nav__mobile a:hover { color: var(--white); background: rgba(124,58,237,0.15); transform: translateX(4px); }
.nav__mobile .lang-switch { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh !important;
  display: flex !important;
  align-items: flex-start !important;
  padding-top: calc(var(--nav-h) + 150px) !important;
  padding-bottom: 80px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: #07060f !important;
}

/* Force all hero variants to same top alignment as homepage */
[class*="-hero"] {
  display: flex !important;
  align-items: flex-start !important;
  min-height: 100vh !important;
  padding-top: calc(var(--nav-h) + 150px) !important;
  padding-bottom: 80px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Héro plein écran pour pages secondaires (remplace .page-header) */
.page-hero {
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-h) + 150px);
  padding-bottom: 80px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}
.page-hero .container,
.page-hero .container--narrow {
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 0;
  padding-bottom: 0;
}
.page-hero > div > *:first-child,
.page-hero .container > *:first-child,
.page-hero .container--narrow > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Restore padding for containers inside heroes */
[class*="-hero"] .container,
[class*="-hero"] .container--narrow {
  padding-left: 32px !important;
  padding-right: 32px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Force first element in hero to have no top margin/padding */
[class*="-hero"] > div > *:first-child,
[class*="-hero"] .container > *:first-child,
[class*="-hero"] .container--narrow > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.eyebrow {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero__tag {
  margin-top: 0 !important;
}
[class*="-hero"] .container--narrow > .hero__tag,
[class*="-hero"] .container > .hero__tag,
[class*="-hero"] > div > .hero__tag {
  padding-top: 6px !important;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, #0e0622 0%, #07060f 70%);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover;
  background-position: center top;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

/* Spotlight cones from above */
.hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Cone 1 — warm amber, left */
.hero__orb--1 {
  position: absolute;
  top: -60px;
  left: 15%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--spot-warm), transparent 75%);
  filter: blur(0px);
  opacity: 0.7;
  transform-origin: top center;
  transform: rotate(-8deg);
  box-shadow: 0 0 80px 40px rgba(255,140,66,0.12);
}
.hero__orb--1::after {
  content: '';
  position: absolute;
  top: 0; left: -40px;
  width: 80px; height: 100%;
  background: conic-gradient(from 270deg at 50% 0%, transparent 60deg, rgba(255,140,66,0.08) 120deg, transparent 180deg);
}

/* Cone 2 — cool blue, right */
.hero__orb--2 {
  position: absolute;
  top: -60px;
  right: 20%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--spot-cool), transparent 70%);
  filter: blur(0px);
  opacity: 0.6;
  transform-origin: top center;
  transform: rotate(10deg);
  box-shadow: 0 0 80px 40px rgba(56,189,248,0.1);
}
.hero__orb--2::after {
  content: '';
  position: absolute;
  top: 0; left: -40px;
  width: 80px; height: 100%;
  background: conic-gradient(from 270deg at 50% 0%, transparent 60deg, rgba(56,189,248,0.06) 120deg, transparent 180deg);
}

/* Cone 3 — magenta, center-right */
.hero__orb--3 {
  position: absolute;
  top: -60px;
  left: 55%;
  width: 2px;
  height: 80%;
  background: linear-gradient(to bottom, var(--spot-magenta), transparent 65%);
  filter: blur(0px);
  opacity: 0.5;
  transform-origin: top center;
  transform: rotate(3deg);
  box-shadow: 0 0 60px 30px rgba(232,121,249,0.08);
}

/* Glow pool on the floor */
.hero__floor-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120%; height: 300px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%,
    rgba(124,58,237,0.15) 0%,
    rgba(56,189,248,0.05) 40%,
    transparent 70%);
  pointer-events: none;
}


/* Haze / smoke effect */
.hero__haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(124,58,237,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 70%, rgba(56,189,248,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(232,121,249,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,140,66,0.1);
  border: 1px solid rgba(255,140,66,0.3);
  color: var(--spot-warm);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero__tag-dot {
  width: 6px; height: 6px;
  background: var(--spot-warm);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--spot-warm);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--spot-warm); }
  50% { opacity: 0.5; box-shadow: 0 0 2px var(--spot-warm); }
}

/* Spotlight swing animation */
@keyframes swingLeft {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(-14deg); }
}
@keyframes swingRight {
  0%, 100% { transform: rotate(10deg); }
  50%       { transform: rotate(16deg); }
}
.hero__orb--1 { animation: swingLeft 8s ease-in-out infinite; }
.hero__orb--2 { animation: swingRight 10s ease-in-out infinite; }

/* ═══════════════════════════════════════════════════
   AMBIENT BEAM SYSTEM — club lighting beyond hero
   ═══════════════════════════════════════════════════ */
.beam-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.beam {
  position: absolute;
  top: -60px;
  width: 3px;
  height: 100%;
  transform-origin: top center;
  pointer-events: none;
  will-change: transform;
}
.beam::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80px;
  width: 160px;
  height: 100%;
  pointer-events: none;
}

/* Color variants — +15% presence */
.beam--warm {
  background: linear-gradient(to bottom, var(--spot-warm), transparent 75%);
  opacity: 0.6;
  box-shadow: 0 0 80px 40px rgba(255,140,66,0.12);
}
.beam--warm::after {
  background: conic-gradient(from 270deg at 50% 0%, transparent 55deg, rgba(255,140,66,0.09) 120deg, transparent 185deg);
}
.beam--cool {
  background: linear-gradient(to bottom, var(--spot-cool), transparent 75%);
  opacity: 0.55;
  box-shadow: 0 0 80px 40px rgba(56,189,248,0.1);
}
.beam--cool::after {
  background: conic-gradient(from 270deg at 50% 0%, transparent 55deg, rgba(56,189,248,0.08) 120deg, transparent 185deg);
}
.beam--magenta {
  background: linear-gradient(to bottom, var(--spot-magenta), transparent 70%);
  opacity: 0.5;
  box-shadow: 0 0 70px 35px rgba(232,121,249,0.1);
}
.beam--magenta::after {
  background: conic-gradient(from 270deg at 50% 0%, transparent 55deg, rgba(232,121,249,0.08) 120deg, transparent 185deg);
}
.beam--green {
  background: linear-gradient(to bottom, var(--spot-green), transparent 70%);
  opacity: 0.45;
  box-shadow: 0 0 70px 35px rgba(0,229,160,0.09);
}
.beam--green::after {
  background: conic-gradient(from 270deg at 50% 0%, transparent 55deg, rgba(0,229,160,0.07) 120deg, transparent 185deg);
}
.beam--purple {
  background: linear-gradient(to bottom, var(--purple-500), transparent 75%);
  opacity: 0.5;
  box-shadow: 0 0 80px 40px rgba(124,58,237,0.12);
}
.beam--purple::after {
  background: conic-gradient(from 270deg at 50% 0%, transparent 55deg, rgba(124,58,237,0.09) 120deg, transparent 185deg);
}

/* Position variants */
.beam--left      { left: 8%;  transform: rotate(-10deg); }
.beam--center    { left: 48%; transform: rotate(2deg); }
.beam--right     { right: 12%; transform: rotate(12deg); }
.beam--far-left  { left: 3%;  transform: rotate(-15deg); }
.beam--far-right { right: 5%; transform: rotate(15deg); }

/* Height variants */
.beam--short { height: 60%; }
.beam--mid   { height: 80%; }

/* Animation variants */
@keyframes beamSwingL {
  0%, 100% { transform: rotate(-10deg); }
  50%      { transform: rotate(-18deg); }
}
@keyframes beamSwingR {
  0%, 100% { transform: rotate(10deg); }
  50%      { transform: rotate(18deg); }
}
@keyframes beamDrift {
  0%, 100% { transform: rotate(-6deg); opacity: 0.3; }
  25%      { transform: rotate(-12deg); opacity: 0.5; }
  50%      { transform: rotate(-3deg); opacity: 0.2; }
  75%      { transform: rotate(-15deg); opacity: 0.45; }
}
@keyframes beamDriftR {
  0%, 100% { transform: rotate(8deg); opacity: 0.35; }
  25%      { transform: rotate(14deg); opacity: 0.2; }
  50%      { transform: rotate(5deg); opacity: 0.45; }
  75%      { transform: rotate(16deg); opacity: 0.25; }
}
.beam--swing-slow    { animation: beamSwingL 14s ease-in-out infinite; }
.beam--swing-med     { animation: beamSwingR 10s ease-in-out infinite; }
.beam--swing-fast    { animation: beamSwingL 7s ease-in-out infinite; }
.beam--drift         { animation: beamDrift 18s ease-in-out infinite; }
.beam--drift-reverse { animation: beamDriftR 20s ease-in-out infinite; }

/* Section haze */
.section-haze {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.section-haze--purple {
  background: radial-gradient(ellipse 60% 50% at 30% 60%, rgba(124,58,237,0.05) 0%, transparent 70%);
}
.section-haze--warm {
  background: radial-gradient(ellipse 50% 40% at 70% 40%, rgba(255,140,66,0.04) 0%, transparent 70%);
}
.section-haze--cool {
  background: radial-gradient(ellipse 55% 45% at 20% 50%, rgba(56,189,248,0.04) 0%, transparent 70%);
}

/* Section floor glow */
.section-floor-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 200px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 100%,
    rgba(124,58,237,0.08) 0%,
    rgba(56,189,248,0.03) 40%,
    transparent 70%);
}

/* ═══ FLASH EFFECT — directional beam sweep ═══ */
.flash-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  overflow: hidden;
}
/* The beam itself — a narrow diagonal band of light */
.flash-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 80%;
  height: 250%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255,255,255,0.03) 40%,
    rgba(200,180,255,0.08) 43%,
    rgba(255,255,255,0.5) 46%,
    rgba(255,255,255,0.95) 49%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0.95) 51%,
    rgba(255,255,255,0.5) 54%,
    rgba(200,180,255,0.08) 57%,
    rgba(255,255,255,0.03) 60%,
    transparent 62%,
    transparent 100%
  );
  transform: rotate(-15deg);
}
/* The afterglow — brief whiteout at peak */
.flash-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.9);
  opacity: 0;
}
.flash-overlay--active {
  opacity: 1;
  animation: flashReveal 1.2s linear forwards;
}
.flash-overlay--active::before {
  animation: beamSweep 1.2s cubic-bezier(0.25, 0, 0.3, 1) forwards;
}
.flash-overlay--active::after {
  animation: flashBlind 1.2s ease-out forwards;
}
@keyframes flashReveal {
  0%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes beamSweep {
  0%   { left: -150%; }
  100% { left: 200%; }
}
@keyframes flashBlind {
  0%   { opacity: 0; }
  35%  { opacity: 0; }
  42%  { opacity: 0.85; }
  50%  { opacity: 0.7; }
  65%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ═══ STROBE EFFECT — afterhours burst patterns ═══ */
.strobe-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  background: rgba(255,255,255,0.92);
}
/* 2-flash burst pattern: flash-flash (short) */
.strobe-layer--burst2 {
  animation: strobeBurst2 0.6s linear forwards;
}
@keyframes strobeBurst2 {
  0%   { opacity: 0; }
  5%   { opacity: 0.85; }
  12%  { opacity: 0; }
  30%  { opacity: 0.7; }
  38%  { opacity: 0; }
  100% { opacity: 0; }
}
/* 3-flash burst pattern: flash-flash-flash */
.strobe-layer--burst3 {
  animation: strobeBurst3 0.9s linear forwards;
}
@keyframes strobeBurst3 {
  0%   { opacity: 0; }
  4%   { opacity: 0.9; }
  10%  { opacity: 0; }
  22%  { opacity: 0.75; }
  28%  { opacity: 0; }
  45%  { opacity: 0.8; }
  52%  { opacity: 0; }
  100% { opacity: 0; }
}
/* 4-flash burst: flash-flash---flash-flash */
.strobe-layer--burst4 {
  animation: strobeBurst4 1.2s linear forwards;
}
@keyframes strobeBurst4 {
  0%   { opacity: 0; }
  3%   { opacity: 0.85; }
  8%   { opacity: 0; }
  14%  { opacity: 0.7; }
  19%  { opacity: 0; }
  45%  { opacity: 0; }
  50%  { opacity: 0.9; }
  55%  { opacity: 0; }
  62%  { opacity: 0.75; }
  67%  { opacity: 0; }
  100% { opacity: 0; }
}
/* 5-flash burst: flash-flash---flash-flash-flash */
.strobe-layer--burst5 {
  animation: strobeBurst5 1.5s linear forwards;
}
@keyframes strobeBurst5 {
  0%   { opacity: 0; }
  2%   { opacity: 0.9; }
  6%   { opacity: 0; }
  10%  { opacity: 0.75; }
  14%  { opacity: 0; }
  35%  { opacity: 0; }
  38%  { opacity: 0.85; }
  42%  { opacity: 0; }
  50%  { opacity: 0.8; }
  54%  { opacity: 0; }
  62%  { opacity: 0.7; }
  66%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ═══ SWEEP BEAM — diagonal beam from behind ═══ */
.sweep-beam {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9996;
  opacity: 0;
  overflow: hidden;
}
.sweep-beam::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  pointer-events: none;
}
/* Direction: top-left → bottom-right */
.sweep-beam--tl-br::before {
  background: linear-gradient(
    135deg,
    transparent 0%, transparent 42%,
    rgba(56,189,248,0.02) 43.5%,
    rgba(0,229,160,0.06) 45%,
    rgba(56,189,248,0.18) 46.5%,
    rgba(0,229,160,0.35) 48%,
    rgba(56,189,248,0.55) 49%,
    rgba(120,220,232,0.7) 49.8%,
    rgba(56,189,248,0.55) 51%,
    rgba(0,229,160,0.35) 52%,
    rgba(56,189,248,0.18) 53.5%,
    rgba(0,229,160,0.06) 55%,
    rgba(56,189,248,0.02) 56.5%,
    transparent 58%, transparent 100%
  );
}
/* Direction: top-right → bottom-left */
.sweep-beam--tr-bl::before {
  background: linear-gradient(
    225deg,
    transparent 0%, transparent 42%,
    rgba(124,58,237,0.02) 43.5%,
    rgba(232,121,249,0.06) 45%,
    rgba(124,58,237,0.18) 46.5%,
    rgba(232,121,249,0.35) 48%,
    rgba(124,58,237,0.55) 49%,
    rgba(180,120,255,0.7) 49.8%,
    rgba(124,58,237,0.55) 51%,
    rgba(232,121,249,0.35) 52%,
    rgba(124,58,237,0.18) 53.5%,
    rgba(232,121,249,0.06) 55%,
    rgba(124,58,237,0.02) 56.5%,
    transparent 58%, transparent 100%
  );
}
/* Direction: bottom-left → top-right */
.sweep-beam--bl-tr::before {
  background: linear-gradient(
    315deg,
    transparent 0%, transparent 42%,
    rgba(255,140,66,0.02) 43.5%,
    rgba(255,100,50,0.06) 45%,
    rgba(255,140,66,0.18) 46.5%,
    rgba(255,100,50,0.35) 48%,
    rgba(255,140,66,0.55) 49%,
    rgba(255,160,100,0.7) 49.8%,
    rgba(255,140,66,0.55) 51%,
    rgba(255,100,50,0.35) 52%,
    rgba(255,140,66,0.18) 53.5%,
    rgba(255,100,50,0.06) 55%,
    rgba(255,140,66,0.02) 56.5%,
    transparent 58%, transparent 100%
  );
}
/* Direction: bottom-right → top-left */
.sweep-beam--br-tl::before {
  background: linear-gradient(
    45deg,
    transparent 0%, transparent 42%,
    rgba(56,189,248,0.02) 43.5%,
    rgba(124,58,237,0.06) 45%,
    rgba(56,189,248,0.18) 46.5%,
    rgba(124,58,237,0.35) 48%,
    rgba(56,189,248,0.55) 49%,
    rgba(100,140,255,0.7) 49.8%,
    rgba(56,189,248,0.55) 51%,
    rgba(124,58,237,0.35) 52%,
    rgba(56,189,248,0.18) 53.5%,
    rgba(124,58,237,0.06) 55%,
    rgba(56,189,248,0.02) 56.5%,
    transparent 58%, transparent 100%
  );
}
/* Sweep animation — each direction gets its own slide path */
.sweep-beam--active {
  opacity: 1;
  animation: sweepFade 2.8s linear forwards;
}
/* TL→BR : slide top-left to bottom-right */
.sweep-beam--tl-br.sweep-beam--active::before {
  animation: sweepSlide-tl-br 2.8s cubic-bezier(0.22, 0.6, 0.36, 1) forwards;
}
@keyframes sweepSlide-tl-br {
  0%   { transform: translate(-40%, -40%); }
  100% { transform: translate(40%, 40%); }
}
/* TR→BL : slide top-right to bottom-left */
.sweep-beam--tr-bl.sweep-beam--active::before {
  animation: sweepSlide-tr-bl 2.8s cubic-bezier(0.22, 0.6, 0.36, 1) forwards;
}
@keyframes sweepSlide-tr-bl {
  0%   { transform: translate(40%, -40%); }
  100% { transform: translate(-40%, 40%); }
}
/* BL→TR : slide bottom-left to top-right */
.sweep-beam--bl-tr.sweep-beam--active::before {
  animation: sweepSlide-bl-tr 2.8s cubic-bezier(0.22, 0.6, 0.36, 1) forwards;
}
@keyframes sweepSlide-bl-tr {
  0%   { transform: translate(-40%, 40%); }
  100% { transform: translate(40%, -40%); }
}
/* BR→TL : slide bottom-right to top-left */
.sweep-beam--br-tl.sweep-beam--active::before {
  animation: sweepSlide-br-tl 2.8s cubic-bezier(0.22, 0.6, 0.36, 1) forwards;
}
@keyframes sweepSlide-br-tl {
  0%   { transform: translate(40%, 40%); }
  100% { transform: translate(-40%, -40%); }
}
@keyframes sweepFade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ═══ FULL-PAGE BEAMS — persistent follow spots from ceiling ═══ */
.page-beams {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-beams .beam {
  height: 120vh;
}

/* ═══ ACCESSIBILITY — reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  .beam,
  .hero__orb--1,
  .hero__orb--2,
  .hero__orb--3 { animation: none !important; }
  .flash-overlay, .flash-overlay::before, .flash-overlay::after { animation: none !important; opacity: 0 !important; }
  .strobe-layer { display: none !important; }
  .sweep-beam, .sweep-beam::before { animation: none !important; opacity: 0 !important; }
  .hero__tag-dot { animation: none !important; }
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__info {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__info-item { font-size: 0.8rem; color: var(--text-muted); }
.hero__info-item strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }

/* ─── STAT CARDS ─── */
.stat-card {
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-400), transparent);
}
.stat-card:hover {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.2);
}
.stat-card__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(168,85,247,0.5);
}
.stat-card__num span { color: var(--purple-400); }
.stat-card__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── MISSION section ─── */
.mission { padding: 72px 0; }

.mission__intro {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}
.mission__intro h2 { margin-bottom: 20px; }
.mission__intro p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }

.mission__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission__point {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mission__point:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(103,61,230,0.4);
}
.mission__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.mission__point h4 { margin-bottom: 6px; }
.mission__point p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── CONSULTATION section ─── */
.consultation {
  padding: 72px 0;
  background: linear-gradient(180deg, #0e0c1a 0%, #07060f 100%);
  position: relative;
  overflow: hidden;
}
.consultation::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: var(--purple-500);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
}
.consultation::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 400px; height: 400px;
  background: var(--spot-cool);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
}

.consultation__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 70px;
}
.consultation__header h2 { margin-bottom: 20px; }
.consultation__header p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }

.consultation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.consultation__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.consultation__card h3 { margin-bottom: 12px; }
.consultation__card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--purple-500), transparent);
}
.timeline__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
}
.timeline__dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline__content h4 { margin-bottom: 4px; }
.timeline__content p { font-size: 0.82rem; color: var(--text-muted); }

.consultation__cta {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, rgba(103,61,230,0.2), rgba(80,37,209,0.1));
  border: 1px solid rgba(103,61,230,0.3);
  border-radius: var(--radius);
}
.consultation__cta h3 { font-size: 1.6rem; margin-bottom: 12px; }
.consultation__cta p { color: var(--text-muted); margin-bottom: 28px; max-width: 500px; margin-inline: auto; }
.consultation__meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.consultation__meta-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.consultation__meta-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* ─── PHILOSOPHY section ─── */
.philosophy {
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy__quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto 60px;
}
.philosophy__quote em {
  font-style: normal;
  color: var(--purple-300);
}
.philosophy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.philosophy__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}
.philosophy__card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.philosophy__card__icon { font-size: 2rem; margin-bottom: 16px; }
.philosophy__card h4 { margin-bottom: 10px; }
.philosophy__card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ─── DEFINITION section ─── */
.definition {
  padding: 72px 0;
  background: var(--purple-800);
}
.definition__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.definition__acronym {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.definition__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.definition__row:last-child { border-bottom: none; }
.definition__letter {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--purple-400);
  min-width: 56px;
  line-height: 1;
  text-shadow: 0 0 24px currentColor;
}
.definition__row:nth-child(1) .definition__letter { color: #00e5a0; }
.definition__row:nth-child(2) .definition__letter { color: #ff8c42; }
.definition__row:nth-child(3) .definition__letter { color: #38bdf8; }
.definition__row:nth-child(4) .definition__letter { color: var(--purple-400); }
.definition__word { font-size: 1.08rem; color: rgba(255,255,255,0.82); font-weight: 500; }
.definition__word strong { font-weight: 700; }
.definition__text h2 { margin-bottom: 20px; color: var(--white); }
.definition__text p { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }

/* ─── INVOLVEMENT section ─── */
.involvement {
  padding: 72px 0;
  text-align: center;
}
.involvement h2 { margin-bottom: 16px; }
.involvement__subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto 60px; font-size: 1rem; line-height: 1.8; }

.involvement__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.involvement__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: all var(--transition);
}
.involvement__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(103,61,230,0.4);
  transform: translateY(-3px);
}
.involvement__card__icon { font-size: 1.5rem; margin-bottom: 14px; }
.involvement__card h4 { margin-bottom: 8px; }
.involvement__card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─── NEWSLETTER band ─── */
.newsletter {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(103,61,230,0.15), rgba(80,37,209,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter h3 { margin-bottom: 6px; }
.newsletter p { color: var(--text-muted); font-size: 0.88rem; }
.newsletter__form {
  display: flex;
  gap: 0;
  min-width: 360px;
}
.newsletter__form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  border-radius: 50px 0 0 50px;
}
.newsletter__form input::placeholder { color: var(--text-muted); }
.newsletter__form input:focus { border-color: var(--purple-500); }
.newsletter__form button {
  background: var(--purple-500);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: background var(--transition);
}
.newsletter__form button:hover { background: var(--purple-600); }

/* ─── FOOTER ─── */
.footer {
  background: #030208;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}
.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 18px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--white); }
.footer__col ul a.active { color: var(--purple-300); text-shadow: 0 0 12px rgba(168,85,247,0.35); }
.nav__mobile a.active { color: var(--purple-300) !important; text-shadow: 0 0 10px rgba(168,85,247,0.35); }
.footer__logo { width: 48px; height: auto; }
.footer__burger { display: none; }
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--purple-500);
  color: var(--purple-300);
  background: rgba(103,61,230,0.15);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── PAGE HEADER ─── */
.page-header {
  padding: calc(var(--nav-h) + 150px) 0 80px;
  background: linear-gradient(180deg, var(--purple-800) 0%, var(--purple-900) 100%);
  position: relative;
  overflow: hidden;
}

/* Ensure containers inside page-header don't add extra padding */
.page-header .container,
.page-header .container--narrow {
  padding-left: 32px !important;
  padding-right: 32px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Force first element in page-header to have no top margin/padding */
.page-header > div > *:first-child,
.page-header .container > *:first-child,
.page-header .container--narrow > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

/* ─── MANTRA CARDS (10 consentements) ─── */
.mantra-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}
.mantra-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--purple-500);
  opacity: 0;
  transition: opacity var(--transition);
}
.mantra-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(103,61,230,0.4);
  transform: translateX(4px);
}
.mantra-card:hover::before { opacity: 1; }
.mantra-card__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(103,61,230,0.2);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--serif);
}
.mantra-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.mantra-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.mantra-card__tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-400);
  background: rgba(103,61,230,0.12);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Stretched link — rend toute la card cliquable */
.mantra-card .btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ─── Form ─── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-300);
}
input, textarea, select {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--purple-500);
  background: rgba(103,61,230,0.08);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--purple-900); color: var(--white); }
.form-submit { margin-top: 32px; display: flex; justify-content: center; }

/* ─── Toast ─── */
.toast {
  display: none;
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 999;
  animation: slideUp 0.3s ease;
}
.toast.show { display: block; }
@keyframes slideUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ─── HEX ICON ─── */
.hex-icon { width: 72px; height: 72px; flex-shrink: 0; }
.hex-icon img { width: 100%; height: 100%; object-fit: contain; }

/* ─── PHOTO PLACEHOLDER ─── */
.photo-block {
  width: 100%; border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-700) 100%);
}
.photo-block::after {
  content: 'PHOTO';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.1);
  pointer-events: none;
}
.photo-block img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; display: block; }
.photo-block--16-9 { aspect-ratio: 16/9; }
.photo-block--4-5 { aspect-ratio: 4/5; }
.photo-block--square { aspect-ratio: 1; }

/* ─── ACTION CARDS ─── */
.action-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: all var(--transition); display: flex; flex-direction: column; gap: 12px;
}
.action-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(103,61,230,0.4); transform: translateY(-3px); }
.action-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(103,61,230,0.15); border: 1px solid rgba(103,61,230,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.action-card h4 { font-size: 1rem; }
.action-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── VALUE CARDS (12 values) ─── */
.value-grid-12 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px;
}
.value-card-full {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: all var(--transition); position: relative; overflow: hidden;
}
.value-card-full::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-500), transparent); opacity: 0;
  transition: opacity var(--transition);
}
.value-card-full:hover { background: rgba(103,61,230,0.08); border-color: rgba(103,61,230,0.35); transform: translateY(-3px); }
.value-card-full:hover::before { opacity: 1; }
.value-card-full__num { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; color: var(--purple-400); margin-bottom: 14px; text-transform: uppercase; }
.value-card-full h4 { font-size: 1rem; margin-bottom: 10px; }
.value-card-full p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ─── CAPSULE CARDS ─── */
.capsules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.capsule-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); cursor: pointer;
}
.capsule-card:hover { border-color: rgba(103,61,230,0.5); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(103,61,230,0.2); }
.capsule-card__thumb {
  aspect-ratio: 16/9; background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
  position: relative; display: flex; align-items: center; justify-content: center;
}
.capsule-card__play {
  width: 48px; height: 48px; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.capsule-card:hover .capsule-card__play { background: var(--purple-500); border-color: var(--purple-500); }
.capsule-card__num {
  position: absolute; top: 10px; left: 10px; font-size: 0.6rem; font-weight: 700;
  background: rgba(103,61,230,0.6); color: var(--white); padding: 3px 8px; border-radius: 4px;
}
.capsule-card__body { padding: 16px; }
.capsule-card h4 { font-size: 0.88rem; margin-bottom: 6px; }
.capsule-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ─── CAPSULE PAGE LAYOUT V2 ─── */
/* Gabarit V2 pour les 16 pages capsule individuelles (fr + en)
   Harmonisé avec le gabarit mantra : sections distinctes, codes couleur */
.capsule-hero { display: flex; align-items: flex-start; position: relative; overflow: hidden; padding: calc(var(--nav-h) + 150px) 0 80px; }
.capsule-num-bg { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-size: clamp(180px,28vw,360px); font-weight: 900; color: rgba(251,191,36,0.06); line-height: 1; pointer-events: none; user-select: none; }
.capsule-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(251,191,36,0.10); border: 1px solid rgba(251,191,36,0.3); color: #fbbf24; padding: 6px 18px; border-radius: 99px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.capsule-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.85; margin: 24px 0 32px; text-align: center; }
.capsule-video { position: relative; width: 100%; max-width: 720px; margin: 0 auto 40px; }
.capsule-video__wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid rgba(251,191,36,0.15); }
.capsule-video__wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.capsule-quotes { padding: 28px 32px; margin: 40px 0; border-left: 3px solid #a855f7; background: rgba(168,85,247,0.04); border-radius: 0 var(--radius) var(--radius) 0; }
.capsule-quotes h2 { font-size: 1.1rem; font-weight: 700; color: #c4b5fd; margin-bottom: 20px; letter-spacing: 0.02em; }
.capsule-quotes blockquote { padding: 14px 0; margin: 0; border: none; background: none; }
.capsule-quotes blockquote + blockquote { border-top: 1px solid rgba(168,85,247,0.12); padding-top: 14px; }
.capsule-quotes blockquote p { font-size: 0.95rem; line-height: 1.75; color: rgba(196,181,253,0.8); font-style: italic; margin: 0; }
.capsule-points { padding: 28px 32px; margin: 40px 0; border-left: 3px solid #ff8c42; background: rgba(255,140,66,0.04); border-radius: 0 var(--radius) var(--radius) 0; }
.capsule-points h2 { font-size: 1.1rem; font-weight: 700; color: #ffb380; margin-bottom: 20px; letter-spacing: 0.02em; }
.capsule-points h3 { font-size: 1rem; font-weight: 700; color: #fbbf24; margin: 24px 0 12px; }
.capsule-points h3:first-of-type { margin-top: 0; }
.capsule-points .points-list { margin-bottom: 8px; }
.capsule-points .points-list li::before { background: #ff8c42; box-shadow: 0 0 8px rgba(255,140,66,0.5); }
.capsule-themes { padding-left: 32px; margin: 40px 0; }
.capsule-themes h2 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.capsule-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(251,191,36,0.15); }
.capsule-nav a { display: flex; flex-direction: column; gap: 6px; text-decoration: none; color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; max-width: 260px; }
.capsule-nav a:hover { color: var(--white); }
.capsule-nav a .nav-dir { font-size: 0.72rem; color: #fbbf24; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.capsule-nav a.next { text-align: right; margin-left: auto; }
.capsule-nav__center { text-align: center; }
.capsule-nav__center a { color: #fbbf24; text-decoration: none; font-size: 0.82rem; font-weight: 600; transition: color 0.2s; }
.capsule-nav__center a:hover { color: var(--white); }
@media(max-width:900px) {
  .capsule-video { margin: 0 auto 40px; }
  .capsule-desc { padding-left: 0; }
  .capsule-quotes, .capsule-points { padding-left: 20px; }
  .capsule-themes { padding-left: 16px; }
  .capsule-nav { padding-left: 16px; padding-right: 16px; }
}

/* ── Capsule hero nav-top — gold variant of .mantra-nav-top ── */
.capsule-hero .mantra-nav-top { margin-top: 16px; }
.capsule-hero .mantra-nav-top a { background: rgba(251,191,36,0.06); border-color: rgba(251,191,36,0.2); }
.capsule-hero .mantra-nav-top a:hover { background: rgba(251,191,36,0.14); border-color: rgba(251,191,36,0.4); }
.capsule-hero .mantra-nav-top .nav-arrow { color: #fbbf24; }
.capsule-hero .mantra-nav-top a.all { background: rgba(251,191,36,0.10); border-color: rgba(251,191,36,0.3); }
.capsule-hero .mantra-nav-top a.all:hover { background: rgba(251,191,36,0.20); border-color: rgba(251,191,36,0.5); }
.capsule-hero .mantra-nav-top__hex { background: #fbbf24; box-shadow: 0 0 10px rgba(251,191,36,0.5); }
.capsule-hero .mantra-nav-top a.all:hover .mantra-nav-top__hex { filter: brightness(1.2); }

/* ─── ROLE CARDS ─── */
.role-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px; transition: all var(--transition); position: relative; text-decoration: none; display: block;
}
.role-card:hover { background: rgba(103,61,230,0.08); border-color: rgba(103,61,230,0.4); transform: translateY(-4px); }
.role-card__badge { width: 52px; height: 52px; border-radius: 50%; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.role-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.role-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.role-card__cta { margin-top: 20px; font-size: 0.8rem; font-weight: 600; color: var(--purple-400); }

/* ─── STEP ITEMS ─── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step-item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-item__num {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(103,61,230,0.15);
  border: 1px solid rgba(103,61,230,0.3); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--purple-400); flex-shrink: 0;
}
.step-item h4 { margin-bottom: 8px; }
.step-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ─── INFO BOX ─── */
.info-box { background: rgba(103,61,230,0.10); border: 1px solid rgba(103,61,230,0.25); border-radius: var(--radius); padding: 28px 32px; }
.info-box.green { background: rgba(0,229,160,0.08); border-color: rgba(0,229,160,0.2); }
.info-box.amber { background: rgba(255,140,66,0.08); border-color: rgba(255,140,66,0.2); }

/* ─── MANTRA GRID CARD ─── */
.mantra-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.mantra-grid-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px; transition: all var(--transition); cursor: pointer; text-decoration: none;
  display: flex; align-items: flex-start; gap: 16px;
}
.mantra-grid-card:hover { background: rgba(103,61,230,0.1); border-color: rgba(103,61,230,0.5); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(103,61,230,0.15); }
.mantra-grid-card__num { font-size: 1.8rem; font-weight: 900; color: rgba(103,61,230,0.3); line-height: 1; min-width: 40px; font-family: var(--serif); }
.mantra-grid-card__body { flex: 1; }
.mantra-grid-card h4 { font-size: 0.92rem; margin-bottom: 6px; color: var(--white); line-height: 1.35; }
.mantra-grid-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.mantra-grid-card__tag { display: inline-block; margin-top: 8px; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-400); background: rgba(103,61,230,0.12); padding: 3px 8px; border-radius: 50px; }

/* ─── IMPACT LIST ─── */
.impact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.impact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.impact-list li::before { content: '✓'; min-width: 22px; height: 22px; background: rgba(0,229,160,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; color: var(--spot-green); flex-shrink: 0; margin-top: 2px; }

/* ─── OBJECTIVE CARDS ─── */
.objectives-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 32px; }
.objective-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; border-left: 3px solid var(--purple-500); transition: all var(--transition); }
.objective-card:hover { border-left-color: var(--spot-warm); background: rgba(255,255,255,0.04); }
.objective-card h4 { margin-bottom: 8px; }
.objective-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── STRONG QUOTE ─── */
.strong-quote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400; font-style: italic; line-height: 1.45; color: var(--text); position: relative; padding-left: 28px; }
.strong-quote::before { content: '"'; position: absolute; left: 0; top: -10px; font-size: 3.5rem; color: var(--purple-500); font-style: normal; line-height: 1; }

/* ═══ STANDARDISATION DESKTOP — SECTION HÉRO ═══ */
/* Unifie toutes les pages : H1 taille, interligne, espacement */
[class*="-hero"] h1,
.page-hero h1,
.hero h1,
.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .container--narrow { padding-left: 0; padding-right: 0; }
  .beam { opacity: 0.2 !important; }
  .beam--short { height: 40%; }
  .beam::after { display: none; }
  .grid-2, .grid-3,
  .philosophy__cards,
  .consultation__grid,
  .involvement__grid,
  .definition__inner,
  .content-grid-2,
  .mission__points { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer__inner {
    flex-direction: column !important;
    align-items: center !important;
    gap: 32px !important;
  }
  .footer__col { order: -1 !important; text-align: center !important; }
  .footer__brand { order: 1 !important; }
  .footer__brand p,
  .footer__col h4,
  .footer__col ul { text-align: center !important; }
  .footer__brand p { max-width: 100%; }
  .footer__col h4, .footer__col ul { display: none !important; }
  .footer__col ul { padding-left: 0; list-style: none; }
  .footer__social { justify-content: center; }
  .footer__burger { display: flex !important; flex-direction: column !important; gap: 5px !important; align-items: center !important; justify-content: center !important; background: none !important; border: none !important; cursor: pointer !important; padding: 12px !important; margin: 0 auto !important; }
  .footer__burger span { display: block !important; width: 24px !important; height: 2px !important; background: #fff !important; border-radius: 2px !important; }
  .footer__logo-wrap,
  .footer .nav__logo { justify-content: center; }

  .nav__links, .nav__cta, .nav > .nav__inner > .lang-switch { display: none; }
  .nav__hamburger { display: flex; }

  .hero__info { flex-wrap: wrap; gap: 20px; }
  .newsletter__inner { flex-direction: column; }
  .newsletter__form { min-width: 100%; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 36px 24px; }
  .consultation__cta { padding: 36px 24px; }
  .value-grid-12 { grid-template-columns: 1fr 1fr; }
  .capsules-grid { grid-template-columns: repeat(2, 1fr); }
  .mantra-grid { grid-template-columns: 1fr; }
  .objectives-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .value-grid-12 { grid-template-columns: 1fr; }
  .capsules-grid { grid-template-columns: 1fr; }
  .role-card { padding: 28px 20px; }
  .beam { display: none; }
  .page-beams { display: none; }
  .section-haze, .section-floor-glow { opacity: 0.5; }
  .strobe-layer { display: block; }
  .sweep-beam { display: block; }
  /* ── Logo compact sur 2 lignes ── */
  .nav__inner { padding-left: 20px; padding-right: 20px; }
  .nav__logo-icon { height: 35px; }
  .nav__logo-text { font-size: 1.025rem; letter-spacing: 0.06em; }
  .nav__logo-sub { font-size: 0.5625rem; letter-spacing: 0.06em; }
  .nav__logo { gap: 8px; }

  /* ── Hero — réduction de l'espace sur mobile ── */
  .hero,
  [class*="-hero"],
  .page-hero {
    padding-top: calc(var(--nav-h) + 40px) !important;
    padding-bottom: 120px !important;
    min-height: unset !important;
  }
  .mantra-hero { padding-top: calc(var(--nav-h) + 12px) !important; }


  /* ── H1 mobile — taille et adaptation ── */
  h1,
  .hero__title,
  [class*="-hero"] h1,
  .page-hero h1,
  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* ── Correction white-space:nowrap hérité ── */
  h1 span[style*="white-space"] {
    white-space: normal !important;
  }

  /* ── Supprimer les <br> forcés — texte recoule naturellement ── */
  .hero__title br,
  .hero h1 br,
  [class*="-hero"] h1 br,
  .page-hero h1 br { display: none; }

  .mission__intro h2 br,
  .consultation__header h2 br { display: none; }

  .consultation__header p br,
  .mission__intro p br { display: none; }

  /* ── Citation philosophie — police réduite pour tenir sur 3 lignes ── */
  .philosophy__quote { font-size: clamp(1.05rem, 4.5vw, 1.35rem); }

  /* ── Conteneurs de texte — légèrement élargis pour éviter les orphelins ── */
  .container, .container--narrow {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Prévention des mots orphelins sur les paragraphes descriptifs ── */
  .mission__intro p,
  .consultation__header p,
  .involvement__subtitle {
    text-wrap: balance;
    text-wrap: pretty;
  }
}

/* ═══ TIER SYSTEM — Blocs 2×2 par catégorie ═══ */
/* Couleurs : Rouge (base/essentiel), Orange (norme), Bleu (excellence) */

/* Tier block — each tier is its own 2×2 grid with colored border */
.mantra-tier-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  padding: 20px;
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}
.mantra-tier-block:last-child { margin-bottom: 0; }

/* Colored borders + glow per tier (adjacent sibling of header) */
.mantra-tier-header--base + .mantra-tier-block {
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.06), inset 0 0 18px rgba(239, 68, 68, 0.03);
}
.mantra-tier-header--norme + .mantra-tier-block {
  border-color: rgba(255, 140, 66, 0.45);
  box-shadow: 0 0 18px rgba(255, 140, 66, 0.06), inset 0 0 18px rgba(255, 140, 66, 0.03);
}
.mantra-tier-header--excellence + .mantra-tier-block {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.06), inset 0 0 18px rgba(56, 189, 248, 0.03);
}

/* Tier header — colored label with presence */
.mantra-tier-header {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mantra-tier-header::after {
  content: '';
  flex: 1;
  height: 2px;
  background: currentColor;
  opacity: 0.35;
}
.mantra-tier-header--base {
  color: #ef4444;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}
.mantra-tier-header--norme {
  color: #ff8c42;
  text-shadow: 0 0 20px rgba(255, 140, 66, 0.4);
}
.mantra-tier-header--excellence {
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* Tier number colors */
.mantra-c-card.mantra-c-card--base .mantra-c-card__num { color: #ef4444; }
.mantra-c-card.mantra-c-card--norme .mantra-c-card__num { color: #ff8c42; }
.mantra-c-card.mantra-c-card--norme:hover {
  border-color: rgba(255, 140, 66, 0.4);
  box-shadow: 0 6px 24px rgba(255, 140, 66, 0.08);
}
.mantra-c-card.mantra-c-card--excellence .mantra-c-card__num { color: #38bdf8; }
.mantra-c-card.mantra-c-card--excellence:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.08);
}

@media (max-width: 600px) {
  .mantra-tier-block { grid-template-columns: 1fr; padding: 14px; justify-items: center; }
  .mantra-tier-block .mantra-c-card__cover img { display: block; margin: 0 auto; }
  .mantra-c-card { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   V4 — MANTRA CONTROLS BLOCK
   Unified nav + breadcrumb section below the hero title
   ═══════════════════════════════════════════════════════════════ */
.mantra-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
  max-width: calc(100% - 360px);
}
@media (max-width: 900px) {
  .mantra-controls { max-width: 100%; }
}

/* ── Nav prev / all / next — ruban (← ⬡ →) sous le CTA ── */
.mantra-nav-top {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 10px;
  width: fit-content;
  min-width: 220px;
}
.mantra-nav-top a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 10px 0;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.2);
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.25s;
}
.mantra-nav-top a:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
  border-right: none;
}
.mantra-nav-top a.all {
  border-radius: 0;
  border-right: none;
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.25);
}
.mantra-nav-top a.all:hover {
  background: rgba(74, 222, 128, 0.18);
  border-color: rgba(74, 222, 128, 0.5);
}
.mantra-nav-top a.next {
  border-radius: 0 var(--radius) var(--radius) 0;
}
.mantra-nav-top a:hover {
  background: rgba(168, 85, 247, 0.14);
  border-color: rgba(168, 85, 247, 0.4);
  color: var(--white);
}
.mantra-nav-top .nav-arrow {
  color: var(--purple-400);
  font-weight: 700;
  font-size: 1rem;
}
.mantra-nav-top__hex {
  width: 20px;
  height: 20px;
  background: #39ff14;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
  transition: filter 0.25s;
}
.mantra-nav-top a.all:hover .mantra-nav-top__hex {
  filter: brightness(1.3);
}

/* ═══════════════════════════════════════════════════════════════
   V4 — TIER BREADCRUMB
   Three clickable pills showing Base / Norme / Excellence
   ═══════════════════════════════════════════════════════════════ */
.mantra-tier-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.mantra-tier-breadcrumb__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid transparent;
}
/* Dimmed states */
.mantra-tier-breadcrumb__pill--base {
  color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.04);
  border-color: rgba(239, 68, 68, 0.12);
}
.mantra-tier-breadcrumb__pill--norme {
  color: rgba(255, 140, 66, 0.4);
  background: rgba(255, 140, 66, 0.04);
  border-color: rgba(255, 140, 66, 0.12);
}
.mantra-tier-breadcrumb__pill--excellence {
  color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.04);
  border-color: rgba(56, 189, 248, 0.12);
}
/* Active states — full color + glow */
.mantra-tier-breadcrumb__pill--base.active {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.2);
}
.mantra-tier-breadcrumb__pill--norme.active {
  color: #ff8c42;
  background: rgba(255, 140, 66, 0.12);
  border-color: rgba(255, 140, 66, 0.4);
  box-shadow: 0 0 14px rgba(255, 140, 66, 0.2);
}
.mantra-tier-breadcrumb__pill--excellence.active {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.2);
}
.mantra-tier-breadcrumb__pill:not(.active):hover { opacity: 0.8; }
@media (max-width: 600px) {
  .mantra-tier-breadcrumb { flex-wrap: nowrap; gap: 5px; }
  .mantra-tier-breadcrumb__pill { font-size: 0.56rem; padding: 4px 8px; letter-spacing: 0.05em; }
}

/* ═══════════════════════════════════════════════════════════════
   V4 — MANTRA UTILITY BAR
   Bottom links: fiche + consultation + listing
   ═══════════════════════════════════════════════════════════════ */
.mantra-utility-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
  padding-left: 32px;
}
.mantra-utility-bar__fiche {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: var(--radius);
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.mantra-utility-bar__fiche:hover {
  background: rgba(74, 222, 128, 0.15);
  color: var(--white);
  transform: translateY(-2px);
}
.mantra-utility-bar__link {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.mantra-utility-bar__link:hover { color: var(--purple-400); }
.mantra-utility-bar__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}
@media (max-width: 600px) {
  .mantra-utility-bar { padding-left: 0; }
  .mantra-utility-bar__fiche { width: 100%; justify-content: center; }
}

/* ── Print action button (yellow, reusable) ── */
.print-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(251, 191, 36, 0.12);
  border: 1.5px solid rgba(251, 191, 36, 0.5);
  border-radius: 99px;
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.print-action-btn:hover {
  background: rgba(251, 191, 36, 0.25);
  color: #fff;
  transform: translateY(-1px);
}
.print-action-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── Fiches CTA strip (bandeau sitewide) ── */
.fiches-cta-strip {
  padding: 24px 0;
  background: rgba(74, 222, 128, 0.04);
  border-top: 1px solid rgba(74, 222, 128, 0.15);
  border-bottom: 1px solid rgba(74, 222, 128, 0.15);
  text-align: center;
}
.fiches-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fiches-cta-strip__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.fiches-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4ade80;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 99px;
  padding: 10px 24px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.fiches-cta-strip__btn:hover {
  background: rgba(74, 222, 128, 0.15);
  color: var(--white);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .fiches-cta-strip__inner { flex-direction: column; gap: 10px; }
  .fiches-cta-strip__btn { width: 100%; justify-content: center; max-width: 360px; }
}

/* ═══════════════════════════════════════════════════════════════
   V4 — MANTRA PAGE LAYOUT
   Common CSS for all 20 mantra detail pages (fr + en)
   Gabarit source : fr/mantra-01-soin-de-soi.html
   ═══════════════════════════════════════════════════════════════ */
.mantra-hero { display: flex; align-items: flex-start; position: relative; overflow: hidden; padding: calc(var(--nav-h) + 150px) 0 80px; }
.mantra-spot { position: absolute; top: -80px; left: 32%; width: 300px; height: 560px; background: conic-gradient(from -10deg at 50% 0%, transparent 0%, rgba(168,85,247,0.35) 8%, rgba(168,85,247,0.15) 16%, transparent 24%); transform-origin: top center; animation: swingLeft 12s ease-in-out infinite; pointer-events: none; }
.mantra-num-bg { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-size: clamp(180px,28vw,360px); font-weight: 900; color: rgba(103,61,230,0.05); line-height: 1; pointer-events: none; user-select: none; }
.mantra-label { display: inline-flex; align-items: center; gap: 10px; background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.3); color: #a855f7; padding: 6px 18px; border-radius: 99px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.mantra-label.mantra-label--base { color: #ef4444; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); }
.mantra-label.mantra-label--norme { color: #ff8c42; background: rgba(255,140,66,0.12); border: 1px solid rgba(255,140,66,0.3); }
.mantra-label.mantra-label--excellence { color: #38bdf8; background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.3); }
.citation-block { background: none; border: none; padding: 32px 0; margin: 20px 0 56px 0; text-align: center; }
.citation-block p { font-size: clamp(1.2rem,2.5vw,1.5rem); line-height: 1.75; color: #86efac; font-weight: 500; font-style: italic; max-width: 900px; margin: 0 auto; }
.content-block { margin: 56px 0; padding-left: 32px; }
.content-block h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; color: var(--white); }
.points-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.points-list li { display: flex; gap: 16px; align-items: flex-start; font-size: 0.95rem; color: rgba(220,210,255,0.62); line-height: 1.75; }
.points-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #a855f7; flex-shrink: 0; margin-top: 9px; box-shadow: 0 0 8px rgba(168,85,247,0.5); }
.why-block { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; margin: 56px 0; }
.why-block h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.why-block p { font-size: 0.95rem; color: rgba(220,210,255,0.62); line-height: 1.8; margin-bottom: 16px; }
.why-block p:last-child { margin-bottom: 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 24px; }
.value-chip { background: rgba(103,61,230,0.08); border: 1px solid rgba(103,61,230,0.18); border-radius: var(--radius); padding: 16px 18px; font-size: 0.85rem; color: var(--text-muted); transition: border-color 0.25s, transform 0.25s, color 0.25s; }
.value-chip:hover { transform: translateY(-2px); }
.values-grid { --c1:168,85,247; --c2:251,191,36; --c3:74,222,128; --c4:56,189,248; }
.values-grid[data-shift="1"] { --c1:251,191,36; --c2:74,222,128; --c3:56,189,248; --c4:168,85,247; }
.values-grid[data-shift="2"] { --c1:74,222,128; --c2:56,189,248; --c3:168,85,247; --c4:251,191,36; }
.values-grid[data-shift="3"] { --c1:56,189,248; --c2:168,85,247; --c3:251,191,36; --c4:74,222,128; }
.value-chip:nth-child(1) { color: rgba(var(--c1),0.75); border-color: rgba(var(--c1),0.22); background: rgba(var(--c1),0.06); }
.value-chip:nth-child(2) { color: rgba(var(--c2),0.75); border-color: rgba(var(--c2),0.22); background: rgba(var(--c2),0.06); }
.value-chip:nth-child(3) { color: rgba(var(--c3),0.75); border-color: rgba(var(--c3),0.22); background: rgba(var(--c3),0.06); }
.value-chip:nth-child(4) { color: rgba(var(--c4),0.75); border-color: rgba(var(--c4),0.22); background: rgba(var(--c4),0.06); }
.value-chip:nth-child(1):hover { border-color: rgba(var(--c1),0.5); color: rgb(var(--c1)); }
.value-chip:nth-child(2):hover { border-color: rgba(var(--c2),0.5); color: rgb(var(--c2)); }
.value-chip:nth-child(3):hover { border-color: rgba(var(--c3),0.5); color: rgb(var(--c3)); }
.value-chip:nth-child(4):hover { border-color: rgba(var(--c4),0.5); color: rgb(var(--c4)); }
.mantra-nav { display: flex; padding-left: 32px; justify-content: space-between; align-items: flex-start; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(103,61,230,0.2); }
.mantra-nav a { display: flex; flex-direction: column; gap: 6px; text-decoration: none; color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; max-width: 280px; }
.mantra-nav a:hover { color: var(--white); }
.mantra-nav a .nav-dir { font-size: 0.72rem; color: var(--purple-400); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.mantra-nav a.next { text-align: right; margin-left: auto; }
.mantra-hex-float { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 336px; height: 336px; pointer-events: none; opacity: 0.92; z-index: 0; }
@media (max-width: 900px) {
  .mantra-hero .container--narrow { display: flex; flex-direction: column; align-items: center; }
  .mantra-hero { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 48px; }
  /* ── Mobile order: label → image → nav → CTA → tiers → h1 → p ── */
  .mantra-hero .mantra-label { text-align: center; justify-content: center; order: 1; margin-bottom: 16px; }
  .mantra-hex-float { position: static; transform: none; width: 72vw; height: 72vw; max-width: 320px; max-height: 320px; opacity: 1; margin: 0 auto 16px; display: block; border-radius: 16px; box-shadow: 0 8px 40px rgba(168,85,247,0.3); order: 2; }
  .mantra-hero .mantra-nav-top { justify-content: center; order: 3; margin-top: 0; }
  .mantra-hero .btn { margin-left: auto; margin-right: auto; order: 4; margin-top: 12px; }
  .mantra-hero .mantra-controls { display: flex; justify-content: center; order: 5; margin-top: 12px; }
  .mantra-hero h1 { text-align: center; order: 6; margin-top: 60px; }
  .mantra-hero p { text-align: center; margin-left: auto; margin-right: auto; order: 7; }
}
.capsule-links { display: flex; flex-direction: column; gap: 10px; }
.capsule-btn { display: flex; align-items: center; gap: 14px; padding: 14px 20px; background: rgba(251,191,36,0.06); border: 1px solid rgba(251,191,36,0.2); border-radius: var(--radius); color: var(--text-muted); text-decoration: none; font-size: 0.88rem; line-height: 1.5; transition: border-color 0.25s, transform 0.25s, color 0.25s, background 0.25s; }
.capsule-btn:hover { border-color: rgba(251,191,36,0.5); background: rgba(251,191,36,0.1); color: #fbbf24; transform: translateX(4px); }
.capsule-btn__num { display: inline-flex; align-items: center; justify-content: center; min-width: 32px; height: 24px; background: rgba(251,191,36,0.15); color: #fbbf24; font-weight: 700; font-size: 0.75rem; border-radius: 6px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   V4 — FORMULAIRE DE CONSULTATION EMBARQUÉ
   Embedded consultation form on each mantra page
   ═══════════════════════════════════════════════════════════════ */
.mantra-form { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px 40px; margin-top: 16px; }
.mantra-form__header { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); position: relative; min-height: 100px; }
.mantra-form__hex { width: 120px; height: 120px; border-radius: 12px; object-fit: cover; flex-shrink: 0; box-shadow: 0 4px 24px rgba(168,85,247,0.25); order: 1; margin-left: auto; }
.mantra-form__title { font-size: 1.375rem; font-weight: 700; color: var(--white); }
.mantra-form__title span { color: #a855f7; }
.mantra-form__sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.form-group input, .form-group textarea { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--white); font-size: 0.9rem; font-family: var(--sans); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: rgba(103,61,230,0.6); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-question { margin-top: 28px; }
.form-question__label { font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.form-question__hint { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.form-options { display: flex; flex-wrap: wrap; gap: 10px; }
.form-pill { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.85rem; color: var(--text-muted); background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 99px; padding: 8px 18px; transition: all 0.2s; }
.form-pill:hover { border-color: rgba(168,85,247,0.4); color: var(--white); }
.form-pill input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.form-pill:focus-within { outline: 2px solid #a855f7; outline-offset: 2px; }
.form-pill:has(input:checked) { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.5); color: var(--white); }
.form-pill__dot { width: 8px; height: 8px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); flex-shrink: 0; transition: all 0.2s; }
.form-pill:has(input:checked) .form-pill__dot { background: #a855f7; border-color: #a855f7; box-shadow: 0 0 8px rgba(168,85,247,0.5); }
.form-pill__check { width: 14px; height: 14px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.2); flex-shrink: 0; transition: all 0.2s; position: relative; }
.form-pill:has(input:checked) .form-pill__check { background: #a855f7; border-color: #a855f7; }
.form-pill:has(input:checked) .form-pill__check::after { content: '✓'; position: absolute; top: -2px; left: 1px; font-size: 0.65rem; color: white; }
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .mantra-form { padding: 32px 20px; }
  .form-options { flex-direction: column; }
}
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
  .content-block { padding-left: 16px; }
  .mantra-nav { padding-left: 0; flex-direction: column; gap: 20px; }
  .mantra-nav a.next { text-align: left; margin-left: 0; }
  .mantra-utility-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .mantra-utility-bar .mantra-utility-bar__sep { display: none; }
  .why-block { padding: 20px 16px; }
  .mantra-form__header { flex-direction: column-reverse; align-items: center; text-align: center; }
  .mantra-form__hex { margin-left: 0; order: 0; width: 100px; height: 100px; }
}

/* ═══════════════════════════════════════════════════════════════
   V4 — OPEN / INVITATION CARD
   Dashed border card inviting visitors to propose a mantra
   ═══════════════════════════════════════════════════════════════ */
.mantra-c-card--open {
  background: rgba(168, 85, 247, 0.03);
  border: 2px dashed rgba(168, 85, 247, 0.25);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 260px;
  padding: 32px 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.mantra-c-card--open:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.12), inset 0 0 24px rgba(168, 85, 247, 0.04);
  transform: translateY(-3px);
}
.mantra-c-card--open__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  opacity: 0.7;
}
.mantra-c-card--open__text {
  font-size: 1rem;
  font-weight: 700;
  color: #c4b5fd;
  line-height: 1.4;
  margin-bottom: 12px;
}
.mantra-c-card--open__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   V4 — LISTING TIER SECTIONS
   Tier wrappers for the flat listing pages (vertical layout)
   ═══════════════════════════════════════════════════════════════ */
.mantra-tier-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}
.mantra-tier-section:last-child { margin-bottom: 0; }
.mantra-tier-header--base + .mantra-tier-section {
  border-color: rgba(239, 68, 68, 0.25);
}
.mantra-tier-header--norme + .mantra-tier-section {
  border-color: rgba(255, 140, 66, 0.25);
}
.mantra-tier-header--excellence + .mantra-tier-section {
  border-color: rgba(56, 189, 248, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   SIGNAL — Section responsive
   ═══════════════════════════════════════════════════════════════ */
.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.signal-col-left {
  border-right: 1px solid #1e1e1e;
}
@media (max-width: 640px) {
  .signal-grid {
    grid-template-columns: 1fr;
  }
  .signal-col-left {
    border-right: none;
    border-bottom: 1px solid #1e1e1e;
  }
}
