/* Charte reprise de l'outil de publication (refonte « Aérien » : fond crème,
   cartes blanches très arrondies, ombres douces, pilules, Manrope), aux
   couleurs de Déclic (bleu nuit du D, violet de la mine). Page autonome :
   polices servies en local, aucune requête externe. */
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Variable-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Variable-latin-ext.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --bg: #f7f5f0;
  --card-bg: #ffffff;
  --ink: #172136;
  --ink-soft: #3a4459;
  --muted: #596579;
  --muted-soft: #8e97a8;
  --surface-2: #efedf5;
  --surface-3: #f2f0f9;
  --border: #e4e1ee;
  --border-strong: #c7cde1;

  --brand: #6554e8;
  --brand-dark: #4a3bc4;
  --brand-hover: #5646d6;
  --brand-tint: #f2f0f9;
  --brand-light: #bcb1ff;
  --accent: #087f78;
  --accent-tint: #e2f3f1;
  --pending-bg: #fbf0dc;
  --pending-fg: #a8731f;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(23, 33, 54, 0.04), 0 6px 16px -10px rgba(23, 33, 54, 0.14);
  --shadow-card: 0 1px 3px rgba(23, 33, 54, 0.04), 0 10px 30px -18px rgba(23, 33, 54, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(23, 33, 54, 0.3);
  --shadow-cta: 0 12px 24px -12px rgba(101, 84, 232, 0.75);
  --focus-ring: 0 0 0 3px rgba(101, 84, 232, 0.3);

  --content-width: 1180px;
  --gutter: 40px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-dark); }
h1, h2, h3 { margin: 0; letter-spacing: -0.025em; line-height: 1.1; }
p { margin: 0; }
.wrap { max-width: var(--content-width); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---- Boutons (pilules, comme l'outil) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--radius-pill);
  padding: 12px 20px;
  font: inherit; font-size: 14px; font-weight: 700; line-height: 1.3;
  text-decoration: none; cursor: pointer;
  transition: background 150ms ease, box-shadow 150ms ease, color 150ms ease, transform 150ms ease;
}
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn .icon { width: 16px; height: 16px; stroke-width: 2.2; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--brand-hover); color: #fff; }
.btn-secondary { background: var(--card-bg); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--surface-3); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #24304a; color: #fff; }
.btn-lg { padding: 14px 24px; font-size: 15px; }

/* ---- En-tête clair translucide ---- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 6px 20px -14px rgba(23, 33, 54, 0.2); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-link img { height: 34px; width: auto; }
.main-nav {
  display: flex; gap: 2px; margin: 0 auto;
  background: var(--card-bg); padding: 5px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.main-nav a {
  padding: 8px 16px; border-radius: var(--radius-pill);
  color: var(--ink-soft); font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}
.main-nav a:hover { background: var(--brand-tint); color: var(--brand-dark); }
.header-cta { margin-left: auto; }
.main-nav + .header-cta { margin-left: 0; }

/* ---- Hero ---- */
.hero {
  background:
    radial-gradient(900px 520px at 12% 0%, var(--brand-tint) 0%, rgba(242, 240, 249, 0) 62%),
    radial-gradient(700px 420px at 96% 100%, #ece8f7 0%, rgba(236, 232, 247, 0) 60%);
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 56px; align-items: center;
  padding-top: 72px; padding-bottom: 88px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--brand-dark); background: var(--card-bg);
  padding: 7px 13px; border-radius: var(--radius-pill); box-shadow: 0 1px 3px rgba(23, 33, 54, 0.07);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.hero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; margin: 22px 0 22px; }
.hero h1 .accent { color: var(--brand); }
.hero-sub { font-size: 18px; color: var(--ink-soft); max-width: 50ch; line-height: 1.6; }
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 13px; color: var(--muted); }
.hero-note .icon { width: 16px; height: 16px; color: var(--accent); }

