/* ============================================================
   Tikom — Landing « Live Shopping »
   Page d'accueil autonome (sans Bootstrap). Esthétique sombre
   + projecteurs ambrés. Adapté du handoff Claude Design.
   ============================================================ */

/* ---- Polices auto-hébergées (AssetMapper) ---- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-aA_waSK.woff2") format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-qI6BF9f.woff2") format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/space-grotesk-lWJRtzO.ttf") format('truetype');
}

:root {
  --bg: #0a0607;
  --bg-2: #120a0c;
  --ink: #f5efe8;
  --ink-dim: #b8aaa4;
  --ink-mute: #7d6f6a;
  --line: rgba(255, 220, 200, 0.08);
  --line-strong: rgba(255, 220, 200, 0.16);

  /* Accent — orange vif (#ff8a3d → #ff4a1f) */
  --red: #ff4a1f;
  --red-soft: #ff8a3d;
  --orange: #ff6b2b;
  --orange-soft: #ffb899;

  --green: #22c55e;
  --green-rgb: 34, 197, 94;

  --accent-deep-rgb: 255, 74, 31;
  --accent-mid-rgb: 255, 138, 61;
  --accent-soft-rgb: 255, 184, 153;

  --btn-text: #2a1a04;

  --spot-1: rgba(255, 138, 61, 0.55);
  --spot-2: rgba(255, 74, 31, 0.40);

  --font-sans: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  /* Police de marque Tikom — réservée aux titres et grands chiffres. */
  --font-display: 'Space Grotesk', var(--font-sans);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* `clip` (et non `hidden`) pour ne pas casser le position:sticky du bandeau. */
html { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============================================================
   Spotlights — éclairage d'ambiance (intensité figée à 1)
   ============================================================ */

.bg-layer { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.bg-base {
  background: radial-gradient(120% 80% at 50% 0%, #2a0a12 0%, #14060a 55%, #070304 100%);
}

.bg-spot-top {
  background:
    radial-gradient(60% 45% at 50% -5%, var(--spot-1) 0%, transparent 60%),
    radial-gradient(40% 35% at 50% 5%, rgba(var(--accent-soft-rgb), 0.35) 0%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 1;
}

.bg-spot-left {
  background: radial-gradient(45% 60% at -5% 30%, var(--spot-2) 0%, transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.bg-spot-right {
  background: radial-gradient(45% 60% at 105% 60%, rgba(var(--accent-mid-rgb), 0.35) 0%, transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.bg-grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.7 0 0 0 0 0.4 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.bg-beam {
  position: fixed;
  top: -20vh; left: 50%;
  transform: translateX(-50%);
  width: 90vw; height: 80vh;
  background: conic-gradient(from 180deg at 50% 0%,
    transparent 0deg, transparent 168deg,
    rgba(var(--accent-mid-rgb), 0.18) 175deg,
    rgba(var(--accent-soft-rgb), 0.30) 180deg,
    rgba(var(--accent-mid-rgb), 0.18) 185deg,
    transparent 192deg);
  filter: blur(20px);
  pointer-events: none; z-index: 0; mix-blend-mode: screen;
  opacity: 1;
}

.bg-beam-2 {
  position: fixed;
  top: 30vh; right: -20vw;
  width: 80vw; height: 100vh;
  background: conic-gradient(from 110deg at 100% 50%,
    transparent 0deg, transparent 75deg,
    rgba(var(--accent-deep-rgb), 0.12) 85deg,
    rgba(var(--accent-mid-rgb), 0.22) 90deg,
    rgba(var(--accent-deep-rgb), 0.12) 95deg,
    transparent 105deg);
  filter: blur(30px);
  pointer-events: none; z-index: 0; mix-blend-mode: screen;
  opacity: 0.8;
}

.bg-vignette {
  background: radial-gradient(120% 120% at 50% 50%, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* ============================================================
   Bandeau scarcity (sticky) — FOMO en haut de page
   ============================================================ */

.scarcity {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(var(--accent-deep-rgb), 0.25);
  background: linear-gradient(180deg, rgba(50, 12, 8, 0.96), rgba(30, 8, 6, 0.94));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.scarcity::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 200% at 50% 50%, rgba(var(--accent-mid-rgb), 0.25), transparent 70%);
  pointer-events: none;
}
.scarcity-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 11px 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px;
  font-size: 13px; color: var(--ink-dim);
  flex-wrap: wrap;
}
.scarcity-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.01em;
}
.scarcity-tag {
  padding: 3px 9px; border-radius: 4px;
  background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.45), rgba(var(--accent-deep-rgb), 0.7));
  color: var(--ink) !important;
  font-size: 10.5px !important; font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  border: 1px solid rgba(var(--accent-mid-rgb), 0.5);
  box-shadow: 0 0 14px rgba(var(--accent-mid-rgb), 0.35);
}
/* Badge « ouvert » : vert fluo pour signaler que les portes sont ouvertes. */
.scarcity-tag--open {
  background: linear-gradient(180deg, rgba(var(--green-rgb), 0.55), rgba(var(--green-rgb), 0.28)) !important;
  border-color: rgba(var(--green-rgb), 0.7) !important;
  box-shadow: 0 0 16px rgba(var(--green-rgb), 0.5) !important;
}
.live-dot--open { background: var(--green) !important; box-shadow: 0 0 12px var(--green), 0 0 24px rgba(var(--green-rgb), 0.5) !important; }
@media (max-width: 760px) { .scarcity-tag { font-size: 9.5px !important; padding: 2px 7px; } }
.scarcity-item strong { color: var(--orange-soft); font-weight: 700; }
.scarcity-sep { width: 4px; height: 4px; border-radius: 99px; background: rgba(var(--accent-soft-rgb), 0.4); }
.live-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red), 0 0 24px rgba(var(--accent-deep-rgb), 0.4);
  animation: pulse 1.4s infinite; flex-shrink: 0;
}
@media (max-width: 760px) {
  .scarcity-inner { padding: 10px 20px; gap: 14px; font-size: 11.5px; }
  .scarcity-item { font-size: 11px; }
}

/* Countdown */
.countdown { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.cd-block {
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 4px 8px; border-radius: 6px;
  background: rgba(var(--accent-mid-rgb), 0.10);
  border: 1px solid rgba(var(--accent-mid-rgb), 0.25);
  min-width: 36px;
}
.cd-val { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1; }
.cd-lbl { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); line-height: 1; }
.cd-sep { color: var(--ink-mute); font-weight: 600; padding: 0 2px; }

/* Hot chip + tikom badge */
.hot-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.18), rgba(var(--accent-deep-rgb), 0.08));
  border: 1px solid rgba(var(--accent-mid-rgb), 0.4);
  color: var(--orange-soft);
  font-size: 12px; font-weight: 600; letter-spacing: 0.005em;
}
.hot-chip svg { width: 14px; height: 14px; color: var(--orange-soft); }

