/* ============================================================
   Keutchi — vitrine keutchi.app
   Design system hérité de l'app (thème "biophilic b28") :
   moss-black + ambre brûlé + Transformative Teal, cards sticker
   à ombre dure, Fraunces (titres) / Outfit (corps) / Doriel (marque).
   ============================================================ */

/* ---------- Fonts (auto-hébergées, zéro requête tierce) ---------- */
@font-face {
  font-family: 'Doriel';
  src: url('assets/fonts/doriel.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/outfit-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/outfit-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/outfit-800.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

/* ---------- Tokens (= theme/variants.ts → biophilic) ---------- */
:root {
  --bg: #0d100d;
  --bg-elev: #161a16;
  --card: #161a16;
  --card-press: #1f251f;
  --line: #1f251f;
  --line-soft: #283028;
  --ink: #ebeee5;
  --ink-soft: #a3aa9a;
  --ink-dim: #6d7466;

  --amber: #d97706;
  --amber-burnt: #b30000;        /* burntAccent(#d97706) — le strip des cards */
  --teal: #2dd4bf;
  --teal-burnt: #00a97f;         /* burntAccent(#2dd4bf) */
  --indigo: #818cf8;             /* accent hip-hop / open mic */

  --f-brand: 'Doriel', Georgia, serif;
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Outfit', system-ui, sans-serif;

  --r-card: 14px;
  --r-big: 20px;
  --shadow-amber: 8px 8px 0 rgba(217, 119, 6, .26);
  --shadow-teal: 8px 8px 0 rgba(45, 212, 191, .22);
  --maxw: 1180px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

[id] { scroll-margin-top: 76px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
  overflow-x: hidden;
}

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

::selection { background: var(--amber); color: #190f02; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a302a; border-radius: 5px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--amber); color: #190f02; padding: 8px 16px;
  border-radius: 8px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 8px; }

/* Grain global (texture de l'app, assets/textures/grain.png) */
.grain {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
  background: url('assets/img/grain.png') repeat;
  background-size: 280px;
  opacity: .055;
}

/* ---------- Reveal au scroll ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .7s ease var(--d, 0s),
    transform .7s cubic-bezier(.2, .7, .2, 1) var(--d, 0s);
}
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(13, 16, 13, .84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  font-family: var(--f-brand);
  font-size: 1.45rem;
  letter-spacing: .02em;
}
.topnav { display: flex; gap: 26px; margin-left: auto; }
.topnav a {
  text-decoration: none; color: var(--ink-soft);
  font-weight: 600; font-size: .92rem; letter-spacing: .04em;
  transition: color .2s ease;
}
.topnav a:hover { color: var(--ink); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: #190f02;
  font-family: var(--f-body); font-weight: 600; font-size: 1rem;
  text-decoration: none;
  padding: 14px 26px; border-radius: 12px;
  border: none; cursor: pointer;
  box-shadow: 6px 6px 0 rgba(179, 0, 0, .5);
  transition: transform .18s cubic-bezier(.2, .7, .2, 1), box-shadow .18s ease;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(179, 0, 0, .55);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(179, 0, 0, .5); }
.btn--ghost {
  background: transparent; color: var(--teal);
  border: 1.5px solid rgba(45, 212, 191, .55);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(45, 212, 191, .08);
  box-shadow: 6px 6px 0 rgba(45, 212, 191, .18);
}
.btn--small { padding: 9px 18px; font-size: .9rem; border-radius: 10px; box-shadow: 4px 4px 0 rgba(179, 0, 0, .45); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* Bloc simple, espacement haut FIXE : le contenu commence toujours à
     150px du haut, quelle que soit la taille de fenêtre ou le zoom.
     (l'ancien centrage vertical 100svh débordait au-dessus sur les
     fenêtres basses → contenu collé sous la navbar) */
  padding: 150px 24px 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(110px); pointer-events: none;
}
.hero-glow--amber {
  width: 520px; height: 520px; top: -140px; left: -160px;
  background: rgba(217, 119, 6, .14);
}
.hero-glow--teal {
  width: 460px; height: 460px; bottom: -120px; right: -100px;
  background: rgba(45, 212, 191, .09);
}
.hero-inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center;
}
/* garde-fou : aucun enfant ne peut élargir la grille au-delà du viewport */
.hero-inner > * { min-width: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .76rem; letter-spacing: .18em;
  color: var(--ink-soft);
  border: 1px solid var(--line-soft);
  background: var(--bg-elev);
  border-radius: 999px; padding: 8px 16px;
  margin: 0 0 26px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(45, 212, 191, .5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 212, 191, .45); }
  70% { box-shadow: 0 0 0 9px rgba(45, 212, 191, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

h1 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1.04; letter-spacing: -.01em;
  margin: 0 0 22px;
}
h1 em, h2 em { font-style: normal; color: var(--teal); }

.lede {
  font-size: 1.13rem; color: var(--ink-soft);
  max-width: 34rem; margin: 0 0 32px;
}
.lede strong { color: var(--ink); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 8px 36px; margin: 44px 0 0; padding: 0;
}
.hero-stats div { border-left: 2px solid var(--line-soft); padding-left: 14px; }
.hero-stats dt {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.7rem; color: var(--amber); line-height: 1.1;
}
.hero-stats div:nth-child(even) dt { color: var(--teal); }
.hero-stats dd {
  margin: 2px 0 0; font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-dim);
}

/* ---------- Démo téléphone ---------- */
.hero-demo {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  perspective: 1100px;
}
html.js .hero-demo { animation: phoneIn 1s .25s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes phoneIn {
  from { opacity: 0; transform: translateY(46px); }
  to { opacity: 1; transform: none; }
}

.phone {
  width: min(330px, 82vw);
  aspect-ratio: 9 / 18.6;
  border-radius: 46px;
  border: 9px solid #181d18;
  background: var(--bg);
  box-shadow:
    0 0 0 1.5px #2c332c,
    24px 32px 70px rgba(0, 0, 0, .55),
    -14px -8px 60px rgba(45, 212, 191, .05);
  transform: rotate(-2.5deg);
  transition: transform .25s ease-out;
  overflow: hidden;
  position: relative;
  will-change: transform;
}
.phone-screen {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  background: var(--bg);
  border-radius: 36px;
  overflow: hidden;
}

.ph-top {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 16px 8px;
}
.ph-brand { font-family: var(--f-brand); font-size: 1.15rem; }

.ph-chips {
  display: flex; gap: 7px; padding: 8px 14px 12px;
}
.ph-chips span {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 10px; padding: 8px 4px;
  font-size: .64rem; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
}
.ph-chips i { font-style: normal; color: var(--ink-dim); font-size: .55rem; }
.pin {
  width: 7px; height: 7px; border-radius: 50% 50% 50% 0;
  background: #e05252; transform: rotate(-45deg); display: inline-block;
}

.ph-view { display: none; flex: 1; min-height: 0; position: relative; overflow: hidden; }
.ph-view.is-active { display: flex; flex-direction: column; }

.ph-agenda.is-active { padding: 6px 14px 10px; gap: 10px; }
.ph-greeting {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.5rem; line-height: 1.08; margin: 0;
}
.ph-greeting em { font-style: normal; color: var(--teal); }
.ph-count {
  font-size: .6rem; font-weight: 600; letter-spacing: .14em;
  color: var(--ink-dim); margin: 2px 0 4px;
}

/* --- La card sticker (réplique BentoSticker) --- */
.sticker {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 12px 14px 12px 20px;
  box-shadow: 6px 6px 0 rgba(217, 119, 6, .28);
}
html.js .ph-agenda.is-active .sticker { animation: cardIn .55s cubic-bezier(.2, .7, .2, 1) both; }
html.js .ph-agenda.is-active .sticker:nth-of-type(1) { animation-delay: .1s; }
html.js .ph-agenda.is-active .sticker:nth-of-type(2) { animation-delay: .22s; }
html.js .ph-agenda.is-active .sticker:nth-of-type(3) { animation-delay: .34s; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to { opacity: 1; transform: none; }
}

.sticker--teal { box-shadow: 6px 6px 0 rgba(45, 212, 191, .22); }
.sticker-strip {
  position: absolute; top: 0; bottom: 0; left: 0; width: 6px;
  border-radius: var(--r-card) 0 0 var(--r-card);
  background: var(--amber-burnt);
}
.sticker--teal .sticker-strip { background: var(--teal-burnt); }

.sticker-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.sticker-date { display: flex; align-items: baseline; gap: 7px; }
.sticker-date b {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.9rem; line-height: 1; color: var(--amber);
}
.sticker--teal .sticker-date b { color: var(--teal); }
.sticker-date span { display: flex; flex-direction: column; }
.sticker-date strong { font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.sticker-date em {
  font-style: normal; font-size: .5rem; font-weight: 600;
  letter-spacing: .1em; color: var(--ink-soft); margin-top: 2px;
}

.tagchip {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(217, 119, 6, .5);
  background: rgba(217, 119, 6, .12);
  color: var(--amber);
  font-size: .55rem; font-weight: 800; letter-spacing: .12em;
  padding: 4px 9px; border-radius: 999px;
  white-space: nowrap;
}
.tagchip--teal {
  border-color: rgba(45, 212, 191, .5);
  background: rgba(45, 212, 191, .1);
  color: var(--teal);
}
.tagchip--indigo {
  border-color: rgba(129, 140, 248, .5);
  background: rgba(129, 140, 248, .1);
  color: var(--indigo);
}
.tagchip--muted {
  border-color: var(--line-soft);
  background: transparent;
  color: var(--ink-dim);
}

.sticker h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: .98rem; line-height: 1.25;
  margin: 8px 0 10px;
}
.sticker-foot {
  display: flex; align-items: baseline; gap: 8px;
  font-size: .68rem;
}
.sticker-foot time { font-weight: 800; letter-spacing: .04em; }
.sticker-foot .venue {
  flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; font-weight: 600; color: var(--ink-soft);
}
.sticker-foot .venue i { font-style: normal; color: var(--ink-dim); }
.sticker-foot b { font-weight: 800; color: var(--ink); }

/* --- Démo swipe → favoris --- */
.sticker--swipe { padding: 0; background: none; border: none; overflow: visible; }
.sticker--swipe .sticker-body {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 12px 14px 12px 20px;
  z-index: 2;
}
html.js .ph-agenda.is-active .sticker--swipe .sticker-body {
  animation: swipeDemo 9s ease-in-out 1.4s infinite;
}
@keyframes swipeDemo {
  0%, 38% { transform: translateX(0); }
  46%, 56% { transform: translateX(74px); }
  64%, 100% { transform: translateX(0); }
}
.sticker-reveal {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; gap: 7px;
  padding-left: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  font-size: .6rem; font-weight: 800; letter-spacing: .14em;
  color: var(--ink-soft);
}
.sticker-reveal span { color: #e05252; font-size: 1rem; }
.sticker-heart {
  position: absolute; top: -7px; right: -5px; z-index: 3;
  width: 24px; height: 24px; border-radius: 50%;
  background: #e05252; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, .4);
  opacity: 0; transform: scale(.4);
}
html.js .ph-agenda.is-active .sticker-heart {
  animation: heartPop 9s cubic-bezier(.2, .7, .2, 1) 1.4s infinite;
}
@keyframes heartPop {
  0%, 60% { opacity: 0; transform: scale(.4); }
  66%, 92% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.4); }
}

/* --- Vue carte --- */
.ph-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-dots circle {
  fill: var(--amber);
  stroke: #ece8da; stroke-width: 2.5;
  transform-box: fill-box; transform-origin: center;
}
html.js .ph-view.is-active .map-dots circle { animation: dotPulse 3.2s ease-in-out infinite; }
.map-dots circle:nth-child(2n) { animation-delay: .7s; }
.map-dots circle:nth-child(3n) { animation-delay: 1.3s; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
.map-badges rect { fill: var(--teal); }
.map-badges text {
  fill: #06302b; font-family: var(--f-body); font-weight: 800;
  font-size: 10px; text-anchor: middle;
}
.map-labels text {
  fill: #d6dccb; font-family: var(--f-body); font-weight: 600;
  font-size: 11px; text-anchor: middle;
  paint-order: stroke; stroke: #10130f; stroke-width: 3px;
}
.ph-mapbadge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(22, 26, 22, .92);
  border: 1px solid var(--line-soft);
  border-radius: 10px; padding: 7px 12px;
  font-size: .66rem; font-weight: 600; color: var(--ink);
}

/* --- Nav basse du téléphone --- */
.ph-nav {
  display: flex; align-items: center; justify-content: space-around;
  border-top: 1px solid var(--line);
  padding: 10px 18px 16px;
  background: var(--bg);
}
.ph-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--ink-dim); font-size: .9rem;
}
.ph-nav-item .ph-heart { color: #e05252; font-style: normal; }
.ph-nav-item i { font-style: normal; }
.ph-nav-item small { font-size: .56rem; font-weight: 600; letter-spacing: .04em; }
.ph-nav-pill {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: var(--amber); color: #1a1208;
  border: none; border-radius: 15px;
  padding: 8px 22px; cursor: pointer;
  font-family: var(--f-body);
  transition: transform .15s ease;
}
.ph-nav-pill:hover { transform: translateY(-2px); }
.ph-nav-pill small { font-size: .6rem; font-weight: 800; letter-spacing: .04em; }
.phone .ico-cal { display: none; }
.phone.show-map .ico-cal { display: block; }
.phone.show-map .ico-map { display: none; }

.demo-hint {
  margin: 22px 0 0; font-size: .74rem; font-weight: 600;
  letter-spacing: .06em; color: var(--ink-dim);
}

/* --- Stickers flottants autour du téléphone --- */
.floater {
  position: absolute; z-index: 5;
  font-size: .68rem; font-weight: 800; letter-spacing: .16em;
  background: var(--card); border: 1.5px solid rgba(217, 119, 6, .55);
  color: var(--amber);
  padding: 9px 16px; border-radius: 11px;
  box-shadow: 5px 5px 0 rgba(179, 0, 0, .4);
  pointer-events: none;
}
html.js .floater { animation: floatY 7s ease-in-out infinite alternate; }
.floater--1 { top: 4%; left: -4%; transform: rotate(-7deg); }
.floater--2 {
  bottom: 6%; left: 2%; transform: rotate(4deg);
  border-color: rgba(45, 212, 191, .55); color: var(--teal);
  box-shadow: 5px 5px 0 rgba(45, 212, 191, .22);
  animation-delay: 1.2s !important;
}
.floater--3 {
  top: 16%; right: -7%; transform: rotate(6deg);
  border-color: rgba(45, 212, 191, .55); color: var(--teal);
  box-shadow: 5px 5px 0 rgba(45, 212, 191, .22);
  animation-delay: 2.1s !important;
}
.floater--4 {
  bottom: 26%; right: -11%; transform: rotate(-4deg);
  border-color: rgba(129, 140, 248, .55); color: var(--indigo);
  box-shadow: 5px 5px 0 rgba(129, 140, 248, .25);
  animation-delay: .6s !important;
}
@keyframes floatY {
  from { translate: 0 -7px; }
  to { translate: 0 7px; }
}

/* ---------- Marquee genres ---------- */
.marquee-zone {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0f120f;
  transform: rotate(-1.1deg) scale(1.02);
  margin: 10px 0 60px;
  overflow: hidden;
  max-width: 100vw;
}
.marquee {
  display: flex; width: max-content;
  padding: 18px 0;
}
html.js .marquee { animation: marquee 42s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track { display: flex; align-items: center; gap: 30px; padding-right: 30px; }
.mq {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.3rem; letter-spacing: .04em;
  white-space: nowrap;
}
.mq--amber { color: var(--amber); }
.mq--teal { color: var(--teal); }
.mq--indigo { color: var(--indigo); }
.marquee-track i { color: var(--ink-dim); font-style: normal; font-size: .8rem; }

/* ---------- Sections génériques ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 24px;
}
.section-head { margin-bottom: 44px; }
.kicker {
  font-size: .74rem; font-weight: 800; letter-spacing: .22em;
  color: var(--amber); margin: 0 0 14px;
}
h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.08; margin: 0;
}

/* ---------- Bento features ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.bcard {
  grid-column: span 4;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-big);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: transform .25s cubic-bezier(.2, .7, .2, 1), border-color .25s ease;
}
.bcard:hover { transform: translateY(-4px); border-color: var(--line-soft); }
.bcard--wide { grid-column: span 8; display: flex; gap: 24px; align-items: center; }
.bcard--tall { grid-column: span 4; grid-row: span 2; display: flex; flex-direction: column; }
.bcard--rgpd { grid-column: span 8; border-color: rgba(45, 212, 191, .25); }
.bcard--rgpd:hover { border-color: rgba(45, 212, 191, .45); }

.bcard h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.4rem; line-height: 1.2; margin: 0 0 12px;
}
.bcard p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.bcard-txt { flex: 1; min-width: 0; }

/* mini-stickers de la card agenda */
.bcard-visual--stack {
  flex: 0 0 46%;
  display: flex; flex-direction: column; gap: 14px;
}
.ministicker {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--line);
  border-left: 5px solid var(--amber-burnt);
  border-radius: 12px; padding: 13px 16px;
  box-shadow: 5px 5px 0 rgba(217, 119, 6, .24);
  transform: rotate(1.4deg);
}
.ministicker--teal {
  border-left-color: var(--teal-burnt);
  box-shadow: 5px 5px 0 rgba(45, 212, 191, .2);
  transform: rotate(-1.6deg);
}
.ministicker b {
  font-family: var(--f-display); font-size: .92rem;
  color: var(--amber); white-space: nowrap;
}
.ministicker--teal b { color: var(--teal); }
.ministicker span {
  flex: 1; min-width: 0;
  font-weight: 600; font-size: .85rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ministicker em {
  font-style: normal; font-size: .72rem; color: var(--ink-dim);
  white-space: nowrap;
}

/* carte (bento) */
.bcard-visual--map {
  position: relative; flex: 1; min-height: 220px;
  margin: 22px -28px -28px;
  border-top: 1px solid var(--line);
}
.bcard-visual--map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.bcard-visual--map .ph-mapbadge { top: 14px; right: 14px; }

/* chips filtres */
.chiprow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chiprow .tagchip { font-size: .64rem; padding: 6px 12px; }

/* swipe demo (bento) */
.heart-inline { color: #e05252; }
.swipedemo { position: relative; margin-top: 20px; height: 52px; }
.swipedemo-card {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--line);
  border-left: 5px solid var(--amber-burnt);
  border-radius: 12px; padding: 0 16px;
  font-weight: 600; font-size: .85rem;
  box-shadow: 5px 5px 0 rgba(217, 119, 6, .24);
}
.swipedemo-card b { font-family: var(--f-display); color: var(--amber); font-size: 1.1rem; }
html.js .swipedemo-card { animation: swipeDemo 7s ease-in-out infinite; }
.swipedemo-reveal {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; padding-left: 20px;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 12px;
}
.swipedemo-reveal span { color: #e05252; font-size: 1.2rem; }

/* faux boutons billetterie */
.fakebtns { display: flex; gap: 10px; margin-top: 20px; }
.fakebtn {
  flex: 1; text-align: center;
  border-radius: 10px; padding: 11px 8px;
  font-weight: 600; font-size: .85rem;
  border: 1.5px solid rgba(217, 119, 6, .5); color: var(--amber);
}
.fakebtn--full { background: var(--amber); color: #190f02; border-color: var(--amber); }

/* ---------- Manifesto underground ---------- */
.manifesto {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 100% at 20% 0%, rgba(179, 0, 0, .12), transparent 60%),
    radial-gradient(ellipse 60% 90% at 85% 100%, rgba(45, 212, 191, .07), transparent 60%),
    #0c0f0c;
  padding: 110px 24px;
  margin: 60px 0;
}
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/img/grain.png') repeat;
  background-size: 240px;
  opacity: .09; pointer-events: none;
}
.manifesto-inner { position: relative; max-width: 880px; margin: 0 auto; }
.manifesto-line {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.15; margin: 0 0 28px;
}
.manifesto-line em {
  font-style: normal; color: var(--teal); display: block; margin-top: 10px;
}
.manifesto-sub {
  font-size: 1.12rem; color: var(--ink-soft);
  max-width: 40rem; margin: 0;
}

/* ---------- Villes ---------- */
.cities {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: nowrap; gap: 12px;
}
.city {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; gap: 3px; align-items: center;
  text-align: center; white-space: nowrap;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 13px; padding: 13px 6px;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(.85rem, 1.25vw, 1.1rem);
  color: var(--ink-dim);
}
.city small {
  font-family: var(--f-body); font-weight: 800;
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-dim);
}
.city:nth-child(odd) { transform: rotate(-1.3deg); }
.city:nth-child(even) { transform: rotate(1.1deg); }
.city--live {
  color: var(--ink);
  border-color: rgba(217, 119, 6, .6);
  box-shadow: var(--shadow-amber);
  position: relative;
}
.city--live small { color: var(--teal); }
.city-dot {
  position: absolute; top: 12px; right: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  animation: pulse 2.4s ease-out infinite;
}

/* ---------- Finale ---------- */
.finale {
  position: relative;
  padding: 130px 24px 140px;
  text-align: center;
  background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(217, 119, 6, .12), transparent 65%);
}
.finale h2 { font-size: clamp(3rem, 9vw, 6rem); line-height: 1; }
.finale p {
  color: var(--ink-soft); font-size: 1.1rem;
  max-width: 32rem; margin: 26px auto 36px;
}
.finale-ctas { justify-content: center; }
.playsoon {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px dashed rgba(217, 119, 6, .45);
  color: var(--ink-soft);
  border-radius: 12px; padding: 13px 22px;
  font-weight: 600; font-size: .95rem;
}
.playsoon svg { color: var(--amber); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 54px 24px 44px;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; gap: 26px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong {
  display: block; font-family: var(--f-brand);
  font-weight: 400; font-size: 1.3rem;
}
.footer-brand span { font-size: .85rem; color: var(--ink-dim); }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a {
  color: var(--ink-soft); font-weight: 600; font-size: .92rem;
  text-decoration: none; border-bottom: 1px solid var(--line-soft);
  padding-bottom: 2px; transition: color .2s ease, border-color .2s ease;
}
.footer-links a:hover { color: var(--amber); border-color: var(--amber); }
.footer-note { font-size: .82rem; color: var(--ink-dim); margin: 0; line-height: 1.7; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero { padding-top: 130px; }
  .hero-demo { order: 2; }
  .bcard, .bcard--tall, .bcard--rgpd { grid-column: span 6; }
  .bcard--wide { grid-column: span 12; }
  .bcard--tall { grid-row: span 1; }
  .bcard-visual--map { min-height: 240px; }
}
@media (max-width: 720px) {
  .topnav { display: none; }
  .bcard, .bcard--wide, .bcard--tall, .bcard--rgpd { grid-column: span 12; }
  .bcard--wide { flex-direction: column; align-items: stretch; }
  .bcard-visual--stack { flex: none; }
  .hero-stats { grid-template-columns: repeat(2, auto); gap: 22px 36px; }
  .floater--2, .floater--4 { display: none; }
  .floater--1 { left: 0; }
  .floater--3 { right: 0; }
  .section { padding: 56px 20px; }
  .manifesto { padding: 80px 20px; }
  .cities { flex-wrap: wrap; }
  .city { flex: 1 1 40%; font-size: 1.05rem; padding: 13px 10px; }
}

/* ---------- Accessibilité : reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .marquee,
  html.js .floater,
  html.js .hero-demo,
  html.js .ph-agenda.is-active .sticker,
  html.js .ph-agenda.is-active .sticker--swipe .sticker-body,
  html.js .ph-agenda.is-active .sticker-heart,
  html.js .ph-view.is-active .map-dots circle,
  html.js .swipedemo-card,
  .eyebrow-dot, .city-dot { animation: none !important; }
  .phone { transform: none; transition: none; }
  .btn, .bcard, .ph-nav-pill { transition: none; }
}
