/* ============================================================
   WIJHA — Editorial Futurism
   warm cream paper · warm ink · one electric cobalt pop
   ============================================================ */

:root {
  /* surfaces */
  --paper:      oklch(0.968 0.013 78);   /* warm cream */
  --paper-2:    oklch(0.945 0.016 78);   /* deeper cream */
  --card:       oklch(0.992 0.006 84);   /* near white warm */
  --ink:        oklch(0.205 0.014 64);   /* warm near-black */
  --ink-2:      oklch(0.44 0.012 64);    /* muted */
  --ink-3:      oklch(0.60 0.010 64);    /* faint */
  --line:       color-mix(in oklab, var(--ink) 12%, transparent);
  --line-2:     color-mix(in oklab, var(--ink) 7%, transparent);

  /* the one pop — electric cobalt (tweakable) */
  --pop:        oklch(0.55 0.225 264);
  --pop-deep:   oklch(0.46 0.22 266);
  --pop-soft:   color-mix(in oklab, var(--pop) 12%, var(--paper));
  --pop-ink:    oklch(0.985 0.01 264);   /* text on pop */
  --warm:       oklch(0.86 0.075 58);    /* peach glow */
  --save:       oklch(0.58 0.21 16);     /* rouge "économie" (= point live) */

  --serif: "Sora", system-ui, -apple-system, sans-serif;   /* display / headings */
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 22px;
  --radius-lg: 30px;

  --shadow-sm: 0 1px 2px rgba(23,20,15,.05), 0 4px 14px -8px rgba(23,20,15,.12);
  --shadow:    0 2px 6px rgba(23,20,15,.05), 0 24px 60px -28px rgba(23,20,15,.32);
  --shadow-pop: 0 18px 50px -20px color-mix(in oklab, var(--pop) 55%, transparent);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--pop); color: var(--pop-ink); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ---- grain overlay ---- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: var(--grain-op, .035); mix-blend-mode: multiply;
  transition: opacity .3s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   TYPE
   ============================================================ */
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pop);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.kicker .num { display: none; }
.kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--pop);
  opacity: .6;
}

