/* ============================================================
   SkyBuild — style.css
   Prototype v0.4 — Expérience immersive sky + city
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  /* Palette ciel */
  --c-sky-deep:    #04101E;
  --c-sky-mid:     #0D2645;
  --c-sky-horizon: #1F4E87;
  --c-sky-dawn:    #2A6CB0;
  --c-cloud:       rgba(255,255,255,0.28);

  /* Palette marque */
  --c-accent:      #1B3D5C;
  --c-accent-2:    #2A5F8F;
  --c-steel:       #7AB3CC;
  --c-steel-dim:   rgba(122,179,204,0.35);

  /* Neutres */
  --c-bg:          #F7F8FA;
  --c-bg-alt:      #EFF1F5;
  --c-surface:     #FFFFFF;
  --c-border:      #DDE3EC;
  --c-text:        #1A2332;
  --c-text-2:      #4A5568;
  --c-text-3:      #8895A7;

  /* Typographie */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  /* Espacements */
  --sp-section: 96px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(4,16,30,0.08), 0 1px 2px rgba(4,16,30,0.05);
  --shadow-md: 0 4px 16px rgba(4,16,30,0.10), 0 1px 3px rgba(4,16,30,0.06);
  --shadow-lg: 0 12px 40px rgba(4,16,30,0.14), 0 4px 12px rgba(4,16,30,0.08);
  --shadow-sky: 0 8px 32px rgba(31,78,135,0.25);
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Container ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-narrow { max-width: 760px; margin: 0 auto; }

/* ── Typographie ────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 40px; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
p  { color: var(--c-text-2); }

.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-steel); margin-bottom: 14px;
}
.section-label-light { color: rgba(122,179,204,0.7); }

.section-text { font-size: 1.05rem; max-width: 680px; margin-bottom: 40px; color: var(--c-text-2); }
.section-text-light { color: rgba(255,255,255,0.72); }
.text-white { color: #fff; }

/* ── Sections ───────────────────────────────────────────────── */
section { padding: var(--sp-section) 0; }
.section-alt  { background: var(--c-bg-alt); }
.section-dark { background: var(--c-sky-deep); color: #fff; }

/* ── Boutons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.01em;
  transition: all 0.22s var(--ease-out); text-decoration: none; cursor: pointer;
}
.btn-primary {
  background: var(--c-sky-horizon); color: #fff; padding: 11px 24px;
  border: 1.5px solid transparent;
}
.btn-primary:hover { background: var(--c-sky-dawn); transform: translateY(-1px); box-shadow: var(--shadow-sky); }
.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.9); padding: 10px 22px;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-sm  { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg  { padding: 13px 28px; font-size: 0.95rem; }

/* ── Header ─────────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
#header.scrolled {
  background: rgba(4,16,30,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(122,179,204,0.12);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: 64px; }
.logo { font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; flex-shrink: 0; }
.logo-bracket { color: var(--c-steel); opacity: 0.8; }

.nav-desktop { display: flex; gap: 28px; margin-left: auto; }
.nav-desktop a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.2s; position: relative;
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--c-steel);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease-out);
}
.nav-desktop a:hover { color: #fff; }
.nav-desktop a:hover::after, .nav-desktop a.active::after { transform: scaleX(1); }
.nav-desktop a.active { color: #fff; }
.header-cta { margin-left: 8px; }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; margin-left: auto;
}
.menu-toggle span {
  display: block; height: 2px; background: rgba(255,255,255,0.85);
  border-radius: 2px; transition: transform 0.28s var(--ease-out), opacity 0.2s;
}
.nav-mobile {
  display: none; flex-direction: column; padding: 16px 24px 24px;
  background: rgba(4,16,30,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(122,179,204,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0; font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile-cta { margin-top: 16px; text-align: center; border-bottom: none !important; }

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 0;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; opacity: 0; transition: opacity 1.2s ease;
}
.hero-video.loaded { opacity: 0.55; }

.hero-sky {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    var(--c-sky-deep)    0%,
    var(--c-sky-mid)    45%,
    var(--c-sky-horizon) 75%,
    #2A5080             100%
  );
}

.hero-clouds { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }

.cloud {
  position: absolute;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%; filter: blur(30px);
}
.cloud.c1 { width: 700px; height: 180px; top: 12%; left: -30%; animation: driftCloud 90s linear infinite; }
.cloud.c2 { width: 500px; height: 130px; top: 28%; left: -20%; animation: driftCloud 120s linear infinite 18s; opacity: 0.7; }
.cloud.c3 { width: 420px; height: 100px; top: 8%;  left: 60%;  animation: driftCloudReverse 80s linear infinite 5s; opacity: 0.5; }
.cloud.c4 { width: 350px; height: 90px;  top: 38%; left: 40%;  animation: driftCloud 100s linear infinite 35s; opacity: 0.4; }

@keyframes driftCloud        { from { transform: translateX(-10vw); } to { transform: translateX(120vw); } }
@keyframes driftCloudReverse { from { transform: translateX(30vw);  } to { transform: translateX(-120vw); } }

.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 3;
  background-image:
    linear-gradient(rgba(122,179,204,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,179,204,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.5) 80%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.5) 80%, transparent 100%);
}

.hero-skyline {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 4; height: 200px; will-change: transform;
}
.hero-skyline svg { width: 100%; height: 100%; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(90deg, rgba(4,16,30,0.65) 0%, rgba(4,16,30,0.30) 60%, rgba(4,16,30,0.10) 100%);
}

.hero-inner {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 1fr 400px; gap: 60px;
  align-items: center; padding-top: 80px; padding-bottom: 60px; min-height: 100vh;
}

.hero-content { max-width: 580px; }

.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-steel);
  background: rgba(122,179,204,0.12); border: 1px solid rgba(122,179,204,0.25);
  border-radius: 3px; padding: 5px 12px; margin-bottom: 24px;
}

#hero h1 { color: #fff; margin-bottom: 20px; }

.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.72); max-width: 520px;
  margin-bottom: 36px; line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* SVG Building */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; }