/* Bloc urgence du formulaire */
.urgency-strip {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; margin-bottom: 28px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(var(--accent-deep-rgb), 0.14), rgba(var(--accent-deep-rgb), 0.04));
  border: 1px solid rgba(var(--accent-deep-rgb), 0.35);
  font-size: 13px; color: var(--ink-dim); line-height: 1.45;
}
.urgency-strip strong { color: var(--orange-soft); }
.urgency-strip svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   Layout
   ============================================================ */

.page { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.page--narrow { max-width: 880px; }
.page--mid { max-width: 1080px; }
.section { padding: 120px 0; position: relative; }

@media (max-width: 760px) {
  .page { padding: 0 18px; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .page { padding: 0 16px; }
  .section { padding: 48px 0; }
}

/* ============================================================
   Nav
   ============================================================ */

.nav {
  position: sticky; top: 40px; z-index: 50;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  background: linear-gradient(180deg, rgba(10,6,7,0.85) 0%, rgba(10,6,7,0.4) 100%);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; max-width: 1240px; margin: 0 auto; }
.nav-brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.nav-brand-logo { height: 40px; width: auto; display: block; }
.nav-brand-x { font-size: 15px; font-weight: 300; color: var(--ink-mute); line-height: 1; }
.nav-brand-partner { height: 24px; width: auto; display: block; }
.nav-brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px var(--red), 0 0 32px rgba(var(--accent-deep-rgb),0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.65; transform: scale(0.85); } }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--ink-dim); }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ============================================================
   Typographie
   ============================================================ */

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(var(--accent-deep-rgb), 0.05);
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--red-soft);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red); }
.eyebrow svg { width: 13px; height: 13px; flex-shrink: 0; }

.h-display { font-family: var(--font-display); font-weight: 700; font-size: clamp(48px, 7.5vw, 80px); line-height: 0.98; letter-spacing: -0.035em; margin: 0; }
.h-2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 5vw, 56px); line-height: 1.02; letter-spacing: -0.03em; margin: 0; }
.h-3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.15; letter-spacing: -0.02em; margin: 0; }

.text-accent {
  background: linear-gradient(90deg, #ff4a1f 0%, #ff8a3d 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-glow { text-shadow: 0 0 30px rgba(var(--accent-deep-rgb), 0.5), 0 0 80px rgba(var(--accent-mid-rgb), 0.25); }
.nowrap { white-space: nowrap; }

/* Réassurance « 100 % gratuit » sous les CTA du hero. */
.hero-free {
  margin: 22px 0 0; text-align: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--green);
}

.lede { font-size: clamp(16px, 1.45vw, 19px); line-height: 1.55; color: var(--ink-dim); max-width: 56ch; margin: 0; }
.lede strong { color: var(--ink); }
.muted { color: var(--ink-mute); }
.dim { color: var(--ink-dim); }

/* ============================================================
   Pills / Badges
   ============================================================ */

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.02);
  font-size: 13px; color: var(--ink-dim);
}
.pill strong { color: var(--ink); font-weight: 600; }
.pill .flag-fr { width: 21px; height: 14px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }

