/* =====================================================
   MYTOP · Sales page · v3 (mai 2026)
   Direction : sobre & premium · type Linear/Stripe/Arc
   Ton : no skip, tutoiement, direct
   ===================================================== */

:root {
  /* Palette (charte v2.0) */
  --navy: #000b22;
  --cream: #eeecea;
  --paper: #f5f3f0;
  --peach: #eca68d;
  --terracotta: #c97860;
  --orange: #dd6a45;

  /* Navy alphas */
  --navy-04: rgba(0, 11, 34, 0.04);
  --navy-06: rgba(0, 11, 34, 0.06);
  --navy-08: rgba(0, 11, 34, 0.08);
  --navy-12: rgba(0, 11, 34, 0.12);
  --navy-24: rgba(0, 11, 34, 0.24);
  --navy-40: rgba(0, 11, 34, 0.40);
  --navy-60: rgba(0, 11, 34, 0.60);
  --navy-72: rgba(0, 11, 34, 0.72);

  /* Cream alphas (sur navy bg) */
  --cream-12: rgba(238, 236, 234, 0.12);
  --cream-16: rgba(238, 236, 234, 0.16);
  --cream-24: rgba(238, 236, 234, 0.24);
  --cream-40: rgba(238, 236, 234, 0.40);
  --cream-60: rgba(238, 236, 234, 0.60);
  --cream-80: rgba(238, 236, 234, 0.80);

  /* Fonts */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px; --s-11: 160px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,11,34,.04);
  --shadow-sm: 0 1px 2px rgba(0,11,34,.04), 0 2px 8px rgba(0,11,34,.04);
  --shadow-md: 0 2px 6px rgba(0,11,34,.06), 0 12px 32px rgba(0,11,34,.08);
  --shadow-lg: 0 8px 24px rgba(0,11,34,.10), 0 32px 64px rgba(0,11,34,.14);
  --shadow-phone: 0 24px 60px rgba(0,11,34,.18), 0 8px 24px rgba(0,11,34,.10);

  --max-w: 1200px;
  --max-w-narrow: 960px;
  --max-w-text: 720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
}
::selection { background: var(--orange); color: var(--cream); }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---------- Typo ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--navy);
  line-height: 1.02;
  text-wrap: balance;
}
h1 {
  font-size: clamp(56px, 9.5vw, 132px);
  letter-spacing: -0.05em;
  font-weight: 600;
  line-height: 0.94;
}
h2 {
  font-size: clamp(40px, 5.6vw, 76px);
  letter-spacing: -0.04em;
  font-weight: 600;
}
h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  font-weight: 600;
}
h4 {
  font-size: 19px;
  letter-spacing: -0.015em;
  font-weight: 600;
}
p {
  color: var(--navy-72);
  font-size: 17px;
  text-wrap: pretty;
}
.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--navy-72);
  text-wrap: pretty;
  max-width: 56ch;
}
strong { color: var(--navy); font-weight: 700; }

.accent { color: var(--orange); font-style: normal; }
.accent-terra { color: var(--terracotta); font-style: normal; }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.wrap-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
section { padding: var(--s-10) 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-60);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-5);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--terracotta);
}
.eyebrow.warm { color: var(--terracotta); }
.eyebrow.warm::before { background: var(--terracotta); }
.eyebrow.orange { color: var(--orange); }
.eyebrow.orange::before { background: var(--orange); }
.eyebrow.cream { color: var(--cream-60); }
.eyebrow.cream::before { background: var(--peach); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-pill);
  padding: 14px 24px;
}
.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-1px);
}
.btn-primary.lg {
  font-size: 16px;
  padding: 18px 32px;
}
.btn-orange {
  background: var(--orange);
  color: var(--cream);
  border-radius: var(--r-pill);
  padding: 14px 24px;
}
.btn-orange:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}
.btn-orange.lg {
  font-size: 16px;
  padding: 18px 32px;
}
.btn-ghost {
  color: var(--navy);
  padding: 14px 8px;
  font-weight: 600;
  position: relative;
}
.btn-ghost::after {
  content: "→";
  display: inline-block;
  transition: transform 0.18s ease;
  margin-left: 4px;
}
.btn-ghost:hover { color: var(--orange); }
.btn-ghost:hover::after { transform: translateX(3px); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream-24);
  border-radius: var(--r-pill);
  padding: 14px 24px;
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

/* ---------- Pill / chip ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--navy-06);
  color: var(--navy-72);
}
.chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.chip-pulse .dot { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 236, 234, 0.78);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--navy-08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: 24px;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  font-variation-settings: "wdth" 95;
}
.wordmark .slash { color: var(--orange); }
.wordmark .dot { color: var(--peach); margin-left: 1px; }
.dot-peach { color: var(--peach); }

/* === Inline brand stamp (used in story prose) === */
.brand-stamp {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--navy);
  font-variation-settings: "wdth" 95;
  font-size: 1.08em;
  white-space: nowrap;
  vertical-align: baseline;
}
.brand-stamp .slash { color: var(--orange); }
.brand-stamp .dot { color: var(--peach); margin-left: 1px; }