.building-svg {
  width: 100%; max-width: 380px;
  filter: drop-shadow(0 20px 60px rgba(31,78,135,0.35));
}

.conn-line {
  stroke: rgba(122,179,204,0.55); stroke-width: 1.5;
  stroke-dasharray: 1000; stroke-dashoffset: 1000; fill: none;
  transition: stroke-dashoffset 0.9s var(--ease-out);
}
.conn-line.drawn { stroke-dashoffset: 0; }

#svgModule { transition: transform 1.1s var(--ease-out); }
#svgModule.landed { transform: translate(0,0) !important; }
#nodeSB, #nodeInv, #nodeArch, #valueLabel { transition: opacity 0.5s ease; }

.building-tag {
  margin-top: 14px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(122,179,204,0.7); font-family: var(--font-mono);
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(122,179,204,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── Section cinématique (solution) ─────────────────────────── */
.section-cinematic { position: relative; overflow: hidden; padding: var(--sp-section) 0; }
.cinematic-bg { position: absolute; inset: 0; }
.cinematic-sky-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-sky-deep) 0%, #0A1E35 40%, #152840 100%);
}
.cinematic-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.5s ease;
}
.cinematic-video.loaded { opacity: 0.35; }
.cinematic-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(122,179,204,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,179,204,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cinematic-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(4,16,30,0.4) 0%, rgba(4,16,30,0.75) 100%);
}
.cinematic-content { position: relative; z-index: 2; }

.positioning-phrase {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-style: italic;
  color: rgba(255,255,255,0.9); border-left: 3px solid var(--c-steel);
  padding: 16px 0 16px 28px; margin: 32px 0; max-width: 700px; line-height: 1.55;
}

