/* --------------------------------------------------------------------------
   Bici Services — Démo Jardin Eden
   Signature visuelle : dark + accent prospect

   Avant usage : remplacer les placeholders ... par les valeurs du prospect.
   Les rgba() ci-dessous doivent être dérivées de #FF7000 :
     --color-accent-soft      : rgba(R, G, B, .15)
     --color-border-strong    : rgba(R, G, B, .3)
   Les rgba() dans le corps du fichier (.45 pour le text-decoration, .08 et
   .18 pour les gradients radial) sont à dériver identiquement.
   -------------------------------------------------------------------------- */

:root {
  --color-bg: #000000;
  --color-bg-alt: #0d0d0d;
  --color-surface: #141414;
  --color-surface-2: #1c1c1c;
  --color-text: #f2f2f2;
  --color-text-dim: #9a9a9a;
  --color-accent: #FF7000;
  --color-accent-light: #FF9A47;
  --color-accent-soft: rgba(255, 112, 0, .15);
  --color-border: rgba(255, 255, 255, .08);
  --color-border-strong: rgba(255, 112, 0, .30);

  --font-heading: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --radius: 15px;
  --radius-pill: 999px;

  --max-width: 860px;
  --max-width-wide: 1100px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 112, 0, .45);
  transition: color .15s ease, text-decoration-color .15s ease;
}

a:hover {
  color: var(--color-accent-light);
  text-decoration-color: var(--color-accent-light);
}

/* --- Header ------------------------------------------------------------- */

.site-header {
  background: var(--color-bg);
  color: #fff;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--color-border);
}

.site-header__logo img {
  height: 32px;
  width: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border: 1px solid var(--color-border-strong);
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  padding: 80px 32px 60px;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  text-align: left;
}

.hero__eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 900px;
}

.hero__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--color-text-dim);
  font-size: 15px;
}

.hero__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-text-dim);
}

/* --- Article ------------------------------------------------------------ */

.article {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px 80px;
}

.article > p,
.article > ul,
.article > ol {
  margin-bottom: 1.4em;
  color: var(--color-text);
}

.article h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--color-accent);
  margin-top: 2.4em;
  margin-bottom: .8em;
}

.article h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-top: 1.8em;
  margin-bottom: .5em;
}

.article ul,
.article ol {
  padding-left: 1.4em;
}

.article li {
  margin-bottom: .5em;
}

.article li::marker {
  color: var(--color-accent);
}

.article strong {
  color: #fff;
  font-weight: 700;
}

/* Article images */
.article-image {
  margin: 2.8em 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-image__caption {
  font-size: 13px;
  color: var(--color-text-dim);
  text-align: center;
  padding: 12px 16px;
  border-top: 1px solid var(--color-border);
  font-style: italic;
}

/* Callout — "L'essentiel à retenir" */
.callout {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  padding: 32px 36px;
  border-radius: var(--radius);
  margin: 3em 0 1.5em;
}

.callout h2 {
  margin-top: 0;
  font-size: 22px;
  color: var(--color-accent);
}

.callout ul {
  margin-bottom: 0;
}

/* FAQ styling */
.faq-block {
  margin-top: 1em;
}

.faq-block h3 {
  color: var(--color-accent);
  font-size: 19px;
  margin-top: 1.8em;
}

.faq-block h3:first-child {
  margin-top: 0;
}

/* CTA box */
.cta-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin: 3em 0 1em;
  text-align: center;
}

.cta-box p {
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--color-text);
}

.button {
  display: inline-block;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.button:hover {
  background: var(--color-accent-light);
  color: #000;
  transform: translateY(-1px);
}

.button--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.button--secondary:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent-light);
}

/* --- Strategy page extras ---------------------------------------------- */

.strategy-hero {
  background: var(--color-bg-alt);
  color: #fff;
  padding: 80px 32px 60px;
  border-bottom: 1px solid var(--color-border);
}

.strategy-hero__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.strategy-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 820px;
}

.strategy-hero p {
  font-size: 19px;
  color: rgba(255,255,255,.75);
  max-width: 720px;
}

.strategy-section {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 60px 32px;
  border-bottom: 1px solid var(--color-border);
}

.strategy-section:last-of-type {
  border-bottom: none;
}

.strategy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: .6em;
}

