﻿/* === main.css === */
/* ============================================
   UNUSUALL â€” Styles globaux, variables, reset
   Entreprise digital Â· Cotonou, BÃ©nin
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* â”€â”€â”€ Variables â€” Vert pin + accent dorÃ© â”€â”€â”€ */
:root {
  --pine:         #1A472A;
  --pine-light:   #2D6A4F;
  --pine-bright:  #52B788;
  --pine-50:      #D8F3DC;
  --pine-900:     #081C15;
  --pine-700:     #1B4332;
  --accent:       #E9A319;
  --accent-light: #F4C056;
  --accent-50:    #FEF3DC;

  /* Alias compatibilitÃ© */
  --flame:        var(--pine);
  --flame-light:  var(--pine-light);
  --ember:        var(--pine-bright);
  --flame-50:     var(--pine-50);
  --flame-900:    var(--pine-900);
  --flame-700:    var(--pine-700);

  --bg:           #F4FAF6;
  --surface:      #EAF5EE;
  --surface-2:    #E0F0E6;
  --border:       #C5DDD0;
  --text-primary: #0D2818;
  --text-secondary:#3D5A47;
  --text-tertiary:#5A7260;

  --success:      #1A7A4A;
  --info:         #1A472A;

  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --app-radius:   16px;
  --window-shadow: 0 24px 80px rgba(13, 40, 24, 0.12);
}

[data-theme="dark"] {
  --bg:           #0A1F14;
  --surface:      #122A1C;
  --surface-2:    #1A3828;
  --border:       #2A4A38;
  --text-primary: #E8F5EC;
  --text-secondary:#8FB89A;
  --text-tertiary:#5A8068;
  --pine:         #52B788;
  --pine-light:   #74C69D;
  --pine-bright:  #95D5B2;
  --pine-50:      #1A3828;
  --pine-900:     #081C15;
  --pine-700:     #40916C;
  --flame:        var(--pine);
  --flame-light:  var(--pine-light);
  --flame-900:    #081C15;
  --window-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

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

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

body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body.custom-cursor {
  cursor: none;
}

body.custom-cursor a,
body.custom-cursor button,
body.custom-cursor [role="button"] {
  cursor: none;
}

::selection {
  background: var(--pine);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: 34px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }

p {
  color: var(--text-secondary);
}

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

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 64px; }
}

section {
  padding: 0;
}

@media (min-width: 768px) {
  section { padding: 0; }
}

.watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 15vw, 200px);
  color: var(--text-primary);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  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.85' 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: 200px 200px;
}


/* === components.css === */
/* ============================================
   UNUSUALL â€” Composants
   Nav, footer, boutons, cards, formulaires
   ============================================ */

/* â”€â”€â”€ Logo UNUSUALL â€” dÃ©gradÃ© animÃ© â”€â”€â”€ */
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo__unusu,
.logo__a,
.logo__l1,
.logo__l2 {
  background: linear-gradient(
    120deg,
    var(--accent-light) 0%,
    var(--pine-bright) 22%,
    var(--pine) 48%,
    var(--accent) 72%,
    var(--pine-900) 100%
  );
  background-size: 280% 280%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGradientFlow 5s ease-in-out infinite;
}