.display {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 78px);
}
.h-serif {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 74px);
}
.h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
}
.lede {
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 46ch;
  letter-spacing: -0.012em;
}
.italic { font-style: italic; }
.pop-text { color: var(--pop); }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(54px, 8vh, 104px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vh, 72px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
  padding: 15px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--pop { background: var(--pop); color: var(--pop-ink); box-shadow: var(--shadow-pop); }
.btn--pop:hover { background: var(--pop-deep); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { box-shadow: var(--shadow); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: color-mix(in oklab, var(--ink) 4%, transparent); }

/* ============================================================
   GLASS / CARDS
   ============================================================ */
.glass {
  background: color-mix(in oklab, var(--card) 70%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid color-mix(in oklab, #fff 60%, var(--line));
  box-shadow: var(--shadow-sm);
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* glow blobs */
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  pointer-events: none; z-index: 0;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* image-slot defaults inside this design */
image-slot {
  --is-bg: color-mix(in oklab, var(--ink) 5%, var(--paper-2));
  background: var(--is-bg);
  font-family: var(--mono) !important;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .4s;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding-inline: var(--gut);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 13px;
  object-fit: cover; display: block;
  background: var(--pop);
  box-shadow: var(--shadow-pop);
}
.brand__name { font-weight: 700; letter-spacing: -0.02em; font-size: 18px; }
.brand__sub { font-family: var(--mono); font-size: 9px; letter-spacing: .22em; color: var(--ink-3); text-transform: uppercase; }
.nav__links { display: flex; gap: 4px; }
.nav__links a {
  padding: 9px 15px; border-radius: 100px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--ink); background: color-mix(in oklab, var(--ink) 5%, transparent); }
.nav__right { display: flex; align-items: center; gap: 10px; }

/* sélecteur de langue (drapeaux FR / AR) — toujours visible, hors du burger */
.lang { display: inline-flex; align-items: center; gap: 2px; flex: none; padding: 3px;
  border-radius: 100px; border: 1px solid var(--line); background: color-mix(in oklab, var(--ink) 4%, transparent); }
.lang__opt { display: grid; place-items: center; width: 31px; height: 31px; padding: 0; flex: none; cursor: pointer;
  border: 0; border-radius: 50%; background: transparent; opacity: .5;
  transition: opacity .18s, background .18s, box-shadow .18s; -webkit-tap-highlight-color: transparent; }
.lang__opt:hover { opacity: 1; }
.lang__opt.on { opacity: 1; background: var(--card); box-shadow: var(--shadow-sm); }
.lang__opt .flag { width: 21px; height: 14px; border-radius: 3px; display: block;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--ink) 13%, transparent); }

/* toast langue (message « bientôt ») */
.lang-toast { position: fixed; left: 50%; bottom: 26px; z-index: 9999; transform: translateX(-50%) translateY(12px);
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 100px; white-space: nowrap;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease); }
.lang-toast.in { opacity: 1; transform: translateX(-50%) translateY(0); }

.burger { display: none; width: 44px; height: 44px; border-radius: 13px; flex: none; cursor: pointer;
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  align-items: center; justify-content: center; transition: border-color .15s, color .15s, background .15s;
  -webkit-tap-highlight-color: transparent; }
.burger:hover { border-color: var(--pop); color: var(--pop); }
.nav.menu-open .burger { background: var(--pop); border-color: var(--pop); color: #fff; }
@media (max-width: 940px) {
  .nav__links { display: none; }
  .burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(152px, 21vh, 222px); padding-bottom: clamp(48px, 6vh, 72px); overflow: clip; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 70% at 80% 0%, color-mix(in oklab, var(--pop) 10%, transparent), transparent 58%); }
.hero .wrap { position: relative; z-index: 1; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero .display { margin-top: 26px; }
.hero .lede { margin-top: 26px; }
.hero__cta { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__cta { align-items: center; }
.hero__how { font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .2s; }
.hero__how:hover { color: var(--pop); }
.hero__trust { margin-top: 30px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero__sig { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink-2);
  background: var(--card); border: 1px solid var(--line); padding: 8px 13px; border-radius: 100px; }

/* hero eyebrow offer pill */
.hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; color: #9a3412;
  background: color-mix(in oklab, var(--warm) 30%, transparent); border: 1px solid color-mix(in oklab, var(--warm) 55%, transparent);
  padding: 8px 15px; border-radius: 100px; }
.hero__eyebrow strong { color: #9a3412; }
/* pulsing live dot */
.dotlive { width: 8px; height: 8px; border-radius: 50%; background: #dc2626; flex: none;
  box-shadow: 0 0 0 0 rgba(220,38,38,.6); animation: dotpulse 1.6s infinite; }
@keyframes dotpulse { 0% { box-shadow: 0 0 0 0 rgba(220,38,38,.6); } 70% { box-shadow: 0 0 0 7px rgba(220,38,38,0); } 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); } }
/* reassurance line under CTA */
.hero__microcopy { margin-top: 16px; font-family: var(--mono); font-size: 13px; color: var(--ink-2); letter-spacing: .01em; }
.hero__microcopy strong { color: var(--ink); }
/* floating price chip on hero image */
.chip--price { bottom: 18px; right: 18px; flex-direction: column; align-items: flex-start; gap: 1px; padding: 13px 17px; }
.chip-price__o { font-size: 13px; color: var(--ink-3); text-decoration: line-through; font-weight: 600; }
.chip-price__n { font-family: var(--serif); font-weight: 800; font-size: 27px; line-height: 1; color: var(--pop); }
.chip-price__l { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }

/* hero 3-step flow (Idée → Session IA → Site en ligne) */
.hero__grid--flow { grid-template-columns: 1.05fr 1fr; align-items: center; }
@media (max-width: 860px) { .hero__grid--flow { grid-template-columns: 1fr; } }
.hero__flow { display: flex; align-items: stretch; justify-content: center; gap: 10px; }
.flow-card { position: relative; flex: 1 1 0; min-width: 0; text-align: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 18px 14px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.flow-card--accent { background: color-mix(in oklab, var(--pop) 12%, var(--card)); border-color: color-mix(in oklab, var(--pop) 22%, var(--line)); }
.flow-card--win { box-shadow: var(--shadow); }
.flow-card__media { width: 100%; aspect-ratio: 1 / 1; }
.flow-card__media image-slot { width: 100%; height: 100%; display: block; }
.flow-card__label { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.flow-arrow { flex: none; align-self: center; color: var(--ink-3); font-size: 22px; font-weight: 700; }
.flow-check { position: absolute; top: -9px; right: -9px; width: 28px; height: 28px; border-radius: 50%;
  background: #16a34a; color: #fff; display: grid; place-items: center; font-size: 15px; font-weight: 800; box-shadow: var(--shadow-sm); z-index: 2; }
@media (max-width: 480px) {
  .hero__flow { flex-direction: column; align-items: stretch; max-width: 300px; margin-inline: auto; }
  .flow-arrow { transform: rotate(90deg); align-self: center; }
  .flow-card { flex-direction: row; gap: 16px; text-align: left; align-items: center; padding: 14px 16px; }
  .flow-card__media { width: 54px; height: 54px; flex: none; }
  .flow-card__label { font-size: 12px; }
}

/* hero — centered copy on top, flow diagram below (compact) */
.hero--stack { padding-bottom: clamp(34px, 5vh, 56px); }
.hero--stack .hero__lead { max-width: 780px; margin: 0 auto; text-align: center; }
.hero--stack .hero__lead .lede { margin-inline: auto; max-width: 42ch; }
.hero--stack .hero__lead .hero__cta { justify-content: center; margin-top: 22px; }
.hero--stack .hero__lead .hero__cta .btn { padding: 13px 22px; font-size: 14.5px; }
.hero--stack .display { margin-top: 0; font-size: clamp(31px, 4vw, 50px); line-height: 1.1; text-wrap: balance; }
.hero--stack .lede { margin-top: 14px; font-size: clamp(16px, 1.9vw, 19px); }
.hero--stack .hero__microcopy { margin-top: 12px; }
.hero__flow { display: block; margin-top: clamp(26px, 3.5vw, 42px); }
.hero__flow-img { width: 100%; max-width: 760px; height: auto; margin: 0 auto; display: block; }
@media (max-width: 760px) { .hero__flow { max-width: 340px; margin-inline: auto; } }

/* ============================================================
   SHOWCASE — two infinite image marquees (1080×1350 portrait)
   ============================================================ */
.showcase { overflow: hidden; padding-block: clamp(24px, 5vh, 56px);
  display: flex; flex-direction: column; gap: clamp(12px, 1.4vw, 18px); }
.showcase__row { position: relative; }
.showcase__viewport { overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.showcase__track { display: flex; align-items: flex-start; width: max-content; will-change: transform;
  animation: showLeft 50s linear infinite; }
.showcase__track--rev { animation: showRight 50s linear infinite; }
@keyframes showLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes showRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
/* direction arrows on both sides of each row */
.showcase__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--ink);
  background: color-mix(in oklab, var(--card) 80%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid color-mix(in oklab, #fff 50%, var(--line)); box-shadow: var(--shadow-sm); }
.showcase__arrow--l { left: clamp(6px, 1.4vw, 16px); }
.showcase__arrow--r { right: clamp(6px, 1.4vw, 16px); }
@media (max-width: 600px) { .showcase__arrow { width: 32px; height: 32px; } }
.showcase__card { flex: none; width: clamp(168px, 18vw, 232px); margin-right: clamp(12px, 1.4vw, 18px);
  border-radius: 18px; overflow: hidden; background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.showcase__card .ph { aspect-ratio: 4 / 5; position: relative; overflow: hidden; background: color-mix(in oklab, var(--pop) 9%, var(--paper-2)); }
.showcase__card .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; }
.showcase__card .lbl { display: flex; align-items: center; gap: 8px; padding: 13px 15px; }
.showcase__card .lbl .ico { font-size: 19px; line-height: 1; flex: none; }
.showcase__card .lbl b { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.18; color: var(--ink); }
@media (max-width: 600px) { .showcase__card { width: clamp(150px, 44vw, 182px); margin-right: 12px; border-radius: 15px; }
  .showcase__card .lbl { padding: 11px 13px; } }
@media (prefers-reduced-motion: reduce) { .showcase__track { animation: none; } }

/* hand-drawn scribble underline */
.scribble { position: relative; white-space: nowrap; }
.scribble::after { content: ""; position: absolute; left: -1%; right: -1%; bottom: -0.14em; height: 0.32em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' preserveAspectRatio='none'%3E%3Cpath d='M3 12 C 45 4 80 16 120 9 S 178 6 197 11' stroke='%232f6bff' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%; }
.avatars { display: flex; }
.avatars image-slot, .avatars .av {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid var(--paper); margin-left: -12px;
  overflow: hidden;
}
.avatars > *:first-child { margin-left: 0; }
.avatars .av { background: linear-gradient(135deg, var(--pop), var(--pop-deep)); }
.avatars .av:nth-child(2) { background: linear-gradient(135deg, var(--warm), var(--pop)); }
.avatars .av:nth-child(3) { background: linear-gradient(135deg, var(--pop-deep), var(--pop)); }
.avatars .av:nth-child(4) { background: linear-gradient(135deg, var(--pop), var(--warm)); }
.chip-av { width: 44px; height: 44px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--pop), var(--pop-deep)); }
.stars { color: var(--pop); letter-spacing: 2px; font-size: 15px; }

.hero__media { position: relative; z-index: 1; }
.hero__media .main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.chip {
  position: absolute; z-index: 3;
  border-radius: 18px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.chip--rating { top: 22px; left: -26px; }
.chip--students { bottom: 26px; right: -22px; flex-direction: row; align-items: center; gap: 12px; }
.chip--badge { top: 18px; left: 18px; flex-direction: row; align-items: center; font-family: var(--mono);
  font-size: 12px; font-weight: 700; letter-spacing: .03em; padding: 9px 15px; border-radius: 100px; color: var(--ink); }
.chip .big { font-family: var(--serif); font-size: 28px; line-height: 1; }
.chip .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  /* copy first on mobile, media below it; width:100% stops the empty slot collapsing */
  .hero__media { width: 100%; max-width: 460px; margin-inline: auto; }
  .chip--rating { left: 6px; }
  .chip--students { right: 6px; }
}

/* ============================================================
   MARQUEE / LOGOS
   ============================================================ */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marq linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }
.logo-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 19px; letter-spacing: -0.02em; color: var(--ink-2); opacity: .85; }
.logo-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-3); }
.logos-label { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); text-align: center; margin-bottom: 26px; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; }

