/* ============================================================
   SKANLIA — Landing page
   Design tokens
   ============================================================ */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F9FC;
  --bg-pale: #EEF4FB;
  --bg-deep: #06111F;
  --bg-deep-2: #0B1B2B;
  --bg-deep-3: #10243A;

  --ink: #06111F;
  --ink-2: #0B1B2B;
  --ink-muted: #475569;
  --ink-mute-2: #64748B;
  --line: #E5E7EB;
  --line-soft: #EEF2F7;

  --gold: #D6B36A;
  --gold-soft: #F0E2BF;
  --teal: #2DD4BF;
  --blue-accent: #3B82F6;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(6, 17, 31, .04), 0 1px 1px rgba(6, 17, 31, .03);
  --shadow-sm: 0 4px 14px -6px rgba(6, 17, 31, .08), 0 2px 4px rgba(6, 17, 31, .04);
  --shadow-md: 0 18px 40px -20px rgba(6, 17, 31, .25), 0 4px 10px -4px rgba(6, 17, 31, .06);
  --shadow-lg: 0 40px 80px -40px rgba(6, 17, 31, .35), 0 8px 20px -10px rgba(6, 17, 31, .08);

  --font-display: 'Sora', 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body { font-size: 16px; line-height: 1.6; }

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

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.12; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.4vw, 68px); font-weight: 600; }
h2 { font-size: clamp(30px, 3.4vw, 46px); font-weight: 600; letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 1.5vw, 24px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }
p { margin: 0; color: var(--ink-muted); text-wrap: pretty; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section-tight { padding: clamp(56px, 6vw, 88px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bg);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.lead { font-size: clamp(17px, 1.3vw, 19px); color: var(--ink-muted); max-width: 60ch; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 22px;
  border-radius: 100px; font-weight: 500; font-size: 15px;
  font-family: var(--font-display); letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.08); }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-secondary {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--ink); background: var(--bg-soft); }

.btn-ghost { padding: 10px 14px; color: var(--ink-muted); font-size: 14px; }
.btn-ghost:hover { color: var(--ink); }

.btn-gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 8px 24px -10px rgba(214, 179, 106, .55);
}
.btn-gold:hover { transform: translateY(-1px); }

.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  letter-spacing: -0.01em; color: var(--ink);
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(140deg, var(--ink) 0%, var(--ink-2) 50%, var(--bg-deep-3) 100%);
  display: grid; place-items: center; color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 12px -6px rgba(6,17,31,.4);
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(214, 179, 106, .35), transparent 60%);
}
.brand-mark svg { position: relative; z-index: 1; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px; color: var(--ink-muted); padding: 8px 14px;
  border-radius: 8px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--bg-soft); }
.header-cta { display: flex; align-items: center; gap: 8px; }
.menu-btn { display: none; }

@media (max-width: 880px) {
  .nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .menu-btn { display: inline-flex; padding: 8px; border-radius: 8px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 148px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(214, 179, 106, .12), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(45, 212, 191, .07), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px; align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 strong { color: var(--ink); font-weight: 600; }
.hero h1 .accent { position: relative; }
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px;
  background: var(--gold-soft); opacity: .6; border-radius: 2px;
  z-index: -1;
}
.hero-sub {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.5;
  max-width: 44ch;
  color: var(--ink-muted);
  text-wrap: balance;
}
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-muted);
}
.hero-trust .lock { color: var(--ink); }
.hero-meta { margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-muted); }
.hero-meta-item .ic { color: var(--gold); }

/* Social proof bar (between hero and problem) */
.social-proof {
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.social-proof-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 28px 24px;
}
.sp-count { display: flex; align-items: baseline; gap: 12px; flex-shrink: 0; }
.sp-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
  line-height: 1;
}
.sp-num-label { font-size: 14px; color: var(--ink-muted); line-height: 1.35; }
.sp-sep { width: 1px; height: 36px; background: var(--line); flex-shrink: 0; }
.sp-badges {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; flex: 1;
}
.sp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-muted);
}
.sp-badge-ic {
  color: var(--gold); display: inline-flex;
  align-items: center; justify-content: center;
}
@media (max-width: 880px) {
  .social-proof-inner {
    flex-direction: column; align-items: flex-start; gap: 18px;
  }
  .sp-sep { display: none; }
  .sp-badges { gap: 12px 16px; }
}

/* Floating canvas */
.hero-canvas {
  position: relative; height: 560px;
}
@media (max-width: 980px) { .hero-canvas { height: 480px; } }

.float-card {
  position: absolute; background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px;
  animation: floatY 7s ease-in-out infinite;
}
.float-card.f-delay-1 { animation-delay: -1.5s; }
.float-card.f-delay-2 { animation-delay: -3s; }
.float-card.f-delay-3 { animation-delay: -4.5s; }
.float-card.f-delay-4 { animation-delay: -2.2s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(calc(var(--rot, 0deg) + 0.4deg)); }
}

