@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&family=Montserrat:wght@300;400;500;600;700;800;900&family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&display=swap');

/* =====================================================================
   Qorpo/IA — Glass-forward rebuild
   Palette: warm sand, terracotta, charcoal
   Direction: Apple/Linear/Vercel/Supervity
   ===================================================================== */

/* =====================================================================
   Preloader — sable + logo Qorpo
   ===================================================================== */
#qorpo-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #ffffff;
  opacity: 1;
  transition: opacity 420ms ease, visibility 0s linear 420ms;
}
#qorpo-preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.qp-spinner {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 22px; /* iOS app icon (squircle-ish) */
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.25);
  animation: qpSpin 1.1s linear infinite;
}
@keyframes qpSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .qp-spinner { animation: none; }
}

:root {
  /* Sand base */
  --sand-50: #f8f3ea;
  --sand-100: #f1e9d9;
  --sand-200: #e6dbc5;
  --sand-300: #d6c7a8;

  /* Terracotta accent */
  --terra: #c85a2e;
  --terra-soft: #e6825a;
  --terra-glow: rgba(200, 90, 46, 0.35);

  /* Charcoal ink */
  --ink: #1a1815;
  --ink-2: #2a2620;
  --ink-3: #4a443c;
  --ink-dim: #6f685d;
  --ink-faint: #a39b8d;

  /* Glass surfaces */
  --glass-1: rgba(255, 252, 245, 0.55);
  --glass-2: rgba(255, 252, 245, 0.35);
  --glass-3: rgba(255, 252, 245, 0.22);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-border-strong: rgba(255, 255, 255, 0.9);
  --glass-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 1px 2px rgba(255,255,255,0.5) inset,
    0 20px 50px -20px rgba(74, 40, 20, 0.18),
    0 0 0 1px rgba(255,255,255,0.5);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Legacy var names still referenced in components */
  --accent: var(--terra);
  --accent-dim: var(--terra-soft);
  --orange: var(--terra);
  --volt: var(--terra);
  --bg: var(--sand-50);
  --text: var(--ink);
  --text-dim: var(--ink-dim);
  --text-faint: var(--ink-faint);
  --border: rgba(26, 24, 21, 0.08);
  --border-strong: rgba(26, 24, 21, 0.18);
  --surface: var(--glass-1);
  --surface-solid: rgba(255, 252, 245, 0.9);
  --surface-2: var(--glass-2);
  --font-display: var(--font-sans);
}

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