.by-tomytop {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin-left: -90px;
  font-family: var(--font-display);
  letter-spacing: -0.05em;
  font-variation-settings: "wdth" 95;
}
.by-tomytop .by-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-56);
  position: relative;
  top: -1px;
}
.by-tomytop .by-mark {
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
}
.by-tomytop .by-my { color: var(--navy); margin-left: 0.28em; }
.by-tomytop .by-top { color: var(--orange); }
.by-tomytop .by-dot { color: var(--peach); margin-left: 1px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-72);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.nav-pricetag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--navy-60);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  padding: var(--s-9) 0 var(--s-10);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: var(--s-6);
}
.hero-eye .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero h1 {
  margin-bottom: var(--s-6);
}
.hero h1 .accent { color: var(--orange); }
.hero h1 em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "wdth" 80;
  color: var(--navy-72);
}
.hero .lead {
  margin-bottom: var(--s-7);
  font-size: clamp(18px, 1.45vw, 20px);
  max-width: 52ch;
}
.hero-h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.hero-line {
  display: block;
  opacity: 0;
  will-change: transform, opacity;
}
.hero-line.line-1 {
  animation: slideInLeft 0.85s cubic-bezier(.2,.65,.2,1) 0.15s forwards;
}
.hero-line.line-2 {
  animation: slideInRight 0.85s cubic-bezier(.2,.65,.2,1) 0.55s forwards;
}
.hero-line.line-3 {
  animation: slideInLeft 0.85s cubic-bezier(.2,.65,.2,1) 0.95s forwards;
}
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}
.hero-phone-wrap {
  opacity: 0;
  animation: heroPhoneIn 1.1s cubic-bezier(.2,.6,.2,1) 1.4s forwards;
}
@keyframes heroPhoneIn {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: none; }
}
.hero .lead, .hero-actions, .hero-stores {
  opacity: 0;
  animation: heroFadeIn 0.7s ease 1.95s forwards;
}
@keyframes heroFadeIn {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-line, .hero-phone-wrap, .hero .lead, .hero-actions, .hero-stores {
    opacity: 1;
    animation: none;
  }
}
.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--s-4);
}
.lead-accent {
  font-weight: 800;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.hero-actions {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-6);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--navy-60);
  letter-spacing: 0.1em;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta span::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--terracotta);
}

/* Hero phone area */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 680px;
}
.hero-phone-wrap .splash-back {
  position: relative;
  z-index: 2;
  transform: translateX(8%) rotate(2deg);
}
.hero-phone-wrap .phone-front {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-95%, -52%) rotate(-7deg);
  z-index: 0;
  opacity: 0.92;
}
.hero-phone-wrap::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: radial-gradient(60% 50% at 60% 40%, var(--peach) 0%, transparent 65%);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

/* =====================================================
   PHONE component (used in hero + previews)
   ===================================================== */
.phone {
  width: 320px;
  height: 660px;
  background: #0a1530;
  border-radius: 44px;
  padding: 8px;
  box-shadow: var(--shadow-phone), 0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
  z-index: 1;
}
.phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 36px;
  padding: 60px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.phone-status {
  position: absolute;
  top: 22px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  z-index: 4;
}
.phone-status .right {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Splash variant : Linktree-style portrait with wordmark overlay */
.phone.splash .phone-screen {
  background: var(--cream);
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}
.splash-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 1;
}
.splash-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(232,228,220,0) 0%, rgba(232,228,220,0.55) 38%, rgba(232,228,220,0.95) 72%, var(--cream) 100%);
  z-index: 2;
  pointer-events: none;
}
.splash-chip {
  position: absolute;
  top: 50px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: none;
  color: var(--navy);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.splash-chip-l { left: 14px; }
.splash-chip-r { right: 14px; }
.splash-wordmark {
  position: absolute;
  left: 0; right: 0;
  bottom: 56px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.05em;
  line-height: 0.95;
  z-index: 3;
  font-variation-settings: "wdth" 95;
}
.splash-wordmark .navy { color: var(--navy); }
.splash-wordmark .orange { color: var(--orange); }
.splash-wordmark .dot { color: var(--peach); margin-left: 2px; }
.splash-noskip {
  position: absolute;
  left: 0; right: 0;
  bottom: 22px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--navy);
  z-index: 3;
}
.splash-noskip span {
  color: #e23030;
  font-size: 18px;
  font-weight: 800;
  vertical-align: -2px;
  margin-left: 4px;
}
/* App screenshot inside phone */
.phone-screen.app-screen {
  padding: 0;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.app-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Tracker phone screen */
.tracker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.tracker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.tracker-header .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: 4px;
}
.tracker-header .title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy);
}
.tracker-header .title small {
  display: block;
  font-size: 13px;
  color: var(--navy-60);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.tracker-header .badge-live {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  background: var(--orange);
  color: var(--cream);
  padding: 4px 8px;
  border-radius: var(--r-pill);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tracker-header .badge-live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cream);
  animation: pulse 1.4s ease-in-out infinite;
}

.tracker-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.tracker-stat {
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: 12px;
  padding: 10px 12px;
}
.tracker-stat .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: 2px;
}
.tracker-stat .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.tracker-stat .value small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--navy-60);
  margin-left: 2px;
}

.exos-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.exo {
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.exo .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-24);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.exo .name {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
  line-height: 1.2;
}
.exo .name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--navy-60);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.exo .reps {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-60);
}
.exo.active {
  border-color: var(--orange);
  background: #fffaf7;
  box-shadow: 0 0 0 3px rgba(221, 106, 69, 0.10);
}
.exo.active .check {
  border-color: var(--orange);
  background: var(--orange);
}
.exo.active .check::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
  animation: pulse 1.4s ease-in-out infinite;
}
.exo.done .check {
  background: var(--navy);
  border-color: var(--navy);
}
.exo.done .check::after {
  content: "✓";
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.exo.done {
  opacity: 0.55;
}
.exo.done .name { text-decoration: line-through; text-decoration-color: var(--navy-24); }

.timer-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.timer-card .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-60);
}
.timer-card .label .next {
  display: block;
  color: var(--cream);
  margin-top: 2px;
  font-weight: 600;
}
.timer-card .countdown {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px;
  color: var(--peach);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* =====================================================
   LOGOSTRIP / TRUST BAR (no testimonials, just facts)
   ===================================================== */
.trust {
  padding: var(--s-7) 0;
  border-top: 1px solid var(--navy-12);
  border-bottom: 1px solid var(--navy-12);
  background: var(--paper);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.trust-num .accent { color: var(--orange); }
.trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-60);
}