@keyframes how-sync {
  0% { background-position: -40% 0; }
  100% { background-position: 140% 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

/* ============================================================
   Section header
   ============================================================ */
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin: 0 0 48px; }
.section-head p { margin-top: 16px; font-size: 17px; }

/* ============================================================
   Problem
   ============================================================ */
.problem { background: #fff; }
.problem-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) { .problem-split { grid-template-columns: 1fr; } }
.problem-col {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.problem-col.alt { background: var(--bg-deep); border-color: transparent; color: #fff; }
.problem-col.alt h3 { color: #fff; }
.problem-col.alt .pi-label { color: rgba(255,255,255,.6); }
.problem-col.alt .pill { background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.1); }
.problem-col.alt .pill .x { color: var(--gold); }

.pi-label { font-family: var(--font-display); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-mute-2); }
.problem-col h3 { margin-top: 10px; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: #fff; border: 1px solid var(--line);
  border-radius: 100px; font-size: 13.5px; color: var(--ink-2);
}
.pill .check { color: var(--ink-mute-2); }
.problem-quote {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--ink);
  max-width: 800px; margin-left: auto; margin-right: auto;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* ============================================================
   Solution / Transformation
   ============================================================ */
.solution { background: var(--bg-soft); }
.transform {
  display: grid; grid-template-columns: minmax(0, 320px) 1fr minmax(0, 1fr);
  gap: 36px; align-items: center;
}
@media (max-width: 980px) { .transform { grid-template-columns: 1fr; gap: 24px; } }

.data-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.data-card .photo {
  height: 140px; border-radius: 12px;
  background:
    linear-gradient(135deg, #c7d2fe 0%, #a7b3d8 100%);
  position: relative; overflow: hidden;
}
.data-card .photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.07) 0 8px, transparent 8px 18px);
}
.data-card .photo .ph-label {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.8); letter-spacing: 0.05em;
}
.data-card h4 { margin-top: 16px; }
.data-card .price { margin-top: 4px; font-family: var(--font-display); font-size: 22px; color: var(--ink); font-weight: 600; }
.data-card .specs { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.data-card .specs span {
  font-size: 12px; padding: 4px 10px; border-radius: 100px;
  background: var(--bg-soft); color: var(--ink-2);
}

.flux {
  position: relative; height: 280px;
  display: grid; place-items: center;
}
.flux-line {
  position: absolute; left: 0; right: 0; top: 50%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  transform: translateY(-50%);
}
.flux-line::after {
  content: ''; position: absolute; top: -3px; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  animation: fluxDot 2.8s linear infinite;
}
@keyframes fluxDot {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.flux-badge {
  position: relative; padding: 10px 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 100px; font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.flux-badge .pulse {
  display: inline-block; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(214, 179, 106, .5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 179, 106, .6); }
  100% { box-shadow: 0 0 0 10px rgba(214, 179, 106, 0); }
}

@media (max-width: 980px) {
  .flux { height: 80px; }
  .flux-line { background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent); width: 2px; height: 100%; left: 50%; top: 0; right: auto; transform: none; }
  .flux-line::after { animation: none; display: none; }
}

.outputs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.out-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px;
  display: flex; align-items: center; gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.out-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.out-card .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-pale); color: var(--ink); display: grid; place-items: center;
  flex-shrink: 0;
}
.out-card .label { font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--ink); }
.out-card .sub { font-size: 12px; color: var(--ink-mute-2); }

/* ============================================================
   How it works
   ============================================================ */
.how { background: #fff; }
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
@media (max-width: 880px) { .how-steps { grid-template-columns: 1fr; } }
.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  color: var(--gold); letter-spacing: 0.1em;
}
.step-card h3 { margin-top: 8px; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; }
.step-icon {
  margin-top: 22px; height: 78px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-2);
}

/* ============================================================
   Generated contents (stack)
   ============================================================ */
.contents-stack { background: var(--bg-soft); }
.stack-grid {
  display: grid; grid-template-columns: minmax(0, 340px) 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 880px) { .stack-grid { grid-template-columns: 1fr; } }
.stack-source {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.stack-source .ssrc-label {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.stack-source h4 { color: #fff; font-size: 22px; }
.stack-source .grid-info {
  margin-top: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.stack-source .info-line {
  font-size: 12px; color: rgba(255,255,255,.65);
}
.stack-source .info-val {
  font-size: 14px; color: #fff; font-family: var(--font-display);
  margin-top: 2px;
}
.stack-source .photo-grid {
  margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.stack-source .photo-grid div {
  aspect-ratio: 1; border-radius: 6px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 6px, transparent 6px 14px),
    linear-gradient(140deg, var(--ink-2), var(--bg-deep-3));
}

.contents-mosaic {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 90px;
  gap: 14px;
}
@media (max-width: 980px) { .contents-mosaic { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .contents-mosaic { grid-template-columns: repeat(2, 1fr); } }

.mosaic-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px;
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.mosaic-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mosaic-card .tag {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.06em; color: var(--ink-mute-2);
}
.mosaic-card .name { font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--ink); margin-top: 6px; }

/* Sizes */
.mc-1 { grid-column: span 2; grid-row: span 2; }
.mc-2 { grid-column: span 2; grid-row: span 1; }
.mc-3 { grid-column: span 2; grid-row: span 1; }
.mc-4 { grid-column: span 2; grid-row: span 1; }
.mc-5 { grid-column: span 2; grid-row: span 1; }
.mc-6 { grid-column: span 2; grid-row: span 1; }
.mc-7 { grid-column: span 4; grid-row: span 1; }
.mc-8 { grid-column: span 2; grid-row: span 1; }

@media (max-width: 980px) {
  .mc-1, .mc-2, .mc-3, .mc-4, .mc-5, .mc-6, .mc-7, .mc-8 { grid-column: span 2; grid-row: span 1; }
  .mc-1 { grid-row: span 2; }
}
@media (max-width: 600px) {
  .mc-1, .mc-2, .mc-3, .mc-4, .mc-5, .mc-6, .mc-7, .mc-8 { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   Features grid
   ============================================================ */
.features { background: #fff; overflow: hidden; }

.features-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%);
}
.features-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: features-scroll 80s linear infinite;
  will-change: transform;
}
.features-marquee:hover .features-track,
.features-marquee:focus-within .features-track {
  animation-play-state: paused;
}
@keyframes features-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.feat-card {
  flex: 0 0 300px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  min-height: 168px;
  display: flex; flex-direction: column;
}
.feat-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.feat-card .feat-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg-pale); color: var(--ink);
  display: grid; place-items: center;
  margin-bottom: 16px;
  transition: background .25s ease, color .25s ease;
}
.feat-card:hover .feat-ic { background: var(--ink); color: var(--gold); }
.feat-card h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 6px; }
.feat-card p { font-size: 13.5px; line-height: 1.55; }

@media (max-width: 640px) {
  .feat-card { flex-basis: 260px; padding: 18px; min-height: 156px; }
  .features-track { gap: 14px; animation-duration: 60s; }
}

@media (prefers-reduced-motion: reduce) {
  .features-track { animation: none; }
}

/* ============================================================
   Examples (mockups)
   ============================================================ */
.examples { background: var(--bg-soft); }
.tabs {
  display: inline-flex; padding: 4px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 100px; gap: 2px;
  margin: 0 auto 40px; justify-content: center;
}
.tabs-wrap { display: flex; justify-content: center; }
.tab {
  padding: 10px 18px; border-radius: 100px;
  font-size: 13.5px; color: var(--ink-muted);
  transition: background .2s ease, color .2s ease;
  font-family: var(--font-display);
}
.tab.active { background: var(--ink); color: #fff; }
.tab:hover:not(.active) { color: var(--ink); }

.mockup-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: start;
}
@media (max-width: 980px) { .mockup-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .mockup-grid { grid-template-columns: 1fr; } }

/* Phone mockup */
.phone {
  width: 100%; max-width: 260px; margin: 0 auto;
  aspect-ratio: 9/19;
  background: #1a1a1a; border-radius: 36px; padding: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone::before {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px; border-radius: 12px; background: #000;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 28px;
  background: #fff; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}

/* Instagram-style post */
.ig-header {
  display: flex; align-items: center; gap: 10px;
  padding: 38px 12px 10px;
  border-bottom: 1px solid var(--line-soft);
}
.ig-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--ink-2));
  flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
}
.ig-user { font-size: 12px; font-weight: 600; color: var(--ink); }
.ig-sub { font-size: 10px; color: var(--ink-mute-2); }
.ig-img {
  aspect-ratio: 1;
  background:
    linear-gradient(160deg, #94a3b8, #475569);
  position: relative; overflow: hidden;
}
.ig-img::after {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 6px, transparent 6px 14px);
}
.ig-img .ig-tag {
  position: absolute; left: 10px; top: 10px;
  padding: 4px 10px; background: rgba(0,0,0,.45);
  color: #fff; font-size: 10px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.ig-img .ig-price {
  position: absolute; right: 10px; bottom: 10px;
  padding: 6px 12px; background: rgba(255,255,255,.95);
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  color: var(--ink); border-radius: 100px;
}
.ig-actions {
  padding: 10px 12px; display: flex; gap: 12px;
  color: var(--ink);
}
.ig-cap { padding: 0 12px 12px; font-size: 11px; color: var(--ink-2); line-height: 1.45; }
.ig-cap b { font-weight: 600; }