[data-theme="dark"] .logo__unusu,
[data-theme="dark"] .logo__a,
[data-theme="dark"] .logo__l1,
[data-theme="dark"] .logo__l2 {
  background: linear-gradient(
    120deg,
    #F4C056 0%,
    #95D5B2 25%,
    #52B788 50%,
    #E9A319 75%,
    #D8F3DC 100%
  );
  background-size: 280% 280%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes logoGradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* â”€â”€â”€ Navigation â”€â”€â”€ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(var(--bg), 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav__links a:hover {
  color: var(--flame);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--flame);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__links a:hover::after {
  width: 100%;
}

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

/* â”€â”€â”€ Toggle boutons â”€â”€â”€ */
.toggle-btn {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-btn:hover {
  background: var(--surface-2);
  color: var(--text-primary);
}

.toggle-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* â”€â”€â”€ CTA bouton nav â”€â”€â”€ */
.btn-nav-cta {
  display: none;
  background: var(--flame);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-nav-cta:hover {
  background: var(--flame-light);
  transform: translateY(-1px);
}

/* â”€â”€â”€ Menu hamburger â”€â”€â”€ */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* â”€â”€â”€ Mobile menu â”€â”€â”€ */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  display: block;
  padding: 8px 0;
}

.mobile-menu .mobile-cta {
  margin-top: auto;
  background: var(--flame);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  border: none;
}

/* â”€â”€â”€ Responsive nav â”€â”€â”€ */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .btn-nav-cta {
    display: inline-block;
  }
}

/* â”€â”€â”€ Boutons â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn--primary {
  background: var(--flame);
  color: #fff;
}

.btn--primary:hover {
  background: var(--flame-light);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--surface-2);
}

.btn--white {
  background: #fff;
  color: var(--pine);
}

.btn--white:hover {
  background: var(--pine-50);
}

/* â”€â”€â”€ Badge / Pill â”€â”€â”€ */
.badge {
  display: inline-block;
  background: var(--flame-50);
  color: var(--flame-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  border: none;
}

/* â”€â”€â”€ Cards â”€â”€â”€ */
.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: var(--flame);
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.card--accent {
  border-color: var(--flame);
}

.card__badge {
  margin-bottom: 16px;
}

.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  display: block;
}

.card__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--flame);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card__link:hover {
  gap: 10px;
}

/* â”€â”€â”€ Grille de cards â”€â”€â”€ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* â”€â”€â”€ Formulaires â”€â”€â”€ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control::placeholder {
  color: var(--text-tertiary);
}

.form-control:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.12);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B5E52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  background: var(--success);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 16px;
}

.form-success.visible {
  display: block;
}

.form-error {
  display: none;
  background: #8B2E2E;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 16px;
}

.form-error.visible {
  display: block;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.social-proof {
  margin: 0 28px 24px;
  padding: 20px 24px;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.social-proof__grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .social-proof__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.social-proof__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 6px;
}

.social-proof__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.studio-examples {
  padding: 0 28px 8px;
}

.studio-examples__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.studio-examples__grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .studio-examples__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.studio-examples__item {
  padding: 16px 18px;
  border: 0.5px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.studio-examples__item span {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 8px;
}

.studio-examples__item h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.studio-examples__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.error-page {
  padding: 48px 28px 56px;
  text-align: center;
}

.error-page .hero__title {
  margin-bottom: 12px;
}

.error-page .boot-hero__actions {
  justify-content: center;
  margin-top: 28px;
}

.app-layout--centered .app-main {
  max-width: 720px;
  margin: 0 auto;
}

.app-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-footer__bottom a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.app-footer__bottom a:hover {
  color: var(--accent);
}

.legal-content {
  padding: 8px 28px 32px;
  max-width: 720px;
}

.legal-content h2 {
  font-size: 18px;
  margin: 28px 0 10px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 20px;
  margin: 8px 0 16px;
}

/* â”€â”€â”€ Footer â”€â”€â”€ */
.footer {
  border-top: 0.5px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 280px;
}

.footer__brand .logo {
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--flame);
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom p {
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer__bottom a {
  font-size: 12px;
  color: var(--text-tertiary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* â”€â”€â”€ Section conviction (fond Flame) â”€â”€â”€ */
.section-conviction {
  background: var(--flame);
  position: relative;
  overflow: hidden;
}

.section-conviction .container {
  position: relative;
  z-index: 2;
}

.section-conviction h2 {
  font-size: clamp(24px, 4vw, 40px);
  color: #fff;
  max-width: 800px;
  line-height: 1.3;
  margin-bottom: 32px;
}

/* â”€â”€â”€ Section hero gÃ©nÃ©rique â”€â”€â”€ */
.hero {
  position: relative;
  min-height: auto;
  display: block;
  padding-top: 0;
  overflow: visible;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero__title .flame-text {
  background: linear-gradient(
    120deg,
    var(--accent-light) 0%,
    var(--pine-bright) 30%,
    var(--pine) 60%,
    var(--accent) 100%
  );
  background-size: 280% 280%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGradientFlow 4s ease-in-out infinite;
}

.hero__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.55;
}

.hero__body {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* â”€â”€â”€ Feature blocks â”€â”€â”€ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-block {
  padding: 32px;
  border-radius: 12px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  transition: border-color 0.3s;
}

.feature-block:hover {
  border-color: var(--flame);
}

.feature-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-block p {
  font-size: 14px;
  line-height: 1.6;
}

/* â”€â”€â”€ Steps â”€â”€â”€ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 12px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 500;
  color: var(--flame);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  line-height: 1.6;
}

/* â”€â”€â”€ Conviction blocks â”€â”€â”€ */
.conviction-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .conviction-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.conviction-block {
  padding: 32px;
  border-left: 2px solid var(--flame);
}

.conviction-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.conviction-block p {
  font-size: 14px;
  line-height: 1.7;
}

/* â”€â”€â”€ Contact layout â”€â”€â”€ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
}

.contact-info h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.contact-info p,
.contact-info a {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  display: block;
}

.contact-info a:hover {
  color: var(--flame);
}

/* â”€â”€â”€ Page transition overlay â”€â”€â”€ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   APP SHELL â€” ExpÃ©rience type application
   ============================================ */

.sys-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--pine-900);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .sys-bar {
  background: #061510;
}

.sys-bar__left,
.sys-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sys-bar__brand {
  color: var(--pine-bright);
  font-weight: 500;
}

.sys-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pine-bright);
  animation: pulse 2s ease infinite;
}

.sys-bar__actions {
  display: flex;
  gap: 8px;
}

.sys-bar__btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.sys-bar__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.app-layout {
  display: flex;
  flex: 1;
  padding-top: 36px;
  min-height: 100vh;
}

.app-dock {
  display: none;
  position: fixed;
  left: 0;
  top: 36px;
  bottom: 0;
  width: 72px;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 8px;
  background: var(--surface);
  border-right: 0.5px solid var(--border);
  z-index: 90;
}

.app-dock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  width: 56px;
}

.app-dock__item:hover {
  background: var(--surface-2);
  transform: scale(1.05);
}

.app-dock__item.active {
  background: var(--pine-50);
}

[data-theme="dark"] .app-dock__item.active {
  background: var(--surface-2);
}

.app-dock__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: #fff;
}