/* ── Piliers ─────────────────────────────────────────────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.pillar-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 6px;
  padding: 28px 22px; position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
  transform-style: preserve-3d; will-change: transform; cursor: default;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-sky-horizon), var(--c-steel));
  opacity: 0; transition: opacity 0.3s;
}
.pillar-card:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(122,179,204,0.2);
  border-color: rgba(122,179,204,0.3);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-num {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--c-steel); font-family: var(--font-mono); margin-bottom: 14px;
}
.pillar-icon { width: 40px; height: 40px; color: var(--c-accent-2); margin-bottom: 16px; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-card h3 { font-size: 1rem; color: var(--c-text); margin-bottom: 10px; }
.pillar-card p  { font-size: 0.875rem; color: var(--c-text-2); line-height: 1.6; }

.pillar-hover-action {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--c-steel); font-family: var(--font-mono); margin-top: 18px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
}
.pillar-card:hover .pillar-hover-action { opacity: 1; transform: translateY(0); }

/* ── Section canvas (données urbaines) ──────────────────────── */
.section-canvas-dark { background: var(--c-sky-deep); color: #fff; padding: var(--sp-section) 0; }

.canvas-wrapper {
  position: relative; border: 1px solid rgba(122,179,204,0.15); border-radius: 6px;
  overflow: hidden; margin-bottom: 40px; background: rgba(13,38,69,0.5);
}

#urbanCanvas { width: 100%; height: 280px; display: block; }

.canvas-legend {
  position: absolute; top: 14px; right: 14px;
  display: flex; gap: 16px; font-size: 0.72rem;
  color: rgba(255,255,255,0.6); font-family: var(--font-mono); letter-spacing: 0.05em;
}
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-high    { background: #7AB3CC; }
.dot-med     { background: rgba(122,179,204,0.5); }
.dot-low     { background: rgba(122,179,204,0.2); }

.data-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-item  { text-align: center; }
.stat-num   {
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700;
  color: var(--c-steel); font-family: var(--font-mono); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

/* ── Grilles ────────────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 32px; }

/* ── Cartes problème ─────────────────────────────────────────── */
.card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 6px; padding: 24px;
  transition: box-shadow 0.22s, transform 0.22s var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon  { width: 32px; height: 32px; color: var(--c-accent-2); margin-bottom: 16px; }
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--c-text); }
.card p  { font-size: 0.875rem; }

/* ── Options propriétaires ───────────────────────────────────── */
.option-card {
  display: flex; gap: 20px; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 6px; padding: 24px; align-items: flex-start;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.option-card:hover { box-shadow: var(--shadow-md); border-color: var(--c-steel-dim); }
.option-letter {
  font-size: 1.4rem; font-weight: 800; color: var(--c-sky-horizon); opacity: 0.35;
  line-height: 1; font-family: var(--font-mono); flex-shrink: 0; margin-top: 2px;
}
.option-content h3 { font-size: 1rem; color: var(--c-text); margin-bottom: 6px; }
.option-content p  { font-size: 0.875rem; }

/* ── Disclaimers / warnings ──────────────────────────────────── */
.disclaimer-box {
  display: flex; gap: 16px; background: rgba(31,78,135,0.06);
  border: 1px solid rgba(31,78,135,0.18); border-left: 3px solid var(--c-sky-horizon);
  border-radius: 4px; padding: 18px 20px; margin-top: 32px;
}
.disclaimer-box p { font-size: 0.85rem; color: var(--c-text-2); line-height: 1.6; }
.disclaimer-box p strong { color: var(--c-text); }
.disclaimer-neutral { background: rgba(100,116,139,0.06); border-left-color: var(--c-text-3); }
.disclaimer-icon { width: 20px; height: 20px; color: var(--c-sky-horizon); flex-shrink: 0; margin-top: 1px; }
.disclaimer-icon svg { width: 100%; height: 100%; }

.warning-box {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(180,140,60,0.07); border: 1px solid rgba(180,140,60,0.22);
  border-radius: 4px; padding: 16px 18px; margin-top: 32px;
}
.warning-box p  { font-size: 0.85rem; color: var(--c-text-2); }
.warning-icon   { font-size: 1.1rem; flex-shrink: 0; line-height: 1.5; }

/* ── Pipeline investisseurs ──────────────────────────────────── */
.pipeline {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 48px; overflow-x: auto; padding: 8px 0;
}
.pipeline-stage {
  flex: 1; min-width: 140px; background: var(--c-bg-alt); border: 1px solid var(--c-border);
  border-radius: 6px; padding: 20px 16px; text-align: center;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s var(--ease-out);
}
.pipeline-stage:hover { box-shadow: var(--shadow-md); border-color: var(--c-steel-dim); transform: translateY(-2px); }
.pipeline-stage-target { background: rgba(31,78,135,0.08); border-color: rgba(31,78,135,0.25); }
.pipe-icon { width: 28px; height: 28px; color: var(--c-accent-2); margin: 0 auto 10px; }
.pipe-icon svg { width: 100%; height: 100%; }
.pipeline-stage-target .pipe-icon { color: var(--c-sky-horizon); }
.pipe-label { font-size: 0.85rem; font-weight: 700; color: var(--c-text); margin-bottom: 4px; }
.pipe-sub   { font-size: 0.72rem; color: var(--c-text-3); letter-spacing: 0.03em; }
.pipeline-arrow { color: var(--c-text-3); font-size: 1.1rem; padding: 0 8px; flex-shrink: 0; }

/* ── Grille investisseurs ────────────────────────────────────── */
.investors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.investor-type {
  background: var(--c-bg-alt); border: 1px solid var(--c-border); border-radius: 6px; padding: 20px;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.investor-type:hover { box-shadow: var(--shadow-sm); border-color: var(--c-steel-dim); }
.investor-type h4 { font-size: 0.9rem; color: var(--c-text); margin-bottom: 6px; }
.investor-type p  { font-size: 0.82rem; }

/* ── Value props ─────────────────────────────────────────────── */
.value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-prop {
  padding: 24px; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 6px; transition: box-shadow 0.22s;
}
.value-prop:hover { box-shadow: var(--shadow-md); }
.value-icon { width: 32px; height: 32px; color: var(--c-accent-2); margin-bottom: 14px; }
.value-icon svg { width: 100%; height: 100%; }
.value-prop h4 { font-size: 0.9rem; color: var(--c-text); }
.value-prop p  { font-size: 0.85rem; margin-top: 6px; }

/* ── Timeline processus ──────────────────────────────────────── */
.timeline { position: relative; display: flex; flex-direction: column; }
.timeline::before {
  content: ''; position: absolute; left: 22px; top: 22px; bottom: 22px;
  width: 1px; background: linear-gradient(to bottom, var(--c-sky-horizon), transparent);
}
.timeline-item { display: flex; gap: 28px; padding: 0 0 36px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--c-surface);
  border: 1.5px solid var(--c-sky-horizon); color: var(--c-sky-horizon);
  font-weight: 700; font-size: 0.85rem; font-family: var(--font-mono);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-content { padding-top: 10px; }
.timeline-content h3 { font-size: 1rem; margin-bottom: 6px; }
.timeline-content p  { font-size: 0.875rem; }

/* ── Inspirations ────────────────────────────────────────────── */
.inspiration-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 6px; padding: 24px;
  transition: box-shadow 0.22s, transform 0.22s var(--ease-out);
}
.inspiration-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.inspiration-country {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-steel); margin-bottom: 8px;
}
.inspiration-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.inspiration-card p  { font-size: 0.85rem; }

/* ── Section vidéo modulaire ─────────────────────────────────── */
.section-video {
  position: relative; height: 280px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 0 0 36px;
}
.video-scene { position: absolute; inset: 0; }
.module-sky-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--c-sky-mid) 0%, var(--c-sky-deep) 100%);
}
.module-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.5s ease;
}
.module-video.loaded { opacity: 0.6; }
.module-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,16,30,0.8) 0%, rgba(4,16,30,0.2) 100%);
}
.video-caption-wrap { position: relative; z-index: 2; }
.video-caption {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(122,179,204,0.7); font-family: var(--font-mono);
}