html, body {
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== BACKGROUND — clean white with very subtle terracotta + graphite hints ===== */
html {
  background:
    radial-gradient(ellipse 55% 45% at 15% 15%, rgba(242,107,31,0.10), transparent 65%),
    radial-gradient(ellipse 50% 42% at 85% 18%, rgba(110,115,125,0.07), transparent 68%),
    radial-gradient(ellipse 60% 45% at 78% 82%, rgba(242,140,60,0.08), transparent 68%),
    radial-gradient(ellipse 55% 45% at 20% 85%, rgba(90,95,105,0.06), transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  background-attachment: fixed;
}
body { min-height: 100vh; position: relative; background: transparent; }

/* Slow drifting blobs behind the glass */
body::before, body::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: -2;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.8;
  will-change: transform;
}
body::before {
  width: 48vw; height: 48vw;
  top: 8vh; left: -8vw;
  background: radial-gradient(circle, rgba(242,107,31,0.12), rgba(242,107,31,0) 70%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
body::after {
  width: 52vw; height: 52vw;
  bottom: 4vh; right: -10vw;
  background: radial-gradient(circle, rgba(110,115,125,0.10), rgba(110,115,125,0) 70%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
@keyframes drift-a {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(10vw, 8vh, 0) scale(1.12); }
}
@keyframes drift-b {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-8vw, -6vh, 0) scale(1.08); }
}

/* Frosted glass pane tints everything behind */
.glass-pane {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: -1;
  backdrop-filter: blur(80px) saturate(125%);
  -webkit-backdrop-filter: blur(80px) saturate(125%);
  background: rgba(255, 255, 255, 0.55);
}

.ambient { display: none; }

.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 2000;
  opacity: 0.025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===== REVEAL (disabled for capture reliability — content visible by default) ===== */
.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }

/* ===== TYPOGRAPHY PRIMITIVES ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.eyebrow .num { color: var(--terra); font-weight: 500; }
.eyebrow .bar { width: 28px; height: 1px; background: var(--ink-dim); opacity: 0.5; }

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
.section-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}

.section-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 52ch;
  margin-top: 20px;
  text-wrap: pretty;
}

/* ===== GLASS PRIMITIVES ===== */
.glass {
  background: var(--glass-1);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
}
.glass-thin {
  background: var(--glass-2);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
}

/* ===== NAV — header plein-bande en haut, pill centrée au scroll ===== */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 20px 40px;
  pointer-events: none;
  transition:
    padding 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    top 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-wrap.stuck {
  padding: 14px 24px;
  top: 2px;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1360px;
  padding: 14px 20px;
  gap: 24px;
  border-radius: 20px;
  background: rgba(255, 252, 245, 0);
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  border: 1px solid rgba(255,255,255,0);
  box-shadow:
    0 0 0 rgba(255,255,255,0) inset,
    0 0 0 rgba(0,0,0,0),
    0 0 0 rgba(74, 40, 20, 0);
  will-change: max-width, padding, border-radius, background, backdrop-filter;
  transition:
    max-width 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    padding 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 1s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 1s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 1s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 1s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    gap 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Layout — tout reste centré, pas de margin:auto qui fait sauter le contenu */
.nav-brand { transition: none; }
.nav-cta   { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), background 0.3s; }

/* État STUCK : pill glass compacte et centrée */
.nav.stuck {
  max-width: 720px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  gap: 4px;
  background: rgba(255, 252, 245, 0.6);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-color: rgba(255,255,255,0.75);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 1px 2px rgba(0,0,0,0.03),
    0 14px 40px -12px rgba(74, 40, 20, 0.18);
}
.nav.stuck .nav-brand { margin-right: 0; }
.nav.stuck .nav-cta   { margin-left: 0; }

.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  padding: 0 6px;
  transition:
    gap 1s cubic-bezier(0.22, 1, 0.36, 1),
    padding 1s cubic-bezier(0.22, 1, 0.36, 1),
    font-size 1s cubic-bezier(0.22, 1, 0.36, 1),
    margin 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.stuck .nav-brand { gap: 8px; padding: 0 4px; font-size: 13px; }
.nav-brand-logo {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--ink);
  will-change: width, height, border-radius, transform;
  transition:
    transform 0.4s cubic-bezier(0.22,1,0.36,1),
    width 1s cubic-bezier(0.22, 1, 0.36, 1),
    height 1s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.stuck .nav-brand-logo { width: 22px; height: 22px; border-radius: 6px; }
.nav-brand:hover .nav-brand-logo { transform: rotate(-8deg); }
.nav-brand-text { letter-spacing: -0.01em; text-transform: none; }

.nav-link {
  position: relative;
  padding: 10px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-dim);
  text-decoration: none;
  border-radius: 999px;
  transition:
    color 0.25s,
    background 0.25s,
    padding 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    font-size 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.stuck .nav-link {
  padding: 8px 12px;
  font-size: 12.5px;
}
.nav-link:hover { color: var(--ink); background: rgba(26, 24, 21, 0.05); }
.nav-link .dot {
  position: absolute; left: 6px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--terra);
  opacity: 0;
}
.nav-cta {
  padding: 10px 20px;
  background: var(--ink);
  color: #fdf9f0;
  border: none; border-radius: 999px;
  font-family: inherit; font-size: 13px; font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  will-change: padding, font-size, gap, margin, transform;
  transition:
    transform 0.3s cubic-bezier(0.22,1,0.36,1),
    background 0.3s,
    padding 1s cubic-bezier(0.22, 1, 0.36, 1),
    font-size 1s cubic-bezier(0.22, 1, 0.36, 1),
    gap 1s cubic-bezier(0.22, 1, 0.36, 1),
    margin 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.stuck .nav-cta { padding: 8px 16px; font-size: 12.5px; gap: 6px; }
.nav-cta:hover { background: var(--terra); transform: translateY(-1px); }
.nav-cta svg path { transition: transform 0.3s; }

/* Hairline retiré */
.nav-wrap::after { display: none; }

.nav.stuck, .nav-wrap.stuck { }
.nav.stuck .nav-link,
.nav.stuck .nav-cta,
.nav.stuck .nav-brand-logo { animation: none !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 5vw 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

/* Hero plan d'architecte — soft & smooth */
.hero-blueprint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  mask-image: radial-gradient(ellipse 78% 82% at 50% 55%, #000 35%, transparent 92%);
  -webkit-mask-image: radial-gradient(ellipse 78% 82% at 50% 55%, #000 35%, transparent 92%);
}

/* Grille : fade-in très doux */
.hero-blueprint .bp-grid {
  opacity: 0;
  animation: bp-grid-fade 2.2s ease-out 0.2s forwards;
}
@keyframes bp-grid-fade {
  to { opacity: 1; }
}

/* Traits : tracé lent et progressif */
.hero-blueprint .bp-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: bp-draw 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-blueprint .bp-l-0  { animation-delay: 0.6s; }
.hero-blueprint .bp-l-1  { animation-delay: 1.0s; }
.hero-blueprint .bp-l-2  { animation-delay: 1.2s; }
.hero-blueprint .bp-l-3  { animation-delay: 1.5s; }
.hero-blueprint .bp-l-4  { animation-delay: 1.6s; }
.hero-blueprint .bp-l-5  { animation-delay: 1.7s; }
.hero-blueprint .bp-l-6  { animation-delay: 1.8s; }
.hero-blueprint .bp-l-7  { animation-delay: 2.0s; stroke-dasharray: 200; stroke-dashoffset: 200; }
.hero-blueprint .bp-l-8  { animation-delay: 2.1s; stroke-dasharray: 200; stroke-dashoffset: 200; }
.hero-blueprint .bp-l-9  { animation-delay: 2.3s; }
.hero-blueprint .bp-l-10 { animation-delay: 2.4s; stroke-dasharray: 40; stroke-dashoffset: 40; }
.hero-blueprint .bp-l-11 { animation-delay: 2.48s; stroke-dasharray: 40; stroke-dashoffset: 40; }
.hero-blueprint .bp-l-12 { animation-delay: 2.56s; stroke-dasharray: 40; stroke-dashoffset: 40; }
.hero-blueprint .bp-l-13 { animation-delay: 2.7s; }
.hero-blueprint .bp-l-14 { animation-delay: 2.78s; stroke-dasharray: 40; stroke-dashoffset: 40; }
.hero-blueprint .bp-l-15 { animation-delay: 2.86s; stroke-dasharray: 40; stroke-dashoffset: 40; }
.hero-blueprint .bp-l-16 { animation-delay: 2.94s; stroke-dasharray: 40; stroke-dashoffset: 40; }
.hero-blueprint .bp-l-17 { animation-delay: 3.05s; stroke-dasharray: 80; stroke-dashoffset: 80; }
.hero-blueprint .bp-l-18 { animation-delay: 3.15s; stroke-dasharray: 80; stroke-dashoffset: 80; }
.hero-blueprint .bp-l-19 { animation-delay: 3.3s; stroke-dasharray: 600; stroke-dashoffset: 600; }

/* Pastilles : apparition fade très douce */
.hero-blueprint .bp-mark {
  opacity: 0;
  animation: bp-mark-in 1.2s ease-out forwards;
}
.hero-blueprint .bp-m-0 { animation-delay: 3.5s; }
.hero-blueprint .bp-m-1 { animation-delay: 3.6s; }
.hero-blueprint .bp-m-2 { animation-delay: 3.7s; }
.hero-blueprint .bp-m-3 { animation-delay: 3.8s; }
.hero-blueprint .bp-m-4 { animation-delay: 3.95s; }

/* Respiration globale très légère après le tracé */
.hero-blueprint .bp-lines {
  animation: bp-breathe 12s ease-in-out 4.5s infinite;
  transform-origin: 50% 50%;
}
@keyframes bp-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.82; }
}

@keyframes bp-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes bp-mark-in {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blueprint .bp-line { animation: none; stroke-dashoffset: 0; }
  .hero-blueprint .bp-mark { animation: none; opacity: 1; }
  .hero-blueprint .bp-grid { animation: none; opacity: 1; }
  .hero-blueprint .bp-lines { animation: none; }
}

.hero > *:not(.hero-blueprint) { position: relative; z-index: 1; }
.hero-blobs { display: none; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--glass-2);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  font-size: 13px; font-weight: 400;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.hero-badge-text { line-height: 1.3; font-size: 12px; max-width: none; }
.hero-badge-text br { display: none; }
.hero-laurel { color: var(--terra); font-size: 22px; line-height: 1; display: inline-flex; }
.hero-laurel.flip { transform: scaleX(-1); }

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(44px, 7vw, 108px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto;
  text-wrap: balance;
}
.hero-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  letter-spacing: -0.01em;
  display: inline;
  background: transparent;
  padding: 0;
}
.hero-title .italic::before { display: none; }
.hero-title .outline { -webkit-text-stroke: 0; color: inherit; }