.app-dock__icon--home { background: linear-gradient(135deg, var(--pine) 0%, var(--pine-light) 100%); }
.app-dock__icon--olivia { background: linear-gradient(135deg, #2D6A4F 0%, #52B788 100%); }
.app-dock__icon--omi { background: linear-gradient(135deg, #1B4332 0%, #40916C 100%); }
.app-dock__icon--sofia { background: linear-gradient(135deg, #081C15 0%, #2D6A4F 100%); }
.app-dock__icon--studio { background: linear-gradient(135deg, var(--accent) 0%, #C4841A 100%); color: var(--pine-900); }
.app-dock__icon--contact { background: linear-gradient(135deg, var(--pine-700) 0%, var(--pine-bright) 100%); }

.app-dock__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.2;
}

.app-main {
  flex: 1;
  width: 100%;
  padding: 16px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .app-dock {
    display: flex;
  }
  .app-main {
    margin-left: 72px;
    padding: 24px 32px 32px;
  }
}

.app-window {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--app-radius);
  box-shadow: var(--window-shadow);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.app-window__titlebar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
}

.app-window__controls {
  display: flex;
  gap: 6px;
  pointer-events: none;
  grid-column: 1;
}

.app-window__control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
}

.app-window__control--close { background: #FF5F57; }
.app-window__control--min { background: #FFBD2E; }
.app-window__control--max { background: #28CA41; }

.app-window__back {
  grid-column: 2;
  justify-self: start;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--pine);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.app-window__back:hover {
  background: var(--pine-50);
}

[data-theme="dark"] .app-window__back:hover {
  background: var(--surface-2);
}

.app-window__title {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  pointer-events: none;
}

.app-window__body {
  padding: 0;
}

.app-window__body--padded {
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .app-window__body--padded {
    padding: 48px 56px;
  }
}

/* â”€â”€â”€ Mobile bottom dock â”€â”€â”€ */
.mobile-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
  border-top: 0.5px solid var(--border);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-dock::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .mobile-dock { display: none; }
}

.mobile-dock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 52px;
  min-height: 52px;
  padding: 6px 8px;
  border-radius: 10px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.mobile-dock__item.active {
  background: var(--pine-50);
}

[data-theme="dark"] .mobile-dock__item.active {
  background: var(--surface-2);
}

.mobile-dock__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: #fff;
}

.mobile-dock__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
}

/* â”€â”€â”€ App tiles (launcher) â”€â”€â”€ */
.app-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 24px;
}

@media (min-width: 640px) {
  .app-tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 32px 40px;
  }
}

@media (min-width: 900px) {
  .app-tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.app-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  min-height: 200px;
  overflow: hidden;
}

.app-tile--olivia { border-top: 3px solid #52B788; }
.app-tile--omi { border-top: 3px solid #40916C; }
.app-tile--sofia { border-top: 3px solid #1B4332; }
.app-tile--studio { border-top: 3px solid var(--accent); }

.app-tile__icon--olivia { background: linear-gradient(135deg, #2D6A4F, #52B788); }
.app-tile__icon--omi { background: linear-gradient(135deg, #1B4332, #40916C); }
.app-tile__icon--sofia { background: linear-gradient(135deg, #081C15, #2D6A4F); }
.app-tile__icon--studio { background: linear-gradient(135deg, var(--accent), #C4841A); color: var(--pine-900); }

.app-tile:hover {
  border-color: var(--pine-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 71, 42, 0.1);
}

.app-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  margin-bottom: 16px;
}

.app-tile__status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 20px;
}

.app-tile__status--live {
  background: rgba(82, 183, 136, 0.15);
  color: var(--pine);
}

.app-tile__status--beta {
  background: rgba(233, 163, 25, 0.15);
  color: #B8860B;
}

.app-tile__status--dev {
  background: rgba(107, 143, 120, 0.15);
  color: var(--text-tertiary);
}

.app-tile__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.app-tile__desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.app-tile__cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--pine);
  padding: 8px 0;
}

.app-tile__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.app-tile:hover .app-tile__cta {
  color: var(--pine-light);
}

.boot-hero__value {
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 600;
  color: var(--pine);
  margin-bottom: 10px;
  max-width: 520px;
  line-height: 1.4;
}

.boot-hero__terminal--compact {
  margin-bottom: 16px;
  font-size: 11px;
  opacity: 0.85;
}

/* â”€â”€â”€ Preuves visuelles / mockups â”€â”€â”€ */
.proof-section {
  padding: 32px 24px;
  border-top: 0.5px solid var(--border);
  background: var(--surface);
}

@media (min-width: 768px) {
  .proof-section { padding: 40px 56px; }
}

.proof-section__header {
  margin-bottom: 28px;
}

.proof-section__header h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.proof-section__header p {
  font-size: 14px;
  max-width: 480px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.proof-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.proof-card__body {
  padding: 16px 20px 20px;
}

.proof-card__body h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.proof-card__body p {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.proof-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--pine);
}

.ui-mockup {
  background: var(--pine-900);
  padding: 12px;
  min-height: 140px;
}

.ui-mockup__bar {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

.ui-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.ui-mockup__content {
  display: grid;
  gap: 8px;
}

.ui-mockup__row {
  display: flex;
  gap: 8px;
}

.ui-mockup__block {
  flex: 1;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
}

.ui-mockup__block--accent {
  background: rgba(82, 183, 136, 0.35);
}

.ui-mockup__block--gold {
  background: rgba(233, 163, 25, 0.35);
}

.ui-mockup__stat {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--pine-bright);
  margin-bottom: 4px;
}

.ui-mockup__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

.stat-hero {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--pine-50);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  margin: 20px 0;
}

[data-theme="dark"] .stat-hero {
  background: var(--surface-2);
}

.stat-hero__num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 500;
  color: var(--pine);
  line-height: 1;
}

.stat-hero__text {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 200px;
  line-height: 1.4;
}

.project-example {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.project-example h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.project-example p {
  font-size: 14px;
  margin-bottom: 12px;
}

.project-example__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-example__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--bg);
  color: var(--text-tertiary);
  border: 0.5px solid var(--border);
}

/* â”€â”€â”€ Footer app â”€â”€â”€ */
.app-footer {
  margin-top: 32px;
  padding: 32px 24px;
  border-top: 0.5px solid var(--border);
}

.app-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .app-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.app-footer__brand p {
  font-size: 13px;
  margin-top: 12px;
  max-width: 260px;
}

.app-footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.app-footer__col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
}

.app-footer__col a:hover {
  color: var(--pine);
}

.app-footer__bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 0.5px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-tertiary);
}

.theme-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.theme-icon--moon { display: none; }

[data-theme="dark"] .theme-icon--sun { display: none; }
[data-theme="dark"] .theme-icon--moon { display: block; }

/* â”€â”€â”€ Terminal boot hero â”€â”€â”€ */
.boot-hero {
  padding: 40px 24px 32px;
  border-bottom: 0.5px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

@media (min-width: 768px) {
  .boot-hero { padding: 56px 56px 40px; }
}

.boot-hero__terminal {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  line-height: 1.8;
}

.boot-hero__terminal .prompt {
  color: var(--pine-bright);
}

.boot-hero__terminal .cmd {
  color: var(--text-secondary);
}

.boot-hero__terminal .output {
  color: var(--pine);
  font-weight: 500;
}

.boot-hero__title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.boot-hero__title .accent-text {
  color: var(--pine);
  position: relative;
  background: linear-gradient(
    120deg,
    var(--accent-light) 0%,
    var(--pine-bright) 30%,
    var(--pine) 60%,
    var(--accent) 100%
  );
  background-size: 280% 280%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGradientFlow 4s ease-in-out infinite;
}

.boot-hero__title .accent-text::after {
  content: '_';
  animation: blink 1s step-end infinite;
  -webkit-text-fill-color: var(--accent);
  background: none;
}

/* RÃ©vÃ©lation du site aprÃ¨s intro */
body.site-revealed .app-main {
  animation: siteReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes siteReveal {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes blink {
  50% { opacity: 0; }
}

.boot-hero__mission {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 560px;
  line-height: 1.55;
}

.boot-hero__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.boot-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* â”€â”€â”€ System panel (convictions) â”€â”€â”€ */
.sys-panel {
  padding: 32px 24px;
  border-top: 0.5px solid var(--border);
}

@media (min-width: 768px) {
  .sys-panel { padding: 40px 56px; }
}

.sys-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.sys-panel__header h2 {
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  font-weight: 500;
}

.sys-panel__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.conviction-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.conviction-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: start;
}

.conviction-row:last-child {
  border-bottom: none;
}

.conviction-row__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--pine-bright);
  padding-top: 4px;
}

.conviction-row h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.conviction-row p {
  font-size: 13px;
  line-height: 1.65;
}

/* â”€â”€â”€ Status badges â”€â”€â”€ */
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--pine);
  background: rgba(82, 183, 136, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.status-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pine-bright);
  animation: pulse 2s ease infinite;
}

/* â”€â”€â”€ Page inside app window â”€â”€â”€ */
.page-content {
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .page-content { padding: 48px 56px; }
}

.page-content .hero {
  min-height: auto;
  padding: 0;
  padding-bottom: 40px;
}

.page-content .hero__content {
  max-width: 100%;
  padding: 0;
}

.page-content section {
  padding: 48px 0;
}

.page-content section:first-of-type {
  padding-top: 0;
}

/* â”€â”€â”€ Cards grid 4 cols â”€â”€â”€ */
.cards-grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.cards-grid--2x2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cards-grid--2x2 { grid-template-columns: repeat(2, 1fr); }
}

/* â”€â”€â”€ SOFIA coming soon block â”€â”€â”€ */
.coming-soon-block {
  text-align: center;
  padding: 64px 32px;
  background: var(--surface);
  border: 0.5px dashed var(--border);
  border-radius: 12px;
}

.coming-soon-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.coming-soon-block p {
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 14px;
}


/* === animations.css === */
/* ============================================
   UNUSUALL â€” Animations et transitions
   ============================================ */

/* â”€â”€â”€ Loader WOW â”€â”€â”€ */
body.is-loading {
  overflow: hidden;
}

.loader {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(ellipse at 50% 40%, #1A472A 0%, #081C15 55%, #030a06 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .loader {
    left: 72px;
  }
}

@media (max-width: 767px) {
  .loader {
    bottom: 64px;
  }
}

.loader__burst {
  position: absolute;
  width: 40vmin;
  height: 40vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.45) 0%, rgba(233, 163, 25, 0.12) 40%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.loader__ring {
  position: absolute;
  width: 50vmin;
  height: 50vmin;
  border-radius: 50%;
  border: 1px solid rgba(82, 183, 136, 0.35);
  transform: scale(0.2);
  opacity: 0;
  pointer-events: none;
}

.loader__ring--2 {
  width: 65vmin;
  height: 65vmin;
  border-color: rgba(233, 163, 25, 0.2);
}

.loader__flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35) 0%, transparent 55%);
  opacity: 0;
  pointer-events: none;
}