/* ── Équipe ──────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.team-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 6px;
  padding: 28px 24px; text-align: center;
  transition: box-shadow 0.22s, transform 0.22s var(--ease-out);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-sky-mid); border: 2px solid rgba(122,179,204,0.3);
  color: var(--c-steel); font-weight: 700; font-size: 0.85rem; font-family: var(--font-mono);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.team-card h3  { font-size: 1rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-steel); margin-bottom: 10px;
}
.team-card p  { font-size: 0.85rem; }
.team-note    { font-size: 0.8rem; color: var(--c-text-3); font-style: italic; }

/* ── Roadmap ─────────────────────────────────────────────────── */
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.roadmap-item {
  display: flex; gap: 16px; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 6px; padding: 20px; align-items: flex-start; transition: box-shadow 0.22s;
}
.roadmap-item:hover { box-shadow: var(--shadow-sm); }
.roadmap-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(31,78,135,0.08); border: 1px solid rgba(31,78,135,0.2);
  color: var(--c-sky-horizon); font-weight: 700; font-size: 0.8rem; font-family: var(--font-mono);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.roadmap-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.roadmap-item p  { font-size: 0.82rem; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0; font-size: 0.95rem; font-weight: 600;
  color: var(--c-text); display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--c-sky-horizon); }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 400; color: var(--c-text-3); flex-shrink: 0;
  transition: transform 0.28s var(--ease-out), background 0.2s, border-color 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--c-sky-horizon); border-color: var(--c-sky-horizon);
  color: #fff; transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 20px; font-size: 0.9rem; line-height: 1.7; }