/* Rotor : phrases qui cyclent, largeur = plus long item pour éviter le reflow */
.hero-title .rotor {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  text-align: center;
  line-height: inherit;
}
.hero-title .rotor-ghost {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: inherit;
}
.hero-title .rotor-text {
  position: absolute;
  inset: 0;
  display: block;
  white-space: nowrap;
  line-height: inherit;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  letter-spacing: -0.01em;
  animation: rotorIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-title .rotor.is-out .rotor-text {
  animation: rotorOut 0.42s cubic-bezier(0.64, 0, 0.78, 0) both;
}
@keyframes rotorIn {
  0%   { opacity: 0; transform: translateY(0.35em); filter: blur(6px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes rotorOut {
  0%   { opacity: 1; transform: translateY(0); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-0.35em); filter: blur(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title .rotor-text,
  .hero-title .rotor.is-out .rotor-text { animation: none; }
}

.hero-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 28px auto 0;
  text-wrap: pretty;
}
.hero-lede strong { color: var(--ink); font-weight: 500; }

.hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 36px;
}
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset;
  font-size: 13px; color: var(--ink);
}
.chip-dot {
  width: 20px; height: 20px;
  background: var(--terra);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.chip-dot::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.chip-icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(193, 91, 54, 0.12);
  color: var(--terra);
  flex-shrink: 0;
}

.hero-actions, .hero-row {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-cta-primary, .cta-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px 14px 14px;
  background: var(--ink);
  color: #fdf9f0;
  border: none; border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), background 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px -10px rgba(26, 24, 21, 0.4);
}
.hero-cta-primary:hover, .cta-primary:hover {
  background: var(--terra);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -12px var(--terra-glow);
}
.hero-cta-primary-icon {
  width: 28px; height: 28px;
  background: var(--terra);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
  transition: background 0.3s;
}
.hero-cta-primary:hover .hero-cta-primary-icon { background: #fdf9f0; color: var(--terra); }

.hero-cta-ghost, .ghost-btn {
  padding: 14px 24px;
  background: var(--glass-2);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.3s, transform 0.3s;
}
.hero-cta-ghost:hover, .ghost-btn:hover {
  background: rgba(255, 252, 245, 0.8);
  transform: translateY(-2px);
}
.ghost-btn .play-dot {
  width: 6px; height: 6px; background: var(--terra);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200,90,46,0.25);
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-badge, .hero-title, .hero-lede, .hero-chips, .hero-actions { opacity: 1; }

.hero-visual { display: none; }

/* ===== MARQUEE — style minimal "logos de métiers" ===== */
.marquee-wrap {
  margin: 60px 0 0;
  padding: 0;
}
.marquee-headline {
  text-align: center;
  font-family: var(--font-serif, 'Instrument Serif', serif);
  font-style: italic;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 auto;
  padding: 0 5vw 96px;
  text-wrap: balance;
}
.marquee {
  overflow: hidden;
  padding: 28px 0;
  margin: 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  border-top: none;
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.marquee-track {
  display: inline-flex; gap: 80px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.marquee-track > span:not(.sep) {
  padding: 0 20px;
}
/* Séparateurs invisibles (on garde l'élément pour ne pas casser le JSX) */
.marquee-track .sep {
  width: 0; height: 0;
  display: none;
}
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding: 120px 5vw;
  max-width: 1360px;
  margin: 0 auto;
  z-index: 1;
}

/* ===== COMPARISON ===== */
.compare-section { padding-top: 140px; padding-bottom: 140px; }

/* Pain cards — sur constats avant la comparaison */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.pain-card {
  position: relative;
  padding: 36px 32px 32px;
  background: rgba(255, 252, 245, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.pain-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 20px 60px -28px rgba(74, 40, 20, 0.22);
}
.pain-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--terra);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.pain-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}
.pain-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
  text-wrap: pretty;
}

.compare-header {
  margin-top: 140px;
}
@media (max-width: 760px) {
  .pain-grid { grid-template-columns: 1fr; }
  .compare-header { margin-top: 96px; }
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 72px;
  position: relative;
}
.compare-grid::before {
  content: 'VS';
  position: absolute;
  left: 50%; top: 72px;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--terra);
  background: var(--glass-1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: var(--glass-shadow);
}
.compare-col {
  padding: 32px;
  border-radius: 24px;
  background: var(--glass-1);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s;
}
.compare-col:hover {
  transform: translateY(-4px);
}
.compare-qorpo {
  background: linear-gradient(145deg, rgba(200,90,46,0.12), rgba(255,252,245,0.55));
  border-color: rgba(200,90,46,0.25);
}
.compare-qorpo:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 20px 50px -20px var(--terra-glow),
    0 0 0 1px rgba(200,90,46,0.3);
}
.compare-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.compare-label {
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 10px;
}
.compare-brand-logo {
  width: 22px; height: 22px;
  border-radius: 5px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.compare-icon {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(193, 91, 54, 0.12);
  color: var(--terra);
  flex-shrink: 0;
}
.compare-tag-bad, .compare-tag-good {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-tag-bad {
  background: rgba(26, 24, 21, 0.08);
  color: var(--ink-dim);
}
.compare-tag-good {
  background: var(--terra);
  color: #fff;
}
.compare-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 4px;
  font-size: 15px;
  border-bottom: 1px solid rgba(26, 24, 21, 0.04);
  transition: padding 0.3s;
}
.compare-row:last-child { border-bottom: none; }
.compare-col:hover .compare-row { padding-left: 8px; }
.compare-row-bad { color: var(--ink-dim); }
.compare-row-good { color: var(--ink); font-weight: 450; }

/* ===== TIMELINE 14 — HORIZONTAL ===== */
/* ===== TIMELINE 14 — MINIMAL ===== */
.timeline14 {
  position: relative;
  margin-top: 72px;
  padding: 4px 0 0;
}

/* Rail ultra-fin aligné sur les markers (top des items) */
.t14-rail-horizontal {
  position: absolute;
  left: 19px; right: 19px;
  top: 5px;
  height: 1px;
  background: rgba(26,24,21,0.08);
  z-index: 0;
}
.t14-rail-fill {
  position: absolute; left: 0; top: 0;
  height: 100%;
  background: var(--ink);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}

.t14-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  z-index: 1;
}

