:root {
  --font-sans: 'Satoshi', system-ui, sans-serif;
  --font-display: 'Big Shoulders Display', Impact, sans-serif;

  --bg-black: #050403;
  --bg-dark: #1F1E1B;
  --bg-darker: #12110F;
  --bg-panel: #171614;
  --bg-panel-2: #24221F;
  --bg-light: #FAF9F5;

  --text-light: #F7F1E8;
  --text-soft: #E8DED1;
  --text-muted: #C5BBAE;
  --text-dim: #93897C;
  --text-dark: #171411;
  --text-medium: #3A332C;

  --accent: #FF6600;
  --warn: #E8A34C;
  --ok: #7A9C5A;

  --border-light: rgba(23, 20, 17, 0.14);
  --border-dark: rgba(250, 249, 245, 0.16);
  --border-strong: rgba(250, 249, 245, 0.28);

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-7: 32px; --space-8: 48px;
  --space-9: 64px; --space-10: 96px;

  --section-pad: clamp(5rem, 10vw, 9rem);
  --container: min(1240px, 100% - 3rem);
  --container-narrow: 76ch;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg-darker);
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ───────── Sticky Nav ───────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  background: rgba(18, 17, 15, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
  transform: translateY(-100%);
  opacity: 0;
}
.nav.visible {
  transform: translateY(0);
  opacity: 1;
  background: rgba(18, 17, 15, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text-light);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-brand-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.nav-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s var(--ease-out);
}
.nav-links a:hover { color: var(--text-light); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  background: var(--accent);
  color: var(--bg-black);
  border-radius: 7px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}
.nav-cta:hover { filter: brightness(1.08); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ───────── Section ───────── */
section {
  padding: var(--section-pad) 0;
  position: relative;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--space-5);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.eyebrow.no-line::before { display: none; }
.eyebrow .num {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

h1, h2, h3 { color: var(--text-light); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: var(--space-5); }
h3 { font-size: 1.4rem; line-height: 1.2; letter-spacing: -0.01em; }

.section-intro {
  max-width: 70ch;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-9);
}

/* ───────── Hero ───────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--space-10);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-9);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-dark);
}
.hero-meta span strong {
  color: var(--text-light);
  font-weight: 500;
  margin-left: 8px;
  letter-spacing: 0.04em;
}
.hero-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero-display .accent { color: var(--accent); font-style: italic; font-weight: 600; text-transform: none; font-family: var(--font-sans); font-size: 0.6em; letter-spacing: -0.02em; line-height: 1; vertical-align: 0.15em; }
.hero-display .line2 { display: block; color: var(--text-muted); font-weight: 500; }
.hero-sub {
  font-size: 1.25rem;
  color: var(--text-soft);
  max-width: 60ch;
  margin-bottom: var(--space-6);
  line-height: 1.5;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 65ch;
  line-height: 1.65;
}
.hero-signature {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--text-dim);
  font-size: 14px;
}
.hero-signature .who {
  color: var(--text-soft);
  font-weight: 500;
}
.scroll-hint {
  position: absolute;
  bottom: var(--space-7);
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.scroll-hint .line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scroll-pulse 2s infinite var(--ease-out);
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ───────── Discussion / Section 2 ───────── */
.discuss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.discuss-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.discuss-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.discuss-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 0.8;
  letter-spacing: -0.02em;
}
.discuss-card-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.discuss-card h3 {
  font-size: 1.6rem;
}
.discuss-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.discuss-card li {
  padding-left: 18px;
  position: relative;
}
.discuss-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--text-dim);
}
.discuss-card.tone-orange { border-color: rgba(255, 102, 0, 0.3); background: linear-gradient(180deg, rgba(255, 102, 0, 0.04) 0%, var(--bg-panel) 100%); }
.discuss-card.tone-orange .discuss-card-num { color: var(--accent); }

@media (max-width: 900px) {
  .discuss-grid { grid-template-columns: 1fr; }
}