/* ============================================================
   MANIFESTO (Why now)
   ============================================================ */
.manifesto { position: relative; overflow: clip; }
.manifesto__statement {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(34px, 5.4vw, 80px);
  line-height: 1.07; letter-spacing: -0.03em;
  max-width: 18ch;
}
.manifesto__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: end; margin-top: 56px; }
.manifesto__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow); }
.stat-line { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.stat-line .v { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); line-height: 1; }
.stat-line .k { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin-top: 8px; }
@media (max-width: 820px) { .manifesto__grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW WE TEACH
   ============================================================ */
.teach__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,4vw,60px); align-items: end; }
@media (max-width: 820px){ .teach__head { grid-template-columns: 1fr; } }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 880px){ .principles { grid-template-columns: 1fr; } }
.principle {
  border-radius: var(--radius); padding: 30px;
  background: var(--card); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.principle:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in oklab, var(--pop) 30%, var(--line)); }
.principle__num { font-family: var(--mono); font-size: 12px; color: var(--pop); letter-spacing: .12em; }
.principle__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--pop-soft); color: var(--pop); margin: 16px 0 20px; }
.principle h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.15; margin: 0 0 10px; letter-spacing: -0.02em; }
.principle p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.5; }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap { background: var(--ink); color: var(--paper); position: relative; overflow: clip; border-radius: clamp(28px,4vw,52px); }
.roadmap .kicker { color: color-mix(in oklab, var(--warm) 80%, white); }
.roadmap .kicker::before { background: var(--warm); }
.roadmap__inner { padding: clamp(56px,8vw,110px) var(--gut); max-width: calc(var(--maxw) + 2*var(--gut)); margin: 0 auto; }
.roadmap h2 { color: var(--paper); }
.roadmap .glow { background: color-mix(in oklab, var(--pop) 65%, transparent); }
.road__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,5vw,70px); margin-top: 56px; align-items: start; }
@media (max-width: 860px){ .road__layout { grid-template-columns: 1fr; } }
.road__steps { display: flex; flex-direction: column; }
.road__step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 22px; border-radius: 18px;
  cursor: pointer; text-align: left; width: 100%;
  background: transparent; border: 1px solid transparent; color: inherit;
  transition: background .35s var(--ease), border-color .35s;
  position: relative;
}
.road__step:not(:last-child)::after {
  content: ""; position: absolute; left: 43px; top: 64px; bottom: -2px; width: 2px;
  background: color-mix(in oklab, var(--paper) 16%, transparent);
}
.road__step.active { background: color-mix(in oklab, var(--paper) 8%, transparent); border-color: color-mix(in oklab, var(--paper) 14%, transparent); }
.road__dot {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--mono); font-size: 14px;
  background: color-mix(in oklab, var(--paper) 10%, transparent);
  color: color-mix(in oklab, var(--paper) 70%, transparent);
  border: 1px solid color-mix(in oklab, var(--paper) 20%, transparent);
  transition: background .35s, color .35s, transform .35s var(--ease);
  z-index: 1;
}
.road__step.active .road__dot { background: var(--pop); color: var(--pop-ink); border-color: var(--pop); transform: scale(1.06); }
.road__step h4 { margin: 0; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; transition: color .3s; }
.road__step .sub { margin: 4px 0 0; font-size: 14.5px; color: color-mix(in oklab, var(--paper) 60%, transparent); }
.road__step:not(.active) h4 { color: color-mix(in oklab, var(--paper) 78%, transparent); }
.road__panel { position: sticky; top: 100px; }
.road__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.road__detail { margin-top: 22px; }
.road__detail h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(26px,3.2vw,38px); line-height: 1.1; margin: 0 0 12px; letter-spacing: -0.025em; }
.road__detail p { color: color-mix(in oklab, var(--paper) 72%, transparent); margin: 0; max-width: 46ch; }
.road__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; padding: 7px 12px; border-radius: 100px; border: 1px solid color-mix(in oklab, var(--paper) 20%, transparent); color: color-mix(in oklab, var(--paper) 82%, transparent); }
.road__age { margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: color-mix(in oklab, var(--warm) 85%, white); }

/* ============================================================
   TRACKS / FORMATIONS
   ============================================================ */
.tracks__switch { display: inline-flex; padding: 6px; gap: 6px; border-radius: 100px; background: var(--paper-2); border: 1px solid var(--line); margin-top: 30px; }
.tracks__switch button { border: 0; background: transparent; padding: 11px 22px; border-radius: 100px; font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color .3s; position: relative; }
.tracks__switch button.active { color: var(--pop-ink); }
.tracks__switch .pill { position: absolute; inset: 6px auto 6px 6px; border-radius: 100px; background: var(--pop); box-shadow: var(--shadow-pop); transition: transform .45s var(--ease), width .45s var(--ease); z-index: 0; }
.tracks__switch span.lbl { position: relative; z-index: 1; }
.track__panel { margin-top: 40px; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px,4vw,64px); align-items: center; }
@media (max-width: 880px){ .track__panel { grid-template-columns: 1fr; } }
.track__badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--pop); padding: 7px 13px; border-radius: 100px; background: var(--pop-soft); }
.track__title { font-family: var(--serif); font-weight: 400; font-size: clamp(34px,4.4vw,56px); line-height: 1.0; letter-spacing: -0.018em; margin: 20px 0 14px; }
.track__outcomes { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.track__outcomes li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.track__outcomes .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--pop-soft); color: var(--pop); display: grid; place-items: center; margin-top: 1px; }
.track__stack { margin-top: 26px; }
.track__stack .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.stack-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-chips .chipx { font-size: 13.5px; font-weight: 500; padding: 8px 14px; border-radius: 100px; background: var(--card); border: 1px solid var(--line); color: var(--ink-2); }
.track__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); position: relative; }
.track__cta { margin-top: 30px; }