.t14-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: 46px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.t14-item.active { opacity: 1; transform: translateY(0); }
.t14-row > .t14-item:nth-child(1).active { transition-delay: 0.00s; }
.t14-row > .t14-item:nth-child(2).active { transition-delay: 0.06s; }
.t14-row > .t14-item:nth-child(3).active { transition-delay: 0.12s; }
.t14-row > .t14-item:nth-child(4).active { transition-delay: 0.18s; }

/* Marker : icône minimal sur fond sable */
.t14-marker {
  position: absolute;
  top: -14px; left: 0;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sand-50, #f5efe4);
  border: 1px solid rgba(26,24,21,0.12);
  color: var(--ink-dim);
  transition: background 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.45s, color 0.45s, box-shadow 0.45s;
}
.t14-item.active .t14-marker {
  background: var(--ink);
  border-color: var(--ink);
  color: #fdf9f0;
  box-shadow: 0 0 0 4px rgba(200,90,46,0.1);
}
.t14-icon { display: inline-flex; }
.t14-svg { overflow: visible; }

/* Animations activées uniquement quand l'étape est active */
.t14-item.active .t14-svg-target > circle:nth-of-type(1) {
  transform-origin: 12px 12px;
  animation: t14-pulse-ring 2.4s ease-in-out infinite;
}
.t14-item.active .t14-svg-target > circle:nth-of-type(2) {
  transform-origin: 12px 12px;
  animation: t14-pulse-dot 2.4s ease-in-out infinite;
}