/* Story */
.story {
  background: linear-gradient(160deg, var(--ink-2) 0%, #1e293b 100%);
  height: 100%;
  padding: 38px 14px 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
}
.story-bar {
  display: flex; gap: 4px; position: absolute; top: 18px; left: 14px; right: 14px;
}
.story-bar div { flex: 1; height: 2px; background: rgba(255,255,255,.3); border-radius: 1px; }
.story-bar div:first-child { background: #fff; }
.story-label {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
}
.story-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1.15; margin-top: 8px; letter-spacing: -0.01em; }
.story-photo {
  flex: 1; margin: 14px 0;
  border-radius: 14px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 6px, transparent 6px 14px),
    linear-gradient(140deg, #64748B, #334155);
}
.story-cta {
  background: rgba(255,255,255,.95); color: var(--ink);
  padding: 10px 14px; border-radius: 12px;
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  text-align: center;
}

/* Google Business mockup */
.gbp {
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gbp-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 12px;
}
.gbp-logo {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ink), var(--bg-deep-3));
  display: grid; place-items: center; color: var(--gold);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
}
.gbp-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink); }
.gbp-rating { font-size: 12px; color: var(--ink-mute-2); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.gbp-stars { color: var(--gold); }
.gbp-img {
  height: 160px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.07) 0 6px, transparent 6px 14px),
    linear-gradient(140deg, #94a3b8, #475569);
  position: relative;
}
.gbp-img .pin {
  position: absolute; left: 14px; top: 14px;
  padding: 5px 10px; background: rgba(0,0,0,.4); color: #fff;
  font-size: 10px; border-radius: 100px; backdrop-filter: blur(4px);
}
.gbp-body { padding: 16px 18px; }
.gbp-cat {
  font-family: var(--font-display); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
.gbp-title { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 6px; }
.gbp-desc { font-size: 12.5px; color: var(--ink-muted); margin-top: 6px; line-height: 1.5; }
.gbp-cta {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line-soft);
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  color: var(--ink); display: flex; align-items: center; gap: 6px;
}

/* Review reply mockup */
.review {
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
}
.review-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; color: var(--ink-mute-2);
}
.review .rev-block {
  margin-top: 16px; padding: 14px;
  background: var(--bg-soft); border-radius: 12px;
}
.review .rev-block.reply {
  background: var(--ink); color: #fff;
  position: relative; margin-left: 20px;
}
.review .rev-block.reply::before {
  content: ''; position: absolute; left: -8px; top: 14px;
  width: 0; height: 0;
  border-style: solid; border-width: 0 8px 8px 0;
  border-color: transparent var(--ink) transparent transparent;
}
.review .rev-author { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink); }
.review .rev-block.reply .rev-author { color: var(--gold); }
.review .rev-stars { color: var(--gold); font-size: 12px; margin-top: 2px; }
.review .rev-text { font-size: 13px; color: var(--ink-muted); margin-top: 6px; line-height: 1.5; }
.review .rev-block.reply .rev-text { color: rgba(255,255,255,.85); }
.review .rev-meta { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 11px; color: var(--ink-mute-2); }

/* Reporting mockup */
.reporting {
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
}
.rep-head { display: flex; align-items: center; justify-content: space-between; }
.rep-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--ink); }
.rep-sub { font-size: 11px; color: var(--ink-mute-2); margin-top: 2px; }
.rep-period {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute-2);
  padding: 4px 10px; background: var(--bg-soft); border-radius: 100px;
}
.rep-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.rep-stat {
  padding: 12px; border-radius: 10px;
  background: var(--bg-soft);
}
.rep-stat .v { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); }
.rep-stat .l { font-size: 11px; color: var(--ink-mute-2); margin-top: 2px; }
.rep-stat .d { font-family: var(--font-mono); font-size: 10px; color: var(--gold); margin-top: 4px; }
.rep-bar {
  margin-top: 14px; height: 60px;
  display: flex; align-items: flex-end; gap: 4px;
}
.rep-bar div {
  flex: 1; background: var(--ink); border-radius: 3px 3px 0 0;
  opacity: 0.15;
}
.rep-bar div.active { opacity: 1; }