/* ============================================================
   WORK / PROJECTS GALLERY
   ============================================================ */
.work__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.gallery { columns: 3; column-gap: 18px; margin-top: 50px; }
@media (max-width: 880px){ .gallery { columns: 2; } }
@media (max-width: 540px){ .gallery { columns: 1; } }
.work-card { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid var(--line); background: var(--card); cursor: pointer; }
.work-card .ph { display: block; width: 100%; }
.work-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  background: linear-gradient(transparent, color-mix(in oklab, var(--ink) 88%, transparent));
  color: var(--paper);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.work-card:hover .cap { opacity: 1; transform: none; }
.work-card .cap .t { font-family: var(--serif); font-size: 20px; }
.work-card .cap .a { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; opacity: .8; text-transform: uppercase; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tests { display: grid; grid-template-columns: 1.25fr 1fr; gap: 18px; margin-top: 50px; }
@media (max-width: 860px){ .tests { grid-template-columns: 1fr; } }
.test-feature {
  border-radius: var(--radius-lg); padding: clamp(30px,4vw,50px);
  background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: space-between; gap: 36px;
  position: relative; overflow: hidden;
}
.test-feature .glow { background: color-mix(in oklab, var(--pop) 70%, transparent); width: 320px; height: 320px; top: -120px; right: -80px; opacity: .5; }
.test-feature .q { font-family: var(--serif); font-weight: 400; font-size: clamp(26px,3.2vw,40px); line-height: 1.12; letter-spacing: -0.01em; position: relative; z-index: 1; }
.test-feature .q .pop-text { color: color-mix(in oklab, var(--warm) 85%, white); }
.test-who { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.test-who image-slot { width: 52px; height: 52px; border-radius: 50%; flex: none; }
.test-who .nm { font-weight: 600; }
.test-who .rl { font-size: 13.5px; color: color-mix(in oklab, var(--paper) 62%, transparent); font-family: var(--mono); letter-spacing: .04em; }
.test-col { display: grid; gap: 18px; }
.test-sm { border-radius: var(--radius); padding: 26px; background: var(--card); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.test-sm:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.test-sm .stars { color: var(--pop); font-size: 13px; letter-spacing: 2px; }
.test-sm p { margin: 12px 0 18px; font-size: 16px; line-height: 1.45; }
.test-sm .test-who image-slot { width: 42px; height: 42px; }
.test-sm .nm { font-size: 14.5px; }
.test-sm .rl { color: var(--ink-3); font-size: 12px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(28px,5vw,70px); margin-top: 20px; }
@media (max-width: 820px){ .faq { grid-template-columns: 1fr; } }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: transparent; border: 0; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; font-family: var(--sans); font-size: clamp(18px,2vw,22px); font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.faq__q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); background: var(--pop); color: var(--pop-ink); border-color: var(--pop); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.faq__a-inner { padding: 0 4px 28px; color: var(--ink-2); max-width: 60ch; font-size: 16.5px; line-height: 1.55; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { padding-bottom: clamp(40px,6vh,80px); }
.final__card {
  position: relative; overflow: hidden;
  border-radius: clamp(28px,4vw,48px);
  background:
    radial-gradient(120% 140% at 12% 10%, color-mix(in oklab, var(--warm) 55%, transparent), transparent 55%),
    linear-gradient(135deg, var(--pop), var(--pop-deep));
  color: var(--pop-ink);
  padding: clamp(44px,7vw,92px);
  display: grid; grid-template-columns: 1.2fr auto; gap: 40px; align-items: center;
}
@media (max-width: 820px){ .final__card { grid-template-columns: 1fr; } }
.final__card .glow { width: 360px; height: 360px; background: rgba(255,255,255,.25); bottom: -160px; left: 30%; }
.final h2 { color: var(--pop-ink); position: relative; z-index: 1; }
.final .lede { color: color-mix(in oklab, var(--pop-ink) 86%, transparent); position: relative; z-index: 1; }
.final__meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 26px; position: relative; z-index: 1; }
.final__meta .m { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; }
.final__cta { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { box-shadow: 0 18px 50px -18px rgba(0,0,0,.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: clamp(56px,8vw,90px) 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px; font-weight: 500; }
.footer a.fl { display: block; padding: 6px 0; color: var(--ink-2); font-size: 15px; transition: color .2s; }
.footer a.fl:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-3); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: all .25s; }
.footer__socials a:hover { color: var(--pop); border-color: var(--pop); transform: translateY(-2px); }

/* utility */
.eyebrow-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.stack-sm > * + * { margin-top: 14px; }
.muted { color: var(--ink-2); }
.nowrap { white-space: nowrap; }
.center { text-align: center; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ============================================================
   CENTERED SECTION HEADER
   ============================================================ */
.sec-head.center { text-align: center; max-width: 760px; margin: 0 auto; }
.sec-head.center .kicker { justify-content: center; }
.sec-head.center .h2 { margin-left: auto; margin-right: auto; }

/* center the remaining homepage section headers for consistency */
.teach__head { grid-template-columns: 1fr; justify-items: center; text-align: center; max-width: 760px; margin-inline: auto; gap: 14px; }
.teach__head .kicker { justify-content: center; }
.teach__head h2 { margin-inline: auto; }
.teach__head .lede { margin-inline: auto; }

.work__head { flex-direction: column; align-items: center; text-align: center; max-width: 760px; margin-inline: auto; gap: 14px; }
.work__head .kicker { justify-content: center; }
.work__head h2 { margin-inline: auto; }
.work__head .lede { margin-inline: auto; max-width: 46ch; }

.roadmap__inner > .reveal:first-child { text-align: center; }
.roadmap__inner > .reveal:first-child .kicker { justify-content: center; }
.roadmap__inner > h2 { text-align: center; margin-inline: auto; }

.faq { grid-template-columns: 1fr; max-width: 820px; margin-inline: auto; }
.faq > .reveal:first-child { text-align: center; margin-bottom: 6px; }
.faq > .reveal:first-child .kicker { justify-content: center; }
.faq > .reveal:first-child h2 { margin-inline: auto; }
.faq__list { width: 100%; max-width: 760px; margin-inline: auto; }

.manifesto .wrap > .reveal:first-child { text-align: center; }
.manifesto .wrap > .reveal:first-child .kicker { justify-content: center; }
.manifesto__statement { text-align: center; margin-inline: auto; }

/* ============================================================
   TRACKS — redesigned (two cards, no toggle)
   ============================================================ */
.tracks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; align-items: stretch; }
@media (max-width: 880px) { .tracks-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.track-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .35s;
}
.track-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in oklab, var(--pop) 32%, var(--line)); }
.track-card.is-pop { border-color: color-mix(in oklab, var(--pop) 42%, var(--line)); box-shadow: 0 20px 50px -30px color-mix(in oklab, var(--pop) 60%, transparent); }
.track-card__head {
  position: relative; padding: 26px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--pop) 15%, var(--card)), color-mix(in oklab, var(--pop) 3%, var(--card)));
  border-bottom: 1px solid var(--line);
}
.track-card.is-pop .track-card__head {
  background: linear-gradient(135deg, var(--pop), var(--pop-deep));
  border-bottom-color: transparent;
}
.track-card__icon {
  width: 54px; height: 54px; border-radius: 16px; flex: none;
  display: grid; place-items: center;
  background: color-mix(in oklab, var(--pop) 16%, white); color: var(--pop);
}
.track-card.is-pop .track-card__icon { background: rgba(255,255,255,.2); color: #fff; }
.track-card__badge {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase;
  background: color-mix(in oklab, var(--ink) 8%, transparent); color: var(--ink-2);
  padding: 8px 13px; border-radius: 100px; white-space: nowrap;
}
.track-card.is-pop .track-card__badge { background: rgba(255,255,255,.22); color: #fff; }
.track-card__body { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; flex: 1; }
.track-card__name { font-family: var(--serif); font-weight: 800; font-size: clamp(23px, 3vw, 30px); letter-spacing: -0.025em; margin: 0; }
.track-card__title { color: var(--ink-2); font-size: 16px; line-height: 1.5; margin: 10px 0 0; }

.track-card__price { display: flex; align-items: baseline; gap: 5px; margin: 22px 0 0; }
.track-card__price .amt { font-family: var(--serif); font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.track-card.is-pop .track-card__price .amt { color: var(--pop); }
.track-card__price .cur { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--ink-2); }
.track-card__price .per { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: .03em; margin-left: 6px; }
.track-card__price .old { font-size: 19px; font-weight: 700; color: var(--ink-3); text-decoration: line-through; margin-left: 4px; }
.track-card__promo { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; margin: 22px 0 0;
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #9a3412;
  background: color-mix(in oklab, var(--warm) 32%, transparent); border: 1px solid color-mix(in oklab, var(--warm) 55%, transparent);
  padding: 6px 12px; border-radius: 100px; }
.track-card__promo + .track-card__price { margin-top: 8px; }
.track-card__save { display: inline-block; margin-top: 8px; font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: .02em; color: var(--pop); }
.track-card.is-pop .track-card__save { color: var(--pop-deep); }

.track-card__meta { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.track-card__meta li { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  background: color-mix(in oklab, var(--ink) 4%, transparent); border: 1px solid var(--line); padding: 7px 12px; border-radius: 100px; }
.track-card__meta .mi { font-size: 12px; }

.track-card__lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
  display: block; margin: 26px 0 0; padding-top: 22px; border-top: 1px solid var(--line); }
.track-card__outcomes { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 12px; }
.track-card__outcomes li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; }
.track-card__outcomes .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--pop-soft); color: var(--pop); display: grid; place-items: center; margin-top: 1px; }
.track-card__stack { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.track-card__stack .lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 12px; }
.track-card__cta { margin-top: 26px; }
.track-card__cta .btn { width: 100%; justify-content: center; }
.track-card__note { display: block; text-align: center; margin-top: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .02em; color: var(--ink-3); }