/* =====================================================
   SECTION HEAD (shared)
   ===================================================== */
.section-head {
  max-width: 800px;
  margin-bottom: var(--s-9);
}
.section-head h2 .accent { color: var(--orange); }
.section-head .lead { margin-top: var(--s-5); }

/* =====================================================
   PROBLEM
   ===================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}

/* ----- CONSTAT FEATURE (texte gauche / photo droite, grand format) ----- */
.constat-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: var(--s-7);
  align-items: start;
  margin: var(--s-7) 0 var(--s-6);
}
.constat-prose {
  display: flex; flex-direction: column;
  gap: var(--s-5);
  max-width: 600px;
}
.constat-prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2, #4a4540);
  margin: 0;
  text-wrap: pretty;
}
.constat-prose .accent { color: var(--orange); font-weight: 600; }
.constat-prose .constat-pillars {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
  margin-top: 4px;
}
.constat-photo {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1410;
  aspect-ratio: 5 / 6;
  width: 100%;
  max-height: 640px;
  align-self: start;
  box-shadow: 0 30px 60px -25px rgba(20,15,10,.35), 0 12px 24px -12px rgba(20,15,10,.2);
}
.constat-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
  filter: saturate(.95) contrast(1.02);
}
.constat-prose .constat-close {
  margin-top: var(--s-2);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink, #1a1410);
  font-weight: 600;
}
.constat-prose .constat-close .accent { color: var(--orange); font-weight: 700; }

@media (max-width: 900px) {
  .constat-feature {
    grid-template-columns: 1fr;
    gap: var(--s-5);
    display: flex;
    flex-direction: column;
  }
  .constat-photo {
    aspect-ratio: 4 / 5;
    max-height: 560px;
    order: 1;
  }
  .constat-prose {
    order: 2;
  }
}
.problem-card {
  background: var(--paper);
  border: 1px solid var(--navy-08);
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6) var(--s-6);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
@media (hover: hover) {
  .problem-card:hover {
    border-color: var(--navy-24);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}
.problem-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange);
  font-weight: 500;
}
.problem-card h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
}
.problem-card p { font-size: 15px; line-height: 1.55; }
.problem-ico {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: rgba(221, 106, 69, 0.10);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  flex-shrink: 0;
}
.problem-ico svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

/* =====================================================
   METHOD (3 piliers, éditorial premium)
   ===================================================== */
.method-stack {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: var(--s-5);
}
@media (min-width: 768px) {
  .method-stack { grid-template-columns: repeat(3, 1fr); }
}
.pillar {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  padding: 0;
}
.pillar.p1 { background: var(--paper); border: 1px solid var(--navy-08); }
.pillar.p2 { background: var(--paper); border: 1px solid var(--navy-08); }
.pillar.p3 { background: var(--paper); border: 1px solid var(--navy-08); color: var(--navy); }
.pillar .photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
}
.pillar .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.pillar.p1 .photo img { object-position: 50% 35%; }
.pillar.p2 .photo img { object-position: 50% 50%; }
.pillar.p3 .photo img { object-position: 50% 50%; }
.pillar:hover .photo img { transform: scale(1.04); }
.pillar .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238,236,234,0) 55%, rgba(238,236,234,.85) 88%, var(--paper) 100%);
  pointer-events: none;
}
.pillar-inner {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: var(--s-5) var(--s-5) var(--s-6);
  align-items: start;
  text-align: left;
}
.pillar .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: start;
  padding-top: 4px;
  opacity: 0.85;
}
.pillar.p1 .num { color: var(--orange); }
.pillar.p2 .num { color: var(--orange); }
.pillar.p3 .num { color: var(--orange); }
.pillar-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--orange);
  color: var(--cream);
  margin-bottom: var(--s-3);
}
.pillar-ico svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar-body h3 {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.025em;
  margin-bottom: var(--s-3);
  line-height: 1.1;
}
.pillar.p3 h3 { color: var(--navy); }
.pillar-body p {
  font-size: 15px;
  line-height: 1.55;
  max-width: none;
}
.pillar.p3 p { color: var(--navy-72); }

.pillar-art {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-art .art {
  width: 100%;
  max-width: 320px;
}
.pillar-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: 0 16px 36px rgba(0,11,34,0.10), 0 2px 8px rgba(0,11,34,0.06);
}

/* Pillar art: programme grid */
.art-program {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
}
.art-program .day {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--cream-12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 5px;
  font-weight: 600;
  color: var(--cream-60);
  letter-spacing: 0.1em;
}
.art-program .day.on {
  background: var(--orange);
  color: var(--cream);
}
.art-program .day.on small {
  color: var(--cream);
  font-weight: 700;
}
.art-program .day small {
  font-size: 7px;
  opacity: 0.7;
}
.pillar.p2 .art-program .day { background: rgba(0,11,34,0.06); color: var(--navy-60); }
.pillar.p2 .art-program .day.on { background: var(--navy); color: var(--cream); }
.pillar.p1 .art-program .day { background: rgba(0,11,34,0.06); color: var(--navy-60); }
.pillar.p1 .art-program .day.on { background: var(--orange); color: var(--cream); }