/* Vertical video mockup */
.video-vert {
  background: linear-gradient(160deg, #1e293b 0%, var(--ink) 100%);
  height: 100%;
  position: relative; padding: 38px 14px 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff; overflow: hidden;
}
.video-vert::before {
  content: ''; position: absolute; inset: 38px 14px 60px;
  border-radius: 14px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 6px, transparent 6px 14px),
    linear-gradient(140deg, #94a3b8, #334155);
}
.video-vert .vv-info { position: relative; z-index: 2; }
.video-vert .vv-tag {
  display: inline-block;
  padding: 4px 10px; background: rgba(0,0,0,.5);
  border-radius: 100px; font-size: 10px;
  font-family: var(--font-display);
}
.video-vert .vv-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-top: 8px; line-height: 1.2; }
.video-vert .vv-sub { font-size: 11px; opacity: .75; margin-top: 2px; }
.video-vert .vv-play {
  position: absolute; left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.95); border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  z-index: 2;
}
.video-vert .vv-meta {
  position: relative; z-index: 2;
  display: flex; gap: 14px; align-items: center;
  font-size: 11px;
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing { background: #fff; }
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: stretch;
}
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.price-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.feat {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}
@media (max-width: 980px) { .price-card.feat { transform: none; } }
.price-card.feat:hover { transform: translateY(-16px); }
@media (max-width: 980px) { .price-card.feat:hover { transform: translateY(-4px); } }
.price-card.feat h3 { color: #fff; }
.price-card.feat .p-desc { color: rgba(255,255,255,.7); }
.price-card.feat .p-amount { color: #fff; }
.price-card.feat .p-period { color: rgba(255,255,255,.5); }
.price-card.feat li { color: rgba(255,255,255,.85); }
.price-card.feat .check { color: var(--gold); }

.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px; background: var(--gold); color: var(--ink);
  border-radius: 100px; font-family: var(--font-display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px -6px rgba(214, 179, 106, .6);
}
.p-name { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.price-card.feat .p-name { color: var(--gold); }
.price-card h3 { margin-top: 8px; font-size: 22px; }
.p-desc { font-size: 13.5px; margin-top: 8px; min-height: 38px; }
.p-price { margin-top: 22px; display: flex; align-items: baseline; gap: 6px; }
.p-amount { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: var(--ink); letter-spacing: -0.03em; }
.p-period { font-size: 13px; color: var(--ink-mute-2); }
.p-tax { font-size: 11px; color: var(--ink-mute-2); margin-top: 2px; }

/* Conversion bands (CTABandA / CTABandB) */
.cta-band { padding: 48px 0; }
.cta-band-a { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.cta-band-b { background: var(--bg-deep); color: #fff; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.cta-band-text { flex: 1; min-width: 0; }
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  text-wrap: balance;
}
.cta-band-b .cta-band-title { color: #fff; }
.cta-band-sub {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  text-wrap: pretty;
}
.cta-band-b .cta-band-sub { color: rgba(255, 255, 255, .7); }
.cta-band-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cta-band-b .btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cta-band-b .btn-primary:hover { background: var(--gold); opacity: .9; }
.cta-band-b .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
}
.cta-band-b .btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .5);
}
@media (max-width: 880px) {
  .cta-band-inner { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .cta-band-actions { width: 100%; justify-content: center; }
}
.p-old-price { font-size: 16px; color: var(--ink-mute-2); text-decoration: line-through; margin-right: 8px; font-weight: 400; }
.p-ideal { font-size: 13px; color: var(--gold); margin-top: 4px; font-style: italic; }
.price-card.feat .p-old-price { color: rgba(255,255,255,.5); }
.price-card.feat .p-ideal { color: var(--gold); }
.price-card .btn { margin-top: 22px; width: 100%; }
.price-card.feat .btn-primary { background: var(--gold); color: var(--ink); }
.price-card .p-divider { height: 1px; background: var(--line); margin: 24px 0 20px; }
.price-card.feat .p-divider { background: rgba(255,255,255,.12); }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 13.5px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.price-card .check { color: var(--ink); flex-shrink: 0; margin-top: 2px; }
.price-card .x { color: var(--ink-mute-2); flex-shrink: 0; margin-top: 2px; opacity: .5; }
.price-card li.excluded { color: var(--ink-mute-2); text-decoration: line-through; opacity: .7; }

/* Launch banner — above price grid */
.launch-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto 36px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(214,179,106,.08), rgba(214,179,106,.15));
  border: 1px solid rgba(214,179,106,.3);
  border-radius: var(--radius);
}
.launch-banner-badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}
.launch-banner-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
}
@media (max-width: 600px) {
  .launch-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 20px;
  }
}

/* Guarantee pill — below price grid */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 560px;
  margin: 32px auto 0;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--ink-muted);
  text-wrap: pretty;
}
.pricing-guarantee-ic {
  flex-shrink: 0;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
}
@media (max-width: 600px) {
  .pricing-guarantee {
    border-radius: var(--radius);
    text-align: center;
    line-height: 1.5;
  }
}

.pricing-note {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--ink-mute-2);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}

/* Comparison table */
.compare-table-wrap {
  margin-top: 56px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.compare-table-wrap.is-open {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

/* Toggle header */
.compare-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  transition: background .2s ease;
}
.compare-toggle:hover { background: rgba(214,179,106,.05); }
.compare-toggle-label { display: flex; flex-direction: column; gap: 4px; }
.compare-toggle-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.compare-toggle-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.compare-toggle-icon {
  position: relative;
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .35s cubic-bezier(.4,.0,.2,1);
}
.compare-toggle:hover .compare-toggle-icon {
  border-color: var(--gold);
}
.compare-toggle-icon svg { display: block; }
.compare-toggle-icon-v {
  transition: opacity .25s ease, transform .35s cubic-bezier(.4,.0,.2,1);
  transform-origin: 12px 12px;
}
.compare-table-wrap.is-open .compare-toggle-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
  transform: rotate(180deg);
}
.compare-table-wrap.is-open .compare-toggle-icon-v {
  opacity: 0;
  transform: rotate(90deg);
}

/* Collapsible region — CSS grid trick: rows 0fr → 1fr animates height */
.compare-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s cubic-bezier(.4,.0,.2,1);
}
.compare-table-wrap.is-open .compare-collapse {
  grid-template-rows: 1fr;
}
.compare-collapse-inner {
  overflow: hidden;
  min-height: 0;
  border-top: 1px solid transparent;
  transition: border-color .35s ease;
}
.compare-table-wrap.is-open .compare-collapse-inner {
  border-top-color: var(--line);
}

.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
}
.compare-table thead th {
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th.feat-col {
  background: var(--ink); color: #fff;
  position: relative;
}
.compare-table thead th.feat-col::after {
  content: 'Recommandée';
  position: absolute; top: 4px; right: 12px;
  font-size: 9px; letter-spacing: 0.1em;
  color: var(--gold); font-weight: 500;
}
.compare-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.5); }
.compare-table .feat-col-cell { background: rgba(6, 17, 31, .03) !important; font-weight: 500; }
.compare-table .col-feat { font-family: var(--font-display); font-weight: 500; color: var(--ink); }
.compare-table .yes { color: var(--ink); }
.compare-table .yes::before { content: '✓ '; color: var(--gold); font-weight: 600; }
.compare-table .no { color: var(--ink-mute-2); opacity: .5; }
.compare-table .no::before { content: '— '; }

@media (max-width: 780px) {
  .compare-table thead th, .compare-table tbody td { padding: 10px 12px; font-size: 12px; }
  .compare-table thead th.feat-col::after { display: none; }
}

/* ============================================================
   Comparison vs generic
   ============================================================ */