.strategy-section h2 .num {
  color: var(--color-accent);
  margin-right: 14px;
  font-variant-numeric: tabular-nums;
}

.strategy-section h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 2em;
  margin-bottom: .6em;
}

.strategy-section > p,
.strategy-section > ul {
  margin-bottom: 1.2em;
  max-width: 760px;
  color: var(--color-text);
}

.strategy-section ul {
  padding-left: 1.4em;
}

.strategy-section li {
  margin-bottom: .5em;
}

.strategy-section li::marker {
  color: var(--color-accent);
}

.strategy-section strong {
  color: #fff;
}

.strategy-section code {
  background: var(--color-surface-2);
  color: var(--color-accent);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .9em;
  font-family: "SF Mono", Menlo, Consolas, monospace;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.4em 0 2em;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--color-surface);
  color: var(--color-text);
}

th, td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

th {
  background: var(--color-surface-2);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-accent);
}

td strong {
  color: #fff;
}

tr:last-child td {
  border-bottom: none;
}

/* Highlight box */
.highlight {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 32px;
  margin: 2em 0;
}

.highlight__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.highlight p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text);
}

.highlight code {
  background: var(--color-bg);
  color: var(--color-accent);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .9em;
  font-family: "SF Mono", Menlo, Consolas, monospace;
}

/* Quote block — the pitch line */
.quote-block {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border: 1px solid var(--color-border-strong);
  color: #fff;
  padding: 60px 40px;
  border-radius: var(--radius);
  margin: 3em 0 1em;
}

.quote-block p {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0;
  max-width: 800px;
}

.quote-block p + p {
  margin-top: 1.2em;
}

.quote-block strong {
  color: var(--color-accent);
  font-weight: 700;
}

/* --- Slides (strategy page) -------------------------------------------- */

.slide {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.slide--hero {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.slide--alt {
  background: var(--color-bg-alt);
}

.slide--pitch {
  background: radial-gradient(circle at top right, rgba(255, 112, 0, .08), transparent 60%), var(--color-bg-alt);
}

.slide__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  width: 100%;
}

.slide__num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.slide__num::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.slide__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 900px;
}

.slide__title-hero {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 32px;
  max-width: 1000px;
}

.slide__lead {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .85);
  max-width: 780px;
  margin-bottom: 36px;
}

.slide__lead strong {
  color: var(--color-accent);
  font-weight: 700;
}

.slide__bullets {
  list-style: none;
  padding: 0;
  max-width: 780px;
  display: grid;
  gap: 16px;
}

.slide__bullets li {
  padding: 20px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-text);
}

.slide__bullets li strong {
  color: #fff;
}

.slide__kpi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin-top: 32px;
}

.slide__kpi-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.slide__kpi-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.slide__kpi-label {
  font-size: 14px;
  color: var(--color-text-dim);
  line-height: 1.4;
}

.slide__quote {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  max-width: 900px;
  margin-top: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--color-accent);
}

.slide__quote strong {
  color: var(--color-accent);
}

.slide__table-compact {
  max-width: 900px;
  margin-top: 24px;
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.slide__table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1px;
  background: var(--color-border);
}

.slide__table-row > div {
  background: var(--color-surface);
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.5;
}