.phone-pillar {
  width: 260px;
  height: 540px;
  margin: 0 auto;
}
.phone-pillar .phone-screen {
  background: var(--paper);
}
.pillar-list {
  list-style: none;
  margin: 0 0 var(--s-3);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 42ch;
}
.pillar-list li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2, #4a4540);
  padding-left: 18px;
  position: relative;
}
.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.pillar.p3 .pillar-list li { color: var(--navy-72); }
.pillar.p3 .pillar-list li::before { background: var(--terracotta); }

/* Pillar art: macros bars */
.art-macros {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-mono);
}
.art-macros .row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.art-macros .row-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--navy);
}
.art-macros .row-head .v { color: var(--navy-60); }
.art-macros .bar {
  height: 8px;
  background: rgba(0,11,34,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.art-macros .bar-fill {
  height: 100%;
  border-radius: 4px;
}
.art-macros .bar-fill.p { background: var(--navy); }
.art-macros .bar-fill.c { background: var(--terracotta); }
.art-macros .bar-fill.f { background: var(--peach); }

/* Pillar art: progression chart */
.art-chart {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--cream-16);
  border-radius: var(--r-md);
  padding: var(--s-4);
  font-family: var(--font-mono);
}
.art-chart .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--s-3);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--cream-60);
  text-transform: uppercase;
}
.art-chart .head .v {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  text-transform: none;
}
.art-chart .head .v small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--peach);
  margin-left: 4px;
  font-weight: 500;
}
.art-chart svg { width: 100%; height: auto; }

/* =====================================================
   FEATURES : éditorial avec sections numérotées
   ===================================================== */
.features-categories {
  display: flex;
  flex-direction: column;
  gap: var(--s-9);
}
.feat-category {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s-7);
  align-items: start;
}
.feat-category-head {
  position: sticky;
  top: 88px;
}
.feat-category-head .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: var(--s-3);
}
.feat-category-head h3 {
  font-size: 32px;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-4);
}
.feat-category-head p {
  font-size: 15px;
  color: var(--navy-60);
  line-height: 1.5;
  max-width: 30ch;
}
.feat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--navy-08);
  border: 1px solid var(--navy-08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feat {
  background: #fff;
  padding: var(--s-5) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.18s ease;
  min-height: 130px;
}
.feat:hover { background: var(--paper); }
.feat .feat-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--navy-40);
  font-weight: 500;
}
.feat-ico {
  display: block;
  color: var(--orange);
}
.feat-ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}
.feat h4 {
  font-size: 17px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--navy);
}
.feat p {
  font-size: 13.5px;
  color: var(--navy-60);
  line-height: 1.45;
}
/* =====================================================
   PREVIEW interactive (4 screens cliquables)
   ===================================================== */
.preview {
  background: var(--navy);
  color: var(--cream);
  padding: var(--s-10) 0;
  position: relative;
  overflow: hidden;
}
.preview::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 60%);
  opacity: 0.18;
  pointer-events: none;
}
.preview h2 { color: var(--cream); }
.preview .lead { color: var(--cream-60); }
.preview .eyebrow { color: var(--peach); }
.preview .eyebrow::before { background: var(--peach); }

.preview-stage {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s-7);
  margin-top: var(--s-7);
  align-items: start;
}
.preview-tabs {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.preview-tab {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  background: var(--cream-12);
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  transition: all 0.18s ease;
  font-family: inherit;
}
.preview-tab:hover { background: var(--cream-16); }
.preview-tab .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--peach);
  font-weight: 500;
}
.preview-tab .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.preview-tab .desc {
  font-size: 12px;
  color: var(--cream-60);
  line-height: 1.4;
  margin-top: 2px;
}
.preview-tab.active {
  background: var(--cream);
  color: var(--navy);
}
.preview-tab.active .num { color: var(--terracotta); }
.preview-tab.active .desc { color: var(--navy-60); }

.preview-stage-screen {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cream-16);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.preview-screen-inner {
  display: none;
  width: 100%;
}
.preview-screen-inner.active {
  display: block;
  animation: previewIn 0.4s ease both;
}
@keyframes previewIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* App screen mockups (rendered as HTML/CSS, not phones) */
.app-screen {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  box-shadow: var(--shadow-md);
  max-width: 540px;
  margin: 0 auto;
}
.app-screen-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.app-screen-head .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: 4px;
}
.app-screen-head .title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.app-screen-head .title small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-60);
  margin-top: 4px;
}

/* Screen: Programme */
.screen-program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.day-card {
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.day-card .day-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--navy-60);
  text-transform: uppercase;
}
.day-card .day-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.day-card .day-detail {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--navy-40);
  margin-top: 2px;
}
.day-card.today {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.day-card.today .day-label { color: var(--peach); }
.day-card.today .day-detail { color: var(--cream-60); }
.day-card.rest {
  background: var(--navy-04);
  color: var(--navy-40);
  border: 1px dashed var(--navy-24);
}

/* Screen: Recap */
.screen-recap {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.recap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.recap-stat {
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: var(--r-md);
  padding: var(--s-4);
}
.recap-stat .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: 6px;
}
.recap-stat .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.recap-stat .delta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.recap-stat .delta.up { color: var(--orange); }
.recap-stat .delta.flat { color: var(--navy-40); }
.recap-stat .delta::before { content: "↗"; }
.recap-stat .delta.flat::before { content: "—"; }

.muscle-progress {
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
}
.muscle-progress .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--s-3);
}
.muscle-progress .head .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-60);
}
.muscle-row {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  gap: var(--s-3);
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
}
.muscle-row + .muscle-row { border-top: 1px solid var(--navy-08); }
.muscle-row .bar {
  height: 6px;
  background: var(--navy-08);
  border-radius: 3px;
  overflow: hidden;
}
.muscle-row .bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
}
.muscle-row .v {
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: right;
  color: var(--navy-60);
}