/* ───────── Module ───────── */
.module {
  position: relative;
}
.module + .module {
  border-top: 1px solid var(--border-dark);
}
.module-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-7);
  align-items: end;
  margin-bottom: var(--space-9);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border-dark);
}
.module-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(7rem, 16vw, 13rem);
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  letter-spacing: -0.04em;
}
.module-titles { padding-bottom: var(--space-3); }
.module-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.module-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-light);
  margin-bottom: var(--space-4);
}
.module-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 70ch;
  line-height: 1.5;
  font-style: italic;
}

.module-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.problem-box,
.solution-box {
  border-radius: 12px;
  padding: var(--space-7);
}
.problem-box {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
}
.solution-box {
  background: var(--bg-panel-2);
  border: 1px solid var(--border-strong);
  position: relative;
}
.solution-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 12px 0 0 12px;
}
.box-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.problem-box .box-label { color: var(--text-dim); }
.solution-box .box-label { color: var(--accent); }
.box-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}
.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.module-list li {
  padding-left: 22px;
  position: relative;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}
.problem-box .module-list li::before {
  content: "−";
  position: absolute;
  left: 0; top: 0;
  color: var(--text-dim);
  font-weight: 600;
}
.solution-box .module-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 600;
}
.module-list li strong {
  color: var(--text-light);
  font-weight: 600;
}

/* ROI breakdown */
.roi {
  margin-top: var(--space-8);
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: var(--space-8);
}
.roi-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-dark);
}
.roi-header h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
}
.roi-headline {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.roi-headline strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 8px;
}
.levers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.lever {
  padding: var(--space-5);
  background: var(--bg-darker);
  border-radius: 8px;
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.lever-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.lever-name {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}
.lever-detail {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.lever-amount {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px dashed var(--border-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.lever-amount span { color: var(--text-dim); font-size: 12px; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0; margin-left: 4px; }

.roi-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  margin-top: var(--space-6);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
}
.roi-summary > div {
  background: var(--bg-darker);
  padding: var(--space-5);
}
.roi-summary-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.roi-summary-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.roi-summary-value.accent { color: var(--accent); }

.module-callout {
  margin-top: var(--space-6);
  padding: var(--space-5) var(--space-6);
  border-left: 2px solid var(--accent);
  background: rgba(255, 102, 0, 0.04);
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
  border-radius: 0 8px 8px 0;
}
.module-callout strong { color: var(--text-light); }

@media (max-width: 900px) {
  .module-header { grid-template-columns: 1fr; gap: var(--space-4); }
  .module-num { font-size: 6rem; }
  .module-body { grid-template-columns: 1fr; gap: var(--space-5); }
  .levers { grid-template-columns: 1fr; }
  .roi-summary { grid-template-columns: 1fr; }
}

/* ───────── Visual placeholder ───────── */
.viz {
  margin-top: var(--space-8);
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: var(--space-8);
  position: relative;
}
.viz-label {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

/* Module 1: avant/après */
.beforeafter {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-5);
  align-items: stretch;
}
.ba-frame {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ba-frame.before { background: linear-gradient(135deg, #2a2724 0%, #1a1816 100%); }
.ba-frame.after { background: linear-gradient(135deg, #2c1f0e 0%, #1a1410 100%); }
.ba-frame-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.ba-frame.after .ba-frame-label { background: rgba(255, 102, 0, 0.85); color: var(--bg-black); }
.ba-house {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
}
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  padding: 0 var(--space-3);
}
.ba-arrow .timer {
  position: absolute;
  margin-top: 80px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Module 2: flow */
.flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
.flow-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-5);
  align-items: center;
}
.flow-row-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flow-row-label .duration {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--text-light);
  font-weight: 700;
  text-transform: none;
}
.flow-row.proposed .duration { color: var(--accent); }
.flow-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.flow-step {
  background: var(--bg-darker);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
  white-space: nowrap;
}
.flow-row.proposed .flow-step {
  background: var(--bg-panel-2);
  border-color: rgba(255, 102, 0, 0.25);
  color: var(--text-light);
}
.flow-step.unified {
  background: var(--accent);
  color: var(--bg-black);
  border-color: var(--accent);
  font-weight: 600;
  padding: 10px 16px;
}
.flow-arrow {
  color: var(--text-dim);
  margin: 0 6px;
  font-size: 12px;
}
.flow-row.proposed .flow-arrow { color: var(--accent); }

@media (max-width: 760px) {
  .flow-row { grid-template-columns: 1fr; }
}

/* Module 3: dashboard mock */
.dashboard {
  background: var(--bg-darker);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px var(--space-4);
  border-bottom: 1px solid var(--border-dark);
  background: var(--bg-panel);
}
.dash-dots {
  display: flex;
  gap: 6px;
}
.dash-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg-panel-2);
}
.dash-dots span:first-child { background: var(--accent); }
.dash-title {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-left: var(--space-2);
}
.dash-search {
  margin-left: auto;
  padding: 4px 10px;
  background: var(--bg-darker);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}
.dash-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}
.dash-col {
  border-right: 1px solid var(--border-dark);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 280px;
}
.dash-col:last-child { border-right: 0; }
.dash-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-dark);
}
.dash-col-head .count {
  background: var(--bg-panel-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-light);
}
.dash-col.active .count {
  background: var(--accent);
  color: var(--bg-black);
}
.dash-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}
.dash-card-meta {
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  gap: 8px;
  align-items: center;
}
.dash-card-meta .pill {
  background: var(--bg-panel-2);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--text-muted);
  font-size: 10px;
}
.dash-card.flag { border-left: 2px solid var(--accent); }
.dash-card.warn { border-left: 2px solid var(--warn); }