/* ============================================================
   TESTIMONIALS — redesigned (3 cards, first featured)
   ============================================================ */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
@media (max-width: 900px) { .tcards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.tcard {
  position: relative; margin: 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px 26px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .35s;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in oklab, var(--pop) 25%, var(--line)); }
.tcard:first-child { background: var(--ink); color: var(--paper); border-color: transparent; }
.tcard__stars { color: var(--pop); letter-spacing: 2px; font-size: 14px; }
.tcard:first-child .tcard__stars { color: color-mix(in oklab, var(--warm) 85%, white); }
.tcard__quote { font-family: var(--serif); font-weight: 800; font-size: 60px; line-height: .7; color: color-mix(in oklab, var(--pop) 32%, transparent); margin: 6px 0 -14px; }
.tcard:first-child .tcard__quote { color: color-mix(in oklab, var(--warm) 60%, transparent); }
.tcard__q { font-size: 16.5px; line-height: 1.55; margin: 18px 0 24px; flex: 1; letter-spacing: -0.01em; }
.tcard:first-child .tcard__q { font-family: var(--serif); font-weight: 600; font-size: 20px; line-height: 1.38; letter-spacing: -0.02em; }
.tcard:first-child .tcard__q .pop-text { color: color-mix(in oklab, var(--warm) 85%, white); }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__av {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 800; font-size: 19px;
  color: var(--pop-ink); background: linear-gradient(135deg, var(--pop), var(--pop-deep));
}
.tcard:first-child .tcard__av { background: linear-gradient(135deg, color-mix(in oklab, var(--warm) 65%, var(--pop)), var(--pop)); }

/* ============================================================
   EXPERT / FORMATEUR
   ============================================================ */
.expert { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 820px) { .expert { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }
.expert__media image-slot { width: 100%; display: block; }
.expert__body .kicker { justify-content: flex-start; }
.expert__creds { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.expert__creds li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink); line-height: 1.5; }
.expert__creds li::before { content: "★"; color: var(--pop); font-size: 15px; line-height: 1.5; flex: none; }
.expert__quote { margin: 26px 0 0; padding: 18px 24px; border-left: 3px solid var(--pop); background: var(--paper-2);
  border-radius: 0 14px 14px 0; font-family: var(--serif); font-weight: 600; font-size: 18px; line-height: 1.45; color: var(--ink); }
.tcard__who .nm { font-weight: 700; font-size: 15px; }
.tcard__who .rl { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--ink-3); margin-top: 2px; }
.tcard:first-child .tcard__who .rl { color: color-mix(in oklab, var(--paper) 62%, transparent); }

/* ============================================================
   MOBILE MENU (burger dropdown)
   ============================================================ */
.nav__mobile { display: none; }
.nav__scrim { display: none; }
@media (max-width: 940px) {
  .nav__mobile {
    display: none; flex-direction: column; gap: 6px;
    position: absolute; top: calc(100% + 8px); left: 14px; right: 14px;
    margin: 0; padding: 10px;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 26px 64px -22px color-mix(in oklab, var(--ink) 42%, transparent), var(--shadow);
    z-index: 60;
    transform-origin: top right;
    animation: navMenuIn .26s var(--ease);
  }
  .nav__mobile.in { display: flex; }
  @keyframes navMenuIn { from { opacity: 0; transform: translateY(-12px) scale(.97); } to { opacity: 1; transform: none; } }
  .nav__mobile a:not(.btn) {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 15px 16px; border-radius: 15px; font-size: 16px; font-weight: 600; color: var(--ink);
    background: color-mix(in oklab, var(--ink) 3.5%, transparent);
    transition: background .15s, color .15s;
  }
  .nav__mobile a:not(.btn) .chev { color: var(--ink-3); flex: none; transition: transform .15s, color .15s; }
  .nav__mobile a:not(.btn):hover, .nav__mobile a:not(.btn):active { background: var(--pop-soft); color: var(--pop); }
  .nav__mobile a:not(.btn):hover .chev, .nav__mobile a:not(.btn):active .chev { color: var(--pop); transform: translateX(3px); }
  .nav__mobile .btn { margin-top: 4px; justify-content: center; width: 100%; min-height: 52px; font-size: 16px; }
  .nav__scrim {
    display: none; position: fixed; inset: 0; z-index: 1;
    background: color-mix(in oklab, var(--ink) 32%, transparent);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    border: 0;
  }
  .nav__scrim.in { display: block; }
}