.slide__table-row--header > div {
  background: var(--color-surface-2);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.slide__table-row strong {
  color: #fff;
}

.slide__counter {
  position: absolute;
  top: 32px;
  right: 40px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-dim);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* --- Deck light theme (strategy page) ---------------------------------- */

.deck-light {
  background: #faf6ef;
  color: #1a1a1a;
}

.deck-light .slide {
  background: #fdfbf6;
  border-bottom-color: rgba(0, 0, 0, .08);
}

.deck-light .slide--hero {
  background: linear-gradient(180deg, #ffffff 0%, #f5eee2 100%);
}

.deck-light .slide--alt {
  background: #f5eee2;
}

.deck-light .slide--pitch {
  background: radial-gradient(circle at top right, rgba(255, 112, 0, .18), transparent 55%), #fdfbf6;
}

.deck-light .slide__title,
.deck-light .slide__title-hero {
  color: #0d0d0d;
}

.deck-light .slide__lead {
  color: #3d3d3d;
}

.deck-light .slide__lead strong {
  color: var(--color-accent);
}

.deck-light .slide__bullets li {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-left: 3px solid var(--color-accent);
  color: #2a2a2a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.deck-light .slide__bullets li strong {
  color: #0d0d0d;
}

.deck-light .slide__kpi-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.deck-light .slide__kpi-label {
  color: #555;
}

.deck-light .slide__quote {
  color: #0d0d0d;
}

.deck-light .slide__quote strong {
  color: var(--color-accent);
}

.deck-light .slide__table-compact {
  background: rgba(0, 0, 0, .08);
  border-color: rgba(0, 0, 0, .08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.deck-light .slide__table-row {
  background: rgba(0, 0, 0, .08);
}

.deck-light .slide__table-row > div {
  background: #ffffff;
  color: #2a2a2a;
}

.deck-light .slide__table-row--header > div {
  background: #f5eee2;
  color: var(--color-accent);
}

.deck-light .slide__table-row strong {
  color: #0d0d0d;
}

.deck-light .slide__counter {
  color: #8a8a8a;
}

.deck-light .slide__num {
  color: var(--color-accent);
}

.deck-light .page-nav {
  background: #f5eee2;
  border-top-color: rgba(0, 0, 0, .08);
}

.deck-light .page-nav__label {
  color: #777;
}

.deck-light .page-nav__link {
  color: #0d0d0d;
}

.deck-light .page-nav__link:hover {
  color: var(--color-accent);
}

.deck-light .sticky-strategy {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.deck-light .sticky-strategy__label {
  color: #777;
}

/* --- Sticky strategy link (always visible) ----------------------------- */

.sticky-strategy {
  position: fixed;
  top: 110px;
  right: 24px;
  z-index: 50;
  max-width: 240px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  animation: stickyIn .4s ease-out .6s both;
}

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

.sticky-strategy__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-text-dim);
  font-weight: 600;
  margin-bottom: 6px;
}

.sticky-strategy a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  line-height: 1.3;
}

.sticky-strategy a:hover {
  color: var(--color-accent-light);
}

.sticky-strategy__arrow {
  font-size: 18px;
  transition: transform .2s ease;
}

.sticky-strategy a:hover .sticky-strategy__arrow {
  transform: translateX(3px);
}

/* --- Page navigation (end of page) ------------------------------------- */

.page-nav {
  background: var(--color-bg-alt);
  padding: 48px 32px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.page-nav__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-text-dim);
  font-weight: 600;
  margin-bottom: 16px;
}

.page-nav__link {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 4px;
  transition: color .15s ease;
}

.page-nav__link:hover {
  color: var(--color-accent);
}

/* --- Footer ------------------------------------------------------------- */

.site-footer {
  background: var(--color-bg);
  color: var(--color-text-dim);
  padding: 48px 32px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid var(--color-border);
}

.site-footer a {
  color: var(--color-accent);
}

.site-footer p + p {
  margin-top: 8px;
}

/* --- Password gate ------------------------------------------------------ */

.gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  color: #fff;
  padding: 32px;
}