.tikom-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(var(--accent-deep-rgb), 0.35);
  background: rgba(var(--accent-deep-rgb), 0.08);
  color: var(--red-soft); font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
}
.tikom-badge svg { width: 14px; height: 14px; }
/* Drapeau FR : ratio 3:2, plus large que les icônes carrées du badge. */
.tikom-badge .flag-fr { width: 21px; height: 14px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }

/* ============================================================
   Boutons
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(#ff8a3d 0%, #ff4a1f 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 10px 24px -8px rgba(255, 74, 31, 0.6),
    0 0 40px -8px rgba(255, 138, 61, 0.4);
}
.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 14px 32px -8px rgba(255, 74, 31, 0.8),
    0 0 60px -8px rgba(255, 138, 61, 0.55);
}
.btn-ghost { background: rgba(255, 255, 255, 0.03); border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 220, 200, 0.25); }
.btn-lg { padding: 20px 32px; font-size: 16.5px; }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   Cartes / Surfaces
   ============================================================ */

.card {
  background: linear-gradient(180deg, rgba(255, 220, 200, 0.04) 0%, rgba(255, 220, 200, 0.015) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.card-glow { position: relative; overflow: hidden; }
.card-glow::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.4) 0%, rgba(var(--accent-deep-rgb), 0.15) 25%, transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

/* ============================================================
   Simulateur
   ============================================================ */

.sim-step1-card { padding: 32px; margin-bottom: 24px; }
.sim-controls-card { padding: 32px; }
.sim-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr); gap: 24px; align-items: start; }
.sim-result-col { position: sticky; top: 100px; }

.sim-step {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.sim-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(var(--accent-mid-rgb), 0.12);
  border: 1px solid rgba(var(--accent-mid-rgb), 0.35);
  color: var(--orange-soft); font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 700; line-height: 1; flex-shrink: 0;
}

.mode-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mode-cards-4 { grid-template-columns: repeat(4, 1fr); }
.mode-cards-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .mode-cards-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .mode-cards-3 { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .mode-cards { grid-template-columns: 1fr; } }

.mode-card {
  position: relative; padding: 22px 22px 20px; border-radius: var(--radius);
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02);
  cursor: pointer; text-align: left; color: var(--ink); width: 100%;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.mode-card:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.035); }
.mode-card[data-selected="true"] {
  border-color: rgba(var(--accent-deep-rgb), 0.55);
  background: linear-gradient(180deg, rgba(var(--accent-deep-rgb), 0.08), rgba(var(--accent-deep-rgb), 0.02));
  box-shadow: 0 0 0 1px rgba(var(--accent-deep-rgb),0.25), 0 0 32px -8px rgba(var(--accent-deep-rgb),0.4);
}
.mode-card[data-flavor="affiliate"] { background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.06), rgba(var(--accent-mid-rgb), 0.01)); }
.mode-card[data-flavor="affiliate"][data-selected="true"] { background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.14), rgba(var(--accent-mid-rgb), 0.03)); }
.mode-card-head { display: flex; align-items: center; justify-content: space-between; }
.mode-card-head-left { display: flex; align-items: center; gap: 12px; }
.mode-card-head-left .mode-ico { display: inline-flex; color: var(--ink-dim); }
.mode-card[data-selected="true"] .mode-ico { color: var(--red-soft); }
.mode-card-title { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.mode-card-meta { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; color: var(--ink-dim); font-size: 13.5px; line-height: 1.5; }
.mode-card-meta strong { color: var(--ink); font-weight: 600; }
.mode-pricing { margin-top: 10px; display: flex; flex-direction: column; gap: 2px; padding-top: 10px; border-top: 1px dashed var(--line-strong); }
.mode-pricing .rate { color: var(--ink); font-weight: 600; }
.mode-pricing .rate strong { color: var(--orange-soft); }
.mode-pricing .rate .nofix { color: var(--ink-mute); font-weight: 600; }
.mode-pricing .rate .unit { color: var(--ink-mute); font-weight: 500; margin-left: 6px; }
.mode-pricing .comm { color: var(--ink-dim); font-size: 12.5px; }
.mode-pricing .comm strong { color: var(--orange-soft); }
.mode-tick {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); display: grid; place-items: center;
  background: rgba(0,0,0,0.3); flex-shrink: 0; color: transparent;
}
.mode-card[data-selected="true"] .mode-tick { border-color: var(--red); background: var(--red); color: var(--btn-text); }
.mode-tick svg { width: 12px; height: 12px; }