.dash-iaprompt {
  margin-top: var(--space-3);
  padding: var(--space-3);
  background: rgba(255, 102, 0, 0.06);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.dash-iaprompt .ia {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  background: rgba(255, 102, 0, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.dash-iaprompt .q {
  font-size: 12px;
  color: var(--text-soft);
  font-style: italic;
}

@media (max-width: 900px) {
  .dash-body { grid-template-columns: 1fr 1fr; }
  .dash-col { border-bottom: 1px solid var(--border-dark); }
}

/* ───────── Pricing ───────── */
.pricing-table {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--space-8);
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr 1.2fr;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
  font-size: 14.5px;
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row.head {
  background: var(--bg-panel-2);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  padding: var(--space-4) var(--space-6);
}
.pricing-row.total {
  background: var(--bg-darker);
  border-top: 1px solid var(--accent);
  padding: var(--space-6);
}
.pricing-row.total .px-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
}
.px-name { color: var(--text-light); font-weight: 500; }
.px-name small { display: block; color: var(--text-dim); font-size: 12px; font-weight: 400; margin-top: 2px; }
.px-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.pricing-row.total .px-price { color: var(--accent); font-size: 1.7rem; }
.px-gain { color: var(--text-soft); }
.pricing-row.total .px-gain { color: var(--accent); font-weight: 600; }
.px-payback { color: var(--text-muted); font-size: 13px; }
.px-prio { font-size: 12px; color: var(--text-dim); display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.px-prio .stars { color: var(--accent); letter-spacing: 1px; margin-right: 6px; }
.px-prio.recommended { color: var(--accent); font-weight: 600; }

@media (max-width: 900px) {
  .pricing-row { grid-template-columns: 1fr 1fr; gap: var(--space-3); padding: var(--space-4); }
  .pricing-row.head { display: none; }
  .pricing-row .px-name { grid-column: 1 / -1; }
  .pricing-row .px-payback, .pricing-row .px-prio { font-size: 11px; }
}

/* Options blocks */
.options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.option {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}
.option.recommended {
  border-color: rgba(255, 102, 0, 0.45);
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.05) 0%, var(--bg-panel) 60%);
}
.option-badge {
  position: absolute;
  top: -10px;
  left: var(--space-7);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg-black);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}