/* Screen: Nutrition */
.screen-nutrition {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.kcal-ring {
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s-5);
  align-items: center;
}
.kcal-ring svg { width: 120px; height: 120px; }
.kcal-ring .info .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-60);
}
.kcal-ring .info .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 4px 0;
}
.kcal-ring .info .value small {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy-60);
  margin-left: 4px;
  font-weight: 500;
}
.kcal-ring .info .sub {
  font-size: 13px;
  color: var(--navy-60);
}

.macros-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.macro-card {
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: var(--r-md);
  padding: var(--s-4);
}
.macro-card .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: 4px;
}
.macro-card .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.macro-card .value small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--navy-40);
  font-weight: 500;
  margin-left: 2px;
}
.macro-card .bar {
  height: 4px;
  background: var(--navy-08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.macro-card .bar-fill {
  height: 100%;
  border-radius: 2px;
}
.macro-card .bar-fill.p { background: var(--navy); }
.macro-card .bar-fill.c { background: var(--terracotta); }
.macro-card .bar-fill.f { background: var(--peach); }

/* Screen: Anatomie */
.screen-anatomy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: start;
}
.anatomy-svg {
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex;
  justify-content: center;
}
.anatomy-svg svg { max-height: 320px; }
.anatomy-legend {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.anatomy-legend .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: var(--s-2);
}
.legend-row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3);
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
}
.legend-row .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-row .dot.high { background: var(--orange); }
.legend-row .dot.mid { background: var(--peach); }
.legend-row .dot.low { background: var(--navy-24); }
.legend-row .v {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--navy-60);
}

/* =====================================================
   STORY (Deyron)
   ===================================================== */
.story {
  background: var(--paper);
  border-top: 1px solid var(--navy-08);
  border-bottom: 1px solid var(--navy-08);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.story-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--terracotta), var(--peach));
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--s-6);
}
.story-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 30% 20%, rgba(255,255,255,0.25) 0%, transparent 50%),
    radial-gradient(40% 30% at 80% 80%, rgba(0,11,34,0.25) 0%, transparent 50%);
}
.story-portrait .name {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  width: 100%;
  text-align: center;
}
.story-portrait .name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: var(--s-2);
  text-transform: uppercase;
  color: var(--navy-72);
}
.story-text p { font-size: 16px; margin-bottom: var(--s-4); }
.story-text p:last-child { margin-bottom: 0; }
.story-text p strong { color: var(--navy); }
.story-pullquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
  padding: var(--s-5) 0 var(--s-5) var(--s-5);
  border-left: 2px solid var(--orange);
  margin: var(--s-5) 0;
}
.story-transformation {
  position: relative;
  margin: var(--s-5) 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.story-transformation img {
  display: block;
  width: 100%;
  height: auto;
}
.story-transformation::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    var(--paper) 0%, rgba(245,243,240,0) 14%,
    rgba(245,243,240,0) 86%, var(--paper) 100%);
}
.story-noskip {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: var(--s-3);
}
.story-noskip .ns-x { font-weight: 700; }

/* =====================================================
   EN RÉSUMÉ
   ===================================================== */
.recap-list {
  list-style: none;
  padding: 0;
  margin: var(--s-7) auto 0;
  max-width: 720px;
  display: grid;
  gap: var(--s-3);
}
.recap-list li {
  position: relative;
  padding: var(--s-5) var(--s-6);
  padding-left: calc(var(--s-6) + 24px);
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: var(--r-lg);
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy-72);
}
.recap-list li::before {
  content: "✓";
  position: absolute;
  left: var(--s-6);
  top: var(--s-5);
  color: var(--orange);
  font-weight: 700;
}
.recap-list li strong { color: var(--navy); }

/* =====================================================
   OFFER (3 plans + toggle)
   ===================================================== */
.offer {
  background: var(--navy);
  color: var(--cream);
  padding: var(--s-10) 0;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 60%);
  opacity: 0.22;
  pointer-events: none;
}
.offer h2 { color: var(--cream); }
.offer .lead { color: var(--cream-60); max-width: 600px; }
.offer .eyebrow { color: var(--peach); }
.offer .eyebrow::before { background: var(--peach); }