/* Illustration : fiche de pack en cartes inclinées, comme l'accueil de l'outil */
.hero-visual { position: relative; transform: rotate(-2deg); }
.mock-card { background: var(--card-bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 14px; }
.mock-thumb {
  position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(188, 177, 255, 0.55) 0%, rgba(188, 177, 255, 0) 55%),
    linear-gradient(135deg, #1d2944 0%, #172136 45%, #2c2470 100%);
  display: flex; align-items: flex-end; padding: 18px;
}
.mock-hook { color: #fff; font-weight: 800; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.1; letter-spacing: -0.02em; max-width: 14ch; }
.mock-hook span { color: var(--brand-light); }
.mock-play {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255, 255, 255, 0.95);
  display: grid; place-items: center; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.mock-play::before { content: ""; margin-left: 4px; border-left: 16px solid var(--brand); border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
.mock-meta { padding: 14px 4px 4px; }
.mock-show { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-dark); }
.mock-title { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; margin: 6px 0 12px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; background: var(--surface-3); color: var(--ink-soft);
}
.pill-ok { background: var(--accent-tint); color: var(--accent); }
.pill-ok::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill-dark { background: var(--ink); color: #fff; }
.pill-pending { background: var(--pending-bg); color: var(--pending-fg); }
.mock-float {
  position: absolute; background: var(--card-bg); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 14px 16px;
  font-size: 12px; min-width: 0;
}
.mock-float strong { display: block; font-size: 12px; font-weight: 800; margin-bottom: 8px; }
.mock-float-tags { left: -48px; bottom: -104px; width: 230px; transform: rotate(3deg); }
.mock-float-tags .pills .pill { background: var(--brand-tint); color: var(--brand-dark); }
.mock-float-vertical { right: -26px; top: -30px; width: 96px; padding: 8px; transform: rotate(5deg); }
.mock-vertical {
  aspect-ratio: 9 / 16; border-radius: 12px;
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(188, 177, 255, 0.6) 0%, rgba(188, 177, 255, 0) 60%),
    linear-gradient(180deg, #2c2470 0%, #172136 100%);
  display: flex; align-items: flex-end; padding: 8px;
}
.mock-vertical > span { display: block; height: 6px; width: 70%; border-radius: 6px; background: rgba(255, 255, 255, 0.85); box-shadow: 0 -10px 0 rgba(255, 255, 255, 0.5); }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section-head h2, .soon h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; letter-spacing: -0.035em; }
.section-lead { margin-top: 14px; font-size: 17px; color: var(--muted); }
.footnote { margin-top: 28px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.footnote .icon { width: 16px; height: 16px; margin-top: 2px; color: var(--muted-soft); }
.section-white { background: var(--card-bg); }

/* Le déclic / le clic */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.duo-card { border-radius: var(--radius-xl); padding: 36px; background: var(--card-bg); box-shadow: var(--shadow-card); }
.duo-card.dark { background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); }
.duo-word { font-size: 38px; font-weight: 800; letter-spacing: -0.04em; }
.duo-word .syll { color: var(--brand); }
.duo-card.dark .duo-word .syll { color: var(--brand-light); }
.duo-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.duo-list li { display: flex; gap: 12px; align-items: center; font-size: 16px; font-weight: 600; }
.duo-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.duo-card.dark .duo-list li::before { background: var(--brand-light); }
.signature {
  margin-top: 24px; text-align: center; font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
}
.signature span { color: var(--brand); }

/* Constat : cinq tâches */
.tasks { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; counter-reset: task; }
.task { background: var(--card-bg); border-radius: var(--radius-lg); padding: 24px 20px; box-shadow: var(--shadow-card); }
.task-num { font-size: 13px; font-weight: 800; color: var(--brand-light); letter-spacing: 0.04em; }
.task h3 { font-size: 18px; font-weight: 800; margin: 16px 0 8px; }
.task p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.task-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-tint); color: var(--brand-dark); margin-top: 14px; }

/* Déclic prépare / l'équipe décide */
.split {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch;
  background: var(--card-bg); border-radius: var(--radius-xl); box-shadow: var(--shadow-card); overflow: hidden;
}
.split-col { padding: 40px; }
.split-col.brand { background: linear-gradient(160deg, var(--brand) 0%, #4c3dd0 100%); color: #fff; }
.split-col h3 { font-size: 24px; font-weight: 800; display: flex; align-items: center; gap: 12px; }
.split-badge { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.16); }
.split-col:not(.brand) .split-badge { background: var(--brand-tint); color: var(--brand-dark); }
.checks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; font-weight: 600; }
.checks .icon { width: 22px; height: 22px; margin-top: 1px; }
.split-col.brand .checks .icon { color: var(--brand-light); }
.split-col:not(.brand) .checks .icon { color: var(--accent); }
.split-arrow { display: grid; place-items: center; width: 0; position: relative; }
.split-arrow span {
  position: absolute; width: 52px; height: 52px; border-radius: 50%; background: var(--card-bg);
  box-shadow: var(--shadow-card); display: grid; place-items: center; color: var(--brand);
}
.quote-band { margin-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; align-items: center; background: var(--brand-tint); border-radius: var(--radius-lg); padding: 20px 26px; }
.quote-band strong { font-size: 18px; font-weight: 800; }
.quote-band span { color: var(--ink-soft); font-size: 14px; max-width: 60ch; }