/* ── Formulaire de contact ───────────────────────────────────── */
.contact-form {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 36px; margin-top: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { grid-column: 1 / -1; margin-bottom: 20px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; padding: 10px 14px; font-size: 0.9rem;
  color: rgba(255,255,255,0.9); font-family: var(--font-sans);
  transition: border-color 0.2s, background 0.2s; -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='1.5'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px;
}
.form-group select option { background: var(--c-sky-mid); color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: rgba(122,179,204,0.5); background: rgba(255,255,255,0.09);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--c-steel); }
.checkbox-label span { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.form-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form-note   { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.req { color: var(--c-steel); }

.form-confirmation {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 20px;
  padding: 16px 18px; background: rgba(122,179,204,0.1);
  border: 1px solid rgba(122,179,204,0.25); border-radius: 4px;
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
}
.form-confirmation svg { width: 20px; height: 20px; color: var(--c-steel); flex-shrink: 0; margin-top: 1px; }
.form-confirmation em { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ── Footer ──────────────────────────────────────────────────── */
#footer {
  background: var(--c-sky-deep); border-top: 1px solid rgba(122,179,204,0.1);
  padding: 56px 0 32px;
}
.footer-top { display: grid; grid-template-columns: 240px 1fr; gap: 64px; margin-bottom: 48px; }
.footer-brand .logo { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 10px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6);
  margin-bottom: 8px; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 820px; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── Animations reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── prefers-reduced-motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-video, .cinematic-video, .module-video { display: none; }
  .reveal { opacity: 1; transform: none; }
  .scroll-line { animation: none; }
  .cloud { animation: none; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
  .grid-4         { grid-template-columns: repeat(2, 1fr); }
  .investors-grid { grid-template-columns: repeat(2, 1fr); }
  .value-props    { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner     { grid-template-columns: 1fr; text-align: center; }
  .hero-content   { max-width: 100%; }
  .hero-actions   { justify-content: center; }
  .hero-sub       { margin: 0 auto 36px; }
  .hero-visual    { display: none; }
}

@media (max-width: 768px) {
  :root { --sp-section: 64px; }
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle  { display: flex; }
  .hero-inner   { padding-top: 100px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .grid-4       { grid-template-columns: 1fr; }
  .grid-2       { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .investors-grid { grid-template-columns: 1fr; }
  .value-props  { grid-template-columns: 1fr; }
  .data-stats   { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .footer-nav   { grid-template-columns: 1fr 1fr; }
  .pipeline     { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .pipeline-arrow { display: none; }
  .pipeline-stage { min-width: 120px; flex: none; width: calc(50% - 6px); }
  .canvas-legend  { position: static; margin-top: 10px; justify-content: center; flex-wrap: wrap; }
  .canvas-wrapper { overflow: visible; }
  .section-video  { height: 200px; }
}

@media (max-width: 480px) {
  .data-stats    { grid-template-columns: 1fr; }
  .footer-nav    { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pipeline-stage { width: 100%; }
}

/* ============================================================
   v0.5 — Hero vidéo + sections redesign
   ============================================================ */

/* ── Hero vidéo de fond ──────────────────────────────────────── */
.hero-video-section {
  background: linear-gradient(135deg, #071624 0%, #0D2A3D 100%);
}

.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.58;
}

.hero-video-section .hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(4,16,30,0.72) 0%,
    rgba(4,16,30,0.50) 55%,
    rgba(4,16,30,0.38) 100%
  );
}

.hero-video-section .hero-content {
  position: relative; z-index: 10;
  max-width: 680px;
  padding-top: 120px; padding-bottom: 80px;
}

.hero-tagline {
  margin-top: 28px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(122,179,204,0.52); font-family: var(--font-mono);
}

/* ── Section vidéo secondaire ───────────────────────────────── */
.section-video-feature {
  background: var(--c-bg); padding: var(--sp-section) 0;
}

.video-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.video-copy h2 { margin-bottom: 20px; }
.video-copy p  { font-size: 1.05rem; line-height: 1.7; color: var(--c-text-2); }

.video-frame {
  position: relative; border-radius: 8px; overflow: hidden;
  background: var(--c-sky-mid); aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}

.inline-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 1;
}

.video-frame-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--c-sky-mid) 0%, var(--c-sky-horizon) 100%);
}

/* ── Section données urbaines ───────────────────────────────── */
.data-section {
  background: var(--c-sky-deep); color: #fff; padding: var(--sp-section) 0;
}

.data-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-bottom: 56px; align-items: start;
}

/* Map panel */
.data-map-panel { display: flex; flex-direction: column; gap: 14px; }

.romandie-map {
  position: relative; width: 100%; padding-bottom: 59.1%;
  background: linear-gradient(135deg, rgba(13,38,69,0.85) 0%, rgba(4,16,30,0.92) 100%);
  border: 1px solid rgba(122,179,204,0.15); border-radius: 6px; overflow: hidden;
}

.map-lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.map-location {
  position: absolute; display: flex; align-items: center; gap: 7px; z-index: 1;
  transform: translate(-50%, -50%);
}

.map-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--c-steel); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(122,179,204,0.2);
  animation: mapPulse 2.6s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(122,179,204,0.20); }
  50%       { box-shadow: 0 0 0 8px rgba(122,179,204,0.00); }
}

