/* ===== SpitUP — 2026 minimal premium ===== */

:root {
  --bg: #F7F5EF;
  --bg-2: #FFFFFF;
  --panel: #EFEBE0;
  --ink: #0B0B0B;
  --ink-2: #1A1A1A;
  --mute: #8A8A85;
  --mute-2: #B9B5AB;
  --line: #DAD6CB;
  --line-2: #E8E4D9;
  --gold: #B08D57;
  --gold-2: #C9A876;
  --gold-deep: #8E6F3F;

  --serif: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-full: 999px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.45;
}

body { overflow-x: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold); color: #fff; }

.container {
  width: min(1280px, 100% - 64px);
  margin-inline: auto;
}
.container-wide {
  width: min(1480px, 100% - 64px);
  margin-inline: auto;
}

/* ============== Type scale ============== */

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: currentColor;
  opacity: .55;
}
.eyebrow.no-bar::before { display: none; }

.serif { font-family: var(--serif); font-weight: 700; letter-spacing: -0.02em; }
.italic { font-style: italic; }

h1.display {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(44px, 6.8vw, 112px);
  line-height: 1.0;
  letter-spacing: -0.035em;
}
h2.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.lead {
  font-size: clamp(16px, 1.15vw, 19px);
  color: var(--mute);
  max-width: 56ch;
  line-height: 1.5;
}

/* ============== Nav ============== */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line-2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--ink);
  position: relative;
}
.logo-mark::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.logo-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-size: 14px;
}
.nav-links a { color: var(--ink-2); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.6,.2,.1,1);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 18px;
}
.nav-phone {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em; color: var(--mute);
}

/* ============== Button ============== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 34px;
  border-radius: 18px;
  font-size: 15.5px; font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform .3s cubic-bezier(.6,.2,.1,1), background .3s, color .3s, border-color .3s, box-shadow .3s;
  will-change: transform;
}
.btn-primary {
  background: var(--gold); color: #fff;
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-ghost {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: 0 14px 34px -22px rgba(0,0,0,.28);
}
.btn-ghost:hover { border-color: var(--gold); }
.btn .play {
  width: 13px; height: 13px; flex: none;
  fill: var(--gold);
}
.btn .btn-sub { font-weight: 400; opacity: .85; }
.nav .btn { padding: 12px 22px; border-radius: 14px; font-size: 14px; }
.nav .btn-primary { background: var(--ink); border-color: var(--ink); }
.nav .btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-gold {
  background: var(--gold); color: #fff;
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn .arr {
  width: 14px; height: 14px;
  transition: transform .35s cubic-bezier(.6,.2,.1,1);
}
.btn:hover .arr { transform: translateX(3px); }

/* ============== HERO ============== */

.hero {
  padding: 118px 0 56px;
  position: relative;
}
/* ============== Hero video background ============== */
.hero { isolation: isolate; }

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.hero-bg-stack { position: absolute; inset: 0; }
.hero-bg-stack .v-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(.4,0,.2,1), transform 8s linear;
  transform: scale(1);
}
.hero-bg-stack .v-layer.show {
  opacity: 1;
  transform: scale(1.08);
}
.hero-bg-stack video,
.hero-bg-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.78) contrast(1.08) saturate(.95);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(11,11,11,.72) 0%,
      rgba(11,11,11,.55) 45%,
      rgba(11,11,11,.30) 75%,
      rgba(11,11,11,.45) 100%
    ),
    linear-gradient(180deg,
      rgba(11,11,11,.25) 0%,
      rgba(11,11,11,0)   25%,
      rgba(11,11,11,0)   65%,
      rgba(11,11,11,.55) 100%
    );
}
.hero-bg-overlay::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18%;
  background: linear-gradient(to top, var(--bg) 0%, rgba(247,245,239,0) 100%);
}

.hero-bg-grain {
  position: absolute;
  inset: 0;
  opacity: .12;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}

.hero-meta {
  display: flex; align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  flex-wrap: wrap;
}
.hero-stats .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 5px rgba(43,182,115,.22);
  flex: none;
}
.hero-stats .hero-stat-num {
  color: #fff;
  font-weight: 600;
  letter-spacing: .08em;
}
.hero-stats .hero-stat-lbl { color: rgba(255,255,255,.75); }
.hero-stats .hero-stat-sep { color: rgba(255,255,255,.35); margin: 0 4px; }
.hero-stats .hero-stat-cities { color: rgba(255,255,255,.75); }

.hero-title {
  position: relative;
  margin-bottom: 0;
}
.hero-title .row {
  display: block;
}
.hero-title .word,
.hero-title .word-italic {
  display: inline-block;
  will-change: transform;
}
.hero-title .word-italic {
  font-style: italic;
  color: var(--gold);
  position: relative;
}
.hero-title .underline {
  position: relative;
  display: inline-block;
}
.hero-title .underline svg {
  position: absolute;
  left: -2%; right: -2%;
  bottom: -8px;
  width: 104%;
  height: 18px;
  overflow: visible;
  pointer-events: none;
}
.hero-title .underline svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawline 1.6s cubic-bezier(.4,0,.2,1) 1.1s forwards;
}
@keyframes drawline {
  to { stroke-dashoffset: 0; }
}

.hero-foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 40px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line-2);
}
.hero-cta-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero-foot-meta {
  font-size: 13px; color: var(--mute);
  display: flex; align-items: center; gap: 12px;
}
.hero-foot-meta .pill {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2);
}
.hero-side {
  font-size: 14px; color: var(--ink-2);
  line-height: 1.55;
  max-width: 38ch;
}
.hero-side .label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 14px;
  display: block;
}