.gate__box {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.gate__logo {
  margin-bottom: 32px;
}

.gate h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.gate p {
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}

.gate input {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.gate input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.gate button {
  width: 100%;
}

/* --- Responsive tweaks -------------------------------------------------- */

@media (max-width: 900px) {
  .sticky-strategy {
    top: auto;
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .sticky-strategy__label {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .sticky-strategy a {
    flex: 1;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero,
  .article,
  .strategy-hero,
  .strategy-section,
  .slide {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .callout,
  .cta-box,
  .quote-block,
  .highlight {
    padding: 24px;
  }
  body {
    font-size: 17px;
  }
  .sticky-strategy__label {
    display: none;
  }
  .slide {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .slide__counter {
    top: 20px;
    right: 20px;
  }
  .slide__table-row {
    grid-template-columns: 1fr;
  }
}


/* --------------------------------------------------------------------------
   Préface du billet — répond à « qu'est-ce que je lis ? » avant l'article
   -------------------------------------------------------------------------- */
.preface {
  max-width: var(--max-width);
  margin: 0 auto 44px;
  padding: 26px 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
}
.preface__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.preface p { font-size: 17px; line-height: 1.6; color: var(--color-text-dim); margin: 0 0 12px; }
.preface p:last-of-type { margin-bottom: 0; }
.preface strong { color: var(--color-text); font-weight: 400; }
.preface__more {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-strong);
  padding-bottom: 2px;
}
.preface__more:hover { color: var(--color-accent-light); }

/* Passerelle de fin de billet, plus visible que la nav discrète */
.bridge {
  max-width: var(--max-width);
  margin: 56px auto 0;
  padding: 34px 30px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--color-accent-soft), transparent 70%), var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius);
}
.bridge__label {
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 10px;
}
.bridge h3 { font-family: var(--font-heading); font-weight: 900; font-size: 24px; letter-spacing: -.015em; margin-bottom: 12px; }
.bridge p { color: var(--color-text-dim); font-size: 17px; max-width: 56ch; margin: 0 auto 22px; }
.deck-light .bridge { background: #fdfbf6; border-color: rgba(0,0,0,.12); }
.deck-light .bridge h3 { color: #14110c; }
.deck-light .bridge p { color: #55504a; }

@media (max-width: 620px) {
  .preface, .bridge { padding: 22px 20px; border-radius: 12px; }
  .bridge h3 { font-size: 20px; }
}


/* ==========================================================================
   CHAPITRES — cartons de transition entre les sections de la stratégie
   Bande sombre pleine largeur qui coupe le deck crème : on change de chapitre.
   ========================================================================== */
.chapter {
  min-height: 58vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0c0a07;
  padding: 96px 32px;
  border-bottom: none;
}
.deck-light .chapter { background: #0c0a07; }

.chapter__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-right: 8%;
}
.chapter__num {
  display: inline-block;
  background: var(--color-accent);
  color: #14110c;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .45em 1.1em;
  margin-bottom: 32px;
}
.chapter__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: .95;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 22px;
}
.deck-light .chapter__title { color: #ffffff; }
.chapter__sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .62);
  max-width: 46ch;
  margin: 0;
}
.chapter__bar {
  position: absolute;
  right: 26%;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--color-accent-light);
  z-index: 2;
}
.chapter__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 26%;
  height: 100%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.chapter__ghost {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 1;
  color: rgba(20, 17, 12, .22);
  letter-spacing: -.05em;
  user-select: none;
}

/* Petit effet de style — révélation au scroll, comme la prez hebdo */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.4, 0, .2, 1), transform .55s cubic-bezier(.4, 0, .2, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .10s; }
.reveal--d2 { transition-delay: .20s; }
.chapter__panel { transform: scaleY(0); transform-origin: top; transition: transform .6s cubic-bezier(.4, 0, .2, 1); }
.chapter.is-in .chapter__panel { transform: scaleY(1); }
.chapter__bar { transform: scaleY(0); transform-origin: top; transition: transform .7s cubic-bezier(.4, 0, .2, 1) .12s; }
.chapter.is-in .chapter__bar { transform: scaleY(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .chapter__panel, .chapter__bar { opacity: 1; transform: none; transition: none; }
}

/* --- Relevé de résultats de recherche ---------------------------------- */
.serp { display: flex; flex-direction: column; gap: 9px; margin-top: 8px; }
.serp__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 15px 20px;
  background: rgba(0, 0, 0, .028);
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 10px;
}
.serp__site {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #14110c;
  letter-spacing: -.01em;
}
.serp__what { font-size: 15px; color: #6b655d; text-align: right; }
.serp__row--flag {
  background: var(--color-accent-soft);
  border-color: var(--color-border-strong);
}
.serp__row--flag .serp__what { color: #8a4a05; font-weight: 700; }
.serp__note {
  font-size: 14px;
  color: #7d766c;
  margin-top: 16px;
  font-style: italic;
}

/* --- Trois lectures du même texte -------------------------------------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
.trio__col {
  padding: 24px 22px;
  background: rgba(0, 0, 0, .028);
  border: 1px solid rgba(0, 0, 0, .09);
  border-top: 3px solid var(--color-accent);
  border-radius: 10px;
}
.trio__head {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 19px;
  color: #14110c;
  margin-bottom: 10px;
}
.trio__col p { font-size: 15.5px; line-height: 1.6; color: #55504a; margin: 0 0 10px; }
.trio__col p:last-child { margin-bottom: 0; }
.trio__col strong { color: #14110c; font-weight: 700; }

/* --- Calendrier douze mois --------------------------------------------- */
.cal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 6px; }
.cal__item {
  padding: 13px 15px;
  background: rgba(0, 0, 0, .028);
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 8px;
}
.cal__m {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 5px;
}
.cal__t { font-size: 14.5px; line-height: 1.4; color: #3d3d3d; }
.cal__item--now { background: var(--color-accent-soft); border-color: var(--color-border-strong); }
.cal__item--now .cal__t { color: #14110c; font-weight: 700; }

@media (max-width: 900px) {
  .trio { grid-template-columns: 1fr; }
  .cal { grid-template-columns: repeat(2, 1fr); }
  .chapter__inner { padding-right: 0; }
  .chapter__bar { right: 0; top: auto; bottom: 22%; width: 100%; height: 3px; }
  .chapter__panel { top: auto; bottom: 0; width: 100%; height: 22%; transform-origin: left; }
  .chapter.is-in .chapter__panel { transform: scaleY(1); }
  .serp__row { grid-template-columns: 1fr; gap: 4px; }
  .serp__what { text-align: left; }
}


/* --- Passerelle de fin de billet, version bande pleine largeur ----------
   Reprend le langage visuel des cartons de chapitre de la page stratégie :
   on doit comprendre qu'on quitte l'article et qu'on change de page.        */
.bridge {
  max-width: none;
  margin: 80px 0 0;
  padding: 72px 32px 76px;
  text-align: center;
  background: #0c0a07;
  border: none;
  border-top: 3px solid var(--color-accent);
  border-radius: 0;
  position: relative;
}
.bridge__inner { max-width: 620px; margin: 0 auto; }
.bridge__label {
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 18px;
}
.bridge h3 {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.05;
  letter-spacing: -.025em; color: #ffffff; margin: 0 0 16px;
}
.bridge p {
  color: rgba(255, 255, 255, .6); font-size: 17px; line-height: 1.6;
  max-width: 52ch; margin: 0 auto 28px;
}
.bridge__meta {
  margin-top: 20px; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255, 255, 255, .35);
  font-family: var(--font-heading); font-weight: 700;
}
@media (max-width: 620px) {
  .bridge { padding: 52px 20px 56px; margin-top: 56px; }
}


/* Passerelle — reprend la grammaire exacte des cartons de chapitre :
   bande chaude, filet orange, panneau latéral. On reconnaît la page d'après. */
.bridge {
  background: radial-gradient(circle at 18% 50%, rgba(255,112,0,.10), transparent 60%), #171208;
  border-top: 3px solid var(--color-accent);
  text-align: left;
  padding: 72px 32px 76px;
  overflow: hidden;
}
.bridge__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding-right: 26%;
  position: relative;
  z-index: 2;
}
.bridge p { margin: 0 0 28px; }
.bridge__bar {
  position: absolute; right: 26%; top: 0; width: 3px; height: 100%;
  background: var(--color-accent-light); z-index: 2;
}
.bridge__panel {
  position: absolute; right: 0; top: 0; width: 26%; height: 100%;
  background: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
}
.bridge__panel span {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem); line-height: 1;
  color: rgba(20, 17, 12, .28); user-select: none;
}
@media (max-width: 820px) {
  .bridge__inner { padding-right: 0; }
  .bridge__bar { right: 0; top: auto; bottom: 74px; width: 100%; height: 3px; }
  .bridge__panel { top: auto; bottom: 0; width: 100%; height: 74px; }
  .bridge__panel span { font-size: 2.4rem; }
}


/* ==========================================================================
   CHARTE CLIENT — Jardin Eden
   Relevé sur jardineden.ca le 09/09/2026, thème Astra :
     --ast-global-color-0 #ff7000  (accent, déjà le nôtre)
     --ast-global-color-1 #010101  --ast-global-color-2 #1e293b
     --ast-global-color-3 #334155  --ast-global-color-4 #f9fafb
     --ast-global-color-6 #e2e8f0  --ast-global-color-7 #cbd5e1
   Angles : 3 px sur tout le site. Pas de police maison, pas de motif.
   ========================================================================== */
:root {
  --radius: 3px;
  --radius-pill: 3px;
  --je-slate-900: #0f172a;
  --je-slate-800: #1e293b;
  --je-slate-700: #334155;
  --je-slate-100: #e2e8f0;
  --je-slate-050: #f9fafb;
}

/* Deck : on quitte le crème chaud pour l'ardoise froide du client */
.deck-light { background: var(--je-slate-050); color: var(--je-slate-800); }
.deck-light .slide { background: #ffffff; border-bottom-color: var(--je-slate-100); }
.deck-light .slide--hero { background: linear-gradient(180deg, #ffffff 0%, var(--je-slate-050) 100%); }
.deck-light .slide--alt { background: var(--je-slate-050); }
.deck-light .slide--pitch {
  background: radial-gradient(circle at top right, rgba(255,112,0,.14), transparent 55%), #ffffff;
}
.deck-light .slide__title, .deck-light .slide__title-hero { color: var(--je-slate-900); }
.deck-light .slide__lead { color: var(--je-slate-700); }
.deck-light .slide__bullets li { border-color: var(--je-slate-100); background: var(--je-slate-050); }
.deck-light .slide__kpi-item { border-color: var(--je-slate-100); background: var(--je-slate-050); }
.deck-light .slide__quote { border-left-color: var(--color-accent); }
.deck-light .slide__table-compact { border-color: var(--je-slate-100); }
.deck-light .slide__table-row { border-color: var(--je-slate-100); }

/* Les bandes de chapitre prennent l'ardoise du client, pas un noir générique */
.chapter, .deck-light .chapter { background: var(--je-slate-800); }
.bridge {
  background: radial-gradient(circle at 18% 50%, rgba(255,112,0,.13), transparent 60%), var(--je-slate-800);
}

/* Cartes : fond et filet du client, angles à 3 px */
.serp__row, .trio__col, .cal__item {
  background: var(--je-slate-050);
  border-color: var(--je-slate-100);
  border-radius: 3px;
}
.serp__site, .trio__head { color: var(--je-slate-900); }
.serp__what { color: var(--je-slate-700); }
.trio__col p { color: var(--je-slate-700); }
.trio__col strong { color: var(--je-slate-900); }
.serp__note { color: #64748b; }
.serp__row--flag { background: var(--color-accent-soft); border-color: var(--color-border-strong); }

/* --- Priorités de contenu (remplace le calendrier détaillé) ------------- */
.tier { display: flex; gap: 22px; align-items: flex-start; padding: 22px 0; border-top: 1px solid var(--je-slate-100); }
.tier:first-of-type { border-top: none; padding-top: 6px; }
.tier__rank {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 3px;
  background: var(--color-accent); color: #14110c;
  font-family: var(--font-heading); font-weight: 900; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.tier__eyebrow {
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 6px;
}
.tier__head {
  font-family: var(--font-heading); font-weight: 900; font-size: 21px;
  color: var(--je-slate-900); letter-spacing: -.015em; margin-bottom: 8px;
}
.tier__body p { font-size: 16.5px; line-height: 1.6; color: var(--je-slate-700); margin: 0; }
.tier__body strong { color: var(--je-slate-900); font-weight: 700; }

/* --- Aperçus des pages qui se classent --------------------------------- */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.shots__card {
  border: 1px solid var(--je-slate-100); border-radius: 3px; overflow: hidden;
  background: #ffffff; text-decoration: none; display: block;
  transition: border-color .18s ease, transform .18s ease;
}
.shots__card:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.shots__img { display: block; width: 100%; height: 190px; object-fit: cover; object-position: top center; border-bottom: 1px solid var(--je-slate-100); }
.shots__cap { padding: 13px 15px 15px; }
.shots__who {
  font-family: var(--font-heading); font-weight: 900; font-size: 15px;
  color: var(--je-slate-900); margin-bottom: 4px;
}
.shots__what { font-size: 13.5px; line-height: 1.45; color: var(--je-slate-700); }
.shots__card--flag { border-color: var(--color-border-strong); }
.shots__card--flag .shots__who { color: #b35100; }

@media (max-width: 900px) {
  .shots { grid-template-columns: 1fr; }
  .tier { gap: 14px; }
}

/* Deux aperçus en grand plutôt que trois vignettes illisibles */
.shots { grid-template-columns: repeat(2, 1fr); }
.shots__img { height: auto; }
@media (max-width: 820px) { .shots { grid-template-columns: 1fr; } }