.t14-item.active .t14-svg-list > circle {
  animation: t14-blink 2s ease-in-out infinite;
}
.t14-item.active .t14-svg-list > circle:nth-of-type(1) { animation-delay: 0s; }
.t14-item.active .t14-svg-list > circle:nth-of-type(2) { animation-delay: 0.4s; }
.t14-item.active .t14-svg-list > circle:nth-of-type(3) { animation-delay: 0.8s; }

.t14-item.active .t14-svg-bolt {
  animation: t14-bolt-flash 1.8s ease-in-out infinite;
}
.t14-item.active .t14-svg-bolt > path {
  fill: #fdf9f0;
  fill-opacity: 0.2;
}

.t14-item.active .t14-svg-bars > path {
  animation: t14-bars-grow 2.2s ease-in-out infinite;
  transform-origin: 50% 100%;
}

@keyframes t14-pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
@keyframes t14-pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}
@keyframes t14-blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes t14-bolt-flash {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(200,90,46,0)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 6px rgba(200,90,46,0.6)); transform: scale(1.08); }
}
@keyframes t14-bars-grow {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.88); }
}

/* Chip "JOUR X" — minimal uppercase label */
.t14-chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
  transition: color 0.4s ease;
}
.t14-item.active .t14-chip { color: var(--terra); }