/* anchor links land below the fixed nav */
section[id], header[id] { scroll-margin-top: 96px; }

/* ============================================================
   MOBILE POLISH  (≤ 700px)
   ============================================================ */
@media (max-width: 700px) {
  /* hard stop any horizontal scroll on phones */
  html, body { overflow-x: clip; max-width: 100%; }
  /* decorative blur blobs spill past the viewport edge — drop them on mobile */
  .glow { display: none; }

  .section { padding-block: clamp(54px, 9vh, 88px); }
  .section--tight { padding-block: clamp(38px, 6vh, 64px); }

  /* nav compact */
  .nav { padding-top: 12px; }
  .nav__inner { gap: 10px; padding: 8px 8px 8px 14px; margin-inline: 16px; }
  .brand__mark { width: 34px; height: 34px; font-size: 20px; }
  .brand__name { font-size: 16px; }
  /* sur mobile, le CTA nav cède la place au sélecteur de langue — le hero porte le CTA */
  .nav .nav__right .btn { display: none; }

  /* hero */
  .hero { padding-top: 134px; }
  .hero__grid { gap: 24px; }
  .hero .display { margin-top: 16px; }
  .hero .lede { margin-top: 16px; }
  .hero__cta { margin-top: 24px; gap: 10px; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; padding: 15px 20px; }
  .hero__media { width: 100%; max-width: 440px; margin: 28px auto 0; }
  .hero__media .main { aspect-ratio: 4/5; }
  .chip { padding: 10px 12px; border-radius: 14px; }
  .chip--rating { top: 12px; left: 10px; }
  .chip--students { bottom: 14px; right: 10px; gap: 9px; }
  .chip .big { font-size: 21px; }
  .chip--students .big { font-size: 19px !important; }

  /* manifesto */
  .stat-line { gap: 24px 30px; margin-top: 26px; }

  /* roadmap */
  .roadmap__inner { padding: 46px 20px; }
  .road__layout { margin-top: 40px; }
  .road__step { padding: 16px 12px; gap: 14px; }
  .road__dot { width: 40px; height: 40px; }
  .road__step:not(:last-child)::after { left: 35px; top: 56px; }
  .road__panel { position: static; }

  /* tracks */
  .tracks__switch { width: 100% !important; display: flex; }
  .track__panel { margin-top: 28px; }
  .track__media { aspect-ratio: 16/11; }
  .track__outcomes li { font-size: 15.5px; }

  /* work */
  .gallery { margin-top: 36px; }
  .work-card .cap { opacity: 1; transform: none; } /* captions always visible on touch */

  /* testimonials */
  .tests { margin-top: 36px; }
  .test-feature { gap: 22px; }

  /* faq */
  .faq__q { padding: 20px 2px; gap: 14px; }

  /* final cta */
  .final__card { padding: 34px 22px; gap: 24px; }
  .final__meta { gap: 14px 18px; margin-top: 22px; }
  .final__cta { width: 100%; }
  .final__cta .btn { width: 100%; justify-content: center; }

  /* footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .footer__bottom { margin-top: 36px; flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   SMALL PHONES  (≤ 420px)
   ============================================================ */
@media (max-width: 420px) {
  body { font-size: 16px; }
  .display { font-size: 34px; line-height: 1.08; }
  .manifesto__statement { font-size: 31px; line-height: 1.08; }
  .h2 { font-size: 29px; }
  .lede { font-size: 16px; }
  .track__title { font-size: 30px; }
  .road__detail h3 { font-size: 25px; }
  .logo-item { font-size: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  /* free up space: drop the nav reserve button, the burger menu has it */
  .nav .nav__right .btn--ink { display: none; }
}

/* ============================================================
   COMPARE — live vs. recorded video (le différenciateur)
   ============================================================ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; align-items: stretch; }
@media (max-width: 880px) { .compare-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

.compare-card {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 28px 28px;
  display: flex; flex-direction: column;
}
.compare-card.is-mute { background: color-mix(in oklab, var(--ink) 3%, var(--paper)); }
.compare-card.is-pop {
  border-color: color-mix(in oklab, var(--pop) 42%, var(--line));
  box-shadow: 0 20px 50px -30px color-mix(in oklab, var(--pop) 60%, transparent);
}
.compare-card__pill {
  position: absolute; top: -12px; left: 28px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pop-ink); background: var(--pop); padding: 6px 12px; border-radius: 100px;
}
.compare-card__head { display: flex; flex-direction: column; gap: 5px; padding-bottom: 20px; margin-bottom: 4px; border-bottom: 1px solid var(--line); }
.compare-card__tag { font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.compare-card.is-pop .compare-card__tag { color: var(--pop); }
.compare-card__sub { font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-3); }

.compare-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.compare-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; color: var(--ink-2); }
.is-mute .compare-list li { color: var(--ink-3); }
.compare-list .mk { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
.compare-list .mk--no { background: color-mix(in oklab, var(--ink) 8%, transparent); color: var(--ink-3); }
.compare-list .mk--yes { background: var(--pop-soft); color: var(--pop); }
.compare-card__cta { margin-top: auto; padding-top: 26px; }
.compare-card__cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   OFFERS — formations (deux cartes indépendantes, mobile-first)
   ============================================================ */
.offers { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin: clamp(40px, 6vw, 52px) auto 0; }
@media (min-width: 820px) { .offers { grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; align-items: stretch; } }

.offer { position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 32px) clamp(22px, 5vw, 28px) clamp(24px, 4vw, 28px); }

/* carte principale (achetable) — mise en avant cobalt, en premier sur mobile */
.offer--primary { order: -1; border-color: color-mix(in oklab, var(--pop) 42%, var(--line));
  box-shadow: 0 20px 50px -30px color-mix(in oklab, var(--pop) 60%, transparent); }
.offer--primary::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--pop) 38%, transparent); }
@media (min-width: 820px) { .offer--primary { order: 0; } }

.offer__ribbon { position: absolute; top: -12px; left: clamp(22px, 5vw, 28px); z-index: 2;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pop-ink); background: var(--pop); padding: 6px 12px; border-radius: 100px; box-shadow: var(--shadow-pop); }