/* Hero live-call card */
.hero-callcard {
  position: absolute;
  right: 32px;
  top: 108px;
  width: 300px;
  display: block;
  text-decoration: none;
  color: #fff;
  background: rgba(20,20,20,.42);
  backdrop-filter: blur(22px) saturate(1.05);
  -webkit-backdrop-filter: blur(22px) saturate(1.05);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 14px 14px 12px;
  font-size: 12.5px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 24px 60px -20px rgba(0,0,0,.45);
  z-index: 2;
  transform: rotate(1.6deg);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .35s ease;
}
.hero-callcard:hover {
  transform: rotate(0deg) translateY(-4px);
  border-color: rgba(255,255,255,.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    0 32px 80px -20px rgba(0,0,0,.55),
    0 0 0 4px rgba(176,141,87,.18);
}
.hero-callcard:focus-visible {
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    0 0 0 3px var(--gold-2);
}
.hero-cta-hint {
  color: var(--gold-2) !important;
  font-weight: 500;
  transition: transform .3s ease;
}
.hero-callcard:hover .hero-cta-hint { transform: translateX(3px); }
.hero-callcard .top {
  font-size: 9px;
  margin-bottom: 8px;
  letter-spacing: .12em;
}
.hero-video-wrap {
  margin: 8px 0 10px !important;
  border-radius: 10px !important;
}
.hero-video-overlay {
  left: 10px !important;
  right: 10px !important;
  bottom: 8px !important;
}
.hero-video-overlay .who {
  font-size: 13px !important;
  margin-bottom: 2px !important;
}
.hero-video-overlay .meta {
  font-size: 8.5px !important;
}
.hero-callcard .eq {
  height: 22px !important;
  margin-bottom: 9px !important;
}
.hero-callcard .quote {
  font-size: 12px !important;
  margin-bottom: 9px !important;
  line-height: 1.35 !important;
}
.hero-callcard .footrow {
  font-size: 8.5px !important;
}
.hero-progress {
  height: 1.5px !important;
  margin-top: 7px !important;
}
.hero-video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 12px 0 14px;
  background: var(--panel);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
}
.hero-media .layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease, transform 6s linear;
  filter: brightness(.92) contrast(1.05) saturate(.95);
}
.hero-media .layer.video {
  filter: brightness(.92) contrast(1.05) saturate(.95);
}
.hero-media .layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media .layer.show {
  opacity: 1;
  transform: scale(1.06);
}
.hero-video-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero-video-overlay .who {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.hero-video-overlay .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}
.hero-video-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-progress {
  position: relative;
  height: 2px;
  background: var(--line-2);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.hero-progress .bar {
  position: absolute; inset: 0;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
}

.hero-callcard .top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mute);
  margin-bottom: 14px;
}
.hero-callcard .top .live {
  color: #2BB673; display: flex; align-items: center; gap: 6px;
}
.hero-callcard .top .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #2BB673;
  animation: livepulse 1.6s ease-in-out infinite;
}
@keyframes livepulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43,182,115,.6); }
  50% { box-shadow: 0 0 0 6px rgba(43,182,115,0); }
}

.hero-callcard .eq {
  display: flex; align-items: center; gap: 3px; height: 32px;
  margin-bottom: 14px;
}
.hero-callcard .eq span {
  flex: 1; max-width: 3px;
  background: var(--ink); border-radius: 999px;
  animation: heroeq 1.6s cubic-bezier(.4,0,.2,1) infinite;
  transform-origin: center;
}
.hero-callcard .eq span:nth-child(1)  { animation-delay: 0.00s; height: 30%; }
.hero-callcard .eq span:nth-child(2)  { animation-delay: 0.06s; height: 55%; }
.hero-callcard .eq span:nth-child(3)  { animation-delay: 0.12s; height: 38%; }
.hero-callcard .eq span:nth-child(4)  { animation-delay: 0.18s; height: 70%; }
.hero-callcard .eq span:nth-child(5)  { animation-delay: 0.10s; height: 45%; }
.hero-callcard .eq span:nth-child(6)  { animation-delay: 0.24s; height: 85%; }
.hero-callcard .eq span:nth-child(7)  { animation-delay: 0.16s; height: 60%; }
.hero-callcard .eq span:nth-child(8)  { animation-delay: 0.30s; height: 92%; }
.hero-callcard .eq span:nth-child(9)  { animation-delay: 0.22s; height: 48%; }
.hero-callcard .eq span:nth-child(10) { animation-delay: 0.36s; height: 70%; }
.hero-callcard .eq span:nth-child(11) { animation-delay: 0.28s; height: 40%; }
.hero-callcard .eq span:nth-child(12) { animation-delay: 0.14s; height: 30%; }
@keyframes heroeq {
  0%, 100% { transform: scaleY(0.5); }
  50%      { transform: scaleY(1); }
}
.hero-callcard .quote {
  font-family: var(--serif); font-weight: 400; font-size: 14px; line-height: 1.45;
  color: var(--ink); margin-bottom: 14px;
}
.hero-callcard .footrow {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; color: var(--mute);
  letter-spacing: .1em; text-transform: uppercase;
}

/* ============== Marquee ============== */

.marquee {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 22px 0;
  margin-top: 48px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.marquee-track {
  display: inline-flex; gap: 56px;
  white-space: nowrap;
  animation: marq 50s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  display: inline-block;
}
@keyframes marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== Section frame ============== */

section { position: relative; }

.sec {
  padding: 140px 0;
  position: relative;
}
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
.sec-head .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.16em;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.sec-head .num span:first-child { color: var(--gold); }
.sec-head .right p { color: var(--mute); font-size: 16px; line-height: 1.55; max-width: 44ch; }

/* ============== Mic grid (6 professions) ============== */

.mics-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.mic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
}
.mic-card {
  position: relative;
  background-color: var(--bg-2);
  border: 0;
  padding: 24px 14px 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 1px 2px rgba(0,0,0,.04),
    0 8px 16px -8px rgba(0,0,0,.08),
    0 24px 40px -24px rgba(0,0,0,.18);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease;
  animation: cardFloat 5.5s cubic-bezier(.45,0,.55,1) infinite;
}
.mic-card:nth-child(1) { animation-delay: 0s; }
.mic-card:nth-child(2) { animation-delay: 0.4s; }
.mic-card:nth-child(3) { animation-delay: 0.8s; }
.mic-card:nth-child(4) { animation-delay: 1.2s; }
.mic-card:nth-child(5) { animation-delay: 1.6s; }
.mic-card:nth-child(6) { animation-delay: 2.0s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.mic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--mic-bg);
  background-size: cover;
  background-position: center;
  filter: grayscale(72%) sepia(14%) brightness(1.04) contrast(.95);
  z-index: -2;
  transition: filter .6s ease, transform .8s ease;
}
.mic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247,245,239,.82) 0%, rgba(247,245,239,.74) 50%, rgba(247,245,239,.92) 100%);
  z-index: -1;
  transition: background .6s ease;
}
.mic-card:hover {
  animation-play-state: paused;
  transform: translateY(-12px);
  box-shadow:
    0 2px 4px rgba(0,0,0,.05),
    0 22px 36px -10px rgba(0,0,0,.20),
    0 56px 80px -32px rgba(0,0,0,.32);
}
.mic-card:hover::before {
  filter: grayscale(20%) sepia(10%) brightness(1.02) contrast(1);
  transform: scale(1.06);
}
.mic-card:hover::after {
  background: linear-gradient(180deg, rgba(247,245,239,.40) 0%, rgba(247,245,239,.50) 50%, rgba(247,245,239,.82) 100%);
}
.mic-card:hover .mic-circle {
  transform: translateY(-3px) scale(1.04);
}


/* circular mic button */
.mic-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 12px;
  filter: drop-shadow(0 8px 16px rgba(176,141,87,.18)) drop-shadow(0 3px 6px rgba(0,0,0,.10));
  transition: transform .5s cubic-bezier(.16,1,.3,1), filter .5s ease;
}
.mic-card:hover .mic-circle {
  transform: translateY(-3px);
  filter: drop-shadow(0 14px 24px rgba(176,141,87,.28)) drop-shadow(0 6px 10px rgba(0,0,0,.14));
}