.t14-title {
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.t14-desc {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.6;
  text-wrap: pretty;
  max-width: 32ch;
}

@media (max-width: 900px) {
  .t14-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 56px;
    position: relative;
  }
  /* Rail verticale à gauche en mobile */
  .t14-rail-horizontal {
    display: block;
    left: 19px; right: auto; top: 5px; bottom: 5px;
    width: 1px; height: auto;
    background: rgba(26,24,21,0.08);
  }
  .t14-rail-fill {
    width: 100% !important;
    height: var(--rail-progress, 0%);
    background: var(--ink);
    transition: height 0.5s cubic-bezier(0.22,1,0.36,1);
  }  .t14-item { padding-top: 0; }
  .t14-marker {
    top: 50%; left: -56px;
    transform: translateY(-50%);
  }
}
@media (max-width: 520px) {
  .t14-row { grid-template-columns: 1fr; }
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.benefit-card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 24px;
  background: var(--glass-1);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s, border-color 0.5s;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(200,90,46,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  border-radius: inherit;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,90,46,0.3);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 30px 60px -20px var(--terra-glow);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--terra);
  margin-bottom: 24px;
}
.benefit-title {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.benefit-arrow {
  position: absolute;
  top: 28px; right: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--glass-2);
  border: 1px solid var(--glass-border);
  display: grid; place-items: center;
  color: var(--ink-dim);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.benefit-card:hover .benefit-arrow {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
  transform: rotate(-45deg);
}
.benefit-arrow svg { transition: transform 0.4s; }

/* ===== METRICS ===== */
.section-metrics {
  padding: 100px 5vw;
  max-width: 1360px;
  margin: 0 auto;
}
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metric {
  padding: 12px 32px;
  border-right: 1px solid var(--border);
}
.metric:last-child { border-right: none; }
.metric-value {
  font-family: var(--font-sans);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}
.metric-value .accent, .accent { color: var(--terra); }
.metric-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.testimonial-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 24px;
  background: var(--glass-1);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.testimonial-card:hover { transform: translateY(-4px); }
.quote-mark {
  margin-bottom: 18px;
  opacity: 0.8;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink-2);
  margin-bottom: 28px;
  text-wrap: pretty;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), var(--terra-soft));
  color: #fff;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
}
.testimonial-name {
  font-size: 14px; font-weight: 500;
  color: var(--ink);
}
.testimonial-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.logos-strip {
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
.logos-track {
  display: flex; gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink-dim);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.logo-item:hover { opacity: 1; color: var(--terra); }

/* ===== FAQ ===== */
#faq { text-align: center; }
#faq .eyebrow { display: inline-flex; justify-content: center; }
#faq .section-title, #faq .section-lede { text-align: center; margin-inline: auto; }
.faq-list {
  margin: 56px auto 0;
  max-width: 880px;
  display: flex; flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-item {
  position: relative;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 90% at 15% 20%, rgba(200, 90, 46, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 80%, rgba(230, 130, 90, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(233, 184, 120, 0.06), transparent 65%),
    #f9f9f9;
  border: 1px solid rgba(26, 24, 21, 0.05);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 30px 80px -40px rgba(26, 24, 21, 0.10);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open {
  border-color: rgba(200,90,46,0.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 12px 32px -14px var(--terra-glow);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; gap: 20px;
  padding: 22px 24px;
  background: none; border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
}
.faq-q-num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--terra);
  min-width: 24px;
}
.faq-q-text {
  flex: 1;
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq-q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--glass-2);
  border: 1px solid var(--glass-border);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  flex-shrink: 0;
}
.faq-item.open .faq-q-icon {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 24px 22px 66px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  text-wrap: pretty;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: 160px 5vw;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(200,90,46,0.22), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  margin: 0 auto 28px;
  display: block;
  box-shadow: 0 20px 40px -16px rgba(26,24,21,0.3);
}
.contact-huge {
  font-family: var(--font-sans);
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
  margin: 20px 0 32px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.contact-huge .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.contact-huge .outline {
  -webkit-text-stroke: 0;
  color: var(--terra);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.final-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 52ch;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.final-actions {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.cta-big {
  padding: 18px 32px 18px 18px;
  font-size: 15px;
}
.cta-big .hero-cta-primary-icon { width: 32px; height: 32px; font-size: 11px; }
.final-meta {
  display: flex; gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.final-meta .accent { color: var(--terra); }
.final-bg-text { display: none; }

/* ===== FOOTER V2 — Apple-style minimalist glass card ===== */
.footer-v2 {
  position: relative;
  background:
    radial-gradient(ellipse 70% 90% at 15% 20%, rgba(200, 90, 46, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 80%, rgba(230, 130, 90, 0.10), transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(233, 184, 120, 0.08), transparent 65%),
    #f4f4f5;
  color: var(--ink);
  padding: 40px 0 40px;
  margin: 32px clamp(16px, 2.5vw, 28px) clamp(16px, 2.5vw, 28px);
  border: 1px solid rgba(26, 24, 21, 0.06);
  border-radius: clamp(24px, 3vw, 36px);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 30px 80px -40px rgba(26, 24, 21, 0.12);
}
/* Glass sheet covering the whole footer — Apple liquid glass */
.footer-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  background:
    linear-gradient(180deg,
      rgba(255, 252, 245, 0.18) 0%,
      rgba(255, 252, 245, 0.05) 45%,
      rgba(255, 252, 245, 0.10) 80%,
      rgba(248, 243, 234, 0.25) 100%),
    linear-gradient(118deg,
      transparent 32%,
      rgba(255, 255, 255, 0.25) 46%,
      rgba(255, 255, 255, 0.04) 53%,
      transparent 64%);
  border-radius: inherit;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 -1px 0 rgba(255, 255, 255, 0.22) inset,
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
  pointer-events: none;
}
/* Wordmark sits BEHIND the glass */
.footer-v2-wordmark { z-index: 1; }
/* Everything else sits IN FRONT of the glass */
.footer-v2-top,
.footer-v2-bottom { position: relative; z-index: 3; }
.footer-v2-top,
.footer-v2-bottom {
  padding-left: clamp(28px, 5vw, 56px);
  padding-right: clamp(28px, 5vw, 56px);
}
.footer-v2-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.footer-v2-brand-text {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.footer-v2-logo {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: transparent;
  align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(26,24,21,0.18),
    0 0 0 1px rgba(26,24,21,0.08);
  transition: transform .2s ease;
}
.footer-v2-brand:hover .footer-v2-logo { transform: translateY(-1px); }
.footer-v2-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: none;
}

.footer-v2-social { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer-v2-social-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-transform: none;
}
.footer-v2-social-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.footer-v2-social-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(26, 24, 21, 0.07);
  color: var(--ink-2);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.footer-v2-social-link:hover {
  color: #fff;
  background: var(--terra);
  border-color: var(--terra);
  transform: translateY(-1px);
  box-shadow:
    0 8px 20px -6px var(--terra-glow),
    0 0 0 4px rgba(200, 90, 46, 0.12);
}

.footer-v2-wordmark {
  position: relative;
  display: flex; justify-content: flex-start; align-items: flex-end;
  width: 100%;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 56px);
  line-height: 0.82;
  overflow: hidden;
  user-select: none;
  isolation: isolate;
}
.footer-v2-wordmark-text {
  position: relative;
  display: block;
  text-align: left;
  font-family: 'Fraunces', var(--font-serif);
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(100px, 18vw, 340px);
  letter-spacing: -0.04em;
  line-height: 0.85;
  padding-bottom: 0.04em;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(26, 24, 21, 0.28) 0%, rgba(200, 90, 46, 0.22) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* soft warm glow behind the word — removed per user request */
.footer-v2-wordmark::before { display: none; }
.footer-v2-wordmark-ia {
  color: rgba(200, 90, 46, 0.55);
  font-weight: 700;
}

.footer-v2-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid rgba(26, 24, 21, 0.07);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink-dim);
  flex-wrap: wrap;
}
.footer-v2-bottom a { color: var(--ink-dim); text-decoration: none; transition: color .2s; }
.footer-v2-bottom a:hover { color: var(--terra); }
.footer-v2-heart { color: var(--terra); }

@media (max-width: 720px) {
  .footer-v2-top { flex-direction: column; align-items: flex-start; }
  .footer-v2-social { align-items: flex-start; }
  .footer-v2-social-row { justify-content: flex-start; }
  .footer-v2-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-v2-wordmark { margin: 24px 0 20px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 24px; margin-bottom: 24px; }
}

@media (max-width: 768px) {
  .nav-wrap { padding: 8px 12px 0; }
  .nav {
    padding: 6px 6px 6px 10px;
    gap: 2px;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav-brand { flex-shrink: 0; }
  .nav-brand-text { display: none; }
  .nav-link {
    padding: 8px 10px;
    font-size: 11.5px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .nav-cta {
    padding: 8px 12px;
    font-size: 11.5px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .hero { padding: 140px 5vw 80px; min-height: auto; }
  .hero-badge { gap: 10px; padding: 8px 14px; }
  .hero-chips { gap: 8px; }

  .compare-grid { grid-template-columns: 1fr; gap: 16px; }
  .compare-grid::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .metrics-strip { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .metric:last-child { border-bottom: none; }

  .faq-q { padding: 18px 16px; gap: 12px; }
  .faq-q-text { font-size: 14.5px; }
  .faq-a-inner { padding-left: 52px; padding-right: 16px; font-size: 14px; }

  .contact-huge { font-size: clamp(40px, 12vw, 80px); }


}

/* ===== PAIN GRID (constat) ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pain-card {
  position: relative;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(26,24,21,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
              border-color 0.45s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}
.pain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(26,24,21,0.2);
  box-shadow: 0 28px 50px -28px rgba(26,24,21,0.22);
}
.pain-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sand-50, #f5efe4);
}
.pain-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
  filter: saturate(0.9) contrast(1.02);
}
.pain-card:hover .pain-img {
  transform: scale(1.04);
}
.pain-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,24,21,0) 55%, rgba(26,24,21,0.35) 100%);
  pointer-events: none;
}
.pain-num {
  position: absolute;
  top: 16px; left: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #fdf9f0;
  background: rgba(26,24,21,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}
.pain-body-wrap {
  padding: 26px 28px 30px;
}
.pain-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.pain-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
  text-wrap: pretty;
  max-width: 52ch;
}

@media (max-width: 760px) {
  .pain-grid { grid-template-columns: 1fr; gap: 18px; }
  .pain-body-wrap { padding: 22px 20px 26px; }
}

/* ===== BENEFITS GRID — 2x2 ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.benefit-card {
  position: relative;
  padding: 36px 32px 40px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(26,24,21,0.1);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s cubic-bezier(0.22,1,0.36,1),
              transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s cubic-bezier(0.22,1,0.36,1);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.75);
  border-color: rgba(26,24,21,0.18);
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -24px rgba(26,24,21,0.18);
}
.benefit-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--terra);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.benefit-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
}
.benefit-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  text-wrap: pretty;
  margin: 0;
  max-width: 52ch;
}
.benefit-arrow {
  position: absolute;
  top: 32px; right: 28px;
  color: var(--ink-faint);
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.benefit-card:hover .benefit-arrow {
  opacity: 1;
  color: var(--terra);
  transform: translate(3px, -3px);
}

@media (max-width: 760px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 18px; }
  .benefit-card { padding: 28px 22px 32px; }
}


/* ============================================================
   Pain cards — "Ce que personne ne vous dit" (redesign)
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 56px 0 120px;
}
.pain-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 20px 50px -24px rgba(74, 40, 20, 0.22),
    0 0 0 1px rgba(255,255,255,0.4);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 30px 70px -26px rgba(74, 40, 20, 0.28),
    0 0 0 1px rgba(255,255,255,0.6);
}
/* stagger heights for rhythm */
.pain-card-0 .pain-img-wrap { aspect-ratio: 16 / 10; }
.pain-card-1 .pain-img-wrap { aspect-ratio: 4 / 3; }
.pain-card-2 .pain-img-wrap { aspect-ratio: 4 / 3; }
.pain-card-3 .pain-img-wrap { aspect-ratio: 16 / 10; }

.pain-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.pain-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pain-card:hover .pain-img {
  transform: scale(1.04);
}
.pain-img-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,24,21,0) 55%, rgba(26,24,21,0.35) 100%);
  pointer-events: none;
}
.pain-num {
  position: absolute;
  left: 22px;
  top: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  padding: 6px 14px 8px;
  background: rgba(26, 24, 21, 0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  z-index: 2;
}
.pain-body-wrap {
  padding: 32px 34px 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pain-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.pain-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 3px rgba(200,90,46,0.15);
}
.pain-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.pain-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
  text-wrap: pretty;
  max-width: 52ch;
}

@media (max-width: 900px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 40px 0 80px;
  }
  .pain-card-0 .pain-img-wrap,
  .pain-card-1 .pain-img-wrap,
  .pain-card-2 .pain-img-wrap,
  .pain-card-3 .pain-img-wrap,
  .pain-img-wrap {
    aspect-ratio: auto !important;
    height: 220px !important;
    max-height: 220px !important;
  }
  .pain-img {
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .pain-body-wrap { padding: 22px 22px 26px; }
  .pain-title { font-size: 24px; }
  .pain-num { font-size: 24px; left: 12px; top: 12px; padding: 3px 10px 5px; }
}


/* Outline word — stroked text, transparent fill */
.outline-word {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  text-stroke: 1.5px var(--ink);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  padding-right: 0.04em;
}


/* ============================================================
   Glass Zone — Apple-style frosted glow background
   wraps: Marquee → Comparison → Timeline → Benefits → FinalCTA
   ============================================================ */
.glass-zone {
  position: relative;
  isolation: isolate;
  /* Frosted-glass base over the page */
  background:
    linear-gradient(180deg,
      rgba(255, 252, 245, 0.35) 0%,
      rgba(255, 252, 245, 0.55) 10%,
      rgba(255, 252, 245, 0.55) 90%,
      rgba(255, 252, 245, 0.35) 100%
    );
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  /* fade in/out the glass edges so transitions are smooth */
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(180deg,
    transparent 0%, black 5%, black 95%, transparent 100%);
  /* hairline edges top & bottom */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(255, 255, 255, 0.45),
    0 40px 80px -40px rgba(74, 40, 20, 0.18);
}

/* Floating terracotta/ink glows behind the glass — give it depth */
.glass-zone-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  will-change: transform;
}
.glass-zone-glow-1 {
  top: 6%;
  left: -6%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200, 90, 46, 0.55), transparent 70%);
  animation: glassGlowDrift1 22s ease-in-out infinite alternate;
}
.glass-zone-glow-2 {
  top: 38%;
  right: -8%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(230, 130, 90, 0.45), transparent 70%);
  animation: glassGlowDrift2 28s ease-in-out infinite alternate;
}
.glass-zone-glow-3 {
  bottom: 4%;
  left: 25%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(45, 38, 32, 0.28), transparent 72%);
  animation: glassGlowDrift3 26s ease-in-out infinite alternate;
}