/* carte « en préparation » — calme, en retrait */
.offer--soon { background: color-mix(in oklab, var(--ink) 3%, var(--paper)); border-color: var(--line-2); box-shadow: none; }
.offer--soon .offer__tag, .offer--soon .offer__feats li { color: var(--ink-2); }
.offer__softtag { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; margin-bottom: 14px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #92400e; background: color-mix(in oklab, var(--warm) 48%, var(--card));
  border: 1px solid color-mix(in oklab, var(--warm) 60%, transparent); padding: 5px 11px; border-radius: 100px; }

/* en-tête */
.offer__head { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.offer__level { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.offer__name { font-family: var(--serif); font-weight: 800; font-size: clamp(24px, 3.2vw, 30px); letter-spacing: -0.025em; margin: 8px 0 6px; color: var(--ink); }
.offer--primary .offer__name { color: var(--pop); }
.offer__tag { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.45; }

/* prix */
.offer__promo { display: inline-block; margin-bottom: 12px; font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: #9a3412;
  background: color-mix(in oklab, var(--warm) 32%, transparent); border: 1px solid color-mix(in oklab, var(--warm) 55%, transparent);
  padding: 5px 10px; border-radius: 100px; }
.offer__amount { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.offer__amount .amt { font-family: var(--serif); font-weight: 800; font-size: clamp(44px, 8vw, 56px); line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.offer--primary .offer__amount .amt { color: var(--pop); }
.offer--soon .offer__amount .amt { color: var(--ink-2); }
.offer__amount .cur { font-family: var(--serif); font-weight: 700; font-size: 21px; color: var(--ink-2); }
.offer__amount .per { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--ink-3); margin-left: 4px; }
.offer__amount .old { font-size: 20px; font-weight: 700; color: var(--ink-2); margin-left: 8px;
  text-decoration: line-through; text-decoration-color: var(--save); text-decoration-thickness: 2px; text-underline-offset: 1px; }
.offer__save { display: inline-flex; align-items: center; margin-left: 8px; font-family: var(--mono); font-size: 11px;
  font-weight: 700; letter-spacing: .02em; color: var(--save); white-space: nowrap;
  background: color-mix(in oklab, var(--save) 12%, var(--paper));
  border: 1px solid color-mix(in oklab, var(--save) 30%, transparent); border-radius: 999px; padding: 3px 9px; }
.offer__meta { margin: 12px 0 0; font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em; color: var(--ink-2); }

/* fonctionnalités */
.offer__feats { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 13px; }
.offer__feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; color: var(--ink); }
.offer__feats .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: var(--pop-soft); color: var(--pop); margin-top: 1px; }
.offer--soon .offer__feats .ck { background: color-mix(in oklab, var(--ink) 8%, transparent); color: var(--ink-3); }

/* CTA + réassurance */
.offer__cta { margin-top: auto; padding-top: 24px; }
.offer__cta .btn { width: 100%; justify-content: center; min-height: 54px; font-size: 16px; }
.offer__reassure { margin: 12px 0 0; font-size: 12.5px; line-height: 1.4; color: var(--ink-3); text-align: center; }

@media (hover: hover) and (min-width: 820px) {
  .offer { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
  .offer--primary:hover { transform: translateY(-4px); }
  .offer--soon:hover { transform: translateY(-2px); border-color: var(--line); }
}

/* ============================================================
   SONDAGE — petite carte (bottom-sheet) après ~12s sur le site
   ============================================================ */
.wsurvey { position: fixed; z-index: 9000; right: clamp(12px, 3vw, 26px); bottom: clamp(12px, 3vw, 26px);
  width: min(360px, calc(100vw - 24px)); opacity: 0; transform: translateY(18px) scale(.98);
  transition: opacity .3s var(--ease), transform .3s var(--ease); pointer-events: none; }
.wsurvey.in { opacity: 1; transform: none; pointer-events: auto; }
.wsurvey__card { position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; box-shadow: 0 30px 70px -24px rgba(15,23,42,.4), var(--shadow); padding: 22px 20px 20px; }
.wsurvey__close { position: absolute; top: 10px; right: 12px; background: none; border: 0; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--ink-3); padding: 4px; }
.wsurvey__close:hover { color: var(--ink); }
.wsurvey__head b { font-family: var(--serif); font-weight: 700; font-size: 17px; display: block; letter-spacing: -0.01em; }
.wsurvey__head span { font-size: 13px; color: var(--ink-2); display: block; margin-top: 3px; }
.wsurvey__q { margin-top: 16px; }
.wsurvey__q p { margin: 0 0 8px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.wsurvey__opts { display: flex; flex-wrap: wrap; gap: 7px; }
.wsurvey__opt { font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
  background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-2);
  padding: 7px 12px; border-radius: 100px; transition: all .18s var(--ease); }
.wsurvey__opt:hover { border-color: color-mix(in oklab, var(--pop) 40%, var(--line)); color: var(--ink); }
.wsurvey__opt.on { background: var(--pop); border-color: var(--pop); color: #fff; }
.wsurvey__send { width: 100%; justify-content: center; margin-top: 18px; }
.wsurvey__send:disabled { opacity: .45; cursor: not-allowed; }
.wsurvey__ok { display: none; text-align: center; font-family: var(--serif); font-weight: 700; font-size: 17px;
  color: var(--pop); padding: 8px 0; }
.wsurvey__card.sent .wsurvey__q, .wsurvey__card.sent .wsurvey__send, .wsurvey__card.sent .wsurvey__head { display: none; }
.wsurvey__card.sent .wsurvey__ok { display: block; }

/* ============================================================
   PROOF — track record (TraceMate, Scaniha, Kesti Pro, agence)
   ============================================================ */
/* cartes produits compactes : 4 d'affilée sur desktop, 2 sur mobile */
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 920px; margin: clamp(22px, 3vh, 32px) auto 0; }
@media (max-width: 760px) { .proof__grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; } }
.proof__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.proof__card:hover { transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: color-mix(in oklab, var(--pop) 30%, var(--line)); }
.proof__ph { position: relative; aspect-ratio: 4 / 3; background: var(--paper-2); overflow: hidden; }
.proof__ph image-slot { position: absolute; inset: 0; }
.proof__badge { position: absolute; top: 9px; left: 9px; z-index: 2; font-family: var(--mono); font-size: 9.5px;
  font-weight: 700; letter-spacing: .02em; color: #fff; background: var(--pop); padding: 4px 8px; border-radius: 100px;
  box-shadow: 0 6px 16px -6px color-mix(in oklab, var(--pop) 70%, transparent); }