.billing-toggle {
  display: inline-flex;
  background: var(--cream-12);
  border: 1px solid var(--cream-16);
  border-radius: var(--r-pill);
  padding: 4px;
  margin-top: var(--s-5);
  position: relative;
}
.billing-toggle button {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--cream-60);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}
.billing-toggle button.active {
  color: var(--navy);
}
.billing-toggle button .save {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  background: var(--orange);
  color: var(--cream);
  padding: 2px 6px;
  border-radius: var(--r-pill);
  margin-left: 6px;
  letter-spacing: 0.06em;
}
.billing-toggle button.active .save {
  background: var(--orange);
}
.billing-toggle .toggle-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  background: var(--cream);
  border-radius: var(--r-pill);
  transition: left 0.32s cubic-bezier(.4,0,.2,1), width 0.32s cubic-bezier(.4,0,.2,1);
  z-index: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-7);
  position: relative;
}
.plan {
  background: var(--cream-12);
  border: 1px solid var(--cream-16);
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.plan-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach);
  font-weight: 500;
  margin-bottom: var(--s-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan-name .badge-pop {
  background: var(--orange);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  font-weight: 700;
}
.plan-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.05em;
  color: var(--cream);
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.plan-price .unit {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  color: var(--cream-60);
  letter-spacing: 0.08em;
  margin-left: 6px;
}
.plan-billed {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cream-60);
  margin-top: var(--s-3);
  min-height: 28px;
}
.plan-save-line {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--peach);
  margin-top: 4px;
  font-weight: 600;
  min-height: 18px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0;
  flex: 1;
}
.plan ul li {
  font-size: 14px;
  color: var(--cream-80);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--cream-12);
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  line-height: 1.45;
}
.plan ul li:first-child { border-top: none; }
.plan ul li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan .btn { width: 100%; }

.plan.pop {
  background: var(--cream);
  color: var(--navy);
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0,0,0,.30);
}
.plan.pop .plan-name { color: var(--terracotta); }
.plan.pop .plan-price { color: var(--navy); }
.plan.pop .plan-price .unit { color: var(--navy-60); }
.plan.pop .plan-billed { color: var(--navy-60); }
.plan.pop .plan-save-line { color: var(--orange); }
.plan.pop ul li { color: var(--navy-72); border-color: var(--navy-08); }
.plan.pop ul li::before { color: var(--orange); }

.offer-perks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-6);
  margin-top: var(--s-7);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cream-60);
}
.offer-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.offer-perks span::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s-7);
  align-items: start;
}
.faq-list {
  border-top: 1px solid var(--navy-12);
}
.faq-item {
  border-bottom: 1px solid var(--navy-12);
  padding: var(--s-5) 0;
  cursor: pointer;
}
.faq-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.025em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  color: var(--navy);
  text-wrap: balance;
}
.faq-q::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 300;
  color: var(--navy-40);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, margin-top 0.2s ease;
  font-size: 16px;
  color: var(--navy-72);
  line-height: 1.55;
  max-width: 60ch;
}
.faq-item.open .faq-a {
  max-height: 480px;
  margin-top: var(--s-3);
}

/* =====================================================
   FINAL CTA (binaire)
   ===================================================== */
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
.final-col {
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
}
.final-col.a {
  background: transparent;
  border: 1px dashed var(--navy-24);
}
.final-col.b {
  background: var(--navy);
  color: var(--cream);
}
.final-col.b h3 { color: var(--cream); }
.final-col.b p { color: var(--cream-60); }
.final-col.b .eyebrow { color: var(--peach); }
.final-col.b .eyebrow::before { background: var(--peach); }
.final-col h3 {
  margin: var(--s-2) 0 var(--s-4);
  font-size: 30px;
  letter-spacing: -0.035em;
}
.final-col p {
  margin-bottom: var(--s-6);
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
}
.final-col .price-line {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--peach);
  margin-bottom: var(--s-3);
  text-transform: uppercase;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  border-top: 1px solid var(--navy-12);
  padding: var(--s-7) 0 var(--s-6);
  font-size: 13px;
  color: var(--navy-60);
  background: var(--paper);
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  justify-content: space-between;
  align-items: flex-start;
}
.foot-brand { max-width: 280px; }
.foot-brand .wordmark { font-size: 20px; }
.foot-brand .tag {
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--terracotta);
  text-transform: uppercase;
}
.foot-brand .copy {
  margin-top: var(--s-3);
  font-size: 12px;
  color: var(--navy-60);
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--s-7);
}
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.foot-col a {
  display: block;
  padding: 4px 0;
  color: var(--navy-72);
  font-size: 14px;
  transition: color 0.15s;
}
.foot-col a:hover { color: var(--orange); }