.versus { background: var(--bg-soft); }
.versus-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 780px) { .versus-grid { grid-template-columns: 1fr; } }
.versus-col {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}
.versus-col.skanlia {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.versus-col.skanlia h3 { color: #fff; }
.versus-col.skanlia .v-label { color: var(--gold); }
.versus-col.skanlia .v-list li { color: rgba(255,255,255,.85); }
.versus-col.skanlia .v-list .check { color: var(--gold); }
.v-label { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute-2); }
.versus-col h3 { margin-top: 10px; font-size: 22px; }
.v-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.v-list li { font-size: 14px; color: var(--ink-2); display: flex; gap: 10px; }
.v-list .check { color: var(--gold); flex-shrink: 0; }
.v-list .dash { color: var(--ink-mute-2); flex-shrink: 0; }

/* ============================================================
   Modes
   ============================================================ */
.modes { background: #fff; }
.modes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 880px) { .modes-grid { grid-template-columns: 1fr; } }
.mode-card {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mode-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.mode-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 14px;
}
.mode-card h3 { margin-top: 18px; font-size: 18px; }
.mode-card p { margin-top: 10px; font-size: 14px; }
.mode-tag { font-family: var(--font-display); font-size: 11px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }

.modes-note {
  margin-top: 36px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 680px; margin-left: auto; margin-right: auto;
  line-height: 1.4;
}
.modes-note span { color: var(--gold); }

/* ============================================================
   Benefits
   ============================================================ */
.benefits { background: var(--bg-deep); color: #fff; }
.benefits .section-head h2 { color: #fff; }
.benefits .section-head p { color: rgba(255,255,255,.65); }
.benefits .eyebrow { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  background: var(--bg-deep);
  padding: 36px 28px;
  transition: background .25s ease;
}
.benefit:hover { background: var(--bg-deep-2); }
.benefit-num {
  font-family: var(--font-display); font-size: 12px; color: var(--gold);
  letter-spacing: 0.14em;
}
.benefit h4 { color: #fff; font-size: 19px; margin-top: 10px; }
.benefit p { color: rgba(255,255,255,.65); font-size: 14px; margin-top: 8px; }

/* ============================================================
   Team — Cofondateurs
   ============================================================ */
.team { background: var(--bg-soft); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 8px;
}
@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.team-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.team-title {
  font-size: 13px;
  color: var(--gold);
  margin-top: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.team-bio {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-top: 14px;
  text-wrap: pretty;
}
.team-conviction {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.team-conviction-ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-pale);
  color: var(--gold);
  display: grid; place-items: center;
}
.team-conviction p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}
.team-conviction p strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 600px) {
  .team-conviction { flex-direction: column; padding: 22px; gap: 12px; }
}

/* ============================================================
   Reassurance
   ============================================================ */
.reassure { background: var(--bg-soft); }
.reassure-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 780px) { .reassure-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .reassure-grid { grid-template-columns: 1fr; } }
.reassure-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform .2s ease;
}
.reassure-card:hover { transform: translateY(-2px); }
.reassure-ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-pale); color: var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.reassure-card h4 { font-size: 14.5px; }
.reassure-card p { font-size: 13px; margin-top: 4px; }

.reassure-note {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.reassure-chip {
  padding: 8px 16px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 100px;
  font-size: 12px; color: var(--ink-mute-2);
  font-family: var(--font-mono);
}
.reassure-chip.active {
  background: rgba(214, 179, 106, .1);
  border: 1px solid rgba(214, 179, 106, .3);
  color: var(--ink);
}
.reassure-chip.active::before {
  content: '✓ ';
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--ink); }
.faq-q {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: var(--ink);
  text-align: left;
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink);
  transition: transform .3s ease, background .2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { background: var(--ink); color: #fff; transform: rotate(45deg); }
.faq-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.2,.7,.2,1);
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body > div { overflow: hidden; }
.faq-body p { padding: 0 24px 22px; font-size: 14.5px; line-height: 1.65; }

/* ============================================================
   CTA final
   ============================================================ */
.cta-final {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(214,179,106,.18), transparent 60%),
    radial-gradient(700px 400px at 80% 100%, rgba(45, 212, 191, .08), transparent 60%),
    var(--bg-deep);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: .5;
  pointer-events: none;
}
.cta-final h2 { color: #fff; font-size: clamp(34px, 4.5vw, 56px); }
.cta-final p { color: rgba(255,255,255,.7); margin: 22px auto 0; max-width: 600px; font-size: 17px; position: relative; z-index: 1; }
.cta-final .cta-actions { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-final .cta-actions .btn-primary { background: var(--gold); color: var(--ink); }
.cta-final .cta-actions .btn-secondary { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.15); color: #fff; }
.cta-final .cta-actions .btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.cta-trust {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  position: relative; z-index: 1;
  text-wrap: pretty;
}
.cta-trust-ic { color: var(--gold); display: inline-flex; align-items: center; }
@media (max-width: 600px) {
  .cta-trust { flex-direction: column; gap: 6px; text-align: center; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--bg-deep-2); color: rgba(255,255,255,.65); padding: 64px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
.footer-brand .brand { color: #fff; }
.footer-tagline { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,.6); max-width: 32ch; line-height: 1.5; }
.footer-col h5 { font-family: var(--font-display); font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 16px; font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.4);
}
.footer-bottom .placeholder { font-family: var(--font-mono); }

/* ============================================================
   Misc utilities
   ============================================================ */
.spacer-sm { height: 32px; }
.spacer-md { height: 56px; }
.text-center { text-align: center; }
.muted { color: var(--ink-muted); }

/* small scrollbar */
::selection { background: var(--gold); color: var(--ink); }

/* ============================================================
   Interactive — Problem section spotlight
   ============================================================ */
.pi-label { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pi-live {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px; border-radius: 100px;
  background: rgba(6,17,31,.05); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  color: var(--ink-2); text-transform: none;
}
.pi-live.alt { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.pi-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(214,179,106,.6);
  animation: pi-pulse 1.6s ease-out infinite;
}
@keyframes pi-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(214,179,106,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(214,179,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,179,106,0); }
}
.pill { transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease; }
.pill.now {
  background: var(--ink); color: #fff; border-color: var(--ink);
  transform: translateY(-2px);
}
.pill.now .check { color: var(--gold); }
.problem-col.alt .pill.now { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.missed-stack { margin-top: 22px; display: flex; flex-direction: column; gap: 6px; position: relative; }
.missed-row {
  appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 14px;
  color: rgba(255,255,255,.78);
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 12px; text-align: left;
  cursor: pointer;
  transition: background .3s cubic-bezier(.2,.7,.2,1),
              border-color .3s ease,
              color .3s ease,
              transform .3s cubic-bezier(.2,.7,.2,1),
              padding .3s ease;
}
.missed-row .missed-idx {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  transition: color .3s ease;
}
.missed-row .missed-text { flex: 1; }
.missed-row .missed-x {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.4);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.missed-row.on {
  background: linear-gradient(90deg, rgba(214,179,106,.18), rgba(214,179,106,.06));
  border-color: rgba(214,179,106,.5);
  color: #fff;
  transform: translateX(4px);
  padding-left: 18px;
}
.missed-row.on .missed-idx { color: var(--gold); }
.missed-row.on .missed-x {
  background: var(--gold); color: var(--ink);
  transform: rotate(90deg);
}
.missed-progress {
  margin-top: 12px;
  height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.missed-progress > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(214,179,106,.4));
  transition: width .6s cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   Interactive — Versus paired comparison
   ============================================================ */
.versus-compare {
  margin-top: 32px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,.04));
}
.versus-compare-head {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  padding: 18px 24px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute-2);
}
.versus-compare-head .vc-side.skanlia { color: var(--ink); font-weight: 600; }
.versus-compare-head .vc-side.skanlia::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-right: 8px; vertical-align: middle;
}
.versus-compare-head .vc-side { text-align: left; }
.versus-compare-head .vc-side.skanlia { text-align: right; }
.versus-compare-head .vc-mid {
  text-align: center; font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-mute-2); opacity: .6;
  letter-spacing: 0;
}