.option-letter {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}
.option-name {
  font-size: 1.3rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.option-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.option.recommended .option-price { color: var(--accent); }
.option-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--text-muted);
}
.option-detail dt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 2px;
}
.option-detail dd {
  color: var(--text-soft);
  font-weight: 500;
}

@media (max-width: 900px) {
  .options { grid-template-columns: 1fr; }
}

.maintenance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}
.maint-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: var(--space-6);
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
}
.maint-item .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  white-space: nowrap;
}
.maint-item .price small { font-size: 0.6em; color: var(--text-dim); margin-left: 4px; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0; }
.maint-item .desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.maint-item .desc strong { color: var(--text-light); display: block; margin-bottom: 2px; font-weight: 500; }

@media (max-width: 760px) {
  .maintenance { grid-template-columns: 1fr; }
}

.market-compare {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: var(--space-7);
  display: flex;
  align-items: center;
  gap: var(--space-7);
  position: relative;
  overflow: hidden;
}
.market-compare::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.08), transparent 60%);
  pointer-events: none;
}
.market-compare-icon {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}
.market-compare-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  position: relative;
}
.market-compare-text strong {
  color: var(--text-light);
  font-weight: 600;
}

@media (max-width: 760px) {
  .market-compare { flex-direction: column; align-items: flex-start; }
  .market-compare-icon { font-size: 2.6rem; }
}

/* ───────── Process flow comparison ───────── */
.pf-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-7);
  align-items: start;
  margin-top: var(--space-8);
}
.pf-col { display: flex; flex-direction: column; gap: var(--space-5); }
.pf-col-head {
  border-radius: 10px;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
}
.pf-head-before {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
}
.pf-head-after {
  background: rgba(255,102,0,0.08);
  border: 1px solid rgba(255,102,0,0.35);
}
.pf-col-time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}
.pf-head-after .pf-col-time { color: var(--accent); }
.pf-col-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dim);
}
.pf-head-after .pf-col-label { color: var(--accent); opacity: 0.8; }

.pf-steps { display: flex; flex-direction: column; gap: 0; }
.pf-step {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
}
.pf-step-new {
  background: var(--bg-panel-2);
  border-color: rgba(255,102,0,0.25);
}
.pf-step-pain {
  border-color: rgba(232,163,76,0.35);
  background: rgba(232,163,76,0.04);
}
.pf-step-tool {
  background: var(--bg-panel);
}
.pf-step-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}
.pf-step-new .pf-step-name { color: var(--text-light); }
.pf-step-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.pf-step-desc strong { color: var(--text-soft); }
.pf-step-desc em { color: var(--text-dim); font-style: normal; }
.pf-step-tool-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pf-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: var(--bg-darker);
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  color: var(--text-soft);
}
.pf-badge-or {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pf-pain-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warn);
  background: rgba(232,163,76,0.12);
  border: 1px solid rgba(232,163,76,0.25);
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}
.pf-new-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,102,0,0.1);
  border: 1px solid rgba(255,102,0,0.25);
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}
.pf-connector {
  text-align: center;
  color: var(--text-dim);
  font-size: 18px;
  padding: 6px 0;
  line-height: 1;
}
.pf-connector-accent { color: var(--accent); opacity: 0.7; }

.pf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-3);
  padding-top: 80px;
}
.pf-divider-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pf-divider-gain {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.pf-divider-arrow {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
}
.pf-divider-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  white-space: nowrap;
}
.pf-note {
  margin-top: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(255,102,0,0.06);
  border: 1px solid rgba(255,102,0,0.18);
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}
.pf-note strong { color: var(--text-light); }

@media (max-width: 900px) {
  .pf-compare { grid-template-columns: 1fr; }
  .pf-divider { padding-top: 0; flex-direction: row; justify-content: flex-start; gap: var(--space-4); }
  .pf-divider-inner { flex-direction: row; }
}