/* Le pack */
.pack-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.pack-mock { background: var(--bg); border-radius: var(--radius-xl); padding: 22px; box-shadow: inset 0 0 0 1px var(--border); }
.pack-mock-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.pack-mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.pack-mock-body { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 18px; }
.pack-mock-body .mock-thumb { border-radius: 14px; padding: 12px; }
.pack-mock-body .mock-hook { font-size: 15px; }
.pack-mock-body .mock-play { width: 38px; height: 38px; }
.pack-mock-body .mock-play::before { border-left-width: 11px; border-top-width: 7px; border-bottom-width: 7px; margin-left: 3px; }
.line { display: block; height: 9px; border-radius: 9px; background: var(--surface-2); margin-top: 8px; }
.line.w90 { width: 90%; } .line.w75 { width: 75%; } .line.w60 { width: 60%; } .line.w40 { width: 40%; }
.pack-mock-title { font-size: 15px; font-weight: 800; line-height: 1.25; letter-spacing: -0.015em; margin: 6px 0 10px; }
.pack-mock-foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.pack-mock-foot div { background: var(--card-bg); border-radius: 12px; padding: 12px; box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 700; color: var(--muted); }
.pack-mock-foot b { display: block; font-size: 13px; color: var(--ink); margin-top: 2px; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; background: var(--bg); border-radius: var(--radius-md); }
.feature-list .f-icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--card-bg); color: var(--brand); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.feature-list h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.feature-list p { font-size: 14px; color: var(--muted); margin-top: 3px; }

/* Contexte : la marque / l'émission */
.context { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.context-card { background: var(--card-bg); border-radius: var(--radius-xl); padding: 34px; box-shadow: var(--shadow-card); }
.context-card h3 { font-size: 22px; font-weight: 800; display: flex; gap: 12px; align-items: center; }
.context-card h3 .f-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-tint); color: var(--brand-dark); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip { padding: 9px 15px; border-radius: var(--radius-pill); background: var(--bg); font-size: 14px; font-weight: 600; color: var(--ink-soft); box-shadow: inset 0 0 0 1px var(--border); }
.context-band {
  margin-top: 20px; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 22px 28px;
  display: flex; gap: 16px; align-items: center; font-size: 16px; font-weight: 600;
}
.context-band .icon { color: var(--brand-light); width: 24px; height: 24px; }

