/* Vitrine sobre – fond clair, mise en forme lisible */
:root {
  --bg: #f8f9fa;
  --bg-card: #fff;
  --text: #2c3e50;
  --text-light: #5a6c7d;
  --border: #e2e6ea;
  --accent: #4a6fa5;
  --accent-soft: #6b8cbe;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- Header : logo + déploiement ----- */
.header {
  padding: 3rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.logo-suffix {
  font-weight: 500;
  color: var(--accent);
  margin-left: 0.2em;
}

.deploy-label {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.progress-wrap {
  max-width: 280px;
  margin: 0 auto;
}

.progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 3px;
  animation: progress 2.2s ease-in-out infinite;
}

.progress-bar {
  position: relative;
}

@keyframes progress {
  0%   { width: 0; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ----- Main : carousel + mission ----- */
.main {
  flex: 1;
  padding: 2.5rem 0 3rem;
}

.carousel-section {
  margin-bottom: 2.5rem;
}

.carousel-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  width: 200%;
  animation: carousel 14s linear infinite;
}

.carousel-item {
  flex: 0 0 33.333%;
  width: 33.333%;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

@keyframes carousel {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----- Ligne directrice ----- */
.mission-section {
  margin-bottom: 2rem;
}

.mission {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  margin: 0;
  font-style: normal;
}

/* ----- Footer ----- */
.footer {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.brand {
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--text);
}