.pf-step { position: relative; }
.pf-step-time-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-darker);
  color: var(--text-dim);
  border: 1px solid var(--border-dark);
}
.pf-step-time-warn {
  color: var(--warn);
  background: rgba(232,163,76,0.08);
  border-color: rgba(232,163,76,0.25);
}
.pf-step-time-accent {
  color: var(--accent);
  background: rgba(255,102,0,0.08);
  border-color: rgba(255,102,0,0.25);
}

/* ───────── Pourquoi pas Seedle ───────── */
.seedle-section {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.seedle-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-9);
  align-items: center;
}
.seedle-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--text-light);
  letter-spacing: -0.01em;
  position: relative;
  padding-left: var(--space-6);
}
.seedle-quote::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  background: var(--accent);
}
.seedle-quote em {
  color: var(--accent);
  font-style: normal;
}
.seedle-points { display: flex; flex-direction: column; gap: var(--space-5); }
.seedle-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}
.seedle-point .marker {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  background: rgba(255, 102, 0, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  width: 140px;
  flex-shrink: 0;
  text-align: center;
}
.seedle-point p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}
.seedle-point p strong {
  color: var(--text-light);
}
@media (max-width: 900px) {
  .seedle-grid { grid-template-columns: 1fr; gap: var(--space-7); }
}

/* ───────── Audit / next step ───────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: var(--space-8);
}
.timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(to right, var(--accent), var(--border-dark));
  z-index: 0;
}
.tl-step {
  position: relative;
  z-index: 1;
  padding: 0 var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}
.tl-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-darker);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.tl-step.active .tl-step-num {
  background: var(--accent);
  color: var(--bg-black);
  border-color: var(--accent);
}
.tl-step-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.tl-step-meta strong { color: var(--accent); margin-left: 6px; }
.tl-step-title {
  font-size: 1.4rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.tl-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.tl-step ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: var(--text-soft);
  margin-top: var(--space-2);
}
.tl-step li {
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.tl-step li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 11px;
  top: 4px;
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: var(--space-7); }
  .timeline::before { display: none; }
}

.cta-block {
  text-align: center;
  margin-top: var(--space-9);
  padding: var(--space-9) var(--space-7);
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.06) 0%, var(--bg-panel) 100%);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255, 102, 0, 0.1), transparent 60%);
  pointer-events: none;
}
.cta-block-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: var(--space-3);
  position: relative;
}
.cta-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-6);
  position: relative;
}
.cta-block h3 em {
  color: var(--accent);
  font-style: normal;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 18px 32px;
  background: var(--accent);
  color: var(--bg-black);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  position: relative;
  box-shadow: 0 4px 24px rgba(255, 102, 0, 0.25);
}
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(255, 102, 0, 0.4);
}
.cta-button .arrow {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.2s var(--ease-out);
}
.cta-button:hover .arrow { transform: translateX(4px); }

.cta-reassure {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-6);
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}
.cta-reassure span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-reassure .check {
  color: var(--accent);
  font-weight: 800;
  font-family: var(--font-display);
}

/* ───────── Footer ───────── */
.footer {
  background: var(--bg-black);
  padding: var(--space-9) 0 var(--space-7);
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-7);
  align-items: end;
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: var(--space-5);
}
.footer-note {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.6;
}
.footer-signature {
  text-align: right;
}
.footer-signature .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--text-light);
  text-transform: uppercase;
}
.footer-signature .role {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.footer-signature .contact {
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--text-soft);
}
.footer-signature .contact a {
  color: var(--accent);
  text-decoration: none;
}
.footer-signature .contact a:hover { text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.footer-bottom .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  color: rgba(255, 102, 0, 0.18);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 102, 0, 0.5);
  -webkit-text-fill-color: transparent;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-signature { text-align: left; }
}