.level-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 720px) { .level-chips { grid-template-columns: repeat(4, 1fr); } }
.level-chip {
  padding: 14px; border-radius: var(--radius); border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02); cursor: pointer; text-align: left; color: var(--ink);
  display: flex; flex-direction: column; gap: 4px; transition: all .15s ease; width: 100%;
}
.level-chip:hover { border-color: var(--line-strong); }
.level-chip[data-selected="true"] {
  border-color: rgba(var(--accent-mid-rgb), 0.55);
  background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.10), rgba(var(--accent-mid-rgb), 0.02));
  box-shadow: 0 0 0 1px rgba(var(--accent-mid-rgb), 0.25), 0 0 32px -10px rgba(var(--accent-mid-rgb), 0.5);
}
.level-chip-title { font-weight: 700; font-size: 14px; letter-spacing: -0.005em; display: flex; align-items: center; gap: 8px; }
.level-chip-title svg { width: 14px; height: 14px; color: var(--orange-soft); }
.level-chip-range { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-mute); }
.level-chip[data-selected="true"] .level-chip-range { color: var(--orange-soft); }

.slider-wrap { display: flex; flex-direction: column; gap: 16px; }
.slider-head { display: flex; align-items: baseline; justify-content: space-between; }
.slider-val { font-family: var(--font-mono); font-size: 32px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.slider-val-unit { color: var(--ink-mute); font-size: 16px; margin-left: 4px; font-weight: 500; }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); outline: none; cursor: pointer; }
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(180deg, var(--orange-soft), var(--red)); border: 2px solid var(--btn-text);
  box-shadow: 0 0 0 1px rgba(var(--accent-soft-rgb),0.4), 0 0 20px rgba(var(--accent-mid-rgb), 0.6); cursor: grab;
}
.range::-webkit-slider-thumb:active { cursor: grabbing; }
.range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(180deg, var(--orange-soft), var(--red)); border: 2px solid var(--btn-text);
  box-shadow: 0 0 0 1px rgba(var(--accent-soft-rgb),0.4), 0 0 20px rgba(var(--accent-mid-rgb), 0.6); cursor: grab;
}
.slider-ticks { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-mute); margin-top: 4px; }

.result {
  position: relative; padding: 36px 36px 32px; border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(var(--accent-mid-rgb), 0.18), rgba(var(--accent-deep-rgb), 0.08) 40%, transparent 80%),
    linear-gradient(180deg, rgba(40, 16, 10, 0.6), rgba(20, 8, 6, 0.6));
  border: 1px solid rgba(var(--accent-mid-rgb), 0.25); overflow: hidden;
}
.result::after {
  content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--accent-soft-rgb), 0.3), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.result > * { position: relative; z-index: 1; }
.result-label { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-soft); }
.result-total {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(56px, 8vw, 92px); line-height: 0.95; letter-spacing: -0.035em;
  margin: 8px 0 4px; font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, #ff4a1f 0%, #ff8a3d 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.result-total-unit { color: var(--ink-dim); font-size: 18px; margin-left: 6px; letter-spacing: -0.01em; font-weight: 500; -webkit-text-fill-color: var(--ink-dim); }
.result-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; padding-top: 24px; border-top: 1px dashed var(--line-strong); }
@media (max-width: 640px) { .result-breakdown { grid-template-columns: 1fr; } }
.bd-row { display: flex; flex-direction: column; gap: 4px; }
.bd-label { font-size: 12.5px; color: var(--ink-mute); letter-spacing: -0.005em; }
.bd-value { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.bd-value.accent { color: var(--orange-soft); }
.bd-value.mute { color: var(--ink-mute); }
.bd-sub { font-size: 11.5px; color: var(--ink-mute); font-family: var(--font-mono); }
.result-note { font-size: 11.5px; margin: 14px 0 0; text-align: center; line-height: 1.5; color: var(--ink-mute); }
/* Bascule affiliation / salarié dans le récap. */
.result[data-flavor="affiliate"] .bd-standard,
.result[data-flavor="standard"] .bd-affiliate { display: none; }
.result-annual strong { color: var(--ink); font-weight: 600; }

.tabular { font-variant-numeric: tabular-nums; }

@media (max-width: 980px) {
  .sim-grid { grid-template-columns: 1fr; }
  .sim-result-col { position: relative; top: 0; }
}
@media (max-width: 760px) {
  .sim-step1-card, .sim-controls-card { padding: 20px; border-radius: 18px; }
}
@media (max-width: 560px) {
  .mode-cards-4 { grid-template-columns: 1fr; }
  .sim-step1-card, .sim-controls-card { padding: 16px; }
}

/* ============================================================
   Formulaire
   ============================================================ */

.field { display: flex; flex-direction: column; gap: 8px; }
.field-label { font-size: 12.5px; font-weight: 500; color: var(--ink-dim); letter-spacing: -0.005em; }
.input {
  width: 100%; padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); font-family: inherit; font-size: 15.5px; letter-spacing: -0.005em;
  outline: none; transition: border-color .15s ease, background .15s ease;
}
.input::placeholder { color: var(--ink-mute); }
.input:focus { border-color: rgba(var(--accent-mid-rgb), 0.5); background: rgba(255, 255, 255, 0.05); box-shadow: 0 0 0 4px rgba(var(--accent-mid-rgb), 0.08); }
.input[aria-invalid="true"], .field.has-error .input { border-color: rgba(239,68,68,0.6); }
/* Erreurs Symfony (form_errors rend un <ul> sans classe). */
.field ul { list-style: none; margin: 6px 0 0; padding: 0; }
.field li, .form-error { color: #ff8f8f; font-size: 12.5px; line-height: 1.4; }
.signup-form { padding: 32px; }
@media (max-width: 760px) { .signup-form { padding: 20px; } }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-grid { grid-template-columns: 1fr; } }
.fine-print { font-size: 12px; color: var(--ink-mute); line-height: 1.5; }
.fine-print svg { width: 12px; height: 12px; vertical-align: -2px; margin-right: 4px; opacity: 0.7; }
.fine-print a { color: var(--ink-dim); text-decoration: underline; text-underline-offset: 2px; }
.sim-prefill {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; margin-bottom: 24px;
  border: 1px solid rgba(var(--accent-mid-rgb), 0.3); border-radius: 12px; background: rgba(var(--accent-mid-rgb), 0.06);
}
.sim-prefill svg { width: 18px; height: 18px; color: var(--orange-soft); flex-shrink: 0; }
.sim-prefill div { font-size: 13.5px; color: var(--ink-dim); line-height: 1.45; }
.sim-prefill strong { color: var(--ink); }