.proof__meta { padding: 12px 13px 14px; }
.proof__meta b { font-family: var(--serif); font-weight: 700; font-size: 15.5px; letter-spacing: -0.015em; display: block; }
.proof__url { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--pop); text-decoration: none; display: block; margin-top: 3px; }
.proof__url:hover { text-decoration: underline; }
.proof__tagline { display: block; font-size: 11.5px; color: var(--ink-3); margin-top: 3px; }
.proof__note { text-align: center; max-width: 56ch; margin: clamp(26px, 4vh, 38px) auto 0; font-size: 15.5px;
  color: var(--ink); line-height: 1.6; }

/* ============================================================
   MOYENS DE PAIEMENT — bandeau logos (landing + partagé)
   ============================================================ */
.pay-methods { margin: 0; }
.pay-methods__label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.pay-methods__logos { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-logo { display: inline-flex; align-items: center; justify-content: center; height: 52px; min-width: 82px; padding: 0 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); }
.pay-logo img { height: 30px; width: auto; display: block; }
.pay-methods--center { margin-top: clamp(28px, 4vh, 40px); text-align: center; }
.pay-methods--center .pay-methods__logos { justify-content: center; }

/* liens légaux dans le pied de page */
.footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer__legal a { color: var(--ink-3); }
.footer__legal a:hover { color: var(--pop); }

/* ---- ajouts conversion (hero badge, comparaison, FAQ CTA, bouton outline, footer strip) ---- */
.hero--stack .hero__eyebrow { margin-bottom: 18px; }
.hero__flow .hero__microcopy { margin-top: 18px; }
.compare-card__note { margin: 12px 0 0; font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-3); }
.faq__cta { margin-top: clamp(36px, 5vh, 52px); display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.faq__cta-q { font-weight: 600; color: var(--ink); font-size: 16.5px; margin: 0; }
.faq__cta-note { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--ink-3); }
.btn--outline { background: transparent; border: 1px solid rgba(255,255,255,.55); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.85); }
.faq__a-inner { color: color-mix(in oklab, var(--ink) 82%, var(--ink-2)); }
.footer__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px; margin-top: 44px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 14px; font-size: 14px; color: var(--ink-2); }
.footer__cta-link { font-weight: 700; color: var(--pop); white-space: nowrap; }
.footer__cta-link:hover { text-decoration: underline; }

/* ---- compte à rebours (session live) ---- */
.cdown { position: relative; overflow: hidden; max-width: 560px; margin: 30px auto 0;
  padding: 22px 24px 26px; border-radius: 22px;
  background: linear-gradient(140deg, #0d1330 0%, #141d45 55%, #1b2a66 100%);
  border: 1px solid rgba(122, 152, 255, .28);
  box-shadow: 0 28px 70px -28px rgba(37, 99, 235, .55), inset 0 1px 0 rgba(255, 255, 255, .07); }
.cdown::before { content: ""; position: absolute; inset: -40%; pointer-events: none;
  background: radial-gradient(circle at 72% -10%, rgba(99, 132, 255, .30), transparent 55%),
              radial-gradient(circle at 8% 120%, rgba(124, 58, 237, .22), transparent 50%); }
.cdown__head { position: relative; display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(214, 226, 255, .78); margin-bottom: 16px; }
.cdown__dot { width: 8px; height: 8px; border-radius: 50%; background: #ff4d6d; flex: none;
  animation: cdownPulse 1.6s infinite; }
@keyframes cdownPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 109, .55); } 55% { box-shadow: 0 0 0 8px rgba(255, 77, 109, 0); } }
.cdown__units { position: relative; display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(10px, 3vw, 22px); }
.cdown__unit { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.cdown__num { font-family: var(--serif); font-weight: 800; font-size: clamp(34px, 5.4vw, 46px); line-height: 1;
  color: #fff; min-width: 2ch; text-align: center; letter-spacing: -0.02em;
  text-shadow: 0 8px 32px rgba(99, 132, 255, .55); }
.cdown__num.tick { animation: cdownSlide .5s cubic-bezier(.2, .7, .2, 1); }
@keyframes cdownSlide { 0% { transform: translateY(32%); } 100% { transform: none; } }
.cdown__lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(214, 226, 255, .55); }
.cdown__sep { font-family: var(--serif); font-weight: 800; font-size: clamp(20px, 3vw, 28px);
  color: rgba(140, 165, 255, .45); margin-top: clamp(6px, 1vw, 10px);
  animation: cdownBlink 2s infinite steps(1); }
@keyframes cdownBlink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: .25; } }
.cdown__live { position: relative; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--mono); font-size: 13.5px; font-weight: 600; color: #fff; text-align: center; padding: 6px 4px; }

/* variante compacte — intégrée à la carte de prix (fond bleu) */
.cdown--sm { max-width: none; margin: 18px 0 6px; padding: 14px 16px 16px; border-radius: 16px;
  background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: none; backdrop-filter: blur(4px); }
.cdown--sm::before { display: none; }
.cdown--sm .cdown__head { justify-content: flex-start; font-size: 10px; letter-spacing: .18em;
  color: rgba(255, 255, 255, .82); margin-bottom: 11px; }
.cdown--sm .cdown__units { justify-content: space-between; gap: 6px; }
.cdown--sm .cdown__num { font-size: 27px; text-shadow: none; }
.cdown--sm .cdown__lbl { font-size: 8.5px; letter-spacing: .14em; color: rgba(255, 255, 255, .58); }
.cdown--sm .cdown__sep { font-size: 17px; margin-top: 5px; color: rgba(255, 255, 255, .35); }
@media (max-width: 540px) {
  .cdown { padding: 18px 14px 20px; }
  .cdown__units { gap: 8px; }
}

/* variante carte — dans la carte blanche Site Web (Deux niveaux) :
   mini version du panneau navy gradient, pleine largeur de la carte */
.cdown--card { max-width: none; margin: 16px 0 4px; padding: 14px 14px 16px; border-radius: 16px; }
.cdown--card .cdown__head { font-size: 9.5px; letter-spacing: .16em; margin-bottom: 10px; }
.cdown--card .cdown__dot { width: 6px; height: 6px; }
.cdown--card .cdown__units { gap: clamp(8px, 1.6vw, 16px); }
.cdown--card .cdown__num { font-size: clamp(22px, 2.4vw, 28px); text-shadow: 0 5px 20px rgba(99, 132, 255, .5); }
.cdown--card .cdown__lbl { font-size: 8.5px; letter-spacing: .14em; }
.cdown--card .cdown__sep { font-size: 14px; margin-top: 4px; }
.cdown--card .cdown__live { font-size: 11.5px; }

/* garde-fou mobile : aucun débordement horizontal possible (clip ne casse pas position:sticky) */
html, body { overflow-x: clip; }
@media (max-width: 540px) {
  .hero__eyebrow { font-size: 11px; letter-spacing: .12em; line-height: 1.6; text-align: center; }
}

.footer__rakiza { color: var(--pop); font-weight: 700; }
.footer__rakiza:hover { text-decoration: underline; }