.mic-circle .mic-ring {
  position: absolute;
  border-radius: 50%;
  transition: border-color .4s ease, transform .5s ease, opacity .5s ease, box-shadow .4s ease;
}
.mic-circle .r1 {
  inset: 0;
  border: 2px solid color-mix(in srgb, var(--gold) 55%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    inset 0 -1px 0 rgba(176,141,87,.25);
}
.mic-circle .r2 {
  inset: 8px;
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
}

.mic-circle .mic-disc {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0%, #f9f6ee 55%, #efe7d3 100%);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,.9),
    inset 0 -3px 6px rgba(176,141,87,.22),
    inset 0 0 0 1px rgba(176,141,87,.28),
    0 6px 18px -6px rgba(176,141,87,.35);
  overflow: hidden;
  transition: background .4s ease, box-shadow .4s ease;
}

.mic-circle .mic-ico {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  stroke: var(--gold-deep);
  fill: none;
  stroke-width: 1.6;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.8));
  transition: stroke .4s ease, transform .4s ease;
}

/* hover state — subtle gold */
.mic-card:hover .mic-circle .r1 { border-color: var(--gold); }
.mic-card:hover .mic-circle .mic-ico { stroke: var(--gold-deep); }

/* active state — full gold radial glow */
.mic-card.active .mic-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: .5;
  animation: micwave 2.4s cubic-bezier(.16,1,.3,1) infinite;
}
.mic-card.active .mic-circle::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: .35;
  animation: micwave 2.4s cubic-bezier(.16,1,.3,1) infinite .8s;
}
.mic-card.active {
  animation-play-state: paused;
  transform: translateY(-12px);
  box-shadow:
    0 2px 4px rgba(0,0,0,.05),
    0 22px 36px -10px rgba(0,0,0,.20),
    0 56px 80px -32px rgba(0,0,0,.34),
    inset 0 0 0 1px color-mix(in srgb, var(--gold) 28%, transparent);
}
.mic-card.active::before {
  filter: grayscale(0) sepia(0) brightness(1) contrast(1.02) saturate(1.05);
  transform: scale(1.06);
}
.mic-card.active::after {
  background: linear-gradient(180deg, rgba(247,245,239,.06) 0%, rgba(247,245,239,.18) 50%, rgba(247,245,239,.72) 100%);
}
.mic-card.active .mic-circle .r1 { border-color: var(--gold); box-shadow: inset 0 1px 0 rgba(255,255,255,.7), inset 0 -1px 0 rgba(142,111,63,.4), 0 0 32px -2px color-mix(in srgb, var(--gold) 55%, transparent); }
.mic-card.active .mic-circle .r2 { border-color: var(--gold); }
.mic-card.active .mic-circle .mic-disc {
  background:
    radial-gradient(circle at 50% 38%, #fff8e7 0%, #f3e6c2 55%, #e0c98a 100%);
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,.95),
    inset 0 -4px 10px rgba(142,111,63,.35),
    inset 0 0 0 1px var(--gold),
    0 8px 28px -4px color-mix(in srgb, var(--gold) 70%, transparent),
    0 0 60px -10px color-mix(in srgb, var(--gold) 50%, transparent);
}
.mic-card.active .mic-circle .mic-ico {
  stroke: #6b4d20;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,1));
}

@keyframes micwave {
  0%   { transform: scale(1);     opacity: .65; }
  100% { transform: scale(1.55);  opacity: 0; }
}

/* body text — centered under circle */
.mic-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-top: 4px;
}
.mic-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.mic-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 13ch;
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}
.mic-card.active .mic-name { color: var(--ink); }
.mic-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 5px 11px;
  background: rgba(255,253,247,.75);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-radius: 6px;
  display: inline-block;
  margin-top: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* phone preview */
.phone-preview {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 22px 18px;
  position: sticky;
  top: 110px;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px -50px rgba(0,0,0,.25);
  font-size: 13.5px;
}
.pp-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.pp-head-left {
  display: flex; align-items: center; gap: 12px;
}
.pp-av {
  width: 34px; height: 34px;
  background: var(--ink); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
}
.pp-av svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.pp-name { font-family: var(--serif); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.pp-sub { font-size: 10px; color: var(--mute); font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.pp-live {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: #2BB673;
  display: flex; align-items: center; gap: 6px;
}
.pp-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #2BB673;
  animation: livepulse 1.6s ease-in-out infinite;
}

.pp-wave {
  display: flex; align-items: center; gap: 2px; height: 32px;
  margin-bottom: 16px;
  padding: 0 2px;
}
.pp-wave span {
  flex: 1;
  min-width: 0;
  max-width: 3px;
  background: var(--ink);
  border-radius: 999px;
  height: var(--h, 20%);
  opacity: .9;
}
.pp-wave.playing span {
  animation: waveflow 1.8s cubic-bezier(.4,0,.2,1) infinite;
  animation-delay: var(--d, 0s);
}
@keyframes waveflow {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1.05); }
}

.pp-transcript {
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.pp-bubble {
  max-width: 90%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 12.5px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.pp-bubble.show { opacity: 1; transform: translateY(0); }
.pp-bubble.caller {
  background: var(--panel);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 6px;
}
.pp-bubble.ai {
  background: var(--ink);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}
.pp-bubble .who {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .14em; text-transform: uppercase;
  opacity: .6; margin-bottom: 3px;
}

.pp-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute);
}
.pp-foot .actions { display: flex; gap: 12px; }
.pp-foot .action {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-2);
}
.pp-foot .action svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.pp-summary {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--line-2);
  font-size: 11.5px;
  line-height: 1.45;
}
.pp-summary .lbl {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.pp-summary .tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.pp-summary .tag {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-2);
}

/* ============== Hybrid section ============== */

.hybrid {
  padding: 160px 0;
  background: var(--ink);
  color: #F2EFE8;
  overflow: hidden;
}
.hybrid h2 { color: #fff; }
.hybrid .lead { color: #B9B5AB; }
.hybrid .eyebrow { color: var(--gold-2); }
.hybrid .eyebrow::before { background: var(--gold-2); }

.hyb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
  position: relative;
}
.hyb-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.hyb-card .ico {
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 28px;
}
.hyb-card .ico svg { width: 24px; height: 24px; stroke: var(--gold-2); fill: none; stroke-width: 1.6; }
.hyb-card h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15; letter-spacing: -0.025em;
  margin-bottom: 18px; color: #fff;
}
.hyb-card p { color: #B9B5AB; font-size: 15px; line-height: 1.55; margin-bottom: 24px; }
.hyb-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hyb-card li {
  display: flex; align-items: start; gap: 12px;
  font-size: 14px; color: #DDD8CC;
}
.hyb-card li::before {
  content: ""; flex: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2); margin-top: 8px;
}

.hyb-bridge {
  margin-top: 56px;
  text-align: center;
  position: relative;
}
.hyb-bridge .label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2);
  display: inline-block; margin-bottom: 24px;
}
.hyb-bridge h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.1; letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}
.hyb-bridge p {
  color: #B9B5AB; font-size: 16px;
  max-width: 58ch; margin: 0 auto; line-height: 1.55;
}