/* ───────── Time compare (Module 2) ───────── */
.time-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-5);
  align-items: stretch;
  margin-bottom: var(--space-8);
}
.tc-block {
  border-radius: 12px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.tc-before {
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
}
.tc-after {
  background: var(--bg-panel-2);
  border: 1px solid rgba(255,102,0,0.35);
  position: relative;
}
.tc-after::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 12px 0 0 12px;
}
.tc-time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}
.tc-after .tc-time {
  color: var(--accent);
}
.tc-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-dim);
}
.tc-after .tc-label { color: var(--accent); }
.tc-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.tc-steps li {
  padding-left: 20px;
  position: relative;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.5;
}
.tc-before .tc-steps li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: var(--text-dim);
  font-weight: 600;
}
.tc-after .tc-steps li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.tc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  padding: 0 var(--space-2);
  opacity: 0.7;
}
.tc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-2);
}
.tc-arrow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tc-arrow-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
}
.tc-arrow-icon {
  font-size: 1.6rem;
  color: var(--accent);
  opacity: 0.7;
  line-height: 1;
}
.tc-arrow-sub {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .time-compare { grid-template-columns: 1fr; }
  .tc-arrow { transform: rotate(90deg); justify-self: center; }
}

/* ───────── Preview app link ───────── */
.preview-app-link {
  display: block;
  text-decoration: none;
  margin-bottom: var(--space-8);
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: var(--bg-panel);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  box-shadow: 0 0 0 rgba(255,102,0,0);
}
.preview-app-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,102,0,0.15);
}
.preview-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.preview-app-left {
  padding: var(--space-9) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.preview-app-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.preview-app-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.preview-app-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.05;
}
.preview-app-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.preview-app-right {
  background: var(--bg-darker);
  border-left: 1px solid var(--border-dark);
  padding: var(--space-7);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-app-screen {
  background: var(--bg-panel-2);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  font-size: 13px;
}
.pas-bar {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border-dark);
}
.pas-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-dark);
}
.pas-dot:first-child { background: var(--accent); }
.pas-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.pas-upload {
  background: var(--bg-darker);
  border: 1px dashed var(--border-strong);
  border-radius: 6px;
  padding: var(--space-3) var(--space-4);
  color: var(--text-muted);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pas-upload span { color: var(--text-soft); font-weight: 500; }
.pas-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.pas-ctrl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: var(--bg-darker);
  border-radius: 5px;
  border: 1px solid var(--border-dark);
}
.pas-ctrl-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.pas-ctrl-val { font-size: 12px; color: var(--text-light); font-weight: 500; }
.pas-generate {
  background: var(--accent);
  color: var(--bg-black);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .preview-app-inner { grid-template-columns: 1fr; }
  .preview-app-right { border-left: none; border-top: 1px solid var(--border-dark); }
}

/* ───────── Tags gain ───────── */
.tags-row { display: flex; gap: 6px; flex-wrap: wrap; margin: var(--space-4) 0 var(--space-2); }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 5px; line-height: 1;
  width: fit-content;
}
.tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: 0.75; flex-shrink: 0; }
.tag-argent { background: rgba(120,180,80,.13); color: #8dc86a; border: 1px solid rgba(120,180,80,.28); }
.tag-temps  { background: rgba(80,160,220,.12); color: #6fb8e0; border: 1px solid rgba(80,160,220,.25); }
.tag-both   { background: rgba(255,152,40,.12);  color: #f8a94b; border: 1px solid rgba(255,152,40,.28); }
.lever-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; line-height: 1; margin-bottom: var(--space-1);
  width: fit-content;
}
.lever-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.75; flex-shrink: 0; }
.lever-tag.argent { background: rgba(120,180,80,.13); color: #8dc86a; border: 1px solid rgba(120,180,80,.28); }
.lever-tag.temps  { background: rgba(80,160,220,.12); color: #6fb8e0; border: 1px solid rgba(80,160,220,.25); }
.lever-tag.both   { background: rgba(255,152,40,.12);  color: #f8a94b; border: 1px solid rgba(255,152,40,.28); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* SVG illustration tweaks */
.illus { display: block; width: 100%; height: 100%; }