.map-info { font-size: 0.72rem; line-height: 1.3; white-space: nowrap; }
.map-info-left { order: -1; text-align: right; }

.map-city-name  { font-weight: 700; color: rgba(255,255,255,0.9); font-size: 0.76rem; }
.map-city-count { color: rgba(122,179,204,0.70); font-size: 0.67rem; margin-top: 1px; }

.data-note {
  font-size: 0.72rem; color: rgba(255,255,255,0.28);
  line-height: 1.5; font-style: italic;
}

/* Scoring panel */
.scoring-panel {
  background: rgba(13,38,69,0.55); border: 1px solid rgba(122,179,204,0.18);
  border-radius: 8px; padding: 28px 24px;
}

.scoring-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}

.scoring-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-steel); background: rgba(122,179,204,0.12);
  border: 1px solid rgba(122,179,204,0.25); border-radius: 3px;
  padding: 3px 10px; flex-shrink: 0;
}

.scoring-title {
  font-size: 0.76rem; color: rgba(255,255,255,0.45); font-style: italic;
}

.score-main { margin-bottom: 22px; }

.score-value {
  font-size: 3rem; font-weight: 800; color: var(--c-steel);
  font-family: var(--font-mono); line-height: 1; margin-bottom: 4px;
}

.score-total { font-size: 1.2rem; font-weight: 400; color: rgba(122,179,204,0.4); }