/* État de succès */
.form-success {
  padding: 40px; text-align: center; border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--accent-mid-rgb), 0.3);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(var(--accent-mid-rgb), 0.18), transparent 70%),
    linear-gradient(180deg, rgba(40, 16, 10, 0.6), rgba(20, 8, 6, 0.6));
}
.form-success-icn {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--orange), var(--red)); color: var(--btn-text);
  box-shadow: 0 0 40px rgba(var(--accent-mid-rgb), 0.5);
}
.form-success-icn svg { width: 28px; height: 28px; }
.success-steps { margin-top: 28px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: var(--ink-mute); }
.success-steps .ok { display: inline-flex; align-items: center; gap: 6px; }
.success-steps .ok svg { width: 12px; height: 12px; color: var(--orange-soft); }
.success-steps .dot { width: 6px; height: 6px; border-radius: 99px; background: var(--orange-soft); animation: pulse 1.4s infinite; }
.success-steps .sep { opacity: 0.4; }

/* ============================================================
   Divers (stats marché, features, marques, footer)
   ============================================================ */

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); margin: 0; border: 0; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .stat-row { grid-template-columns: 1fr; gap: 22px; text-align: center; } }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.stat-num .accent { color: var(--orange-soft); }
.stat-num .small { font-size: 0.55em; color: var(--ink-dim); font-weight: 600; }
.stat-lbl { font-size: 13px; color: var(--ink-dim); margin-top: 8px; line-height: 1.4; }
.stat-lbl a { text-decoration: underline; text-decoration-style: dotted; }
.market-note { text-align: center; font-size: 12px; margin-top: 16px; font-style: italic; color: var(--ink-mute); }
.market-note strong { color: var(--ink-dim); }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.feat-icn {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.18), rgba(var(--accent-deep-rgb), 0.08));
  border: 1px solid rgba(var(--accent-mid-rgb), 0.25); color: var(--orange-soft); margin-bottom: 18px;
}
.feat-icn svg { width: 22px; height: 22px; }
.feat-title { font-weight: 700; font-size: 17px; margin: 0 0 8px; letter-spacing: -0.01em; }
.feat-desc { font-size: 14px; color: var(--ink-dim); line-height: 1.55; margin: 0; }

.brand-strip { margin-top: 44px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 48px; }
.brand-logo { display: flex; align-items: center; justify-content: center; height: 36px; flex: 0 0 auto; }
.brand-logo img { max-width: 150px; max-height: 100%; width: auto; height: auto; object-fit: contain; filter: invert(1) brightness(1.1); opacity: 0.72; transition: opacity .2s ease; }
.brand-logo:hover img { opacity: 1; }
.brand-name-only { font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--ink-dim); opacity: 0.72; transition: opacity .2s ease; }
.brand-name-only:hover { opacity: 1; }
.brands-eyebrow { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; margin: 0; color: var(--ink-mute); }