.hyb-flow {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hyb-flow-node {
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-full);
  font-size: 13px; color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.03);
}
.hyb-flow-node .d {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2);
}
.hyb-flow-arrow {
  color: var(--mute-2); width: 24px; height: 1px; background: var(--mute-2);
  position: relative; opacity: .5;
}
.hyb-flow-arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  border-left: 6px solid var(--mute-2);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

/* ============== Numbers / metrics ============== */

.metrics {
  padding: 140px 0 80px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metric {
  padding: 56px 32px 48px;
  border-right: 1px solid var(--line);
  position: relative;
}
.metric:last-child { border-right: 0; }
.metric .v {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.metric .v .unit {
  font-size: 0.35em;
  vertical-align: super;
  color: var(--gold);
  letter-spacing: 0;
  margin-left: 4px;
}
.metric .v .pct {
  font-size: 0.4em;
  color: var(--gold);
  margin-left: 6px;
}
.metric .lbl {
  font-size: 14px; color: var(--mute); line-height: 1.4;
  max-width: 28ch;
}

/* ============== How it works ============== */

.how {
  padding: 140px 0;
  position: relative;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}
.how-step .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 32px;
}
.how-step h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2; letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.how-step p {
  font-size: 14.5px; color: var(--mute); line-height: 1.55;
  max-width: 36ch;
  margin-bottom: 28px;
}
.how-visual {
  margin-top: 28px;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  padding: 24px;
}

/* visual 1: redirect */
.vis-redirect {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.vis-redirect .node {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  background: #fff;
  flex: none;
}
.vis-redirect .node svg { width: 24px; height: 24px; stroke: var(--ink); fill: none; stroke-width: 1.6; }
.vis-redirect .node.gold { background: var(--gold); border-color: var(--gold); }
.vis-redirect .node.gold svg { stroke: #fff; }
.vis-redirect .line {
  flex: 1; height: 1px; background: var(--line); position: relative; margin: 0 -12px;
}
.vis-redirect .line::after {
  content: "";
  position: absolute; top: -3px; left: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: dotrun 3s ease-in-out infinite;
}
@keyframes dotrun {
  0%, 100% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 7px); }
}

/* visual 2: dossier */
.vis-dossier {
  position: relative; height: 100%;
}
.vis-dossier .doc {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  width: 70%;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.08);
}
.vis-dossier .doc:nth-child(1) { left: 8%; top: 8%; transform: rotate(-3deg); z-index: 1; }
.vis-dossier .doc:nth-child(2) { right: 8%; top: 32%; transform: rotate(2deg); z-index: 2; }
.vis-dossier .doc .h { height: 8px; width: 60%; background: var(--ink); border-radius: 2px; margin-bottom: 10px; }
.vis-dossier .doc .l { height: 4px; background: var(--line); border-radius: 2px; margin-bottom: 6px; }
.vis-dossier .doc .l.s { width: 70%; }
.vis-dossier .doc .l.t { width: 45%; }
.vis-dossier .doc .tag {
  margin-top: 10px;
  display: inline-block;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); padding: 3px 8px;
  border: 1px solid var(--gold); border-radius: var(--r-full);
}

/* visual 3: handoff */
.vis-handoff {
  height: 100%; display: flex; align-items: center; justify-content: center;
  gap: 28px;
}
.vis-handoff .person {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.vis-handoff .face {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  background: #fff;
}
.vis-handoff .face svg { width: 24px; height: 24px; stroke: var(--ink); fill: none; stroke-width: 1.6; }
.vis-handoff .person.gold .face { background: var(--gold); border-color: var(--gold); }
.vis-handoff .person.gold .face svg { stroke: #fff; }
.vis-handoff .person .lbl {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute);
}
.vis-handoff .arrow {
  width: 56px; height: 1px; background: var(--ink); position: relative;
}
.vis-handoff .arrow::after {
  content: ""; position: absolute; right: 0; top: -4px;
  border-left: 7px solid var(--ink);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ============== Belgium section ============== */

.belgium {
  padding: 140px 0;
  background: var(--panel);
}
.bel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.bel-grid h2 { margin-bottom: 32px; }
.bel-grid p { color: var(--ink-2); font-size: 16px; line-height: 1.6; margin-bottom: 18px; max-width: 50ch; }
.bel-checks {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
  margin-top: 32px;
}
.bel-checks li {
  display: flex; align-items: start; gap: 14px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink-2);
}
.bel-checks li .ck {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
}
.bel-checks li .ck svg {
  width: 12px; height: 12px;
  stroke: var(--gold-2); fill: none; stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.bel-checks li b { font-weight: 600; color: var(--ink); display: block; margin-bottom: 4px; font-size: 14px; }

.bel-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.2);
}
.bel-card .map {
  aspect-ratio: 1;
  position: relative;
  margin-bottom: 24px;
}
.bel-card .map svg { width: 100%; height: 100%; }
.bel-card .map svg path { fill: #fff; stroke: var(--ink); stroke-width: 1.2; }
.bel-card .map .pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--gold) 45%, transparent);
  animation: pinpulse 2s ease-in-out infinite;
}
.bel-card .pin:nth-child(2) { animation-delay: 0.4s; }
.bel-card .pin:nth-child(3) { animation-delay: 0.8s; }
.bel-card .pin:nth-child(4) { animation-delay: 1.2s; }
.bel-card .pin:nth-child(5) { animation-delay: 1.6s; }
@keyframes pinpulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--gold) 55%, transparent); }
  50% { box-shadow: 0 0 0 10px color-mix(in srgb, var(--gold) 0%, transparent); }
}
.bel-card .legend {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute);
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.bel-card .legend b { color: var(--ink); font-weight: 500; }

/* ============== Pricing / comparison ============== */