@keyframes glassGlowDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(80px, 60px) scale(1.08); }
}
@keyframes glassGlowDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 90px) scale(1.1); }
}
@keyframes glassGlowDrift3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, -70px) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .glass-zone-glow { animation: none !important; }
}


/* ============================================================
   Marquee headline — white text flanked by terracotta arrows
   ============================================================ */
.marquee-wrap {
  position: relative;
  z-index: 1;
}
.marquee-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(56px, 9vw, 120px) clamp(24px, 5vw, 64px) clamp(32px, 5vw, 56px);
  color: #ffffff;
  font-family: var(--font-serif, 'Instrument Serif', serif);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
  text-shadow:
    0 2px 40px rgba(20, 14, 10, 0.55),
    0 1px 2px rgba(20, 14, 10, 0.4);
}
.marquee-headline-text {
  max-width: 22ch;
  display: inline-block;
}
.marquee-arrow {
  flex: 0 0 auto;
  width: clamp(60px, 10vw, 140px);
  height: auto;
  color: var(--terra, #c85a2e);
  opacity: 0.9;
}
@media (max-width: 720px) {
  .marquee-headline { flex-direction: column; gap: 12px; }
  .marquee-arrow { width: 80px; transform: rotate(90deg); }
  .marquee-arrow-right { transform: rotate(90deg); }
}


/* Robot profile — positioned right side of marquee zone */
.marquee-wrap { position: relative; }
.marquee-robot {
  position: absolute;
  top: 50%;
  right: clamp(16px, 4vw, 80px);
  transform: translateY(-55%);
  width: clamp(180px, 18vw, 280px);
  height: auto;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}
@media (max-width: 900px) {
  .marquee-robot { display: none; }
}


/* Marquee headline — subtle gray on glass zone */
.marquee-headline {
  color: #4a443c;
  text-align: center;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 64px) clamp(16px, 2.5vw, 32px);
  font-family: var(--font-serif, 'Instrument Serif', serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  max-width: 42ch;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
}
.marquee-headline-text { display: inline-block; max-width: 36ch; }
.marquee-arrow {
  flex: 0 0 auto;
  width: clamp(36px, 4.5vw, 64px);
  height: auto;
  color: var(--terra, #c85a2e);
  opacity: 0.85;
  align-self: flex-start;
  margin-top: 0.35em;
}
.marquee-arrow-right { align-self: flex-end; margin-top: 0; margin-bottom: 0.5em; }
@media (max-width: 720px) {
  .marquee-arrow { display: none; }
}


/* Quotes around marquee headline — terracotta */
.marquee-quote {
  color: var(--terra, #c85a2e);
  font-family: var(--font-serif, 'Instrument Serif', serif);
  font-size: 1.5em;
  line-height: 0;
  font-style: italic;
  font-weight: 500;
  vertical-align: -0.08em;
  display: inline-block;
}
.marquee-quote-open  { margin-right: 0.12em; }
.marquee-quote-close { margin-left: 0.12em; }


/* Marquee headline — block-style quote marks (same as testimonials) */
.marquee-quote-mark {
  flex: 0 0 auto;
  width: clamp(28px, 2.4vw, 40px);
  height: auto;
  display: inline-block;
  vertical-align: top;
}
.marquee-quote-mark.marquee-quote-open  { align-self: flex-start; margin-top: 0.2em; }
.marquee-quote-mark.marquee-quote-close { align-self: flex-end; margin-bottom: 0.35em; transform: rotate(180deg); }


/* BrandGiant — deprecated */
.brand-giant-unused {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 clamp(16px, 4vw, 64px);
  margin-top: clamp(40px, 6vw, 80px);
  margin-bottom: -0.08em;
  pointer-events: none;
  isolation: isolate;
}
.brand-giant-text {
  font-size: clamp(120px, 22vw, 420px) !important;
  line-height: 0.88 !important;
  letter-spacing: -0.03em !important;
  text-align: center;
  margin: 0 !important;
  white-space: nowrap;
  user-select: none;
  color: #000 !important;
  position: relative;
  z-index: 1;
}
.brand-giant-glass {
  position: absolute;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.7) 100%);
  border-top: 1px solid rgba(255,255,255,0.5);
  pointer-events: none;
}

/* ===== Calendly inline ===== */
.calendly-wrap {
  margin: 32px auto 8px;
  width: 100%;
  max-width: 520px;
  min-height: 720px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass-1);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 30px 80px -30px rgba(74, 40, 20, 0.18),
    0 0 0 1px rgba(200, 90, 46, 0.08);
}
.calendly-wrap .calendly-inline-widget,
.calendly-wrap iframe { min-height: 720px !important; border-radius: inherit; background: transparent !important; }
@media (max-width: 720px) {
  .calendly-wrap { min-height: 880px; }
  .calendly-wrap .calendly-inline-widget, .calendly-wrap iframe { min-height: 880px !important; }
}