.footer { position: relative; z-index: 1; margin-top: 80px; padding: 40px 0 60px; border-top: 1px solid var(--line); text-align: center; font-size: 13px; color: var(--ink-mute); }
.footer a { color: var(--ink-dim); }
.footer-links { margin-top: 8px; display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-copy { margin-top: 8px; font-size: 11.5px; color: var(--ink-mute); }

/* ============================================================
   Badge « TikTok Shop Partner » — flottant, toujours visible
   ============================================================ */

.partner-badge {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(24, 12, 14, 0.92), rgba(14, 8, 9, 0.92));
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(var(--accent-mid-rgb), 0.08);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  animation: fadeIn .5s ease both;
  animation-delay: .4s;
}
.partner-badge img { height: 30px; width: auto; display: block; }

@media (max-width: 760px) {
  .partner-badge { right: 12px; bottom: 12px; padding: 7px 10px; border-radius: 12px; }
  .partner-badge img { height: 22px; }
}

/* ============================================================
   Animations
   ============================================================ */

.fade-in { animation: fadeIn .6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .partner-badge { animation: none; }
  .nav-brand-dot, .live-dot, .success-steps .dot { animation: none; }
  .btn, .input, .mode-card, .level-chip { transition: none; }
}

/* ============================================================
   Polish mobile (en dernier pour surcharger)
   ============================================================ */

@media (max-width: 760px) {
  .nav { position: relative; top: 0; }
  /* gap garanti pour que la marque et le groupe « Mon espace + Postuler »
     ne se collent pas quand l'espace manque (space-between n'a plus rien
     à distribuer sur écran étroit). */
  .nav-inner { padding: 14px 18px; gap: 14px; }
  .nav-brand { font-size: 17px; min-width: 0; }
  .nav-brand-logo { height: 34px; }
  .nav-brand-partner { height: 25px; }
  .nav-brand-x { font-size: 13px; }
}

/* Très petits écrans (téléphones) : on compacte toute la barre (logos, ×,
   « Mon espace », bouton Postuler) pour que tout tienne sans se chevaucher.
   Les !important surchargent les styles inline du lien et du bouton. */
@media (max-width: 480px) {
  .nav-inner { padding: 12px 14px; gap: 10px; }
  .nav-brand { gap: 6px; }
  .nav-brand-logo { height: 32px; }
  .nav-brand-partner { height: 25px; }
  .nav-brand-x { font-size: 11px; }
  .nav-link-space { font-size: 12px !important; }
  .nav .btn-primary { padding: 9px 14px !important; font-size: 12.5px !important; }
}

@media (max-width: 760px) {
  .scarcity-inner { gap: 10px; padding: 8px 16px; justify-content: center; flex-wrap: nowrap; }
  .scarcity-sep { display: none; }
  .scarcity-item { font-size: 11px; flex-shrink: 1; min-width: 0; }
  .live-dot { width: 6px; height: 6px; }
}
@media (max-width: 480px) {
  .scarcity-inner { padding: 7px 14px; }
  .scarcity-item { font-size: 10.5px; gap: 6px; }
}

@media (max-width: 760px) {
  .h-display { font-size: clamp(36px, 9vw, 64px) !important; line-height: 1 !important; letter-spacing: -0.025em !important; }
  .h-2 { font-size: clamp(28px, 7vw, 44px) !important; line-height: 1.05 !important; }
  .h-3 { font-size: 17px !important; }
  .lede { font-size: 15px !important; max-width: 100% !important; }
  .eyebrow { font-size: 10.5px; padding: 7px 12px; }
  .hot-chip { font-size: 11px; padding: 7px 11px; }
  .btn { padding: 13px 20px; font-size: 14px; }
  .btn-lg { padding: 15px 22px; font-size: 15px; }
  /* Bouton du résultat (texte long + montant dynamique) : on repasse en bloc
     de texte centré pour un retour à la ligne propre. En inline-flex, chaque
     fragment (libellé, montant, « €/mois », flèche) devenait un élément flex
     distinct qui retombait à la ligne avec un grand espacement disgracieux. */
  .result .btn {
    display: block;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    font-size: 13.5px;
    padding: 14px 18px;
  }
  .result .btn .cta-amount { display: block; white-space: nowrap; }
  .result .btn svg { vertical-align: -3px; margin-left: 4px; }
  .card { border-radius: 18px; }
  .result { padding: 24px 22px 22px; border-radius: 18px; }
  .result-total { font-size: clamp(44px, 12vw, 72px) !important; line-height: 0.95; }
  .result-total-unit { font-size: 15px; }
  .bd-value { font-size: 19px; }
  .feat { padding: 22px; }
  .feat-title { font-size: 16px; }
  .feat-desc { font-size: 13.5px; }
}