.compare {
  padding: 140px 0;
}
.cmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.cmp-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column;
}
.cmp-card.feature {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.cmp-card.feature .cmp-meta { color: var(--gold-2); }
.cmp-card.feature .cmp-price small { color: var(--mute-2); }
.cmp-card.feature .cmp-features li { color: #D8D4C9; border-color: rgba(255,255,255,.1); }
.cmp-card.feature .cmp-features li svg { stroke: var(--gold-2); }
.cmp-card.feature .badge {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 5px 12px; border-radius: 6px;
}
.cmp-meta {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.cmp-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.cmp-desc { font-size: 13.5px; color: var(--mute); line-height: 1.5; margin-bottom: 24px; min-height: 42px; }
.cmp-card.feature .cmp-desc { color: var(--mute-2); }
.cmp-price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 40px; line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cmp-price small {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--mute);
  margin-left: 6px;
}
.cmp-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 28px;
  flex: 1;
}
.cmp-features li {
  display: flex; align-items: start; gap: 12px;
  font-size: 13.5px;
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
  color: var(--ink-2);
}
.cmp-features li:last-child { border-bottom: 1px solid var(--line-2); }
.cmp-features li svg {
  width: 14px; height: 14px; flex: none; margin-top: 3px;
  stroke: var(--gold); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ============== FAQ ============== */

.faq { padding: 140px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.faq-q .ic {
  flex: none; width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: background .3s, border-color .3s;
}
.faq-q .ic::before, .faq-q .ic::after {
  content: ""; position: absolute;
  background: var(--ink);
  transition: transform .3s, background .3s;
}
.faq-q .ic::before { width: 10px; height: 1.5px; }
.faq-q .ic::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-q .ic { background: var(--ink); border-color: var(--ink); }
.faq-item.open .faq-q .ic::before,
.faq-item.open .faq-q .ic::after { background: #fff; }
.faq-item.open .faq-q .ic::after { transform: scaleY(0); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  font-size: 15px;
  color: var(--mute);
  line-height: 1.55;
  transition: grid-template-rows .5s cubic-bezier(.6,.2,.1,1), padding-top .35s;
}
.faq-a .faq-a-inner { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; padding-top: 18px; }

/* ============== Final CTA ============== */

.finalcta {
  padding: 160px 0 140px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 50%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 70%);
  pointer-events: none;
}
.finalcta-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.finalcta h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.finalcta .cta-col {
  display: flex; flex-direction: column; gap: 14px;
}
.finalcta .cta-col .btn { width: 100%; }
.finalcta .cta-col .cta-meta { text-align: center; margin: 6px 0 0; }
@media (max-width: 900px) {
  .finalcta-grid { grid-template-columns: 1fr; gap: 36px; }
  .finalcta .cta-col { max-width: 480px; }
}
.finalcta h2 .gold { color: var(--gold-2); font-style: italic; }
.finalcta p {
  color: #B9B5AB; font-size: 17px; line-height: 1.55;
  max-width: 52ch; margin-bottom: 0;
}
.finalcta .btn-primary { background: var(--gold); border-color: var(--gold); color: #fff; }
.finalcta .btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.finalcta .btn-ghost { background: #fff; color: var(--ink); border-color: #fff; }
.finalcta .btn-ghost:hover { border-color: var(--gold); }
.finalcta .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.finalcta .cta-meta { color: var(--mute-2); font-size: 13px; margin-left: 8px; }

/* ============== Footer ============== */

body > footer {
  background: var(--ink);
  color: #B9B5AB;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.foot-grid h4 {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px; font-weight: 500;
}
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-grid li a:hover { color: #fff; }
.foot-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute);
}
.foot-bottom .made { color: var(--gold-2); }
.foot-logo {
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff; display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.foot-desc { font-size: 14px; line-height: 1.55; max-width: 36ch; }

/* ============== Animations ============== */

.reveal-row { overflow: visible; }
.reveal-up {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: revealup 1s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-title .row:nth-child(1) .reveal-up { animation-delay: 0.1s; }
.hero-title .row:nth-child(2) .reveal-up { animation-delay: 0.22s; }
.hero-title .row:nth-child(3) .reveal-up:nth-child(1) { animation-delay: 0.34s; }
.hero-title .row:nth-child(3) .reveal-up:nth-child(2) { animation-delay: 0.40s; }
@keyframes revealup {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1); }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ============== Responsive ============== */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { padding-top: 120px; }
  .hero-callcard { display: none; }
  .hero-foot { grid-template-columns: 1fr; gap: 32px; }
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
  .mics-wrap { grid-template-columns: 1fr; gap: 32px; }
  .mic-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-preview { position: static; }
  .hyb-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric { border-bottom: 1px solid var(--line); }
  .metric:nth-child(2n) { border-right: 0; }
  .how-steps { grid-template-columns: 1fr; }
  .bel-grid { grid-template-columns: 1fr; gap: 48px; }
  .cmp-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .container, .container-wide { width: calc(100% - 32px); }
  .mic-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sec { padding: 100px 0; }
  .hybrid, .compare, .belgium, .how, .faq { padding: 100px 0; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric { border-right: 0 !important; }
  .foot-grid { grid-template-columns: 1fr; }
  .nav-cta .btn { padding: 10px 16px; font-size: 13px; }
  .nav-phone { display: none; }
}


/* Hero text on video — white + soft shadow */
.hero { color: #fff; }
.hero .hero-title { color: #fff; }
.hero .hero-title .word-italic { color: var(--gold-2); }
.hero h1.display,
.hero .hero-side,
.hero .hero-meta,
.hero .hero-meta .right,
.hero .hero-foot-meta,
.hero .eyebrow {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.hero .hero-side .label { color: var(--gold-2); }
.hero .hero-foot { border-top-color: rgba(255,255,255,.18); }
.hero .hero-foot-meta { color: rgba(255,255,255,.85); }
.hero .hero-foot-meta .pill {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .eyebrow { color: var(--gold-2); }
.hero .eyebrow::before { background: var(--gold-2); }
.hero .hero-meta .right { color: rgba(255,255,255,.85); }
.hero .hero-meta .dot { box-shadow: 0 0 0 5px rgba(43,182,115,.3); }

/* CTA on dark hero — gold primary, white secondary (brand mockup) */
.hero .btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.hero .btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 16px 34px -14px rgba(142,111,63,.65);
}
.hero .btn-ghost {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.hero .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  box-shadow: 0 16px 34px -14px rgba(0,0,0,.4);
}

/* Underline path stays gold but a touch brighter */
.hero-title .underline svg path {
  stroke: var(--gold-2);
}

/* Marquee on dark hero footer area */
.hero + .marquee, .hero .marquee { background: var(--bg); }

/* Glassmorphic callcard tuned for dark bg */
.hero-callcard {
  background: rgba(20,20,20,.45) !important;
  border-color: rgba(255,255,255,.22) !important;
  color: #fff !important;
}
.hero-callcard .top { color: rgba(255,255,255,.75); }
.hero-callcard .top .live { color: #6ddc9f; }
.hero-callcard .quote { color: #fff; }
.hero-callcard .footrow { color: rgba(255,255,255,.7); }
.hero-callcard .eq span { background: #fff; }
.hero-video-overlay .who { color: #fff; }
.hero-video-overlay .meta { color: rgba(255,255,255,.9); }

/* Logo wordmark */
.logo-text {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--sans);
  letter-spacing: -0.025em;
  line-height: 1;
}
.logo-text .logo-spit { color: #fff; font-weight: 700; }
.logo-text .logo-up   { color: var(--gold); font-weight: 700; }
.nav:not(.scrolled) .logo-text .logo-spit { color: #fff; }
.nav.scrolled .logo-text .logo-spit { color: var(--ink); }
.foot-logo .logo-text .logo-spit { color: #fff; }


/* ============== Reduced motion (WCAG 2.2 AA) ============== */

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .mic-card { animation: none; }
  .hero-callcard .eq span,
  .pp-wave span { animation: none; transform: scaleY(1); }
  .hero-callcard .top .live::before,
  .pp-live::before,
  .bel-card .map .pin { animation: none; }
  .reveal-up { animation-duration: .01s; animation-delay: 0s; }
  .hero-title .underline svg path { animation: none; stroke-dashoffset: 0; }
  .fade-up { transition: none; opacity: 1; transform: none; }
  .btn, .btn .arr, .hero-callcard { transition: none; }
  .faq-a { transition: none; }
}

/* ============== Real brand logo ============== */

.logo { gap: 12px; }
.logo .logo-d { height: 32px; width: auto; }
.logo .logo-word { height: 22px; width: auto; }
/* transparent nav (over dark hero) shows white wordmark; scrolled cream nav shows dark */
.nav .logo-word--dark { display: none; }
.nav.scrolled .logo-word--white { display: none; }
.nav.scrolled .logo-word--dark { display: block; }

.foot-logo .logo-d { height: 36px; width: auto; }
.foot-logo .logo-word { height: 24px; width: auto; }


/* ============== Reviews (Google, réels) ============== */

.reviews { padding: 130px 0; background: var(--bg-2); }
.rev-marquee {
  overflow: hidden;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rev-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: revscroll 60s linear infinite;
}
.rev-marquee:hover .rev-track { animation-play-state: paused; }
.rev {
  margin: 0;
  flex: none;
  width: 360px;
  padding: 30px 30px 26px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 20px;
}
.rev blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.rev figcaption { display: flex; flex-direction: column; gap: 3px; margin-top: auto; }
.rev figcaption b { font-weight: 600; font-size: 14px; }
.rev figcaption span {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep);
}
.rev-src {
  margin-top: 22px;
  font-size: 13px; color: var(--mute);
  max-width: 72ch;
}
@keyframes revscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 10px)); }
}
@media (max-width: 580px) {
  .rev { width: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  .rev-track { animation: none; }
  .rev-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* ============== Title line-reveal masks ============== */

.rl {
  display: block;
  position: relative;
}
.rl-ghost { display: block; opacity: .16; }
.rl-fill {
  display: block;
  position: absolute;
  inset: 0;
  will-change: clip-path;
}

/* ============== CTA note (check line under buttons) ============== */

.cta-note {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px;
}
.cta-note svg {
  width: 22px; height: 22px; flex: none;
  stroke: currentColor; fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.hero .cta-note { color: rgba(255,255,255,.92); text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.hero .cta-note svg { stroke: var(--gold-2); }

/* ============== Hero facts (icon badges strip) ============== */

.hero-facts {
  list-style: none; margin: 44px 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hero-facts li {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 28px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.hero-facts li:first-child { border-left: 0; padding-left: 0; }
.hero-facts .hf-ic {
  flex: none;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -14px rgba(0,0,0,.35);
}
.hero-facts .hf-ic svg {
  width: 24px; height: 24px;
  stroke: var(--gold-deep); fill: none; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.hero-facts b {
  display: block;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero-facts li > div > span {
  font-size: 13.5px; color: rgba(255,255,255,.8);
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
@media (max-width: 900px) {
  .hero-facts { grid-template-columns: 1fr; gap: 0; }
  .hero-facts li {
    border-left: 0; padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .hero-facts li:first-child { border-top: 0; }
}

/* ============== How steps — redesign (badges, media, progress) ============== */

.how-step { border-top: 0; padding-top: 0; }
.step-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 7px 16px;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  border-radius: 999px;
  background: #fff;
  margin-bottom: 22px;
}
.how-step .gold-w { color: var(--gold); }
.step-media {
  margin: 26px 0 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--panel);
  box-shadow: 0 30px 60px -38px rgba(0,0,0,.35);
}
.step-media video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.step-progress {
  display: flex; align-items: center;
  margin-top: 26px;
  padding: 0 4px;
}
.step-progress .track {
  flex: 1; height: 2px;
  background: var(--line);
  border-radius: 2px;
  position: relative;
}
.step-progress .fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--p, 33%);
  background: var(--gold);
  border-radius: 2px;
}
.step-progress .fill::after {
  content: "";
  position: absolute; right: -5px; top: 50%;
  width: 10px; height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 22%, transparent);
}
.step-cap {
  margin-top: 16px;
  text-align: center;
  font-size: 14.5px;
  color: var(--mute);
}


/* Belgium card as generated media */
.bel-card--media { padding: 0; overflow: hidden; }
.bel-card--media video { display: block; width: 100%; height: auto; }

/* ============== Belgium section — badge, icon items, stats, signature ============== */

.bel-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2);
  background: #fff;
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 26px;
  box-shadow: 0 8px 22px -14px rgba(0,0,0,.25);
}
.bel-flag {
  width: 22px; height: 15px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2D2926 0 33.4%, #F5C400 33.4% 66.7%, #C8102E 66.7% 100%);
  flex: none;
}
.bel-intro {
  margin-top: 28px;
  font-size: 17px; line-height: 1.55;
  color: var(--ink-2);
  max-width: 46ch;
}
.bel-items {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.bel-items li {
  display: flex; align-items: center; gap: 18px;
  background: color-mix(in srgb, #fff 65%, var(--panel));
  border-radius: 18px;
  padding: 18px 22px;
}
.bel-items .bi-ic {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.bel-items .bi-ic svg {
  width: 24px; height: 24px;
  stroke: var(--gold-deep); fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.bel-items li > div { flex: 1; }
.bel-items b { display: block; font-size: 15.5px; font-weight: 650; margin-bottom: 3px; }
.bel-items li > div > span { font-size: 14px; color: var(--mute); line-height: 1.45; display: block; max-width: 40ch; }
.bel-items .bi-chev {
  flex: none; width: 16px; height: 16px;
  stroke: var(--gold); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.bel-stats {
  list-style: none; margin: 26px 0 0; padding: 22px 6px;
  background: color-mix(in srgb, #fff 65%, var(--panel));
  border-radius: 18px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.bel-stats li {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  padding: 4px 14px;
  border-left: 1px solid var(--line-2);
}
.bel-stats li:first-child { border-left: 0; }
.bel-stats svg {
  flex: none; width: 26px; height: 26px;
  stroke: var(--gold-deep); fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.bel-stats b {
  display: block;
  font-family: var(--serif); font-weight: 700;
  font-size: 24px; line-height: 1; letter-spacing: -0.02em;
}
.bel-stats li > div > span { font-size: 12.5px; color: var(--mute); line-height: 1.3; display: block; margin-top: 3px; }
.bel-sign {
  margin: 44px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--gold-deep);
}
@media (max-width: 640px) {
  .bel-stats { grid-template-columns: 1fr; gap: 14px; }
  .bel-stats li { border-left: 0; justify-content: flex-start; }
}

/* Belgium — right column: map card + team banner below */
.bel-side { display: flex; flex-direction: column; gap: 30px; }
.bel-team { margin: 0; }
.bel-team img { display: block; width: 100%; height: auto; }
.bel-side .bel-sign {
  margin: 0;
  max-width: none;
  font-size: 5.7cqw;
  line-height: 1.15;
  white-space: nowrap;
  text-align: center;
  color: var(--gold);
}
.bel-side .bel-team { margin-top: 2px; }
.bel-side { gap: 20px; container-type: inline-size; }

/* How section — 3-part title fits one sentence per line */
.how .section-title { font-size: clamp(28px, 3.05vw, 44px); }

/* Hybrid — bigger lead, refined linear icons */
.hybrid .sec-head .right p.hyb-lead {
  font-size: 19px;
  line-height: 1.6;
}
.hyb-lead strong { color: #fff; font-weight: 600; }
.hyb-card .ico svg {
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============== Boutons — remplissage arrondi depuis le curseur ============== */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::before {
  content: "";
  position: absolute; z-index: -1;
  left: var(--bx, 50%); top: var(--by, 50%);
  width: max(280%, 220px); aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .55s cubic-bezier(.3, .7, .3, 1);
  background: var(--fill, var(--gold-deep));
  pointer-events: none;
}
.btn:hover::before { transform: translate(-50%, -50%) scale(1); }
@media (hover: none) { .btn::before { display: none; } }

/* Couleurs de remplissage par variante — et gel du fond de base au hover
   (l'ancien changement de couleur instantané est remplacé par le cercle) */
.btn-primary { --fill: var(--gold-deep); }
.btn-primary:hover,
.hero .btn-primary:hover,
.finalcta .btn-primary:hover { background: var(--gold); border-color: var(--gold-deep); }
.nav .btn-primary { --fill: var(--gold); }
.nav .btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-gold { --fill: var(--gold-deep); }
.btn-gold:hover { background: var(--gold); }
.btn-ghost { --fill: var(--gold); }
.btn-ghost:hover,
.hero .btn-ghost:hover,
.finalcta .btn-ghost:hover { background: #fff; color: #fff; border-color: var(--gold); }
.btn-ghost:hover .play { fill: #fff; }

/* ============== Pages démo métier ============== */
.dhero { padding: 158px 0 36px; }
.dhero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep);
  padding: 8px 16px;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  border-radius: 999px;
  background: #fff;
  margin-bottom: 26px;
}
.dhero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 21ch;
}
.dhero h1 .gold-it { font-style: italic; color: var(--gold); }
.dhero .sub {
  margin-top: 24px;
  font-size: 17px; line-height: 1.6;
  color: var(--ink-2);
  max-width: 54ch;
}
.demo-stage {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding: 44px 0 100px;
}
.demo-side h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.demo-side p { color: var(--ink-2); line-height: 1.6; max-width: 48ch; }
.demo-points { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.demo-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--ink-2); }
.demo-points svg { flex: none; width: 18px; height: 18px; margin-top: 2px; stroke: var(--gold-deep); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.demo-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.demo-stage .phone-preview { max-width: 560px; width: 100%; }

/* Connexions & outils */
.connect { padding: 110px 0 120px; background: var(--bg-2); }
.cx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.cx-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.cx-card .ic {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--gold) 10%, #fff);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.cx-card .ic svg { width: 24px; height: 24px; stroke: var(--gold-deep); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cx-card h3 { font-size: 18px; font-weight: 650; letter-spacing: -0.01em; }
.cx-card .pain {
  font-size: 14px; line-height: 1.5;
  color: var(--ink);
  background: var(--panel);
  border-left: 2px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 10px 10px 0;
}
.cx-card > p { font-size: 14.5px; line-height: 1.55; color: var(--mute); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 6px; }
.chip {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
}

/* Autres démos */
.more-demos { padding: 96px 0; }
.md-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.md-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 20px 18px;
  color: inherit;
  transition: transform .35s cubic-bezier(.3,.7,.3,1), box-shadow .35s, border-color .35s;
}
.md-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--gold) 50%, transparent);
  box-shadow: 0 22px 44px -30px rgba(0,0,0,.3);
}
.md-card svg { width: 24px; height: 24px; stroke: var(--gold-deep); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.md-card b { font-size: 14.5px; font-weight: 650; }
.md-card span { font-size: 12.5px; color: var(--mute); }
.md-card .go { margin-top: 2px; font-size: 12.5px; color: var(--gold-deep); font-weight: 600; }

/* Pilier — grille des 6 métiers sans le guichet */
.mics-wrap { display: block; }
.mic-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
a.mic-card { text-decoration: none; color: inherit; }
.mic-cta {
  font-size: 12.5px; font-weight: 600;
  color: var(--gold-deep);
  margin-top: 4px;
}

/* Mobile-first refinements */
@media (max-width: 900px) {
  .demo-stage { grid-template-columns: 1fr; padding-bottom: 72px; }
  .demo-stage .phone-preview { order: -1; max-width: 100%; }
  .dhero { padding-top: 132px; }
  .mic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cx-grid { grid-template-columns: 1fr; }
  .md-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-cta-row .btn { width: 100%; }
}

/* ============== Hybrid — compact, tient à l'écran ============== */
.hybrid { padding: 104px 0; }
.hyb-grid { margin-top: 48px; gap: 20px; }
.hyb-card { padding: 30px 28px; }
.hyb-card .ico { width: 48px; height: 48px; margin-bottom: 20px; }
.hyb-card h3 { font-size: clamp(22px, 2vw, 28px); }
.hyb-card p { font-size: 14.5px; }
.hyb-card ul li { font-size: 13.5px; padding: 9px 0; }
.hyb-bridge { margin-top: 56px; }

/* ============== Pages démo — hero 2 colonnes, eyebrow nu ============== */
.dhero .eyebrow {
  border: 0; background: transparent; padding: 0;
  font-size: 12px; letter-spacing: .24em;
  gap: 14px; margin-bottom: 30px;
}
.dhero .eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold);
}
.dhero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 5vw, 84px);
  align-items: end;
}
.dhero .sub {
  font-size: 19px;
  line-height: 1.6;
  margin-top: 0;
}
.dhero .sub strong { font-weight: 650; color: var(--ink); }
.dhero .sub em { font-style: italic; color: var(--gold-deep); }

/* ============== Micro animé — déclencheur de la démo ============== */
.demo-live { display: flex; flex-direction: column; align-items: center; }
.demo-mic {
  position: relative;
  width: 116px; height: 116px;
  border: 0; border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 26px 54px -20px rgba(142,111,63,.6);
  transition: transform .35s cubic-bezier(.3,.7,.3,1), background .3s;
}
.demo-mic:hover { transform: scale(1.06); background: var(--gold-deep); }
.demo-mic svg { width: 42px; height: 42px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; }
.demo-mic .ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--gold) 60%, transparent);
  animation: dm-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
.demo-mic .ring.r2 { animation-delay: 1.3s; }
@keyframes dm-pulse {
  0%   { transform: scale(1); opacity: .85; }
  100% { transform: scale(2.05); opacity: 0; }
}
.demo-mic-hint {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
}
.demo-live .phone-preview { display: none; margin-top: 34px; }
.demo-live.on .phone-preview { display: block; animation: pp-in .7s cubic-bezier(.2,.8,.2,1) both; }
@keyframes pp-in {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.demo-live.on .demo-mic .ring { animation-duration: 1.3s; }
@media (max-width: 900px) {
  .dhero-grid { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .demo-live { order: -1; }
}

/* ============== Titres de section réduits — cohérence & alignement ============== */
h2.section-title { font-size: clamp(30px, 3.4vw, 48px); }
.finalcta h2 { font-size: clamp(32px, 3.8vw, 52px); }
.sec-head { margin-bottom: 56px; }
.sec-head .right p { font-size: 17px; }
.sec-head .right p strong { color: var(--ink); font-weight: 600; }
.hybrid .sec-head .right p strong { color: #fff; }

/* ============== Grille métiers — 6 cartes compactes visibles d'un coup ============== */
.mic-grid { grid-template-columns: repeat(6, 1fr); gap: 14px; }
.mic-card {
  aspect-ratio: auto;
  padding: 20px 10px 18px;
  gap: 12px;
}
.mic-circle { width: 62px; height: 62px; }
.mic-circle .mic-ico { width: 20px; height: 20px; }
.mic-name { font-size: 13.5px; }
.mic-tag { font-size: 8.5px; }
.mic-cta { font-size: 11.5px; }
@media (max-width: 1100px) {
  .mic-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .mic-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============== Pages démo — section « Choisissez votre métier » ============== */
.more-demos .sec-head { display: block; }
.more-demos .sec-head .right p { margin-top: 20px; max-width: 62ch; }

/* ============== Preuve sociale — note, logos, CTA ============== */
.proof-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: 28px 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 52px;
}
.pr-score { display: flex; align-items: center; gap: 18px; }
.pr-num {
  font-family: var(--serif); font-weight: 700;
  font-size: 54px; line-height: 1; letter-spacing: -0.03em;
}
.pr-stars { display: flex; gap: 3px; }
.pr-stars svg { width: 20px; height: 20px; fill: var(--gold); }
.pr-sub {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute); line-height: 1.7;
}
.proof-logos { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 40px); flex-wrap: wrap; }
.pl-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--mute);
}
.proof-logos .brand {
  font-weight: 700; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 42%, transparent);
  transition: color .3s;
}
.proof-logos .brand:hover { color: var(--ink); }
.proof-cta { display: flex; justify-content: center; margin-top: 46px; }

/* Témoignages sans contour */
.rev { border: 0; }
@media (max-width: 720px) {
  .proof-bar { flex-direction: column; align-items: flex-start; gap: 22px; }
}

/* ============== Pages démo — carte visuelle métier autour du micro ============== */
.demo-visual {
  position: relative;
  width: 100%;
  max-width: 430px;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  padding: 54px 24px 40px;
  display: flex; flex-direction: column; align-items: center;
  background-color: var(--bg-2);
  box-shadow: 0 30px 60px -38px rgba(0,0,0,.32);
}
.demo-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--demo-bg);
  background-size: cover;
  background-position: center;
  filter: grayscale(72%) sepia(14%) brightness(1.04) contrast(.95);
  z-index: -2;
}
.demo-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,244,237,.88), rgba(247,244,237,.62));
  z-index: -1;
}
.demo-visual .demo-mic-hint { margin-top: 18px; }

/* Pages démo — autres métiers avec les cartes de la homepage (5 colonnes) */
.more-grid { grid-template-columns: repeat(5, 1fr); margin-top: 8px; }
@media (max-width: 1100px) { .more-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .more-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============== Bande d'atouts — transparente, texte gras ============== */
.marquee {
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  font-weight: 700;
  color: var(--ink);
}
.hero + .marquee, .hero .marquee { background: transparent; }

/* ============== Hybrid — cartes compactes, la page respire ============== */
.hyb-grid {
  max-width: 1040px;
  margin-left: auto; margin-right: auto;
  gap: 18px;
  margin-top: 40px;
}
.hyb-card { padding: 26px 26px 22px; }
.hyb-card .ico { width: 42px; height: 42px; margin-bottom: 16px; }
.hyb-card .ico svg { width: 20px; height: 20px; }
.hyb-card h3 { font-size: clamp(19px, 1.8vw, 24px); }
.hyb-card p { font-size: 13.5px; }
.hyb-card ul li { font-size: 13px; padding: 7px 0; }

/* Pages démo — la scène colle au hero (le .sec parent ajoutait 140px) */
section.sec:has(.demo-stage) { padding: 0; }
@media (max-width: 900px) {
  .dhero { padding-bottom: 6px; }
  .demo-stage { padding: 10px 0 56px; gap: 26px; }
  .demo-visual { max-width: 100%; }
}

/* ============== Carte démo : le chat glisse par-dessus le micro ============== */
.demo-visual {
  box-shadow: none;
  border: 0;
  min-height: 680px;
  max-width: 480px;
  justify-content: center;
  overflow: hidden;
}
.demo-live .phone-preview {
  display: flex;
  position: absolute;
  inset: 12px;
  top: 12px;
  margin: 0;
  padding: 18px 18px 14px;
  border: 0;
  background: #fff;
  box-shadow: 0 -18px 44px -30px rgba(0,0,0,.35);
  transform: translateY(calc(100% + 30px));
  transition: transform .75s cubic-bezier(.22, .9, .26, 1);
  z-index: 2;
}
.demo-live.on .phone-preview {
  display: flex;
  animation: none;
  transform: translateY(0);
}
.demo-live .phone-preview .pp-transcript { overflow-y: auto; min-height: 0; }
.pp-replay {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--gold-deep);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 15px; line-height: 1;
  cursor: pointer;
  margin-left: 8px;
  transition: border-color .3s, transform .3s;
}
.pp-replay:hover { border-color: var(--gold); transform: rotate(180deg); }

/* Ondes plus fines, contenues dans leur bande */
.pp-wave { height: 26px; overflow: hidden; flex: none; }
.pp-wave span { max-width: 2px; }

@media (max-width: 900px) {
  .demo-visual { min-height: 540px; max-width: 100%; }
}

/* Les bulles n'occupent l'espace qu'à leur tour (sinon le chat scrolle à vide) */
.demo-live .pp-bubble:not(.show) { display: none; }
.demo-live .pp-bubble.show { animation: bub-in .5s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes bub-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Correctifs carte démo : panneau non coupé + carte compacte avant ouverture */
.demo-live .phone-preview {
  width: auto;
  max-width: none;
}
.demo-visual {
  min-height: 420px;
  transition: min-height .65s cubic-bezier(.3, .7, .3, 1);
}
.demo-live.on .demo-visual { min-height: 690px; }
@media (max-width: 900px) {
  .demo-visual { min-height: 360px; }
  .demo-live.on .demo-visual { min-height: 600px; }
}