/* Footer · réseaux sociaux */
.foot-social {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-4);
}
.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-06);
  color: var(--navy-72);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.foot-social a:hover {
  background: var(--orange);
  color: var(--cream);
  transform: translateY(-1px);
}
.foot-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer · badges stores (App Store / Google Play) */
.foot-stores {
  margin-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 11px;
  background: var(--navy);
  color: var(--cream);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.store-badge:hover { opacity: 0.88; transform: translateY(-1px); }
.store-badge-logo {
  width: 21px;
  height: 21px;
  fill: var(--cream);
  flex-shrink: 0;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.store-badge-sup {
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-60);
}
.store-badge-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.store-badge.coming-soon {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}
.store-badge.coming-soon:hover {
  opacity: 0.5;
  transform: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
  .feat-category { grid-template-columns: 1fr; gap: var(--s-5); }
  .feat-category-head { position: static; }
  /* en pleine largeur, la description ne doit plus être bridée à 30ch */
  .feat-category-head p { max-width: none; }

  .preview-stage { grid-template-columns: 1fr; }
  .preview-tabs { flex-direction: row; overflow-x: auto; }
  .preview-tab { min-width: 220px; }
}
@media (max-width: 880px) {
  section { padding: var(--s-9) 0; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero-phone-wrap { min-height: 580px; }
  .problem-grid, .plans-grid { grid-template-columns: 1fr; }
  .story-grid, .final-grid { grid-template-columns: 1fr; }
  .feat-list { grid-template-columns: 1fr; }
  .plan.pop { transform: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .screen-anatomy { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .nav-links { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
.nav-cta .cta-short { display: none; }
@media (max-width: 580px) {
  h1 { font-size: clamp(54px, 16vw, 84px); }
  .nav-pricetag { display: none; }
  .by-tomytop { display: none; }
  .wordmark { font-size: 20px; }
  .nav-inner { padding: 10px 0; }
  .nav .wrap { padding: 0 24px; }
  .nav-cta .cta-long { display: none; }
  .nav-cta .cta-short { display: inline; }
  .nav-cta .btn { font-size: 9px; padding: 5px 10px; font-weight: 700; letter-spacing: 0.02em; }
  .wordmark { font-size: 17px; }
  .pillar-inner { grid-template-columns: 34px 1fr; gap: 14px; padding: var(--s-4) var(--s-4) var(--s-5); }
  .pillar-body h3 { font-size: 24px; }
  .pillar-body p, .pillar-list li { font-size: 15px; }
  .pillar-art { display: flex; margin-top: var(--s-4); justify-content: center; }
  .pillar-art .phone { width: 220px; height: 460px; }
  .pillar-art .art { max-width: 280px; width: 100%; }
  .pillar-img { max-width: 280px; }
  .phone { width: 240px; height: 500px; }
  .recap-grid, .macros-row { grid-template-columns: 1fr 1fr; }
  /* Reorder hero on mobile: h1 → phone → lead → actions */
  .hero-grid { display: flex; flex-direction: column; }
  .hero-copy { display: contents; }
  .hero-copy h1 { order: 1; }
  .hero-phone-wrap { order: 2; }
  .hero-copy .lead { order: 3; }
  .hero-copy .hero-actions { order: 4; }
  .hero-copy .hero-stores { order: 5; }
  .hero-copy .hero-eye { order: 0; }
  .hero-phone-wrap { min-height: 540px; }
  .hero-phone-wrap .phone-front { display: none; }
  .hero-phone-wrap .splash-back { transform: none; }
  .hero-phone-wrap::before { inset: 0 -10%; opacity: 0.35; }
  /* Hero CTA */
  .btn-orange.lg, .btn-primary.lg { font-size: 15px; padding: 14px 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero { padding: var(--s-7) 0 var(--s-8); }
  .hero-grid { gap: var(--s-5); }
  .lead { font-size: 17px; }
}

/* =====================================================
   REVEAL ON SCROLL : fondu + slide + zoom (piloté par app.js)
   Les classes .rv sont posées par JS : si JS ne tourne pas
   ou si l'utilisateur a réduit les animations, rien n'est masqué.
   ===================================================== */
.rv { opacity: 0; }
.rv-up { transform: translateY(26px); }
.rv-scale { transform: scale(0.94); }
.rv.rv-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(.2,.65,.2,1),
              transform 0.7s cubic-bezier(.2,.65,.2,1);
}
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1 !important; transform: none !important; }
}

/* =====================================================
   FEATURE PREVIEW button + modal
   ===================================================== */
.feat-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--s-3);
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--navy-12);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.feat-preview-btn .arr {
  display: inline-block;
  transition: transform 0.18s ease;
}
.feat-preview-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.feat-preview-btn:hover .arr { transform: translateX(3px); }

.feat-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 15, 10, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.feat-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.feat-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  z-index: 2;
}
.feat-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}
.feat-modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  max-width: 100%;
  max-height: 100%;
  color: var(--cream);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.2,.7,.2,1), opacity 0.32s ease;
}
.feat-modal.open .feat-modal-inner {
  transform: translateY(0);
  opacity: 1;
}
.feat-modal-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feat-modal-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach);
}
.feat-modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0;
}
.feat-modal-stage {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.feat-modal-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
  flex-shrink: 0;
}
.feat-modal-nav:hover { background: rgba(255, 255, 255, 0.18); }
.feat-modal-phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.feat-modal-phone::before {
  content: "";
  position: absolute;
  inset: -8% -12%;
  background: radial-gradient(60% 50% at 50% 50%, rgba(221, 106, 69, 0.28) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.phone-modal {
  width: 280px;
  height: 580px;
}
.feat-modal-img {
  position: relative;
  z-index: 1;
  max-width: 340px;
  max-height: 70vh;
  width: auto;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 12px 30px rgba(0, 0, 0, 0.2);
  display: block;
}
.feat-modal-dots {
  display: flex;
  gap: 8px;
  min-height: 12px;
}
.feat-modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s ease;
}
.feat-modal-dot:hover { background: rgba(255, 255, 255, 0.5); }
.feat-modal-dot.active { background: var(--orange); }

@media (max-width: 640px) {
  .feat-modal-stage { gap: 6px; }
  .feat-modal-nav { width: 36px; height: 36px; font-size: 18px; }
  .feat-modal-img { max-width: 240px; max-height: 60vh; border-radius: 22px; }
  .feat-modal-title { font-size: 22px; }
  .feat-modal-close { top: 14px; right: 14px; }
}

/* =====================================================
   STORY : portrait photo (remplace le bloc dégradé vide)
   ===================================================== */
.story-portrait .story-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  z-index: 0;
}
.story-portrait::before { z-index: 1; opacity: 0.5; }
.story-portrait::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(180deg, rgba(238,236,234,0) 0%, rgba(238,236,234,0.78) 55%, rgba(238,236,234,0.97) 100%);
  z-index: 2;
  pointer-events: none;
}
.story-portrait .name { z-index: 3; }

/* =====================================================
   MOBILE : optimisation vue mobile MyTop (≤600px)
   ===================================================== */