@media (max-width: 760px) {
  .sim-grid > *, .mode-cards > *, .level-chips > *, .field-grid > *, .result-breakdown > * { min-width: 0; }
  .slider-head { flex-wrap: wrap; row-gap: 6px; }
  .slider-head > div:last-child { white-space: nowrap; }
  .level-chips { grid-template-columns: 1fr !important; }
  .level-chip-title { font-size: 13.5px; }
  .level-chip-range { font-size: 11px; }
  .mode-card-meta { word-wrap: break-word; }
}
@media (max-width: 560px) {
  .mode-card { padding: 18px 18px 16px; }
  .mode-card-title { font-size: 16px; }
  .mode-card-meta { font-size: 13px; }
  .level-chip { padding: 12px; }
  .slider-val { font-size: 26px; }
  .slider-val-unit { font-size: 14px; }
}

/* Marques — scroll horizontal sur mobile */
@media (max-width: 760px) {
  .brand-strip {
    flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; justify-content: flex-start;
    padding: 8px 18px 16px; margin: 28px -18px 0; gap: 32px;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .brand-strip::-webkit-scrollbar { display: none; }
  .brand-strip > * { flex-shrink: 0; scroll-snap-align: center; }
  .brand-logo { height: 28px; }
  .brand-logo img { max-width: 110px; }
  .brand-name-only { font-size: 17px; }
}

@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr; gap: 18px; padding: 24px 0; }
  .stat-num { font-size: 26px !important; }
  .stat-lbl { font-size: 12px; }
  .footer { padding: 32px 0 48px; }
}

@media (max-width: 760px) {
  .bg-beam { width: 130vw; height: 60vh; filter: blur(28px); }
  .bg-beam-2 { display: none; }
}

/* ============================================================
   V3 — Studio hero → back-office light zone
   ============================================================ */

/* The page background is the back-office light gray. The dark studio rig
   (.studio-bg) sits fixed on top of it and is faded out by JS as you scroll,
   revealing this. */
body {
  background: #f3f4f6;
}

/* Studio backdrop — fixed, contains all spotlight layers; faded via JS */
.studio-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: opacity;
}
.studio-bg .bg-layer,
.studio-bg .bg-beam,
.studio-bg .bg-beam-2 {
  position: absolute;
}

/* Hero occupies a full screen of dark studio so the transition has room */
.studio-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Everything below the hero adopts the light back-office palette.
   Re-mapping the design tokens cascades to all descendant components. */
.light-zone {
  position: relative;
  z-index: 1;
  --ink: #1b1714;
  --ink-dim: #5b554f;
  --ink-mute: #837b73;
  --line: rgba(28, 20, 14, 0.09);
  --line-strong: rgba(28, 20, 14, 0.15);
  /* Accent "soft" tints are remapped from pale (legible on dark) to deep amber
     (legible on white) since components use --orange-soft as a text color. */
  --orange-soft: #b45309;
  --orange: #d97706;
  /* Establish a dark inherited text color so headings (which don't set their
     own color) stop inheriting the cream <body> color. */
  color: var(--ink);
}

/* Section rhythm — gentle warm/cool nuances instead of flat gray.
   Scoped to .light-zone so the v2 dark page is unaffected. Cards stay white
   and pop against the off-white section tints. */