.score-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.38);
  margin-bottom: 12px; font-style: italic;
}

.score-bar {
  height: 6px; background: rgba(255,255,255,0.08);
  border-radius: 3px; overflow: hidden; margin-bottom: 8px;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-sky-horizon), var(--c-steel));
  border-radius: 3px;
}

.score-level { font-size: 0.74rem; color: rgba(122,179,204,0.72); font-weight: 600; }

.score-rows {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 18px; border-top: 1px solid rgba(255,255,255,0.07);
}

.score-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 12px;
}

.score-criterion { font-size: 0.82rem; color: rgba(255,255,255,0.68); }

.score-val {
  font-size: 0.73rem; font-weight: 700; font-family: var(--font-mono);
  padding: 2px 8px; border-radius: 3px; white-space: nowrap;
}

.val-high    { color: #4ade80; background: rgba(74,222,128,0.10); }
.val-med     { color: #fbbf24; background: rgba(251,191,36,0.10); }
.val-pending { color: rgba(255,255,255,0.38); background: rgba(255,255,255,0.05); }

.score-disclaimer {
  font-size: 0.71rem; color: rgba(255,255,255,0.28);
  line-height: 1.55; font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 14px;
}

/* ── Photos d'équipe ─────────────────────────────────────────── */
.team-photo {
  width: 104px; height: 104px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 18px; display: block;
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.team-name-caps { font-weight: 800; letter-spacing: 0.03em; }

/* ── Responsive v0.5 ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .video-feature { grid-template-columns: 1fr; gap: 40px; }
  .data-layout   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-video-section .hero-content { padding-top: 104px; padding-bottom: 60px; }
  .scoring-panel  { padding: 20px 16px; }
  .score-value    { font-size: 2.4rem; }
  .map-city-count { display: none; }
}

@media (max-width: 480px) {
  .hero-tagline   { display: none; }
  .data-layout    { gap: 28px; }
  .video-feature  { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video, .inline-video { display: none; }
  .map-dot { animation: none; }
}

/* ============================================================
   v0.6 — Section data premium · photos équipe · typo
   ============================================================ */

/* ── Utilitaires typographiques ─────────────────────────────── */
.text-balance { text-wrap: balance; }

.section-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.78;
  color: var(--c-text-2);
  max-width: 720px;
}

h2 { text-wrap: balance; }

/* Meilleure respiration globale sur les intro de section */
.section-text { line-height: 1.75; }

/* ── Section data : en-tête zone pilote ──────────────────────── */
.pilot-zone-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}

.pilot-zone-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.pilot-badge {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-steel); background: rgba(122,179,204,0.1);
  border: 1px solid rgba(122,179,204,0.2); border-radius: 30px;
  padding: 3px 10px;
}

/* ── Carte SVG stylisée ──────────────────────────────────────── */
.map-svg-wrap {
  border: 1px solid rgba(122,179,204,0.14); border-radius: 8px;
  overflow: hidden; background: rgba(4,18,40,0.7);
  margin-bottom: 20px;
}

.romandie-svg {
  display: block; width: 100%; height: auto;
}

/* SVG internal styles */
.svg-lake {
  fill: rgba(31,78,135,0.22);
  stroke: rgba(122,179,204,0.35);
  stroke-width: 0.8;
}

.svg-rhone {
  fill: none;
  stroke: rgba(122,179,204,0.18);
  stroke-width: 1.2;
}