.versus-row {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  padding: 18px 24px;
  border-top: 1px solid var(--line-soft);
  transition: background .35s cubic-bezier(.2,.7,.2,1),
              opacity .35s ease,
              transform .35s ease;
}
.versus-row:first-of-type { border-top: none; }
.versus-row.dim { opacity: .35; }
.versus-row.on {
  background: linear-gradient(90deg, rgba(214,179,106,.06), rgba(214,179,106,.0) 50%, rgba(214,179,106,.06));
}
.vr-generic, .vr-skanlia { display: flex; align-items: center; gap: 12px; font-size: 14.5px; line-height: 1.4; }
.vr-generic { color: var(--ink-mute-2); }
.vr-skanlia { color: var(--ink); font-weight: 500; }
.versus-row.on .vr-generic { color: var(--ink-mute-2); text-decoration: line-through; text-decoration-color: rgba(0,0,0,.2); }
.versus-row.on .vr-skanlia { color: var(--ink); }
.vr-dash { color: var(--ink-mute-2); font-weight: 500; flex-shrink: 0; }
.vr-check {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--bg-pale); color: var(--ink);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.versus-row.on .vr-check {
  background: var(--gold); color: var(--ink); transform: scale(1.1);
}
.vr-bridge {
  display: flex; align-items: center; gap: 4px;
  color: var(--ink-mute-2);
}
.vr-bridge-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 50%, transparent);
  transition: background .35s ease;
}
.vr-bridge-ic {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--ink-mute-2);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.versus-row.on .vr-bridge-ic {
  background: var(--ink); color: var(--gold); border-color: var(--ink);
  transform: rotate(360deg);
}
.versus-row.on .vr-bridge-line {
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.versus-compare-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-soft);
  display: flex; justify-content: center;
}
.vc-foot-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  background: #fff; border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute-2);
}
@media (max-width: 780px) {
  .versus-compare-head, .versus-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 18px; }
  .vr-bridge { display: none; }
  .versus-compare-head .vc-mid, .versus-compare-head .vc-side.skanlia { text-align: left; }
  .versus-row { border-top: 1px dashed var(--line); }
}

/* ============================================================
   Interactive — Modes tabs
   ============================================================ */
.modes-switch {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  margin: 0 auto 32px;
  max-width: 820px;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.modes-tab {
  position: relative; z-index: 1;
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 0;
  padding: 16px 18px; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer;
  color: var(--ink-muted);
  transition: color .3s ease, background .25s ease, transform .2s ease;
  font-family: var(--font-display);
}
.modes-tab:hover { color: var(--ink); }
.modes-tab.on { color: #fff; }
.modes-tab-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: var(--gold);
  opacity: 1;
  font-weight: 500;
  transition: color .3s ease, opacity .3s ease;
}
.modes-tab.on .modes-tab-num { color: var(--gold); opacity: 1; }
.modes-tab-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.modes-switch-indicator {
  position: absolute; z-index: 0;
  top: 8px; bottom: 8px; left: 8px;
  width: calc((100% - 16px) / 3);
  background: linear-gradient(150deg, var(--bg-deep-2), var(--bg-deep) 70%);
  border-radius: 12px;
  transition: transform .5s cubic-bezier(.4,.0,.2,1);
  box-shadow: 0 10px 28px rgba(6,17,31,.28), inset 0 1px 0 rgba(255,255,255,.08);
}
.modes-switch-indicator::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 8px;
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: .85;
}

.modes-panel {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  animation: modes-panel-in .45s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes modes-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 880px) {
  .modes-panel { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .modes-tab-title { font-size: 12.5px; }
}
.modes-panel-left h3 { font-size: 26px; margin-top: 8px; }
.modes-panel-left p { margin-top: 14px; font-size: 15px; }
.modes-points { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 10px; }
.modes-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-2);
  opacity: 0; transform: translateX(-8px);
  animation: modes-point-in .35s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes modes-point-in { to { opacity: 1; transform: translateX(0); } }
.modes-points .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-pale); color: var(--ink);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
}
.modes-panel-right {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 28px;
  border: 1px solid var(--line-soft);
}
.modes-meter-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-mute-2); margin-bottom: 6px;
  letter-spacing: .04em;
}
.modes-meter-bar {
  height: 6px; border-radius: 6px;
  background: rgba(6,17,31,.06);
  overflow: hidden;
}
.modes-meter-fill {
  height: 100%; border-radius: 6px;
  transition: width .7s cubic-bezier(.2,.7,.2,1);
}
.modes-meter-fill.human { background: var(--ink); }
.modes-meter-fill.auto  { background: var(--gold); }