@media (max-width: 600px) {

  /* Largeur de contenu + ancrages sous la nav sticky */
  .wrap { padding: 0 20px; }
  #method, #features, #offer, #faq { scroll-margin-top: 64px; }

  /* Respirations : sections moins hautes, vides réduits */
  section { padding: var(--s-7) 0; }
  .hero { padding: var(--s-6) 0 var(--s-7); }
  .trust { padding: var(--s-6) 0; }
  .offer { padding: var(--s-7) 0; }
  .section-head { margin-bottom: var(--s-6); }
  .section-head .lead { margin-top: var(--s-4); }

  /* Typo titres + lead */
  h2 { font-size: clamp(28px, 8.2vw, 38px); }
  #faq h2 { font-size: clamp(28px, 8.2vw, 38px) !important; }
  .lead { font-size: 16.5px; line-height: 1.55; }

  /* NAV : fond opaque (fini le texte qui transparaît dessous) */
  .nav { background: rgba(245, 243, 240, 0.98); }
  .nav-inner { padding: 11px 0; }
  .wordmark { font-size: 19px; }
  .nav-cta .btn {
    font-size: 10.5px;
    padding: 5px 13px;
    letter-spacing: 0;
    font-weight: 600;
  }
  /* Liens de section visibles sur mobile : 2e ligne sous le wordmark */
  .nav-inner { flex-wrap: wrap; row-gap: 9px; }
  .nav-links {
    display: flex;
    order: 1;
    width: 100%;
    justify-content: space-between;
    gap: var(--s-3);
    padding-top: 9px;
    border-top: 1px solid var(--navy-08);
  }
  .nav-links a { font-size: 13px; }

  /* HERO : rythme resserré, plus de grands vides */
  .hero-grid { gap: var(--s-5); }
  .hero-copy h1 { margin-bottom: 0; }
  .hero .lead { margin-bottom: 0; }
  .hero-actions { margin-bottom: 0; gap: 10px; }
  .hero-phone-wrap { min-height: 0; margin: var(--s-3) 0; }

  /* TRUST BAR */
  .trust-grid { gap: var(--s-5) var(--s-4); }
  .trust-num { font-size: 38px; }

  /* PROBLÈME */
  .constat-feature { margin: var(--s-5) 0; gap: var(--s-5); }
  .constat-prose { gap: var(--s-4); }
  .constat-prose p, .constat-prose .constat-close { font-size: 16px; }
  .problem-grid { gap: var(--s-3); }
  .problem-card { padding: var(--s-5); }
  .problem-card h3 { font-size: 22px; }

  /* MÉTHODE */
  .method-stack { gap: var(--s-3); }
  .pillar-body h3 { font-size: 25px; }

  /* FEATURES */
  .features-categories { gap: var(--s-7); }
  .feat-category { gap: var(--s-4); }
  .feat-category-head h3 { font-size: 27px; }
  .feat { padding: var(--s-4) var(--s-5); min-height: 0; }

  /* STORY */
  .story-grid { gap: var(--s-5); }
  .story-pullquote {
    font-size: 21px;
    padding: var(--s-4) 0 var(--s-4) var(--s-4);
    margin: var(--s-4) 0;
  }

  /* EN RÉSUMÉ */
  .recap-list { margin-top: var(--s-6); }
  .recap-list li {
    padding: var(--s-4) var(--s-5);
    padding-left: calc(var(--s-5) + 22px);
    font-size: 15px;
  }
  .recap-list li::before { left: var(--s-5); top: var(--s-4); }

  /* OFFRE : section + toggle de facturation (fini le débordement) */
  .billing-toggle {
    display: flex;
    width: 100%;
    margin-top: var(--s-5);
  }
  .billing-toggle button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 4px;
    font-size: 11.5px;
    white-space: nowrap;
  }
  .billing-toggle button .save {
    font-size: 8.5px;
    padding: 2px 4px;
    margin-left: 4px;
  }
  .plans-grid { gap: var(--s-4); margin-top: var(--s-6); }
  /* une seule carte de plan visible à la fois, pilotée par le toggle */
  .plan { padding: var(--s-6) var(--s-5); display: none; }
  .plan.plan-active { display: flex; }
  .plan ul { margin: var(--s-5) 0; }
  /* les 3 cartes gardent le style navy de base, pas le traitement crème ".pop" */
  .plan.pop {
    background: var(--cream-12);
    color: var(--cream);
    border-color: var(--cream-16);
    transform: none;
    box-shadow: none;
  }
  .plan.pop .plan-name { color: var(--peach); }
  .plan.pop .plan-price { color: var(--cream); }
  .plan.pop .plan-price .unit { color: var(--cream-60); }
  .plan.pop .plan-billed { color: var(--cream-60); }
  .plan.pop .plan-save-line { color: var(--peach); }
  .plan.pop ul li { color: var(--cream-80); border-color: var(--cream-12); }
  .plan-price { font-size: 52px; }
  .offer-perks { gap: var(--s-3) var(--s-5); margin-top: var(--s-6); }

  /* FAQ */
  .faq-item { padding: var(--s-4) 0; }
  .faq-q { font-size: 17px; gap: var(--s-3); }
  .faq-a { font-size: 15px; }

  /* CTA FINAL */
  .final-grid { gap: var(--s-4); margin-top: var(--s-5); }
  .final-col { padding: var(--s-6) var(--s-5); }
  .final-col h3 { font-size: 26px; }

  /* FOOTER */
  footer { padding: var(--s-6) 0 var(--s-5); }
  .foot-cols { gap: var(--s-4) var(--s-5); }
  .foot-brand { max-width: none; width: 100%; }
  .foot-stores { gap: 8px; }
  .store-badge { flex: 1 1 150px; }
}