.svg-connector {
  stroke: rgba(122,179,204,0.20);
  stroke-width: 1;
  stroke-dasharray: 5 4;
}

.svg-city-ring {
  fill: rgba(122,179,204,0.12);
  stroke: rgba(122,179,204,0.28);
  stroke-width: 1;
  transform-origin: center;
  transform-box: fill-box;
  animation: svgCityPulse 2.8s ease-in-out infinite;
}

@keyframes svgCityPulse {
  0%, 100% { transform: scale(1);   opacity: 0.5; }
  50%       { transform: scale(1.5); opacity: 0.08; }
}

.svg-city-dot {
  fill: var(--c-steel);
}

.svg-city-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  fill: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
}

/* ── City callouts (cartes lisibles sous la carte) ───────────── */
.city-callouts {
  display: flex; gap: 10px; margin-bottom: 16px;
}

.city-callout {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: rgba(31,64,100,0.28); border: 1px solid rgba(122,179,204,0.14);
  border-radius: 6px; padding: 10px 12px;
}

.city-callout-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-steel); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(122,179,204,0.18);
}

.city-callout-body { min-width: 0; }

.city-callout-name {
  font-size: 0.8rem; font-weight: 700;
  color: rgba(255,255,255,0.88); line-height: 1.2;
}

.city-callout-count {
  font-size: 0.7rem; font-weight: 600;
  color: var(--c-steel); line-height: 1.3;
}

.city-callout-note {
  font-weight: 400; color: rgba(122,179,204,0.55);
}

/* ── Scoring panel v0.6 ──────────────────────────────────────── */
.score-display {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 20px 20px 16px;
  margin-bottom: 20px;
}

.score-number {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 800; color: var(--c-steel);
  font-family: var(--font-mono); line-height: 1; margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.score-denom {
  font-size: 1.1rem; font-weight: 400;
  color: rgba(122,179,204,0.38); letter-spacing: 0;
}

.score-sublabel {
  font-size: 0.71rem; color: rgba(255,255,255,0.35);
  margin-bottom: 14px; font-style: italic;
}

/* Override score-bar for v0.6 — slightly taller, more visible */
.scoring-panel .score-bar {
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px; overflow: hidden; margin-bottom: 10px;
}

.scoring-panel .score-fill {
  height: 100%;
  background: linear-gradient(90deg,
    var(--c-sky-horizon) 0%,
    var(--c-steel) 72%,
    rgba(122,179,204,0.5) 100%
  );
  border-radius: 4px;
}

.scoring-panel .score-level {
  font-size: 0.76rem; color: var(--c-steel); font-weight: 600;
}

/* val-neutral = "Moyenne" */
.val-neutral {
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  font-size: 0.73rem; font-weight: 700; font-family: var(--font-mono);
  padding: 2px 8px; border-radius: 3px;
}

/* ── Team photo wrapper premium ──────────────────────────────── */
.team-photo-wrap {
  width: 112px; height: 112px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(122,179,204,0.30));
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  overflow: hidden;
}

/* Override .team-photo inside the wrapper */
.team-photo-wrap .team-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: none;
  margin: 0;
  display: block;
  filter: saturate(1.03) contrast(1.01);
}

/* Ajustements individuels si bords sombres ou cadrage décalé */
.team-photo-kevin  { object-position: center center; }
.team-photo-almin  { object-position: center 30%; transform: scale(1.07); }
.team-photo-sevan  { object-position: center 25%; transform: scale(1.07); }

/* ── Responsive v0.6 ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .city-callouts { flex-direction: column; gap: 8px; }
  .city-callout  { padding: 9px 12px; }
  .score-number  { font-size: 2.4rem; }
  .score-display { padding: 16px; }
  .team-photo-wrap { width: 96px; height: 96px; }
}

@media (max-width: 480px) {
  .pilot-zone-header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .city-callout-note { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .svg-city-ring { animation: none; }
}