.light-zone > #projet                { background: #ffffff; }  /* Projet — clean white (juste après le hero sombre) */
.light-zone > section:nth-of-type(2) { background: #f3f4f6; }  /* Brands — cool gray (blends with studio fade) */
.light-zone > #simulator             { background: #f7f5f1; }  /* Simulator — warm off-white */
.light-zone > #market                { background: #ffffff; }  /* Market — clean white */
.light-zone > #reassurance           { background: #f7f5f1; }  /* Features — warm off-white */
.light-zone > #signup                { background: #efe9e0; }  /* Signup — warm sand */
.light-zone > .footer                { background: #e7e2da; }  /* Footer — deeper warm */

/* A soft seam where the dark studio meets the light zone */
.light-zone::before {
  content: "";
  display: block;
  height: 1px;
  background: transparent;
}

/* Surfaces ------------------------------------------------- */
.light-zone .card {
  background: #ffffff;
  border: 1px solid #e9e5df;
  box-shadow: 0 1px 2px rgba(20, 15, 10, 0.04), 0 20px 44px -28px rgba(20, 15, 10, 0.30);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.light-zone .card-glow::before { display: none; }

.light-zone .mode-card,
.light-zone .level-chip {
  background: #ffffff;
  border: 1px solid #e9e5df;
}
.light-zone .mode-card:hover,
.light-zone .level-chip:hover {
  border-color: #d6cfc4;
  background: #fffdfa;
}
.light-zone .mode-card[data-flavor="affiliate"] {
  background: linear-gradient(180deg, #fff8ec, #fffdf8);
}
.light-zone .mode-card[data-selected="true"],
.light-zone .mode-card[data-flavor="affiliate"][data-selected="true"] {
  border-color: rgba(var(--accent-mid-rgb), 0.6);
  background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.10), rgba(var(--accent-mid-rgb), 0.02));
  box-shadow: 0 0 0 1px rgba(var(--accent-mid-rgb), 0.28), 0 16px 32px -18px rgba(var(--accent-mid-rgb), 0.45);
}
.light-zone .level-chip[data-selected="true"] {
  border-color: rgba(var(--accent-mid-rgb), 0.6);
  background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.10), rgba(var(--accent-mid-rgb), 0.02));
  box-shadow: 0 0 0 1px rgba(var(--accent-mid-rgb), 0.28), 0 16px 32px -18px rgba(var(--accent-mid-rgb), 0.45);
}
.light-zone .mode-tick {
  background: #fff;
  border-color: #d6cfc4;
}
.light-zone .mode-card[data-selected="true"] .mode-tick {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

/* Result panel — warm cream card instead of dark glass */
.light-zone .result {
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(var(--accent-mid-rgb), 0.10), transparent 70%),
    linear-gradient(180deg, #ffffff, #fff7ea);
  border: 1px solid rgba(var(--accent-mid-rgb), 0.30);
  box-shadow: 0 24px 56px -28px rgba(var(--accent-deep-rgb), 0.40);
}
.light-zone .result::after { opacity: 0.35; }
.light-zone .result-total {
  background: linear-gradient(90deg, #ff4a1f 0%, #ff8a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Inputs --------------------------------------------------- */
.light-zone .input {
  background: #ffffff;
  border: 1px solid #e2ddd5;
  color: var(--ink);
}
.light-zone .input::placeholder { color: #aaa295; }
.light-zone .input:focus {
  border-color: rgba(var(--accent-mid-rgb), 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--accent-mid-rgb), 0.10);
}

/* Eyebrows / badges / chips ------------------------------- */
.light-zone .eyebrow {
  background: rgba(var(--accent-mid-rgb), 0.08);
  border-color: rgba(var(--accent-mid-rgb), 0.25);
  /* Écriture des pastilles en noir (la pastille-point reste ambrée). */
  color: var(--ink);
}
.light-zone .text-accent {
  background: linear-gradient(90deg, #ff4a1f 0%, #ff8a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Feature + stat cards ------------------------------------ */
.light-zone .feat {
  background: #ffffff;
  border: 1px solid #e9e5df;
  box-shadow: 0 1px 2px rgba(20, 15, 10, 0.04), 0 18px 40px -28px rgba(20, 15, 10, 0.22);
}
.light-zone .feat-icn {
  background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.14), rgba(var(--accent-mid-rgb), 0.05));
  border: 1px solid rgba(var(--accent-mid-rgb), 0.30);
  /* Fallback couleur unie si la réf. de dégradé SVG échoue. */
  color: #b45309;
}
/* Pictos en dégradé (comme les boutons) via le <linearGradient id="tk-feat-grad">
   injecté dans la page. Icônes au trait → stroke ; icônes pleines → fill. */
.light-zone .feat-icn svg[stroke="currentColor"] { stroke: url(#tk-feat-grad); }
.light-zone .feat-icn svg[fill="currentColor"] { fill: url(#tk-feat-grad); }

/* Chiffres « Live Shopping » (marché) tous en noir, comme le dernier. */
.light-zone .stat-num .accent { color: var(--ink); }

/* Sliders -------------------------------------------------- */
.light-zone .range { background: rgba(20, 15, 10, 0.10); }

/* Urgency strip + form success ---------------------------- */
.light-zone .urgency-strip {
  background: linear-gradient(180deg, rgba(var(--accent-mid-rgb), 0.12), rgba(var(--accent-mid-rgb), 0.04));
  border: 1px solid rgba(var(--accent-mid-rgb), 0.30);
  color: var(--ink-dim);
}
.light-zone .urgency-strip strong { color: #b45309; }
.light-zone .form-success {
  border: 1px solid rgba(var(--accent-mid-rgb), 0.30);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(var(--accent-mid-rgb), 0.10), transparent 70%),
    linear-gradient(180deg, #ffffff, #fff7ea);
}

/* Brands + footer ----------------------------------------- */
.light-zone .brand-logo img {
  filter: none;
  opacity: 0.62;
}
.light-zone .brand-logo:hover img { opacity: 1; }
.light-zone .pill {
  background: #ffffff;
  border-color: #e9e5df;
}
.light-zone .footer { border-top: 1px solid var(--line); }

/* Ghost buttons inside the light zone (if any) ------------ */
.light-zone .btn-ghost {
  background: rgba(20, 15, 10, 0.035);
  border-color: #e2ddd5;
  color: var(--ink);
}
.light-zone .btn-ghost:hover {
  background: rgba(20, 15, 10, 0.06);
  border-color: #d6cfc4;
}

/* Dashed dividers / breakdown separators on light --------- */
.light-zone .result-breakdown { border-top-color: rgba(28, 20, 14, 0.18); }

/* Respect reduced motion / print — show light zone fully */
@media (prefers-reduced-motion: reduce) {
  .studio-bg { transition: none; }
}