.loader__stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 8vw, 56px);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0 24px rgba(82, 183, 136, 0.5));
  transform: scale(0.85);
  opacity: 0;
}

.loader__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transform: translateY(8px);
}

.loader__letter {
  display: inline-block;
  opacity: 0;
  transform: scale(0.2) translateY(24px);
  background: linear-gradient(
    120deg,
    #F4C056 0%,
    #95D5B2 30%,
    #52B788 55%,
    #E9A319 80%,
    #D8F3DC 100%
  );
  background-size: 280% 280%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader__letter.visible {
  animation: loaderLetterPop 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
}

.loader.loader--assemble .loader__logo {
  animation: loaderLogoPulse 0.7s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
}

.loader.loader--assemble .loader__tagline {
  animation: loaderTaglineIn 0.5s ease 0.15s forwards;
}

.loader.loader--boom .loader__burst {
  animation: loaderBurst 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader.loader--boom .loader__ring {
  animation: loaderRingExpand 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader.loader--boom .loader__ring--2 {
  animation: loaderRingExpand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

.loader.loader--boom .loader__flash {
  animation: loaderFlash 0.6s ease forwards;
}

.loader.loader--boom .loader__logo {
  animation: loaderLogoBoom 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.loader.loader--exit {
  animation: loaderExit 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader.loader--exit .loader__stage {
  animation: loaderStageExit 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loaderLetterPop {
  0% {
    opacity: 0;
    transform: scale(0.2) translateY(24px) rotate(-8deg);
    background-position: 0% 50%;
  }
  70% {
    opacity: 1;
    transform: scale(1.12) translateY(-4px) rotate(2deg);
    background-position: 100% 50%;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0);
    background-position: 50% 50%;
  }
}

@keyframes loaderLogoPulse {
  to {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 32px rgba(82, 183, 136, 0.65));
  }
}

@keyframes loaderTaglineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderBurst {
  0% { transform: scale(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes loaderRingExpand {
  0% { transform: scale(0.2); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes loaderFlash {
  0% { opacity: 0; }
  25% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes loaderLogoBoom {
  0% { transform: scale(1); filter: drop-shadow(0 0 32px rgba(82, 183, 136, 0.65)); }
  40% { transform: scale(1.14); filter: drop-shadow(0 0 48px rgba(233, 163, 25, 0.55)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 40px rgba(82, 183, 136, 0.8)); }
}

@keyframes loaderExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loaderStageExit {
  to {
    transform: scale(1.15) translateY(-30px);
    opacity: 0;
    filter: blur(6px);
  }
}

.loader.hidden {
  display: none;
}

/* â”€â”€â”€ Curseur personnalisÃ© â”€â”€â”€ */
.custom-cursor__dot,
.custom-cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.custom-cursor__dot {
  width: 10px;
  height: 10px;
  background: var(--flame);
  opacity: 0.85;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.custom-cursor__ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--flame);
  opacity: 0.25;
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
}

.custom-cursor__dot--hover {
  width: 14px;
  height: 14px;
}

.custom-cursor__ring--hover {
  width: 24px;
  height: 24px;
  opacity: 0.4;
}

[data-theme="dark"] .custom-cursor__dot {
  background: var(--pine-bright);
}

[data-theme="dark"] .custom-cursor__ring {
  border-color: var(--pine-bright);
}

/* â”€â”€â”€ Reveal au scroll â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€â”€ DÃ©lais progressifs pour les cards â”€â”€â”€ */
.reveal-delay-1 { transition-delay: 0ms; }
.reveal-delay-2 { transition-delay: 80ms; }
.reveal-delay-3 { transition-delay: 160ms; }
.reveal-delay-4 { transition-delay: 240ms; }
.reveal-delay-5 { transition-delay: 320ms; }
.reveal-delay-6 { transition-delay: 400ms; }

/* â”€â”€â”€ Fade in gÃ©nÃ©rique â”€â”€â”€ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* â”€â”€â”€ Animation hero text â”€â”€â”€ */
.hero__title {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero__quote {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero__body {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero__actions {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

/* â”€â”€â”€ Smooth page transition â”€â”€â”€ */
body.page-transitioning .app-main {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.page-transitioning.page-loaded .app-main {
  opacity: 1;
  transform: translateY(0);
}

.app-main.content-exit {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.app-main.content-enter {
  animation: contentEnter 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes contentEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â”€â”€â”€ Section heading animations â”€â”€â”€ */
.section-heading {
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 15px;
  max-width: 560px;
}

/* â”€â”€â”€ Stagger children â”€â”€â”€ */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger-children.visible > *:nth-child(1) { animation: fadeInUp 0.5s 0ms both; }
.stagger-children.visible > *:nth-child(2) { animation: fadeInUp 0.5s 80ms both; }
.stagger-children.visible > *:nth-child(3) { animation: fadeInUp 0.5s 160ms both; }
.stagger-children.visible > *:nth-child(4) { animation: fadeInUp 0.5s 240ms both; }
.stagger-children.visible > *:nth-child(5) { animation: fadeInUp 0.5s 320ms both; }
.stagger-children.visible > *:nth-child(6) { animation: fadeInUp 0.5s 400ms both; }


/* === a11y.css === */
/* ============================================
   UNUSUALL â€” AccessibilitÃ©
   ============================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10002;
  background: var(--pine);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 44px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--pine-bright);
  outline-offset: 2px;
}

.sys-bar__btn:focus-visible,
.app-dock__item:focus-visible,
.mobile-dock__item:focus-visible,
.app-tile:focus-visible,
.btn:focus-visible,
.app-window__back:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .loader {
    display: none !important;
  }

  body.page-transitioning .app-main,
  .app-main.content-exit,
  .app-main.content-enter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .logo__unusu,
  .logo__a,
  .logo__l1,
  .logo__l2 {
    animation: none;
    background-position: 50% 50%;
  }
}


/* === premium.css === */
/* ============================================
   UNUSUALL â€” Option A : inhabituel + premium
   ============================================ */

:root {
  --bg:           #FAFCFB;
  --surface:      #FFFFFF;
  --surface-2:    #F4F9F6;
  --border:       #E2EBE6;
  --window-shadow: 0 1px 2px rgba(13, 40, 24, 0.04), 0 16px 48px rgba(13, 40, 24, 0.07);
  --app-radius:   20px;
  --shell-bar:    44px;
  --shell-marquee: 32px;
  --shell-top:    calc(var(--shell-bar) + var(--shell-marquee));
}

[data-theme="dark"] {
  --bg:           #0A1610;
  --surface:      #101F17;
  --surface-2:    #152820;
  --border:       #243D30;
  --window-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* â”€â”€â”€ Barre systÃ¨me Ã©purÃ©e â”€â”€â”€ */
.sys-bar {
  height: 44px;
  font-family: var(--font-display);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-secondary);
  border-bottom: 0.5px solid var(--border);
}

[data-theme="dark"] .sys-bar {
  background: rgba(10, 22, 16, 0.88);
  color: var(--text-secondary);
}

.sys-bar__brand {
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.sys-bar__brand span.logo-inline {
  background: linear-gradient(120deg, var(--accent-light), var(--pine-bright), var(--pine));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGradientFlow 6s ease-in-out infinite;
}

.sys-bar__dot {
  background: var(--pine-bright);
  animation: none;
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}

.sys-bar__btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  background: var(--surface-2);
  color: var(--text-secondary);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 5px 10px;
}

[data-theme="dark"] .sys-bar__btn {
  background: var(--surface-2);
  color: var(--text-secondary);
}

.sys-bar__btn:hover {
  background: var(--pine-50);
  color: var(--pine);
}

#sys-time {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-tertiary);
}

/* â”€â”€â”€ Marquee premium â€” We build UNUSUALL â”€â”€â”€ */
.brand-marquee {
  position: fixed;
  top: var(--shell-bar);
  left: 0;
  right: 0;
  z-index: 96;
  height: var(--shell-marquee);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

[data-theme="dark"] .brand-marquee {
  background: rgba(10, 22, 16, 0.82);
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  animation: brandMarqueeScroll 52s linear infinite;
  will-change: transform;
}

.brand-marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  flex-shrink: 0;
}

.brand-marquee__item {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.brand-marquee__mark {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(
    120deg,
    var(--accent-light) 0%,
    var(--pine-bright) 22%,
    var(--pine) 48%,
    var(--accent) 72%,
    var(--pine-900) 100%
  );
  background-size: 280% 280%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGradientFlow 5s ease-in-out infinite;
}

[data-theme="dark"] .brand-marquee__mark {
  background: linear-gradient(
    120deg,
    #F4C056 0%,
    #95D5B2 25%,
    #52B788 50%,
    #E9A319 75%,
    #D8F3DC 100%
  );
  background-size: 280% 280%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes brandMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee__track {
    animation: none !important;
    width: 100%;
    justify-content: center;
  }

  .brand-marquee__group + .brand-marquee__group {
    display: none;
  }

  .brand-marquee__group {
    padding: 0;
    gap: 0;
  }

  .brand-marquee__item:not(:first-child) {
    display: none;
  }

  .brand-marquee__mark {
    animation: none;
    background-position: 50% 50%;
  }
}

.skip-link:focus {
  top: var(--shell-top);
}

.app-layout {
  padding-top: var(--shell-top);
}

.app-dock {
  top: var(--shell-top);
  width: 80px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-right: 0.5px solid var(--border);
}

[data-theme="dark"] .app-dock {
  background: rgba(16, 31, 23, 0.7);
}

@media (min-width: 768px) {
  .app-main {
    margin-left: 80px;
    padding: 32px 40px 48px;
  }
}

/* â”€â”€â”€ FenÃªtre minimaliste (sans faux boutons macOS) â”€â”€â”€ */
.app-window__controls {
  display: none;
}

.app-window__titlebar {
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 14px 24px;
  background: transparent;
  border-bottom: 0.5px solid var(--border);
}

.app-window__title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  pointer-events: auto;
}

.app-window__back {
  display: none;
}

.app-window__titlebar:has(.app-window__back) {
  grid-template-columns: auto 1fr;
  justify-items: start;
  gap: 16px;
}

.app-window__titlebar:has(.app-window__back) .app-window__back {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.app-window__titlebar:has(.app-window__back) .app-window__title {
  justify-self: end;
}

.app-window {
  background: var(--surface);
  border: 0.5px solid var(--border);
}

/* â”€â”€â”€ Hero premium â”€â”€â”€ */
.boot-hero {
  padding: 64px 48px 56px;
  background: var(--surface);
  border-bottom: none;
}

@media (max-width: 767px) {
  .boot-hero { padding: 48px 24px 40px; }
}

.boot-hero__terminal {
  display: none;
}

.boot-hero__value {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 20px;
}

.boot-hero__title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  max-width: 720px;
}

.boot-hero__mission {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.65;
  max-width: 560px;
  color: var(--text-secondary);
}

.boot-hero__tagline {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--text-tertiary);
  margin-bottom: 36px;
}

.boot-hero__actions {
  gap: 12px;
}

.btn--primary {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(26, 71, 42, 0.2);
}

.btn--ghost {
  border-radius: 10px;
  padding: 14px 28px;
  background: var(--surface-2);
  border-color: transparent;
}

/* â”€â”€â”€ Bandeau confiance â”€â”€â”€ */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  padding: 20px 48px;
  background: var(--surface-2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

@media (max-width: 767px) {
  .trust-strip { padding: 20px 24px; gap: 16px 24px; }
}

.trust-strip__item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.trust-strip__item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.trust-strip__sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  align-self: center;
  display: none;
}

@media (min-width: 640px) {
  .trust-strip__sep { display: block; }
}

/* â”€â”€â”€ Tuiles produits premium â”€â”€â”€ */
.app-tiles {
  padding: 40px 48px;
  gap: 20px;
  background: var(--bg);
}

@media (max-width: 767px) {
  .app-tiles { padding: 32px 20px; }
}

.app-tile {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  border-top-width: 0.5px;
  min-height: 220px;
  padding: 28px 24px;
  box-shadow: 0 1px 2px rgba(13, 40, 24, 0.03);
}

.app-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 40, 24, 0.08);
  border-color: rgba(82, 183, 136, 0.4);
}

.app-tile__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0;
  color: #fff;
}

.app-tile__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-tile__name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.app-tile__desc {
  font-size: 13px;
  line-height: 1.6;
}

.app-tile__status {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.app-tile__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--pine);
}

/* â”€â”€â”€ Dock icÃ´nes SVG â”€â”€â”€ */
.app-dock__icon,
.mobile-dock__icon {
  font-size: 0;
  border-radius: 10px;
}

.app-dock__icon svg,
.mobile-dock__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-dock__item:hover {
  transform: none;
}

.app-dock__item.active {
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--border);
}

/* â”€â”€â”€ Preuves / mockups raffinÃ©s â”€â”€â”€ */
.proof-section {
  background: var(--surface);
  padding: 56px 48px;
}

.proof-section__header h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.proof-card {
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(13, 40, 24, 0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}

.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 40, 24, 0.07);
}

.ui-mockup {
  background: linear-gradient(160deg, #0D2818 0%, #1A472A 100%);
  min-height: 160px;
  padding: 16px;
}

.ui-mockup__stat {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* â”€â”€â”€ Convictions & panels â”€â”€â”€ */
.sys-panel {
  padding: 56px 48px;
  background: var(--bg);
}

.sys-panel__header h2 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.conviction-row h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.conviction-row__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
}

/* â”€â”€â”€ Footer â”€â”€â”€ */
.app-footer {
  background: transparent;
  padding-top: 16px;
}

/* â”€â”€â”€ Loader plus subtil â”€â”€â”€ */
.loader {
  background: var(--surface);
}

.loader__burst,
.loader__ring,
.loader__flash {
  opacity: 0.6;
}

.loader.loader--boom .loader__flash {
  animation-duration: 0.4s;
}

/* â”€â”€â”€ SÃ©lecteur langue FR | EN â”€â”€â”€ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border-radius: 9px;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  gap: 2px;
}

.lang-switch__btn {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-width: 34px;
  padding: 5px 8px;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-switch__btn:hover {
  color: var(--text-secondary);
}

.lang-switch__btn.is-active {
  background: var(--surface);
  color: var(--pine);
  box-shadow: 0 1px 2px rgba(13, 40, 24, 0.06);
}

[data-theme="dark"] .lang-switch__btn.is-active {
  background: var(--surface-2);
  color: var(--pine-bright);
}

/* â”€â”€â”€ Page produit â”€â”€â”€ */
.page-content .hero__title {
  letter-spacing: -0.03em;
}

.page-content .boot-hero__value {
  margin-bottom: 16px;
}

.stat-hero {
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(13, 40, 24, 0.04);
}

.stat-hero__num {
  font-family: var(--font-display);
  font-weight: 700;
}


/* === compact.css === */
/* ============================================
   UNUSUALL â€” DensitÃ© UI (moins de scroll, moins de vide)
   ============================================ */

@media (min-width: 768px) {
  .app-main {
    padding: 16px 24px 28px !important;
  }
}

.app-window__titlebar {
  padding: 10px 20px !important;
}

.app-footer {
  margin-top: 20px;
  padding: 24px 20px !important;
}

.app-footer__bottom {
  margin-top: 24px !important;
  padding-top: 16px !important;
}

.app-window section,
.page-content section {
  padding: 20px 0 !important;
}

.page-content section:first-of-type,
.app-window__body > section:first-of-type {
  padding-top: 0 !important;
}

.page-content section:last-of-type {
  padding-bottom: 8px !important;
}

.section-heading {
  margin-bottom: 20px !important;
}

.section-heading p {
  margin-top: 4px;
}

.boot-hero {
  padding: 32px 28px 28px !important;
}

@media (max-width: 767px) {
  .boot-hero { padding: 24px 20px 20px !important; }
}

.boot-hero__value {
  margin-bottom: 12px !important;
}

.boot-hero__title {
  font-size: clamp(32px, 5vw, 48px) !important;
  margin-bottom: 12px !important;
}

.boot-hero__mission {
  font-size: clamp(15px, 2vw, 17px) !important;
  line-height: 1.55 !important;
  margin-bottom: 0 !important;
}

.boot-hero__actions {
  margin-top: 20px;
}

.trust-strip {
  padding: 12px 28px !important;
  gap: 12px 24px !important;
}

.app-tiles {
  padding: 20px 28px 24px !important;
  gap: 12px !important;
}

@media (max-width: 767px) {
  .app-tiles { padding: 16px 16px 20px !important; }
}

.app-tile {
  min-height: 0 !important;
  padding: 18px 16px !important;
}

.app-tile__icon {
  width: 40px !important;
  height: 40px !important;
  margin-bottom: 12px !important;
}

.app-tile__desc {
  font-size: 12px !important;
  line-height: 1.5 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sys-panel {
  padding: 28px !important;
}

@media (max-width: 767px) {
  .sys-panel { padding: 20px !important; }
}

.sys-panel__header {
  margin-bottom: 16px !important;
}

.conviction-row {
  padding: 14px 0 !important;
}

.conviction-compact {
  padding: 24px 28px !important;
  background: var(--surface-2);
  border-top: 0.5px solid var(--border);
}

.conviction-compact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .conviction-compact__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.conviction-compact__item h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
}

.conviction-compact__item p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.conviction-compact__item span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pine);
  margin-bottom: 6px;
}

.cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px !important;
  background: var(--pine);
}

.cta-bar h2 {
  color: #fff;
  font-size: clamp(16px, 2.5vw, 22px) !important;
  font-weight: 600;
  max-width: 480px;
  line-height: 1.35;
  margin: 0 !important;
}

.page-content {
  padding: 24px 20px !important;
}

@media (min-width: 768px) {
  .page-content { padding: 28px 32px !important; }
}

.page-content .hero {
  padding-bottom: 16px !important;
}

.page-content .hero__badge {
  margin-bottom: 12px !important;
}

.page-content .hero__title {
  font-size: clamp(26px, 4vw, 36px) !important;
  margin-bottom: 8px !important;
}

.page-content .hero__title + .hero__title {
  margin-top: -4px !important;
  margin-bottom: 12px !important;
}

.page-content .hero__body,
.page-content .hero__quote {
  font-size: 14px !important;
  margin-bottom: 0 !important;
  line-height: 1.6 !important;
}

.hero--split {
  display: grid;
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero--split {
    grid-template-columns: 1fr minmax(220px, 280px);
    gap: 28px;
  }
}

.hero__aside .ui-mockup {
  min-height: 0 !important;
  padding: 14px !important;
}

.feature-block,
.card {
  padding: 20px !important;
}

.features-grid {
  gap: 16px !important;
}

.stat-hero {
  padding: 12px 20px !important;
  margin: 12px 0 !important;
}

.section-conviction {
  padding: 24px 0 !important;
}

.section-conviction h2 {
  font-size: clamp(18px, 3vw, 26px) !important;
  margin-bottom: 16px !important;
}

.proof-section {
  padding: 16px 0 !important;
}

.ui-mockup {
  min-height: 0 !important;
}

.coming-soon-block {
  padding: 24px !important;
}

.contact-layout {
  gap: 24px !important;
}

.btn--primary,
.btn--ghost,
.btn--white {
  padding: 11px 20px !important;
  font-size: 13px !important;
}

/* â”€â”€â”€ Grilles denses â”€â”€â”€ */
.features-grid--dense {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .features-grid--dense {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features-grid--dense .feature-block--dense:nth-child(3):last-child {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .features-grid--dense .feature-block--dense:nth-child(3):last-child {
    grid-column: auto;
  }
}

.feature-block--dense {
  padding: 14px 16px !important;
  background: var(--surface-2);
  border-radius: 10px;
  border: 0.5px solid var(--border);
}

.feature-block--dense h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.feature-block--dense p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}

/* â”€â”€â”€ Formulaires compacts â”€â”€â”€ */
.form-section {
  padding: 16px 0 8px !important;
  max-width: 560px;
}

.form-section__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-section__sub {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.form-section__form .form-group {
  margin-bottom: 12px;
}

.form-section__form textarea.form-control {
  min-height: 88px;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 4px;
}

.form-control {
  padding: 10px 12px !important;
  font-size: 14px;
}

/* â”€â”€â”€ Ã‰tapes inline (Studio) â”€â”€â”€ */
.steps--inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px 0 4px;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .steps--inline {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.step--compact {
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

.step--compact h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.step--compact p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}

/* â”€â”€â”€ Convictions 2 colonnes â”€â”€â”€ */
.conviction-compact__grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .conviction-compact__grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* â”€â”€â”€ Hero note (SOFIA) â”€â”€â”€ */
.hero__note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

.hero__note a {
  color: var(--pine);
  font-weight: 600;
}

/* â”€â”€â”€ Contact compact â”€â”€â”€ */
.page-content--contact {
  padding-top: 20px !important;
}

.contact-section {
  padding: 0 !important;
}

.contact-section__intro {
  margin-bottom: 16px;
}

.contact-section__intro .hero__title {
  font-size: clamp(26px, 4vw, 32px) !important;
  margin-bottom: 6px !important;
}

.contact-info--compact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info--compact h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.contact-info--compact p,
.contact-info--compact a {
  font-size: 14px;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1.4fr 0.6fr !important;
    align-items: start;
  }
}

.app-window section,
.page-content section {
  padding: 14px 0 !important;
}

.conviction-compact {
  padding: 20px 0 !important;
  background: transparent;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.app-window__body:not(.page-content) .conviction-compact {
  padding: 20px 28px !important;
  background: var(--surface-2);
}

.cta-bar {
  padding: 20px 0 !important;
  margin-top: 4px;
  border-radius: 0;
}

.app-window__body:not(.page-content) .cta-bar {
  padding: 20px 28px !important;
}

.page-content .cta-bar {
  padding: 20px 24px !important;
  margin: 8px -20px 0;
  width: calc(100% + 40px);
}

@media (min-width: 768px) {
  .page-content .cta-bar {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
    padding: 20px 32px !important;
  }
}

.page-content .boot-hero__value {
  margin-bottom: 8px !important;
  font-size: 12px !important;
}

/* ─── OLIVIA Suite / Epicure ─── */
.suite-intro {
  padding: 20px 0;
  border-top: 0.5px solid var(--border);
}

.suite-intro__title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.35;
}

.suite-intro p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 52ch;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-content .studio-examples {
  padding-left: 0;
  padding-right: 0;
  margin: 8px 0 4px;
}

.page-content .boot-hero__actions {
  margin-top: 16px;
}

.page-content .conviction-compact .section-heading {
  margin-bottom: 18px;
}

.app-tile__icon--epicure {
  background: #0a0a0a !important;
  overflow: hidden;
  padding: 0;
}

.app-tile__icon--epicure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Epicure install stage ─── */
.page-content--epicure,
.page-content--olivia {
  max-width: 720px;
  margin: 0 auto;
}

.olivia-hero {
  text-align: center;
  padding: 8px 0 28px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 24px;
}

.olivia-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 12px;
}

.olivia-hero__title {
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  line-height: 1.1;
}

.olivia-hero__body {
  margin: 0 auto;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.olivia-catalog {
  margin-bottom: 36px;
}

.olivia-catalog__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 14px;
  font-weight: 500;
}

.olivia-app {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 14px 16px;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  background: var(--surface-2);
  text-decoration: none;
  color: inherit;
  margin-bottom: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.olivia-app--live:hover {
  border-color: var(--pine-bright);
  transform: translateY(-1px);
}

.olivia-app__icon {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.olivia-app__icon--placeholder {
  background:
    linear-gradient(135deg, var(--surface) 0%, var(--border) 100%);
  border: 0.5px dashed var(--border);
}

.olivia-app__body {
  min-width: 0;
}

.olivia-app__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.olivia-app__top strong {
  font-size: 15px;
  font-weight: 600;
}

.olivia-app__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.olivia-app__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  border: 0.5px solid var(--border);
  border-radius: 999px;
  padding: 2px 8px;
}

.olivia-app__cta {
  grid-column: 2;
  font-size: 12px;
  font-weight: 600;
  color: var(--pine);
  margin-top: 2px;
}

.olivia-app--soon {
  opacity: 0.72;
  cursor: default;
}

.olivia-app--soon .olivia-app__icon {
  grid-row: 1 / span 2;
}

.epicure-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0 28px;
  border-top: none;
}

.epicure-stage__suite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 28px;
}

.epicure-stage__icon-wrap {
  position: relative;
  width: 168px;
  height: 168px;
  margin-bottom: 20px;
}

.epicure-stage__glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 163, 25, 0.28) 0%, rgba(82, 183, 136, 0.12) 42%, transparent 70%);
  animation: epicureGlow 5s ease-in-out infinite;
  pointer-events: none;
}

.epicure-stage__icon {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 28px;
  animation: epicureFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 36px rgba(8, 28, 21, 0.28));
}

.epicure-stage__name {
  font-size: clamp(36px, 7vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  line-height: 1.05;
}

.epicure-stage__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

.epicure-stage__line {
  max-width: 34ch;
  margin: 0 0 28px;
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-primary);
}

.epicure-install {
  width: 100%;
  max-width: 480px;
  padding: 18px;
  border: 0.5px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(82, 183, 136, 0.06), transparent 55%),
    var(--surface-2);
  text-align: left;
  margin-bottom: 28px;
}

.epicure-install__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.epicure-install__thumb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.epicure-install__file {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.epicure-install__file strong {
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.epicure-install__file span {
  font-size: 12px;
  color: var(--text-tertiary);
}

.epicure-install__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.epicure-install__btn {
  flex: 1 1 auto;
  min-width: 160px;
  justify-content: center;
}

.epicure-install__hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-tertiary);
}

.epicure-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 24px;
  text-align: left;
}

@media (min-width: 640px) {
  .epicure-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.epicure-rail__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
}

.epicure-rail__item code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pine);
  font-weight: 500;
}

.epicure-rail__item span {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.35;
}

.epicure-stage__aside {
  margin: 0;
  max-width: 42ch;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-tertiary);
}

@keyframes epicureFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes epicureGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .epicure-stage__icon,
  .epicure-stage__glow {
    animation: none;
  }
}