.modes-flow {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.modes-flow-node {
  flex: 1;
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
  padding: 10px 12px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line);
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  color: var(--ink-2);
  transition: background .35s ease, color .35s ease, border-color .35s ease, opacity .35s ease;
  text-align: center;
  min-width: 0; white-space: nowrap;
}
.modes-flow-node.on { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.modes-flow-node.mute { opacity: .45; }
.modes-flow-arrow {
  width: 14px; height: 2px;
  background: linear-gradient(90deg, var(--line), var(--ink-mute-2));
  border-radius: 2px;
  position: relative;
}
.modes-flow-arrow::after {
  content: ''; position: absolute; right: -1px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px; height: 6px;
  border-top: 2px solid var(--ink-mute-2);
  border-right: 2px solid var(--ink-mute-2);
}
@media (max-width: 520px) {
  .modes-flow { flex-direction: column; align-items: stretch; }
  .modes-flow-arrow { width: 2px; height: 14px; align-self: center; }
  .modes-flow-arrow::after { right: 50%; top: auto; bottom: -1px; transform: translateX(50%) rotate(135deg); }
}

/* ============================================================
   Interactive — Benefits cards with tilt + glow
   ============================================================ */
.benefit.interactive {
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: background .25s ease, transform .25s cubic-bezier(.2,.7,.2,1);
}
.benefit.interactive .benefit-glow {
  position: absolute; inset: -1px;
  background: radial-gradient(220px 160px at 50% 0%, rgba(214,179,106,.18), transparent 70%);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.benefit.interactive:hover .benefit-glow { opacity: 1; }
.benefit.interactive .benefit-num {
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.benefit.interactive .benefit-num::before {
  content: '—'; color: rgba(214,179,106,.5); margin-right: 4px;
}
.benefit.interactive .benefit-mark {
  position: absolute; top: 28px; right: 28px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,.4);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.benefit.interactive:hover .benefit-mark {
  background: var(--gold); color: var(--ink);
  transform: rotate(-45deg);
}

/* ============================================================
   Interactive — Reassurance cards
   ============================================================ */
.reassure-card.interactive {
  position: relative; overflow: hidden;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.reassure-card.interactive:hover {
  border-color: var(--ink);
  box-shadow: 0 12px 28px rgba(6,17,31,.08);
}
.reassure-card.interactive .reassure-ic {
  transition: background .3s ease, color .3s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.reassure-card.interactive:hover .reassure-ic {
  background: var(--ink); color: var(--gold);
  transform: rotate(-6deg) scale(1.05);
}
.reassure-corner {
  position: absolute; right: -28px; top: -28px;
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle at 30% 70%, rgba(214,179,106,.18), transparent 70%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.reassure-card.interactive:hover .reassure-corner { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .pi-live-dot { animation: none; }
  .missed-row, .missed-progress > span,
  .versus-row, .vr-check, .vr-bridge-ic,
  .modes-switch-indicator, .modes-meter-fill,
  .benefit.interactive, .reassure-card.interactive .reassure-ic {
    transition: none !important;
  }
  .modes-panel, .modes-points li { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Demo request modal
   ============================================================ */
.dm-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(6, 17, 31, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: dm-fade-in 300ms ease both;
}
.dm-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 36px 32px;
  animation: dm-slide-up 400ms cubic-bezier(.2,.7,.2,1) both;
}
.dm-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px;
  color: var(--ink-muted);
  background: var(--bg-soft);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.dm-close:hover { background: var(--line-soft); color: var(--ink); }
.dm-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 179, 106, .35);
  color: var(--ink);
}
.dm-head { margin-bottom: 24px; }
.dm-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bg);
  margin-bottom: 14px;
}
.dm-eyebrow .dm-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.dm-head h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.15;
  color: var(--ink); margin: 0 0 8px;
}
.dm-sub { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }

.dm-form { display: flex; flex-direction: column; gap: 14px; }
.dm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dm-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.dm-field label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.005em;
}
.dm-field label .dm-opt { color: var(--ink-mute-2); font-weight: 400; }
.dm-field label span[aria-hidden="true"] { color: var(--gold); }
.dm-field input,
.dm-field textarea {
  font-family: var(--font-body); font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  width: 100%;
  outline: none;
}
.dm-field textarea { resize: vertical; min-height: 84px; }
.dm-field input:hover,
.dm-field textarea:hover { border-color: #CBD5E1; }
.dm-field input:focus,
.dm-field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(6, 17, 31, .08);
}
.dm-field.has-error input,
.dm-field.has-error textarea {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}
.dm-err { font-size: 12px; color: #DC2626; }
.dm-submit { width: 100%; margin-top: 6px; padding: 15px 22px; font-size: 15px; }
.dm-reassure { text-align: center; font-size: 13px; color: var(--ink-mute-2); margin-top: 2px; }

.dm-success {
  text-align: center;
  padding: 12px 4px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: dm-fade-in 280ms ease both;
}
.dm-success-mark {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-soft);
  color: var(--ink);
  border-radius: 100px;
  margin-bottom: 4px;
}
.dm-success h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dm-success p {
  color: var(--ink-muted);
  font-size: 15px;
  max-width: 36ch;
}
.dm-success-close { margin-top: 8px; }

@keyframes dm-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dm-slide-up {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .dm-overlay, .dm-dialog, .dm-success { animation: none; }
}

@media (max-width: 600px) {
  .dm-overlay { padding: 0; align-items: stretch; }
  .dm-dialog {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    padding: 28px 22px 24px;
  }
  .dm-row { grid-template-columns: 1fr; gap: 14px; }
  .dm-head h3 { font-size: 22px; }
  .dm-close { top: 12px; right: 12px; }
}


/* ============================================================
   VERSUS — sous-titre + Avant/Avec + conclusion bénéfice
   Ajouté après remontée du composant à la position 5.
   ============================================================ */

.versus .section-sub {
  max-width: 64ch;
  margin: 18px auto 0;
  text-align: center;
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ----- Avant / Avec (bloc émotionnel) ----- */
.versus-shift {
  margin-top: 56px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px clamp(20px, 3vw, 40px) 12px;
}

.vshift-head {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: end;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.vshift-col-label { display: flex; flex-direction: column; gap: 6px; }
.vshift-col-label:last-child { text-align: right; align-items: flex-end; }

.vshift-tag {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vshift-tag-before {
  background: rgba(6, 17, 31, 0.05);
  color: var(--ink-mute-2);
  border: 1px solid var(--line);
}
.vshift-tag-after {
  background: var(--ink);
  color: var(--gold);
}
.vshift-col-name {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  color: var(--ink-muted);
}

.vshift-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.vshift-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.vshift-row:last-child { border-bottom: none; }

.vshift-cell {
  display: flex; align-items: center; gap: 10px;
  font-size: 15.5px; line-height: 1.4;
}
.vshift-before {
  color: var(--ink-mute-2);
  text-decoration: line-through;
  text-decoration-color: rgba(6, 17, 31, .18);
  text-decoration-thickness: 1px;
}
.vshift-after {
  justify-content: flex-end;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

.vshift-ic {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
}
.vshift-ic-before {
  background: rgba(6, 17, 31, 0.05);
  color: var(--ink-mute-2);
}
.vshift-ic-after {
  background: var(--gold);
  color: var(--ink);
  order: 2;
}

.vshift-arrow {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink), var(--bg-deep-3, #0c1a30));
  color: var(--gold);
  position: relative;
}
.vshift-arrow::before,
.vshift-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px; height: 1px;
  background: var(--line);
}
.vshift-arrow::before { right: 100%; }
.vshift-arrow::after  { left: 100%; }

/* ----- Tableau comparatif : versus-row devient <button> ----- */
.versus-compare .versus-row {
  width: 100%;
  appearance: none;
  background: transparent;
  border: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.versus-compare .versus-row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Le footer "Survolez une ligne" devient inutile — 1ère ligne déjà active. */
.versus-compare-foot { display: none; }

/* ----- Conclusion orientée bénéfice ----- */
.versus-conclusion {
  margin: 36px auto 0;
  max-width: 780px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.versus-conclusion strong { color: var(--ink); font-weight: 600; }
.versus-conclusion-mark {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  margin-right: 8px;
  vertical-align: -7px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

/* ----- Responsive ----- */
@media (max-width: 720px) {
  .vshift-head,
  .vshift-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .vshift-col-label:last-child { text-align: left; align-items: flex-start; }
  .vshift-after { justify-content: flex-start; text-align: left; }
  .vshift-ic-after { order: 0; }
  .vshift-arrow {
    width: 36px; height: 36px;
    justify-self: start;
    margin: 4px 0;
  }
  .vshift-arrow::before, .vshift-arrow::after { display: none; }
}


/* ============================================================
   EMAIL CAPTURE — inline section entre Bénéfices et Pricing
   ============================================================ */
.email-capture {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.ec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(214, 179, 106, 0.12);
  border: 1px solid rgba(214, 179, 106, 0.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ec-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.ec-title {
  margin: 20px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}
.ec-sub {
  margin: 0 auto 28px;
  max-width: 48ch;
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}

.ec-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}
.ec-form-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.ec-input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ec-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.18);
}
.ec-input::placeholder { color: var(--ink-mute-2); }
.ec-input:disabled { opacity: .6; cursor: not-allowed; }

.ec-submit { flex-shrink: 0; white-space: nowrap; }

.ec-error {
  margin: 12px 0 0;
  font-size: 13px;
  color: #b91c1c;
}
.ec-legal {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-mute-2);
}
.ec-legal a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.ec-legal a:hover { color: var(--ink); }

.ec-success {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 0;
}
.ec-success-ic {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}
.ec-success h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.ec-success p {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 14.5px;
  max-width: 44ch;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media (max-width: 600px) {
  .email-capture {
    border-radius: var(--radius);
    padding: 28px 20px;
  }
  .ec-form-row { flex-direction: column; gap: 10px; }
  .ec-submit { width: 100%; }
}

/* ============================================================
   STICKY BAR — bandeau bas de page
   ============================================================ */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--bg-deep);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px -10px rgba(6, 17, 31, 0.4);
  animation: sb-slide-up 400ms cubic-bezier(.2, .7, .2, 1);
  padding-bottom: env(safe-area-inset-bottom);
}

@keyframes sb-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.sb-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 56px;
  padding: 0 clamp(16px, 3vw, 24px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.sb-msg {
  display: flex; align-items: center; gap: 10px;
  margin: 0; flex: 1;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(214, 179, 106, 0.6);
  animation: sb-pulse 2s ease-out infinite;
}
@keyframes sb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(214, 179, 106, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(214, 179, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 179, 106, 0); }
}

.sb-form { display: flex; gap: 8px; align-items: stretch; }
.sb-input {
  width: 220px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  transition: border-color .15s ease, background .15s ease;
}
.sb-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.sb-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.sb-submit { padding: 8px 16px; font-size: 13px; white-space: nowrap; }

.sb-success {
  display: flex; align-items: center; gap: 8px;
  flex: 1; justify-content: flex-end;
  font-family: var(--font-display);
  font-size: 13.5px;
  color: var(--gold);
}

.sb-close {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.sb-close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.sb-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .sb-inner { height: 64px; gap: 8px; }
  .sb-msg { display: none; }
  .sb-form { flex: 1; }
  .sb-input { width: auto; flex: 1; min-width: 0; padding: 9px 14px; }
  .sb-submit { padding: 9px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-bar { animation: none; }
  .sb-dot { animation: none; }
}


/* ============================================================
   CONSENT RGPD — Custom checkbox + mention
   Utilisé par DemoModal (.dm-consent), EmailCapture (.ec-consent)
   et la mention StickyBar (.sb-legal)
   ============================================================ */

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

/* Hide native checkbox visually but keep it accessible */
.consent-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.consent-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  display: grid;
  place-items: center;
  color: transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  margin-top: 1px;
}

.consent-row:hover .consent-box {
  border-color: var(--ink-muted);
}

.consent-input:focus-visible + .consent-box {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.consent-input:checked + .consent-box {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.consent-text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-mute-2);
}

.consent-text a {
  text-decoration: underline;
  color: var(--ink-muted);
  transition: color .15s ease;
}

.consent-text a:hover {
  color: var(--ink);
}

/* Error state */
.dm-consent.has-error .consent-box,
.ec-consent.has-error .consent-box {
  border-color: #c0392b;
}

.consent-err {
  display: block;
  margin-top: 6px;
  margin-left: 28px;
  font-size: 12px;
  color: #c0392b;
}

/* DemoModal-specific spacing */
.dm-consent {
  margin-top: 4px;
  margin-bottom: 4px;
}

/* EmailCapture-specific spacing */
.ec-consent {
  display: flex;
  justify-content: center;
}
.ec-consent .consent-row {
  max-width: 460px;
}

/* StickyBar micro-mention on dark background */
.sb-legal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  text-align: center;
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, .5);
  margin: 0;
  padding: 0 16px;
  pointer-events: none;
}
.sb-legal a {
  color: rgba(255, 255, 255, .6);
  text-decoration: underline;
  pointer-events: auto;
  transition: color .15s ease;
}
.sb-legal a:hover {
  color: rgba(255, 255, 255, .9);
}

@media (max-width: 720px) {
  /* On mobile, the .sb-legal mention is collapsed into the input placeholder
     to keep the bar compact while preserving visible consent notice. */
  .sb-legal { display: none; }
}