/* Parcours */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; position: relative; }
.steps::before {
  content: ""; position: absolute; left: 10%; right: 10%; top: 27px; height: 2px;
  background: linear-gradient(90deg, var(--brand-light), var(--brand));
}
.step { position: relative; text-align: center; padding: 0 6px; }
.step-dot {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--card-bg); color: var(--brand); box-shadow: var(--shadow-card), inset 0 0 0 2px var(--brand-light);
  display: grid; place-items: center; font-weight: 800; font-size: 15px; position: relative;
}
.step:last-child .step-dot { background: var(--brand); color: #fff; box-shadow: var(--shadow-cta); }
.step h3 { font-size: 18px; font-weight: 800; }
.step p { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.5; }

/* Deux formats */
.formats { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.formats-visual { display: flex; gap: 20px; align-items: flex-end; justify-content: center; }
.frame { background: var(--card-bg); border-radius: 20px; padding: 10px; box-shadow: var(--shadow-lg); }
.frame .mock-thumb { border-radius: 12px; }
.frame-h { flex: 1 1 auto; max-width: 380px; }
.frame-v { width: 132px; flex-shrink: 0; }
.frame-v .mock-vertical { padding: 12px; align-items: flex-end; }
.frame-v .mock-vertical p { color: #fff; font-weight: 800; font-size: 13px; line-height: 1.1; }
.frame-v .mock-vertical p span { color: var(--brand-light); }
.frame-label { display: flex; justify-content: space-between; padding: 10px 4px 2px; font-size: 12px; font-weight: 800; }
.frame-label em { font-style: normal; color: var(--muted); font-weight: 600; }
.format-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.format-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.format-points .icon { color: var(--brand); margin-top: 2px; }

/* Rôles */
.roles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.role { background: var(--card-bg); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-card); }
.role-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--brand-light), var(--brand)); }
.role:nth-child(2) .role-avatar { background: linear-gradient(135deg, #5fc2b9, var(--accent)); }
.role:nth-child(3) .role-avatar { background: linear-gradient(135deg, #8b80f0, #3f33a8); }
.role:nth-child(4) .role-avatar { background: var(--ink); }
.role h3 { font-size: 18px; font-weight: 800; margin: 16px 0 6px; }
.role p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.trust div { display: flex; gap: 12px; align-items: center; background: var(--brand-tint); border-radius: var(--radius-md); padding: 16px 18px; font-size: 14px; font-weight: 700; }
.trust .icon { color: var(--brand-dark); }

/* Offre */
.pricing { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.price-card::after {
  content: ""; position: absolute; right: -60px; bottom: -80px; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 84, 232, 0.55) 0%, rgba(101, 84, 232, 0) 70%);
}
.price-tag { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-light); }
.price { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; }
.price b { font-size: 72px; font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.price span { font-size: 16px; color: #c7cde1; font-weight: 600; }
.price-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; position: relative; z-index: 1; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; font-weight: 600; }
.price-list .icon { color: var(--brand-light); margin-top: 2px; }
.price-card .btn { margin-top: 32px; position: relative; z-index: 1; }
.price-side { display: grid; gap: 20px; }
.price-extra { background: var(--card-bg); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-card); }
.price-extra .price b { font-size: 44px; color: var(--brand); }
.price-extra .price span { color: var(--muted); }
.price-extra p { margin-top: 12px; color: var(--muted); font-size: 15px; }
.price-example { background: var(--brand-tint); border-radius: var(--radius-xl); padding: 28px 32px; }
.price-example h3 { font-size: 15px; font-weight: 800; }
.price-example p { margin-top: 8px; color: var(--ink-soft); font-size: 15px; }
.price-example b { color: var(--brand-dark); }

/* Bientôt */
.soon {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center;
  background: linear-gradient(140deg, #ffffff 0%, var(--brand-tint) 100%);
  border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-card);
}
.soon .pill-soon { display: inline-flex; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.soon h2 { margin-top: 16px; }
.soon-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.soon-col { background: var(--card-bg); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.soon-col h3 { font-size: 17px; font-weight: 800; }
.soon-col ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 10px; }
.soon-col li { font-size: 14px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.soon-col li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-light); }

/* Appel final + pied de page */
.final {
  background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(101, 84, 232, 0.5) 0%, rgba(101, 84, 232, 0) 70%);
}
.final > * { position: relative; }
.final img { height: 64px; width: auto; margin: 0 auto 26px; }
.final h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.035em; }
.final p { margin: 14px auto 0; max-width: 54ch; color: #c7cde1; font-size: 17px; }
.final .hero-actions { justify-content: center; }
.final .btn-secondary { background: rgba(255, 255, 255, 0.1); color: #fff; box-shadow: none; }
.final .btn-secondary:hover { background: rgba(255, 255, 255, 0.18); }
.site-footer { padding: 40px 0 48px; color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; justify-content: space-between; }
.footer-inner img { height: 26px; width: auto; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--brand-dark); }

/* Apparition douce au défilement */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .tasks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .roles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  :root { --gutter: 24px; }
  .main-nav { display: none; }
  .main-nav + .header-cta { margin-left: auto; }
  .hero-inner, .pack-grid, .formats, .pricing, .soon { grid-template-columns: minmax(0, 1fr); }
  .hero-inner { padding-top: 48px; padding-bottom: 80px; gap: 64px; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: minmax(0, 1fr); }
  .split-arrow { width: auto; height: 0; }
  .split-arrow span { transform: rotate(90deg); }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .steps::before { left: 27px; right: auto; top: 20px; bottom: 20px; width: 2px; height: auto; background: linear-gradient(180deg, var(--brand-light), var(--brand)); }
  .step { display: grid; grid-template-columns: 56px minmax(0, 1fr); column-gap: 18px; text-align: left; padding: 0; }
  .step-dot { margin: 0; grid-row: span 2; }
  .step h3 { align-self: end; }
  .step p { margin-top: 2px; }
  .soon { padding: 32px; }
  .section { padding: 72px 0; }
}
@media (max-width: 680px) {
  :root { --gutter: 16px; }
  body { font-size: 15px; }
  .header-inner { height: 64px; }
  .brand-link img { height: 28px; }
  .header-cta { padding: 10px 16px; }
  .hero-sub { font-size: 16px; }
  .duo, .context, .trust, .soon-cols { grid-template-columns: minmax(0, 1fr); }
  .tasks, .roles { grid-template-columns: minmax(0, 1fr); }
  .duo-card, .context-card, .split-col, .price-card, .price-extra { padding: 26px; }
  .pack-mock-body { grid-template-columns: minmax(0, 1fr); }
  .pack-mock-foot { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .mock-float-tags { position: relative; left: auto; bottom: auto; margin: -18px 0 0 -6px; width: 220px; }
  .mock-float-vertical { right: -4px; top: -34px; width: 78px; }
  .formats-visual { gap: 12px; }
  .frame-v { width: 96px; }
  .frame-h .mock-play { display: none; }
  .mock-play { top: 34%; width: 44px; height: 44px; }
  .mock-play::before { border-left-width: 13px; border-top-width: 8px; border-bottom-width: 8px; }
  .price b { font-size: 56px; }
  .final { padding: 48px 22px; }
  .soon { padding: 24px; }
  .context-band { padding: 18px 20px; font-size: 15px; }
}

/* Variantes de mise en page (pas d'attribut style : la CSP n'autorise que ce fichier). */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.section-head.compact { margin-bottom: 28px; }
.section-head.flush { margin-bottom: 0; }
.footnote.center { justify-content: center; }
.price-extra .price-tag { color: var(--brand-dark); }
