:root {
  --bg: #f6f7fb;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --cream: #ede9fe;
  --cream-2: #e0e7ff;
  --ink: #0d0e1a;
  --text: #0d0e1a;
  --muted: #6b6b80;
  --muted-dark: #a3a3b8;
  --line: rgba(15, 16, 30, 0.08);
  --line-dark: rgba(15, 16, 30, 0.14);
  --mauve: #7c5cff;
  --mauve-deep: #5b3fd8;
  --mauve-tint: #ede9fe;
  --blue: #3b82f6;
  --blue-deep: #2563eb;
  --blue-tint: #e0e7ff;
  --lilac: #a78bfa;
  --teal: #7c5cff;
  --orange: #3b82f6;
  --lime: #a78bfa;
  --gradient-hero: linear-gradient(90deg, #7c5cff 0%, #5b3fd8 45%, #3b82f6 100%);
  --gradient-cta: linear-gradient(135deg, #7c5cff 0%, #3b82f6 100%);
  --radius: 12px;
  --max-width: 1240px;
  --shadow: 0 20px 60px rgba(91, 63, 216, 0.10);
  --shadow-soft: 0 8px 24px rgba(91, 63, 216, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Geist", Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(60rem 38rem at 12% -10%, rgba(124, 92, 255, 0.10), transparent 60%),
    radial-gradient(50rem 32rem at 95% 6%, rgba(59, 130, 246, 0.10), transparent 60%),
    radial-gradient(45rem 28rem at 50% 110%, rgba(167, 139, 250, 0.08), transparent 60%);
  background-attachment: fixed;
  line-height: 1.5;
  overflow-x: hidden;
  letter-spacing: 0;
  max-width: 100%;
}

body::selection {
  background: var(--mauve);
  color: #ffffff;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

section[id] {
  scroll-margin-top: 7rem;
}

main,
.site-header,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

h1,
h2,
h3,
p,
strong,
span,
em {
  overflow-wrap: break-word;
}

.page-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* === Global dynamic grid overlay === */
.page-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(15, 16, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 16, 30, 0.035) 1px, transparent 1px);
  background-size: 6rem 6rem;
  animation: gridBreathe 10s ease-in-out infinite;
}

@keyframes gridBreathe {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.55; }
}

/* Make sure all sections let the global grid show through */
.signal-band,
.agents-section,
.product-section,
.process-section,
.blog-section,
.contact-section,
.faq-section,
.band--integrations {
  position: relative;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .page-texture::before {
    animation: none;
    opacity: 0.25;
  }
}

.shell {
  width: calc(100% - 2rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 2.25rem;
  padding: 0.35rem 1rem;
  color: #ffffff;
  background: var(--gradient-cta);
  font-size: 0.86rem;
  font-weight: 700;
  overflow: hidden;
}

.promo-bar > * {
  min-width: 0;
}

.promo-bar strong {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.promo-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.promo-bar strong a,
.promo-bar a {
  display: inline-flex !important;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.5rem;
  padding: 0.15rem 0.7rem;
  background: #ffffff !important;
  color: var(--mauve-deep) !important;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.promo-bar strong a::after,
.promo-bar a::after {
  content: "→";
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease;
}

.promo-bar strong a:hover,
.promo-bar a:hover {
  background: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.promo-bar strong a:hover::after,
.promo-bar a:hover::after {
  transform: translateX(2px);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 4.5rem;
}

.header-shell > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-mark {
  height: 2.6rem;
  width: 2.6rem;
  display: block;
  flex-shrink: 0;
  border-radius: 0.55rem;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1;
}

.brand-name em {
  font-family: inherit;
  font-style: normal;
  font-size: inherit;
  font-weight: 800;
  color: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
}

.menu-button span {
  width: 1.1rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(0.46rem) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-0.46rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button--header {
  min-height: 2.75rem;
  background: var(--gradient-cta);
  color: #ffffff;
}

/* === Header actions: phone dropdown + refined CTA === */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(15, 16, 30, 0.04);
  border: 1px solid var(--line);
  font-family: "Geist Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-switch-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--gradient-cta);
  color: #ffffff;
}

.lang-switch-other {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch-other:hover {
  color: var(--mauve-deep);
  background: var(--mauve-tint);
}

/* Phone dropdown trigger */
.header-phone {
  position: relative;
}

.header-phone-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 16, 30, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.header-phone-trigger svg {
  width: 1.05rem;
  height: 1.05rem;
}

.header-phone-trigger:hover {
  background: var(--mauve-tint);
  border-color: rgba(124, 92, 255, 0.35);
  color: var(--mauve-deep);
  transform: translateY(-1px);
}

.header-phone.is-open .header-phone-trigger {
  background: var(--mauve-tint);
  border-color: rgba(124, 92, 255, 0.5);
  color: var(--mauve-deep);
}

/* Dropdown panel */
.header-phone-pop {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 16rem;
  padding: 0.45rem;
  border-radius: 0.95rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 60;
}

.header-phone-pop::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0.95rem;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: rotate(45deg);
}

.header-phone.is-open .header-phone-pop {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.header-phone-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 0.92rem;
  transition: background 0.18s ease, transform 0.18s ease;
}

.header-phone-row:hover {
  background: var(--mauve-tint);
  color: var(--mauve-deep);
  transform: translateX(2px);
}

.header-phone-flag {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  min-width: 2.2rem;
}

.header-phone-num {
  margin-left: auto;
  color: var(--text);
}

/* Refined CTA "Réserver une démo" */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.05rem;
  height: 2.65rem;
  border-radius: 999px;
  background: var(--gradient-cta);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 6px 18px rgba(91, 63, 216, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(91, 63, 216, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

.header-cta-arrow {
  font-weight: 700;
  display: inline-block;
  transition: transform 0.25s ease;
}

.header-cta:hover .header-cta-arrow {
  transform: translateX(3px);
}

@media (max-width: 720px) {
  .header-cta {
    padding: 0 0.85rem;
    font-size: 0.82rem;
    height: 2.4rem;
  }

  .header-cta-arrow {
    display: none;
  }

  .header-phone-trigger {
    width: 2.4rem;
    height: 2.4rem;
  }

  .header-phone-pop {
    min-width: 14rem;
  }
}

.button--primary {
  background: var(--gradient-cta);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(124, 92, 255, 0.25);
}

.button--secondary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.25);
}

.button--ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.85);
}

.button--ghost:hover {
  border-color: var(--mauve);
  color: var(--mauve-deep);
}

.button--disabled {
  color: rgba(13, 14, 26, 0.42);
  border-color: rgba(13, 14, 26, 0.10);
  background: rgba(15, 16, 30, 0.04);
  cursor: not-allowed;
}

.hero {
  position: relative;
  --active-portrait: 29rem;
  --side-portrait: 16.5rem;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  padding: 5.8rem 0 2.5rem;
  background: transparent;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  inset: 0;
  background:
    radial-gradient(60rem 40rem at 10% 20%, rgba(124, 92, 255, 0.10), transparent 60%),
    radial-gradient(50rem 32rem at 95% 80%, rgba(59, 130, 246, 0.10), transparent 60%),
    linear-gradient(rgba(15, 16, 30, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 16, 30, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 6rem 6rem, 6rem 6rem;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 12rem;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58rem, 56vw);
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.72;
  filter: saturate(1) brightness(0.72);
  transform: scale(1.01);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 8%, rgba(0, 0, 0, 0.82) 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 8%, rgba(0, 0, 0, 0.82) 22%, #000 100%);
  pointer-events: none;
}

/* === Centered Hero (cinematic) === */
.hero--centered {
  min-height: 92vh;
  padding: 7rem 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero--centered .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(0.85) brightness(1.02) contrast(0.95);
  -webkit-mask-image: none;
  mask-image: none;
  transform: scale(1.02);
  z-index: 0;
}

.hero--centered .hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(246, 247, 251, 0.65) 0%, transparent 22%, transparent 72%, rgba(246, 247, 251, 0.85) 100%),
    radial-gradient(ellipse 90% 80% at 20% 10%, rgba(124, 92, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 75% at 85% 15%, rgba(59, 130, 246, 0.16) 0%, transparent 60%);
}

.hero--centered .hero-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70rem;
  max-width: 95vw;
  height: 42rem;
  max-height: 85vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(246, 247, 251, 0.85) 0%, rgba(246, 247, 251, 0.55) 35%, rgba(246, 247, 251, 0.18) 65%, transparent 85%);
  filter: blur(8px);
}

/* Dynamic grid overlay inside the hero (above video, below text) */
.hero--centered .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(rgba(15, 16, 30, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 16, 30, 0.03) 1px, transparent 1px);
  background-size: 6rem 6rem;
  animation: gridBreathe 10s ease-in-out infinite;
}

.hero--centered::before,
.hero--centered::after {
  display: none;
}

.hero--centered .hero-shell {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}

.hero--centered .hero-copy {
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero.hero--centered h1,
.hero.hero--centered .hero-text {
  text-shadow: none;
}

/* Pill avatars at the top */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.3rem 1rem 0.3rem 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text);
  font-size: 0.86rem;
  box-shadow: var(--shadow-soft);
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-pill-avatars {
  display: inline-flex;
  align-items: center;
}

.hero-pill-avatars img {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #ffffff;
  margin-left: -0.55rem;
  box-shadow: 0 2px 6px rgba(91, 63, 216, 0.15);
}

.hero-pill-avatars img:first-child {
  margin-left: 0;
}

.hero-pill-text strong {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* Big centered headline */
.hero.hero--centered h1 {
  max-width: 64rem;
  margin: 1.6rem 0 0;
  font-size: clamp(1.9rem, 4.4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-wrap: pretty;
  animation: heroFadeUp 0.9s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero.hero--centered h1 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.hero.hero--centered .hero-text {
  max-width: 38rem;
  margin: 1.3rem auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
  text-align: center;
  animation: heroFadeUp 0.9s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Trust pill (Start IA) */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  padding: 0.45rem 1rem 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--mauve-tint);
  border: 1px solid rgba(124, 92, 255, 0.30);
  color: var(--text);
  font-size: 0.86rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  animation: heroFadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-trust:hover {
  background: rgba(124, 92, 255, 0.14);
  border-color: rgba(124, 92, 255, 0.5);
  transform: translateY(-1px);
}

.hero-trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--mauve);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.18);
  animation: heroPulse 2s ease-in-out infinite;
}

.hero-trust strong {
  color: var(--mauve-deep);
  font-weight: 700;
}

.hero-trust-arrow {
  color: var(--mauve-deep);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.hero-trust:hover .hero-trust-arrow {
  transform: translateX(3px);
}

/* CTAs centered */
.hero--centered .hero-actions {
  justify-content: center;
  margin-top: 2rem;
  gap: 0.7rem;
  max-width: none;
  animation: heroFadeUp 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero--centered .hero-actions .button {
  min-height: 2.85rem;
  padding: 0 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
}

.button--glow {
  position: relative;
  box-shadow: 0 12px 40px rgba(124, 92, 255, 0.35), 0 0 0 1px rgba(124, 92, 255, 0.4) inset;
}

.button--glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(110deg, var(--mauve), var(--blue), var(--lilac), var(--mauve));
  background-size: 300% 100%;
  z-index: -1;
  filter: blur(14px);
  opacity: 0.55;
  animation: heroGlow 6s linear infinite;
}

/* === Premium CTA button === */
.button--cta {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.65rem !important;
  min-height: 3.15rem !important;
  border: none !important;
  border-radius: 999px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.005em;
  color: #ffffff !important;
  background: linear-gradient(110deg, var(--mauve) 0%, var(--mauve-deep) 50%, var(--blue) 100%) !important;
  background-size: 200% 100% !important;
  background-position: 0% 50%;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 10px 28px rgba(91, 63, 216, 0.32),
    0 4px 12px rgba(59, 130, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease,
              background-position 0.6s ease;
  cursor: pointer;
}

.button--cta::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(110deg, var(--mauve), var(--blue), var(--lilac), var(--mauve));
  background-size: 300% 100%;
  z-index: -1;
  filter: blur(16px);
  opacity: 0.55;
  animation: heroGlow 5s linear infinite;
}

.button-cta-label {
  position: relative;
  z-index: 1;
}

.button-cta-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.button-cta-shine {
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  z-index: 0;
  pointer-events: none;
  animation: ctaShine 3.5s ease-in-out infinite;
}

.button--cta:hover {
  transform: translateY(-2px);
  background-position: 100% 50% !important;
  box-shadow:
    0 16px 36px rgba(91, 63, 216, 0.42),
    0 6px 18px rgba(59, 130, 246, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.button--cta:hover .button-cta-arrow {
  transform: translateX(3px) rotate(-8deg);
}

.button--cta:active {
  transform: translateY(0);
}

@keyframes ctaShine {
  0%, 100% { left: -35%; }
  60%, 100% { left: 135%; }
}

@keyframes heroGlow {
  to { background-position: 300% 0; }
}

/* Secondary app links */
.hero-applinks {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  animation: heroFadeUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-applinks a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hero-applinks a:hover {
  color: var(--mauve-deep);
  border-color: var(--mauve);
}

.hero-applinks span {
  opacity: 0.5;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
  animation: heroFadeUp 1s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-scroll:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.hero-scroll-dot {
  width: 1.4rem;
  height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  position: relative;
}

.hero-scroll-dot::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--text);
  animation: heroScrollDot 1.8s ease-in-out infinite;
}

@keyframes heroScrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 0.6rem); opacity: 0.3; }
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(124, 92, 255, 0.28); }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-portrait {
  position: absolute;
  width: var(--side-portrait);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0.50;
  filter: saturate(0.85) brightness(1);
  transform: translateY(0);
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease, width 260ms ease, right 260ms ease, bottom 260ms ease;
}

.hero-portrait--hse {
  right: 52rem;
  bottom: 2rem;
}

.hero-portrait--recruitment {
  right: 34rem;
  bottom: 7rem;
  z-index: 1;
}

.hero-portrait--telephonic {
  right: 3rem;
  bottom: 2rem;
}

.hero[data-active-agent="hse"] .hero-portrait--hse,
.hero[data-active-agent="recruitment"] .hero-portrait--recruitment,
.hero[data-active-agent="telephonic"] .hero-portrait--telephonic {
  width: var(--active-portrait);
  opacity: 1;
  filter: saturate(1.12) brightness(1);
  transform: translateY(-0.6rem);
  z-index: 3;
}

.hero[data-active-agent="hse"] .hero-portrait--hse {
  right: 24rem;
  bottom: -4rem;
}

.hero[data-active-agent="hse"] .hero-portrait--recruitment {
  right: 6rem;
  bottom: 7rem;
}

.hero[data-active-agent="hse"] .hero-portrait--telephonic {
  right: -12rem;
  bottom: 1.5rem;
}

.hero[data-active-agent="recruitment"] .hero-portrait--hse {
  right: 52rem;
  bottom: 2rem;
}

.hero[data-active-agent="recruitment"] .hero-portrait--recruitment {
  right: 18rem;
  bottom: -4rem;
}

.hero[data-active-agent="recruitment"] .hero-portrait--telephonic {
  right: 0;
  bottom: 2rem;
}

.hero[data-active-agent="telephonic"] .hero-portrait--hse {
  right: 52rem;
  bottom: 1.5rem;
}

.hero[data-active-agent="telephonic"] .hero-portrait--recruitment {
  right: 34rem;
  bottom: 7rem;
}

.hero[data-active-agent="telephonic"] .hero-portrait--telephonic {
  right: 3rem;
  bottom: -4rem;
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  max-width: 36rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--mauve-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
}

.hero h1 {
  max-width: 34rem;
  margin: 0.85rem 0 0;
  font-size: 4.9rem;
  line-height: 0.92;
  font-weight: 900;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-text {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
  max-width: 36rem;
}

.hero-actions .button {
  min-height: 2.2rem;
  padding: 0 0.75rem;
  font-size: 0.86rem;
}

.hero-actions .button--primary {
  box-shadow: 0 10px 26px rgba(124, 92, 255, 0.18);
}

.hero-actions .button--secondary {
  box-shadow: 0 10px 26px rgba(59, 130, 246, 0.16);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 600;
}

.agent-dock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 36rem;
  margin-top: 1.35rem;
}

.agent-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
  min-height: 3.65rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.agent-tab:hover,
.agent-tab.is-active {
  transform: translateY(-1px);
  border-color: rgba(32, 231, 210, 0.5);
  background: rgba(32, 231, 210, 0.08);
}

.agent-tab-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 900;
}

.agent-tab strong,
.agent-tab em {
  display: block;
}

.agent-tab strong {
  font-size: 0.9rem;
  line-height: 1.1;
}

.agent-tab em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.signal-band {
  position: relative;
  z-index: 2;
  padding: 0.9rem 0 3.25rem;
  background: transparent;
}

.signal-panel {
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 1.8fr);
  gap: 1rem;
  align-items: center;
  min-height: 7.6rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(32, 231, 210, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.028);
}

.signal-intro {
  display: grid;
  gap: 0.35rem;
  max-width: 20rem;
}

.signal-intro span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-intro strong {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.12;
}

.signal-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.signal-flow::before,
.signal-flow::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  pointer-events: none;
}

.signal-flow::before {
  background: rgba(255, 250, 240, 0.12);
}

.signal-flow::after {
  width: 34%;
  right: auto;
  background: linear-gradient(90deg, transparent, var(--teal), var(--lime), transparent);
  animation: signal-rail 4.8s ease-in-out infinite;
}

.signal-node {
  position: relative;
  display: grid;
  gap: 0.28rem;
  overflow: hidden;
  min-height: 5.35rem;
  padding: 0.78rem;
  border: 1px solid rgba(255, 250, 240, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(32, 231, 210, 0.09), transparent 48%),
    rgba(11, 13, 12, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.signal-node::before {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(183, 247, 100, 0.8);
  animation: signal-pulse 1.8s ease-in-out infinite;
}

.signal-node:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 231, 210, 0.38);
  background-color: rgba(255, 255, 255, 0.045);
}

.signal-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
}

.signal-node strong {
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.signal-node:nth-child(3) strong {
  font-size: 0.98rem;
  line-height: 1.05;
}

.signal-node em {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
}

@keyframes signal-rail {
  0% {
    transform: translate(0, -50%);
    opacity: 0;
  }

  16%,
  72% {
    opacity: 1;
  }

  100% {
    transform: translate(190%, -50%);
    opacity: 0;
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.band,
.agents-section,
.product-section,
.process-section,
.blog-section,
.faq-section,
.contact-section {
  padding: 6rem 0;
}

.agents-section,
.product-section--hse,
.product-section--telephonic,
.process-section,
.contact-section {
  color: var(--text);
  background: transparent;
}

.product-section--recruitment,
.blog-section,
.band--integrations,
.faq-section {
  color: var(--text);
  background: transparent;
}

.signal-band + .agents-section,
.signal-band + .product-section {
  padding-top: 3.5rem;
}

/* === Trust marquee (dynamic logo ribbon) === */
.trust-band {
  position: relative;
  z-index: 1;
  padding: 2.8rem 0 3.2rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band-head {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.trust-band-kicker {
  margin: 0;
  font-family: "Geist Mono", "Geist", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 0 1.2rem;
}

.trust-band-kicker::before,
.trust-band-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 16, 30, 0.20), transparent);
}

.trust-band-kicker::before { right: 100%; }
.trust-band-kicker::after { left: 100%; }

.trust-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.trust-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  padding-left: 3.5rem;
  white-space: nowrap;
  animation: trustScroll 32s linear infinite;
  will-change: transform;
}

.trust-marquee:hover .trust-marquee-track {
  animation-play-state: paused;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  font-family: "Geist", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(13, 14, 26, 0.40);
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.trust-logo:hover {
  color: var(--mauve-deep);
  transform: scale(1.05);
}

@keyframes trustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .trust-band {
    padding: 2rem 0 2.4rem;
  }

  .trust-marquee-track {
    gap: 2.2rem;
    padding-left: 2.2rem;
    animation-duration: 24s;
  }

  .trust-logo {
    font-size: 1.15rem;
  }
}

.section-head {
  display: grid;
  grid-template-columns: 13rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.6rem;
}

.section-head h2,
.agent-detail-panel h2,
.product-copy h2,
.faq-layout h2,
.contact-copy h2 {
  margin: 0;
  font-size: 3.35rem;
  line-height: 0.96;
  font-weight: 900;
}

.section-head p:not(.section-kicker),
.agent-detail-panel > p:not(.section-kicker),
.product-copy > p:not(.section-kicker),
.contact-copy > p {
  max-width: 46rem;
  margin: 0.85rem 0 0;
  color: currentColor;
  opacity: 0.68;
  font-size: 1.05rem;
}

.agents-section .section-kicker,
.product-section--hse .section-kicker,
.product-section--telephonic .section-kicker,
.process-section .section-kicker,
.contact-section .section-kicker {
  color: var(--mauve-deep);
}

.agents-section--v2[data-active-agent="hse"] .agent-detail-content .section-kicker,
.agents-section--v2[data-active-agent="hse"] .agent-detail-content .section-kicker::before {
  color: var(--blue-deep);
}

.agents-section--v2[data-active-agent="recruitment"] .agent-detail-content .section-kicker,
.agents-section--v2[data-active-agent="recruitment"] .agent-detail-content .section-kicker::before {
  color: var(--mauve-deep);
}

.agents-section--v2[data-active-agent="telephonic"] .agent-detail-content .section-kicker,
.agents-section--v2[data-active-agent="telephonic"] .agent-detail-content .section-kicker::before {
  color: #6d28d9;
}

.product-visual {
  margin: 0;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.product-layout--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.product-copy {
  min-width: 0;
  max-width: 38rem;
}

.product-copy .section-kicker {
  margin-bottom: 0.85rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.feature-list div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.product-section--hse .feature-list div,
.product-section--telephonic .feature-list div {
  border-color: var(--line);
}

.feature-list strong {
  color: var(--blue-deep);
}

.agents-section--v2[data-active-agent="recruitment"] .agent-feature-list strong {
  color: var(--mauve-deep);
}

.agents-section--v2[data-active-agent="telephonic"] .agent-feature-list strong {
  color: #6d28d9;
}

.product-section--recruitment .feature-list strong {
  color: var(--mauve-deep);
}

.feature-list span {
  opacity: 0.74;
}

.agent-feature-list:empty {
  display: none;
}

.agents-section {
  position: relative;
  overflow: hidden;
}

.section-anchor {
  position: absolute;
  top: 0;
  scroll-margin-top: 7rem;
}

.agents-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 42rem;
}

.agent-detail-panel {
  min-width: 0;
  max-width: 40rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.agent-detail-panel.is-swapping {
  opacity: 0;
  transform: translateY(0.5rem);
}

.agent-detail-panel .section-kicker {
  margin-bottom: 0.85rem;
}

.agents-section[data-active-agent="hse"] .section-kicker,
.agents-section[data-active-agent="hse"] .agent-feature-list strong,
.agents-section[data-active-agent="hse"] .text-link {
  color: var(--blue-deep);
}

.agents-section[data-active-agent="recruitment"] .section-kicker,
.agents-section[data-active-agent="recruitment"] .agent-feature-list strong,
.agents-section[data-active-agent="recruitment"] .text-link {
  color: var(--mauve-deep);
}

.agents-section[data-active-agent="telephonic"] .section-kicker,
.agents-section[data-active-agent="telephonic"] .agent-feature-list strong,
.agents-section[data-active-agent="telephonic"] .text-link {
  color: #6d28d9;
}

.agent-bubble-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 36rem;
  isolation: isolate;
}

.agent-bubble-main {
  position: relative;
  isolation: isolate;
  width: min(32rem, 100%);
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
}

.agent-bubble-main::before,
.agent-bubble-main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.agent-bubble-main::before {
  inset: -1.05rem;
  z-index: 0;
  border: 1px solid rgba(32, 231, 210, 0.32);
  background:
    conic-gradient(from 40deg, transparent 0deg, rgba(32, 231, 210, 0.58) 42deg, transparent 88deg, transparent 190deg, rgba(183, 247, 100, 0.34) 230deg, transparent 285deg);
  filter: drop-shadow(0 0 18px rgba(32, 231, 210, 0.18));
  animation: product-ring-spin 16s linear infinite;
}

.agent-bubble-main::after {
  inset: -1.7rem;
  z-index: 0;
  background: radial-gradient(circle, rgba(32, 231, 210, 0.24), transparent 66%);
  filter: blur(30px);
  opacity: 0.6;
}

.agents-section[data-active-agent="recruitment"] .agent-bubble-main::before {
  border-color: rgba(255, 156, 63, 0.36);
  background:
    conic-gradient(from 40deg, transparent 0deg, rgba(255, 156, 63, 0.66) 42deg, transparent 88deg, transparent 190deg, rgba(183, 247, 100, 0.28) 230deg, transparent 285deg);
  filter: drop-shadow(0 0 18px rgba(255, 156, 63, 0.18));
}

.agents-section[data-active-agent="recruitment"] .agent-bubble-main::after {
  background: radial-gradient(circle, rgba(255, 156, 63, 0.24), transparent 66%);
}

.agents-section[data-active-agent="telephonic"] .agent-bubble-main::before {
  border-color: rgba(84, 200, 255, 0.38);
  background:
    conic-gradient(from 40deg, transparent 0deg, rgba(84, 200, 255, 0.68) 42deg, transparent 88deg, transparent 190deg, rgba(32, 231, 210, 0.34) 230deg, transparent 285deg);
  filter: drop-shadow(0 0 18px rgba(84, 200, 255, 0.2));
}

.agents-section[data-active-agent="telephonic"] .agent-bubble-main::after {
  background: radial-gradient(circle, rgba(84, 200, 255, 0.25), transparent 66%);
}

.agent-bubble-main img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center top;
}

.agent-bubble-main figcaption {
  position: absolute;
  left: 50%;
  bottom: -1.1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
  min-height: 3rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  background: rgba(11, 13, 12, 0.84);
  backdrop-filter: blur(14px);
  white-space: nowrap;
}

.agent-bubble-main figcaption strong {
  color: var(--text);
  font-size: 1rem;
}

.agent-bubble-main figcaption span {
  color: var(--muted);
  font-size: 0.84rem;
}

.agent-bubble-picker {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  z-index: 4;
  display: flex;
  gap: 0.75rem;
}

.agent-bubble-choice {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  column-gap: 0.65rem;
  align-items: center;
  min-width: 10.5rem;
  padding: 0.45rem 0.75rem 0.45rem 0.45rem;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  background: rgba(11, 13, 12, 0.78);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.agent-bubble-choice[hidden] {
  display: none;
}

.agent-overview-button {
  min-height: 3.1rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  background: rgba(11, 13, 12, 0.78);
  color: var(--lime);
  cursor: pointer;
  font-weight: 900;
  backdrop-filter: blur(14px);
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.agent-overview-button[hidden] {
  display: none;
}

.agent-overview-button:hover,
.agent-overview-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(183, 247, 100, 0.44);
  background: rgba(16, 18, 17, 0.92);
  outline: none;
}

.agent-bubble-choice:hover,
.agent-bubble-choice:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(32, 231, 210, 0.48);
  background: rgba(16, 18, 17, 0.92);
  outline: none;
}

.agent-bubble-choice img {
  grid-row: 1 / span 2;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.agent-bubble-choice span,
.agent-bubble-choice em {
  display: block;
  line-height: 1.05;
}

.agent-bubble-choice span {
  font-weight: 900;
}

.agent-bubble-choice em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.agents-section[data-active-agent="overview"] .agent-detail-panel .section-kicker,
.agents-section[data-active-agent="overview"] .agent-feature-list strong,
.agents-section[data-active-agent="overview"] .text-link {
  color: var(--lime);
}

.agents-section[data-active-agent="overview"] .agents-lab {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2.25rem;
  min-height: 34rem;
}

.agents-section[data-active-agent="overview"] .agent-detail-panel {
  max-width: 46rem;
  text-align: center;
}

.agents-section[data-active-agent="overview"] .agent-detail-panel .section-kicker {
  justify-content: center;
}

.agents-section[data-active-agent="overview"] .agent-detail-panel h2 {
  font-size: clamp(3rem, 8vw, 5.2rem);
}

.agents-section[data-active-agent="overview"] .agent-detail-panel > p:not(.section-kicker) {
  max-width: none;
  margin-top: 0.65rem;
}

.agents-section[data-active-agent="overview"] .agent-detail-panel .text-link {
  display: none;
}

.agents-section[data-active-agent="overview"] .agent-bubble-stage {
  width: 100%;
  min-height: 17rem;
}

.agents-section[data-active-agent="overview"] .agent-bubble-main {
  display: none;
}

.agents-section[data-active-agent="overview"] .agent-bubble-picker {
  position: relative;
  right: auto;
  bottom: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 1.15rem;
  align-items: center;
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice {
  position: relative;
  display: block;
  justify-self: center;
  width: min(13.5rem, 100%);
  min-width: 0;
  aspect-ratio: 1;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  backdrop-filter: none;
}

.agents-section[data-active-agent="overview"] .agent-overview-button {
  display: none;
}

.agent-bubble-choice.is-active {
  border-color: rgba(183, 247, 100, 0.38);
}

.agents-section[data-active-agent="recruitment"] .agent-bubble-choice.is-active {
  border-color: rgba(255, 156, 63, 0.44);
}

.agents-section[data-active-agent="telephonic"] .agent-bubble-choice.is-active {
  border-color: rgba(84, 200, 255, 0.44);
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice::before,
.agents-section[data-active-agent="overview"] .agent-bubble-choice::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice::before {
  inset: -0.55rem;
  z-index: 0;
  border: 1px solid rgba(32, 231, 210, 0.28);
  background:
    conic-gradient(from 40deg, transparent 0deg, rgba(32, 231, 210, 0.5) 40deg, transparent 88deg, transparent 210deg, rgba(183, 247, 100, 0.28) 250deg, transparent 300deg);
  filter: drop-shadow(0 0 14px rgba(32, 231, 210, 0.16));
  animation: product-ring-spin 18s linear infinite;
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice::after {
  inset: -1rem;
  z-index: 0;
  background: radial-gradient(circle, rgba(32, 231, 210, 0.2), transparent 68%);
  filter: blur(22px);
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice[data-agent-button="recruitment"]::before {
  border-color: rgba(255, 156, 63, 0.32);
  background:
    conic-gradient(from 40deg, transparent 0deg, rgba(255, 156, 63, 0.58) 40deg, transparent 88deg, transparent 210deg, rgba(183, 247, 100, 0.24) 250deg, transparent 300deg);
  filter: drop-shadow(0 0 14px rgba(255, 156, 63, 0.16));
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice[data-agent-button="recruitment"]::after {
  background: radial-gradient(circle, rgba(255, 156, 63, 0.2), transparent 68%);
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice[data-agent-button="telephonic"]::before {
  border-color: rgba(84, 200, 255, 0.34);
  background:
    conic-gradient(from 40deg, transparent 0deg, rgba(84, 200, 255, 0.58) 40deg, transparent 88deg, transparent 210deg, rgba(32, 231, 210, 0.26) 250deg, transparent 300deg);
  filter: drop-shadow(0 0 14px rgba(84, 200, 255, 0.16));
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice[data-agent-button="telephonic"]::after {
  background: radial-gradient(circle, rgba(84, 200, 255, 0.2), transparent 68%);
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice span,
.agents-section[data-active-agent="overview"] .agent-bubble-choice em {
  position: absolute;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  justify-content: center;
  min-width: 7rem;
  border: 1px solid rgba(255, 250, 240, 0.13);
  background: rgba(11, 13, 12, 0.84);
  backdrop-filter: blur(14px);
  text-align: center;
  white-space: nowrap;
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice span {
  bottom: 1.45rem;
  min-height: 1.7rem;
  padding: 0.15rem 0.6rem 0;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  color: var(--text);
  font-size: 0.9rem;
}

.agents-section[data-active-agent="overview"] .agent-bubble-choice em {
  bottom: 0.2rem;
  min-height: 1.45rem;
  padding: 0 0.6rem 0.18rem;
  border-top: 0;
  border-radius: 0 0 999px 999px;
  font-size: 0.72rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.35rem;
  color: var(--teal);
  font-weight: 900;
}

.text-link::after {
  content: "->";
}

.product-section--recruitment .text-link {
  color: var(--mauve-deep);
}

.product-section--telephonic .text-link--disabled {
  color: var(--muted);
}

.text-link--disabled {
  color: var(--muted);
}

.text-link--disabled::after {
  content: "";
}

/* === Agents section v2 (always visible bubbles + detail card below) === */
.agents-section.agents-section--v2 {
  padding: 5rem 0 6rem;
}

.agents-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.agents-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  max-width: 48rem;
}

.agents-header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  text-wrap: balance;
}

.agents-header > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
}

/* Trio of bubbles — always visible, equal size */
.agent-trio {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 72rem;
}

.agent-trio-card {
  --accent: var(--blue);
  --accent-rgb: 59, 130, 246;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0.5rem 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  animation: agentFloat 6s ease-in-out infinite;
}

.agent-trio-card[data-agent-button="recruitment"] {
  --accent: var(--mauve);
  --accent-rgb: 124, 92, 255;
  animation-delay: -2s;
}

.agent-trio-card[data-agent-button="telephonic"] {
  --accent: var(--lilac);
  --accent-rgb: 167, 139, 250;
  animation-delay: -4s;
}

.agent-trio-card:hover,
.agent-trio-card:focus-visible {
  transform: translateY(-10px) scale(1.03);
  outline: none;
  animation-play-state: paused;
}

.agent-trio-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18rem;
  height: 18rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 45%, rgba(var(--accent-rgb), 0.55), transparent 65%);
  filter: blur(32px);
  opacity: 0.35;
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.agent-trio-card:hover .agent-trio-glow,
.agent-trio-card.is-active .agent-trio-glow {
  opacity: 1;
  transform: translateX(-50%) scale(1.08);
}

.agent-trio-image {
  position: relative;
  z-index: 1;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  box-shadow:
    0 18px 48px rgba(91, 63, 216, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.agent-trio-image::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(from 0deg,
    rgba(var(--accent-rgb), 0.9),
    rgba(var(--accent-rgb), 0.15),
    rgba(var(--accent-rgb), 0.9),
    rgba(var(--accent-rgb), 0.15),
    rgba(var(--accent-rgb), 0.9));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.4;
  animation: agentRing 8s linear infinite;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.agent-trio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 100%, rgba(var(--accent-rgb), 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.agent-trio-card:hover .agent-trio-image::before,
.agent-trio-card.is-active .agent-trio-image::before {
  opacity: 1;
}

.agent-trio-card:hover .agent-trio-image::after,
.agent-trio-card.is-active .agent-trio-image::after {
  opacity: 1;
}

.agent-trio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.agent-trio-card:hover .agent-trio-image img {
  transform: scale(1.06);
}

.agent-trio-card.is-active .agent-trio-image {
  box-shadow:
    0 20px 60px rgba(var(--accent-rgb), 0.40),
    0 0 0 5px rgba(var(--accent-rgb), 0.14),
    inset 0 0 0 2px rgba(255, 255, 255, 0.95);
}

.agent-trio-name {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.015em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.agent-trio-card:hover .agent-trio-name,
.agent-trio-card.is-active .agent-trio-name {
  text-shadow: 0 0 24px rgba(var(--accent-rgb), 0.55);
}

.agent-trio-role {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
}

.agent-trio-card.is-active .agent-trio-role {
  color: var(--accent);
}

@keyframes agentFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes agentRing {
  to { transform: rotate(360deg); }
}

/* Detail card — appears below the trio when an agent is clicked */
.agent-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 56rem;
  padding: 1.8rem;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  animation: agentCardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.agent-detail-card[hidden] {
  display: none;
}

.agent-detail-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.30), transparent 40%, transparent 60%, rgba(59, 130, 246, 0.30));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.agents-section--v2[data-active-agent="hse"] .agent-detail-card::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.55), transparent 50%);
}

.agents-section--v2[data-active-agent="recruitment"] .agent-detail-card::before {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.55), transparent 50%);
}

.agents-section--v2[data-active-agent="telephonic"] .agent-detail-card::before {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.50), transparent 50%);
}

.agent-detail-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.agent-detail-close:hover {
  background: var(--mauve-tint);
  color: var(--mauve-deep);
  transform: rotate(90deg);
}

.agent-detail-image {
  width: 14rem;
  height: 14rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.agent-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.agent-detail-content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.agent-detail-content .section-kicker {
  margin-bottom: 0.2rem;
}

.agent-detail-content h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
}

.agent-detail-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.agent-detail-content .feature-list {
  margin-top: 0.4rem;
}

.agent-detail-content .text-link {
  margin-top: 0.8rem;
  align-self: flex-start;
}

@keyframes agentCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .agents-section.agents-section--v2 {
    padding: 3.5rem 0 4rem;
  }

  .agents-stack {
    gap: 2.5rem;
  }

  .agent-trio {
    gap: 1.4rem;
  }

  .agent-trio-image {
    width: 8.5rem;
    height: 8.5rem;
  }

  .agent-trio-glow {
    width: 11rem;
    height: 11rem;
  }

  .agent-trio-name {
    font-size: 1.15rem;
  }

  .agent-trio-role {
    font-size: 0.7rem;
  }

  .agent-detail-card {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.4rem;
  }

  .agent-detail-image {
    width: 100%;
    height: 12rem;
  }
}

.product-visual {
  position: relative;
  isolation: isolate;
  justify-self: center;
  width: min(28rem, 100%);
  aspect-ratio: 1;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.product-section--hse .product-visual,
.product-section--telephonic .product-visual {
  box-shadow: none;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  inset: -0.9rem;
  border-radius: 50%;
  pointer-events: none;
}

.product-visual::before {
  z-index: 0;
  border: 1px solid rgba(59, 130, 246, 0.32);
  background:
    conic-gradient(from 40deg, transparent 0deg, rgba(59, 130, 246, 0.58) 42deg, transparent 88deg, transparent 190deg, rgba(167, 139, 250, 0.34) 230deg, transparent 285deg);
  filter: drop-shadow(0 0 18px rgba(59, 130, 246, 0.20));
  animation: product-ring-spin 16s linear infinite;
}

.product-visual::after {
  z-index: 0;
  inset: -1.25rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 64%);
  filter: blur(26px);
  opacity: 0.45;
}

.product-section--recruitment .product-visual::before {
  border-color: rgba(124, 92, 255, 0.35);
  background:
    conic-gradient(from 40deg, transparent 0deg, rgba(124, 92, 255, 0.66) 42deg, transparent 88deg, transparent 190deg, rgba(167, 139, 250, 0.28) 230deg, transparent 285deg);
  filter: drop-shadow(0 0 18px rgba(124, 92, 255, 0.20));
}

.product-section--recruitment .product-visual::after {
  background: radial-gradient(circle, rgba(124, 92, 255, 0.26), transparent 64%);
}

.product-section--telephonic .product-visual::before {
  border-color: rgba(167, 139, 250, 0.36);
  background:
    conic-gradient(from 40deg, transparent 0deg, rgba(167, 139, 250, 0.68) 42deg, transparent 88deg, transparent 190deg, rgba(124, 92, 255, 0.34) 230deg, transparent 285deg);
  filter: drop-shadow(0 0 18px rgba(167, 139, 250, 0.20));
}

.product-section--telephonic .product-visual::after {
  background: radial-gradient(circle, rgba(167, 139, 250, 0.26), transparent 64%);
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center top;
}

.product-section--hse .product-visual img,
.product-section--telephonic .product-visual img {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

@keyframes product-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.integration-grid article,
.process-grid article,
.faq-list details,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.integration-grid article {
  min-height: 12rem;
  padding: 1rem;
  color: var(--text);
  background: #ffffff;
}

.integration-grid span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--mauve-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.integration-grid strong,
.process-grid h3 {
  display: block;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.08;
}

.integration-grid p,
.process-grid p,
.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  min-height: 16rem;
  padding: 1rem;
  border-color: var(--line);
  background: #ffffff;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 2.4rem;
  border-radius: 999px;
  background: var(--gradient-cta);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

.blog-section {
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: none;
}

.blog-panel {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.blog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
}

.blog-kicker {
  color: var(--orange);
}

.blog-header h2 {
  max-width: 52rem;
  margin: 0.75rem 0 0;
  font-size: 3.1rem;
  line-height: 0.98;
  font-weight: 900;
}

.blog-header p {
  max-width: 44rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.blog-main-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 156, 63, 0.32);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 156, 63, 0.08);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.blog-main-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 156, 63, 0.62);
  background: rgba(255, 156, 63, 0.13);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.055), rgba(255, 250, 240, 0.025)),
    #0b0d0c;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 156, 63, 0.35);
  background-color: #101210;
}

.blog-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: inherit;
}

.blog-thumb {
  position: relative;
  height: 8rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(32, 231, 210, 0.16), transparent),
    #050606;
}

.blog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 6, 6, 0.7));
  pointer-events: none;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  opacity: 0.86;
  transform: scale(1.02);
  transition: transform 220ms ease, opacity 220ms ease;
}

.blog-card:hover .blog-thumb img {
  opacity: 0.96;
  transform: scale(1.07);
}

.blog-thumb--agents {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.blog-thumb--agents img {
  object-position: center top;
}

.blog-thumb--stack {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  padding: 1.1rem;
  background:
    linear-gradient(135deg, rgba(84, 200, 255, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.07), transparent),
    #071017;
}

.blog-thumb--stack span {
  display: block;
  height: 0.82rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(84, 200, 255, 0.82), rgba(32, 231, 210, 0.12));
}

.blog-thumb--stack span:nth-child(2) {
  width: 78%;
  background: linear-gradient(90deg, rgba(183, 247, 100, 0.72), rgba(32, 231, 210, 0.1));
}

.blog-thumb--stack span:nth-child(3) {
  width: 58%;
  background: linear-gradient(90deg, rgba(255, 156, 63, 0.82), rgba(32, 231, 210, 0.1));
}

.blog-card-body {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 0.95rem;
}

.blog-card-body span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.12;
  font-weight: 900;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-card em {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
  color: var(--orange);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 900;
}

.blog-card em::after {
  content: "->";
}

.blog-card--hse .blog-card-body span,
.blog-card--hse em {
  color: var(--teal);
}

.blog-card--security .blog-card-body span,
.blog-card--security em {
  color: var(--blue);
}

.blog-card--recruitment .blog-card-body span,
.blog-card--recruitment em {
  color: var(--orange);
}

.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 2.2rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.055), rgba(255, 250, 240, 0.025)),
    #0b0d0c;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--teal);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 1rem 1rem;
}

.section-kicker--light {
  color: var(--lime);
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.contact-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(255, 250, 240, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  gap: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(32, 231, 210, 0.12), rgba(255, 156, 63, 0.08)),
    #0b0d0c;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.15);
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  color: var(--text);
  background: rgba(255, 250, 240, 0.055);
  outline: none;
  box-shadow: none;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.48);
}

.contact-form input,
.contact-form select {
  min-height: 3rem;
}

.contact-form textarea {
  min-height: 7.2rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(32, 231, 210, 0.82);
  background: rgba(255, 250, 240, 0.08);
  box-shadow: 0 0 0 3px rgba(32, 231, 210, 0.15);
}

.contact-form .button {
  justify-self: start;
  min-height: 2.85rem;
  padding-inline: 1rem;
}

/* === Contact section v2 (premium) === */
.contact-section--v2 {
  position: relative;
  padding: 6rem 0 7rem;
  overflow: hidden;
}

.contact-orb {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: contactOrbDrift 18s ease-in-out infinite;
}

.contact-orb--teal {
  top: -8rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.40), transparent 65%);
}

.contact-orb--orange {
  bottom: -10rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 65%);
  animation-delay: -9s;
}

@keyframes contactOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2rem, -1.5rem) scale(1.08); }
}

.contact-layout-v2 {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: center;
}

/* Left aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 32rem;
}

.contact-aside h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  text-wrap: balance;
}

.contact-aside h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.contact-perk {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.contact-perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: var(--mauve-tint);
  border: 1px solid rgba(124, 92, 255, 0.28);
  color: var(--mauve-deep);
  flex-shrink: 0;
}

.contact-perk-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact-perk:nth-child(2) .contact-perk-icon {
  background: rgba(167, 139, 250, 0.14);
  border-color: rgba(167, 139, 250, 0.32);
  color: #6d28d9;
}

.contact-perk:nth-child(3) .contact-perk-icon {
  background: var(--blue-tint);
  border-color: rgba(59, 130, 246, 0.32);
  color: var(--blue-deep);
}

.contact-perk strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

.contact-perk em {
  display: block;
  font-size: 0.84rem;
  font-style: normal;
  color: var(--muted);
  margin-top: 0.1rem;
}

.contact-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem 0.75rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  width: fit-content;
  box-shadow: var(--shadow-soft);
}

.contact-trust-bubbles {
  display: inline-flex;
}

.contact-trust-bubbles img {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #ffffff;
  margin-left: -0.55rem;
  box-shadow: 0 2px 6px rgba(91, 63, 216, 0.15);
}

.contact-trust-bubbles img:first-child {
  margin-left: 0;
}

.contact-trust span:last-child {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}

/* Right form card — glassmorphic premium */
.contact-form-wrap {
  position: relative;
}

.contact-form-v2 {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-form-v2::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.50), transparent 30%, transparent 70%, rgba(59, 130, 246, 0.50));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: contactBorderGlow 8s linear infinite;
}

@keyframes contactBorderGlow {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.contact-form-v2 .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form-v2 .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form-v2 .field-label {
  font-family: "Geist Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.contact-form-v2 input,
.contact-form-v2 select,
.contact-form-v2 textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-form-v2 input:hover,
.contact-form-v2 select:hover,
.contact-form-v2 textarea:hover {
  border-color: rgba(124, 92, 255, 0.30);
}

.contact-form-v2 input:focus,
.contact-form-v2 select:focus,
.contact-form-v2 textarea:focus {
  border-color: var(--mauve);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.12);
  transform: translateY(-1px);
}

.contact-form-v2 .field:focus-within .field-label {
  color: var(--mauve-deep);
}

.contact-form-v2 input::placeholder,
.contact-form-v2 textarea::placeholder {
  color: rgba(13, 14, 26, 0.38);
}

.contact-form-v2 textarea {
  min-height: 8rem;
  resize: vertical;
  line-height: 1.5;
}

.contact-form-v2 .contact-submit {
  margin-top: 0.5rem;
  justify-self: stretch;
  width: 100%;
}

.contact-form-v2 .contact-submit:disabled {
  cursor: progress;
  opacity: 0.85;
}

.contact-form-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid transparent;
  animation: contactStatusIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-form-status[data-state="success"] {
  background: rgba(34, 197, 94, 0.10);
  border-color: rgba(34, 197, 94, 0.30);
  color: #16a34a;
}

.contact-form-status[data-state="success"]::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #16a34a;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-form-status[data-state="error"] {
  background: rgba(239, 68, 68, 0.10);
  border-color: rgba(239, 68, 68, 0.30);
  color: #dc2626;
}

.contact-form-status[data-state="error"]::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #dc2626;
  font-weight: 800;
  flex-shrink: 0;
}

@keyframes contactStatusIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Contact page minimal header === */
.contact-page-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.contact-page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.contact-page-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.contact-page-back:hover {
  background: var(--mauve-tint);
  border-color: rgba(124, 92, 255, 0.40);
  color: var(--mauve-deep);
  transform: translateX(-2px);
}

/* === Blog section v2 (premium cards) === */
.blog-section--v2 {
  position: relative;
  padding: 6rem 0;
}

.blog-header-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-header-v2 h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
  text-wrap: balance;
}

.blog-header-v2 h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.blog-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 76rem;
  margin: 0 auto;
}

.blog-card-v2--featured {
  /* same size as others — no special grid placement */
}

.blog-card-v2 {
  position: relative;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  box-shadow: var(--shadow-soft);
}

.blog-card-v2:hover {
  border-color: rgba(124, 92, 255, 0.30);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
}

/* Cover image */
.blog-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.85rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mauve-tint), var(--blue-tint));
  margin-bottom: 0.9rem;
}

.blog-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.blog-card-v2:hover .blog-cover > img {
  transform: scale(1.04);
}

/* Fallback when cover image is missing — uses agent portraits */
.blog-cover-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(59, 130, 246, 0.14));
}

.blog-cover-fallback img {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 24px rgba(91, 63, 216, 0.20);
}

.blog-cover-fallback--manifesto {
  gap: 0.3rem;
}

.blog-cover-fallback--manifesto img {
  width: 3.2rem;
  height: 3.2rem;
}

.blog-cover-fallback--manifesto img:nth-child(2) {
  width: 4rem;
  height: 4rem;
  z-index: 2;
  position: relative;
}

.blog-cover-fallback--rgpd {
  flex-direction: column;
  gap: 0.65rem;
  padding: 2rem;
}

.blog-cover-fallback--rgpd span {
  display: block;
  height: 0.5rem;
  border-radius: 999px;
}

.blog-cover-fallback--rgpd span:nth-child(1) { width: 90%; background: linear-gradient(90deg, var(--mauve), transparent); }
.blog-cover-fallback--rgpd span:nth-child(2) { width: 70%; background: linear-gradient(90deg, var(--lilac), transparent); }
.blog-cover-fallback--rgpd span:nth-child(3) { width: 50%; background: linear-gradient(90deg, var(--blue), transparent); }

/* Featured tag */
.blog-featured-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--mauve-deep);
  font-family: "Geist Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-featured-tag::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--mauve);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25);
  animation: heroPulse 2s ease-in-out infinite;
}

/* Meta row */
.blog-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
}

.blog-cat {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-family: "Geist Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--mauve-tint);
  border: 1px solid rgba(124, 92, 255, 0.28);
  color: var(--mauve-deep);
}

.blog-cat[data-cat="manifeste"] { color: var(--mauve-deep); border-color: rgba(124, 92, 255, 0.30); background: var(--mauve-tint); }
.blog-cat[data-cat="hse"] { color: var(--mauve-deep); border-color: rgba(124, 92, 255, 0.30); background: var(--mauve-tint); }
.blog-cat[data-cat="confiance"] { color: #6d28d9; border-color: rgba(167, 139, 250, 0.40); background: rgba(167, 139, 250, 0.14); }
.blog-cat[data-cat="recrutement"] { color: var(--blue-deep); border-color: rgba(59, 130, 246, 0.30); background: var(--blue-tint); }

.blog-dot {
  color: var(--muted);
  opacity: 0.5;
}

.blog-time,
.blog-date {
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Title + excerpt + read more */
.blog-title {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--text);
  text-wrap: balance;
}

.blog-excerpt {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mauve-deep);
  margin-top: auto;
  transition: gap 0.25s ease, color 0.25s ease;
}

.blog-read-more span {
  transition: transform 0.25s ease;
}

.blog-card-v2:hover .blog-read-more {
  gap: 0.6rem;
}

.blog-card-v2:hover .blog-read-more span {
  transform: translateX(3px);
}

@media (max-width: 1100px) {
  .blog-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-section--v2 {
    padding: 4rem 0;
  }

  .blog-header-v2 {
    margin-bottom: 2.4rem;
  }

  .blog-grid-v2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-cover {
    aspect-ratio: 16 / 9;
  }
}

/* === FAQ section v2 (premium accordion) === */
.faq-section--v2 {
  position: relative;
  padding: 6rem 0;
}

.faq-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.faq-header {
  text-align: center;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.faq-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
  text-wrap: balance;
}

.faq-header h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.faq-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  max-width: 64rem;
}

.faq-item {
  position: relative;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.faq-item:hover {
  border-color: rgba(124, 92, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.faq-item[open] {
  border-color: rgba(124, 92, 255, 0.45);
  background: linear-gradient(180deg, var(--mauve-tint) 0%, #ffffff 100%);
  box-shadow: 0 18px 48px rgba(91, 63, 216, 0.12), 0 0 0 1px rgba(124, 92, 255, 0.08) inset;
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: padding 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-cat {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(15, 16, 30, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.faq-cat[data-cat="produit"] { color: var(--mauve-deep); border-color: rgba(124, 92, 255, 0.28); background: var(--mauve-tint); }
.faq-cat[data-cat="dispo"] { color: #6d28d9; border-color: rgba(167, 139, 250, 0.32); background: rgba(167, 139, 250, 0.14); }
.faq-cat[data-cat="controle"] { color: var(--blue-deep); border-color: rgba(59, 130, 246, 0.30); background: var(--blue-tint); }
.faq-cat[data-cat="rgpd"] { color: var(--mauve-deep); border-color: rgba(124, 92, 255, 0.28); background: var(--mauve-tint); }
.faq-cat[data-cat="prix"] { color: #6d28d9; border-color: rgba(167, 139, 250, 0.32); background: rgba(167, 139, 250, 0.14); }
.faq-cat[data-cat="integration"] { color: var(--blue-deep); border-color: rgba(59, 130, 246, 0.30); background: var(--blue-tint); }

.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
  line-height: 1.35;
  text-align: left;
}

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(15, 16, 30, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle svg {
  width: 0.95rem;
  height: 0.95rem;
}

.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
  background: var(--mauve-tint);
  border-color: rgba(124, 92, 255, 0.50);
  color: var(--mauve-deep);
}

.faq-item summary::after {
  content: none;
}

.faq-a {
  padding: 0 1.2rem 1.3rem 1.2rem;
  margin-left: 0;
  animation: faqAnswerIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-a p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.faq-a strong {
  color: var(--text);
  font-weight: 700;
}

.faq-a a {
  color: var(--mauve-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 92, 255, 0.35);
  transition: border-color 0.2s ease;
}

.faq-a a:hover {
  border-bottom-color: var(--mauve);
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bottom CTA — "une autre question ?" */
.faq-bottom-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  margin-top: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.faq-bottom-cta:hover {
  background: #ffffff;
  border-color: rgba(124, 92, 255, 0.40);
}

.faq-bottom-cta-label {
  color: var(--muted);
}

.faq-bottom-cta-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.faq-bottom-cta-link:hover {
  color: var(--mauve-deep);
}

.faq-bottom-cta-link span {
  transition: transform 0.2s ease;
  display: inline-block;
}

.faq-bottom-cta-link:hover span {
  transform: translateX(3px);
}

@media (max-width: 880px) {
  .faq-section--v2 {
    padding: 4rem 0;
  }

  .faq-stack {
    gap: 2.2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "cat toggle"
      "q q";
    gap: 0.6rem;
    padding: 1rem;
  }

  .faq-cat { grid-area: cat; }
  .faq-q { grid-area: q; }
  .faq-toggle { grid-area: toggle; }

  .faq-q {
    font-size: 0.95rem;
  }

  .faq-a {
    padding: 0 1rem 1.1rem;
  }
}

/* === Contact CTA card (homepage) === */
.contact-cta {
  position: relative;
  padding: 5rem 0 6rem;
}

.contact-cta-card {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  border-radius: 1.8rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124, 92, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(59, 130, 246, 0.12), transparent 60%),
    #ffffff;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.40), transparent 35%, transparent 65%, rgba(59, 130, 246, 0.40));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.contact-cta-avatars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.contact-cta-avatars img {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #ffffff;
  margin-left: -1rem;
  box-shadow: 0 8px 24px rgba(91, 63, 216, 0.22);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-cta-avatars img:first-child {
  margin-left: 0;
}

.contact-cta-avatars img:nth-child(2) {
  width: 4.8rem;
  height: 4.8rem;
  z-index: 2;
  position: relative;
}

.contact-cta-card:hover .contact-cta-avatars img:nth-child(1) {
  transform: translateX(-4px) rotate(-4deg);
}

.contact-cta-card:hover .contact-cta-avatars img:nth-child(3) {
  transform: translateX(4px) rotate(4deg);
}

.contact-cta-title {
  margin: 0 auto 0.85rem;
  max-width: 36rem;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}

.contact-cta-sub {
  margin: 0 auto 2rem;
  max-width: 28rem;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-cta-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-cta-primary {
  min-height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.95rem;
}

.contact-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.contact-cta-ghost:hover {
  background: #ffffff;
  border-color: rgba(124, 92, 255, 0.40);
  color: var(--mauve-deep);
  transform: translateY(-2px);
}

/* Contact page-specific tweaks */
.contact-page {
  padding: 4.5rem 0 6rem;
}

.contact-direct {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.contact-direct-label {
  margin: 0 0 1rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.direct-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: #ffffff;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
  box-shadow: var(--shadow-soft);
}

.direct-card:hover {
  background: #ffffff;
  border-color: rgba(124, 92, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.direct-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  background: rgba(15, 16, 30, 0.04);
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.direct-card-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.direct-card--email:hover .direct-card-icon {
  background: var(--mauve-tint);
  border-color: rgba(124, 92, 255, 0.45);
  color: var(--mauve-deep);
}

.direct-card--linkedin:hover .direct-card-icon {
  background: var(--blue-tint);
  border-color: rgba(59, 130, 246, 0.45);
  color: var(--blue-deep);
}

.direct-card--phone:hover .direct-card-icon {
  background: rgba(167, 139, 250, 0.14);
  border-color: rgba(167, 139, 250, 0.45);
  color: #6d28d9;
}

.direct-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.direct-card-label {
  font-family: "Geist Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.direct-card--phone .direct-card-label {
  font-family: inherit;
  letter-spacing: normal;
  text-transform: none;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.direct-card-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 520px) {
  .contact-direct-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .contact-cta-card {
    padding: 2.8rem 1.5rem;
  }

  .contact-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .contact-cta-primary,
  .contact-cta-ghost {
    width: 100%;
  }
}

/* === Floating contact button (FAB) === */
.contact-fab {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.3rem 0.85rem 1rem;
  border-radius: 999px;
  background: var(--gradient-cta);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow:
    0 12px 32px rgba(91, 63, 216, 0.40),
    0 6px 16px rgba(59, 130, 246, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  transform: translateY(0) scale(1);
  opacity: 1;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    opacity 0.4s ease;
  cursor: pointer;
  isolation: isolate;
}

.contact-fab.is-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
}

.contact-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 18px 42px rgba(91, 63, 216, 0.50),
    0 8px 20px rgba(59, 130, 246, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.40);
}

.contact-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  opacity: 0.6;
  z-index: -1;
  animation: fabPulse 2.4s ease-out infinite;
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.6; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}

.contact-fab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  flex-shrink: 0;
}

.contact-fab-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

@media (max-width: 880px) {
  .contact-section--v2 {
    padding: 4rem 0 5rem;
  }

  .contact-layout-v2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-v2 {
    padding: 1.4rem;
  }

  .contact-form-v2 .form-row {
    grid-template-columns: 1fr;
  }

  .contact-fab {
    bottom: 1rem;
    right: 1rem;
    padding: 0.7rem 1.1rem 0.7rem 0.7rem;
    font-size: 0.85rem;
  }

  .contact-fab-label {
    display: none;
  }

  .contact-fab {
    padding: 0.7rem;
  }
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-card {
  display: grid;
  gap: 0.28rem;
  min-height: 5.7rem;
  align-content: start;
  padding: 0.85rem;
  color: var(--text);
  border-color: rgba(255, 250, 240, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.055), rgba(255, 250, 240, 0.025)),
    #0b0d0c;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.contact-card--primary {
  background:
    linear-gradient(135deg, rgba(32, 231, 210, 0.16), rgba(183, 247, 100, 0.08)),
    #0b0d0c;
}

.contact-card--wide {
  grid-column: 1 / -1;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 231, 210, 0.42);
  background-color: #101210;
}

.contact-card span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-card em {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

.site-footer {
  padding: 4.5rem 0 1.8rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.brand--footer {
  color: var(--text);
}

/* Multi-column footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 18rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col h4 {
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--mauve-deep);
  transform: translateX(2px);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.4;
}

.footer-badge--popular {
  background: rgba(32, 231, 210, 0.15);
  color: var(--teal);
  border: 1px solid rgba(32, 231, 210, 0.35);
}

.footer-badge--soon {
  background: rgba(255, 156, 63, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 156, 63, 0.32);
}

/* Footer phone numbers with language tag */
.footer-phone {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--text);
}

.footer-phone-flag {
  display: inline-flex;
  gap: 0.25rem;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0;
  filter: saturate(1.1);
}

/* Bottom row: copyright + legal links */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--mauve-deep);
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 3rem 0 1.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .footer-legal {
    gap: 1rem;
  }
}

@media (max-width: 1180px) {
  .hero {
    --active-portrait: 24rem;
    --side-portrait: 13.8rem;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .hero[data-active-agent="hse"] .hero-portrait--hse {
    right: 18rem;
  }

  .hero[data-active-agent="hse"] .hero-portrait--recruitment {
    right: 4rem;
  }

  .hero[data-active-agent="hse"] .hero-portrait--telephonic {
    right: -10rem;
  }

  .hero[data-active-agent="recruitment"] .hero-portrait--hse {
    right: 43rem;
  }

  .hero[data-active-agent="recruitment"] .hero-portrait--recruitment {
    right: 15rem;
  }

  .hero[data-active-agent="recruitment"] .hero-portrait--telephonic {
    right: -1rem;
  }

  .hero[data-active-agent="telephonic"] .hero-portrait--hse {
    right: 43rem;
  }

  .hero[data-active-agent="telephonic"] .hero-portrait--recruitment {
    right: 28rem;
  }

  .hero[data-active-agent="telephonic"] .hero-portrait--telephonic {
    right: 2rem;
  }
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: start;
    gap: 0.8rem;
    padding: 0.2rem 0 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .button--header {
    display: none;
  }

  .hero {
    --active-portrait: 19rem;
    --side-portrait: 10rem;
    min-height: 650px;
    padding-bottom: 2.5rem;
  }

  .hero::before {
    background:
      radial-gradient(40rem 30rem at 10% 20%, rgba(124, 92, 255, 0.10), transparent 60%),
      radial-gradient(36rem 26rem at 90% 80%, rgba(59, 130, 246, 0.10), transparent 60%),
      linear-gradient(rgba(15, 16, 30, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15, 16, 30, 0.025) 1px, transparent 1px);
    background-size: auto, auto, 6rem 6rem, 6rem 6rem;
  }

  .hero-video {
    width: min(34rem, 62vw);
    object-position: center right;
    opacity: 0.24;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.24) 12%, #000 36%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.24) 12%, #000 36%, #000 100%);
  }

  .hero--centered {
    min-height: 88vh;
    padding: 5.5rem 1rem 3.5rem;
  }

  .hero--centered .hero-video {
    width: 100%;
    object-position: center;
    opacity: 0.42;
    filter: saturate(0.85) brightness(1.02) contrast(0.95);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero--centered .hero-spotlight {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(246, 247, 251, 0.85) 0%, rgba(246, 247, 251, 0.55) 50%, transparent 90%);
  }

  .hero.hero--centered h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.6rem);
    line-height: 1.1;
  }

  .hero.hero--centered .hero-text {
    font-size: 0.98rem;
    padding: 0 0.5rem;
  }

  .hero-pill {
    font-size: 0.78rem;
    padding: 0.25rem 0.85rem 0.25rem 0.25rem;
  }

  .hero-pill-avatars img {
    width: 1.6rem;
    height: 1.6rem;
  }

  .hero-trust {
    font-size: 0.78rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 0.4rem 0.9rem;
  }

  .hero--centered .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero--centered .hero-actions .button {
    width: 100%;
  }

  .hero-applinks {
    flex-direction: column;
    gap: 0.4rem;
  }

  .hero-applinks span {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero[data-active-agent="hse"] .hero-portrait--hse {
    right: 18rem;
    bottom: -7rem;
  }

  .hero[data-active-agent="hse"] .hero-portrait--recruitment {
    right: 7rem;
    bottom: 4rem;
  }

  .hero[data-active-agent="hse"] .hero-portrait--telephonic {
    right: -3rem;
    bottom: -1rem;
  }

  .hero[data-active-agent="recruitment"] .hero-portrait--hse {
    right: 28rem;
    bottom: -1rem;
  }

  .hero[data-active-agent="recruitment"] .hero-portrait--recruitment {
    right: 7rem;
    bottom: -7rem;
  }

  .hero[data-active-agent="recruitment"] .hero-portrait--telephonic {
    right: -3rem;
    bottom: -1rem;
  }

  .hero[data-active-agent="telephonic"] .hero-portrait--hse {
    right: 28rem;
    bottom: -1rem;
  }

  .hero[data-active-agent="telephonic"] .hero-portrait--recruitment {
    right: 17rem;
    bottom: 4rem;
  }

  .hero[data-active-agent="telephonic"] .hero-portrait--telephonic {
    right: -2rem;
    bottom: -7rem;
  }

  .agent-dock,
  .signal-flow,
  .integration-grid,
  .blog-grid,
  .process-grid,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .blog-header,
  .signal-panel,
  .agents-lab,
  .product-layout,
  .product-layout--reverse,
  .faq-layout,
  .contact-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .product-layout--reverse .product-visual {
    order: 2;
  }

  .agent-bubble-stage {
    min-height: auto;
    gap: 2rem;
  }

  .agent-bubble-main {
    width: min(25rem, 82vw);
  }

  .agent-bubble-picker {
    position: static;
    justify-content: center;
    flex-wrap: wrap;
    transform: none;
  }

  .agents-section[data-active-agent="overview"] .agent-bubble-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-visual {
    width: min(24rem, 82vw);
    aspect-ratio: 1;
  }

  .site-footer nav {
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .promo-bar {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero {
    --active-portrait: 14rem;
    --side-portrait: 8rem;
    min-height: 620px;
    padding-top: 4.4rem;
    padding-bottom: 2.5rem;
  }

  .hero-shell {
    min-height: 500px;
  }

  .hero-video {
    width: 100%;
    opacity: 0.24;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero h1,
  .section-head h2,
  .agent-detail-panel h2,
  .product-copy h2,
  .faq-layout h2,
  .contact-copy h2 {
    font-size: 2.55rem;
  }

  .hero-text,
  .section-head p:not(.section-kicker),
  .agent-detail-panel > p:not(.section-kicker),
  .product-copy > p:not(.section-kicker),
  .contact-copy > p {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .agent-dock,
  .signal-flow,
  .integration-grid,
  .blog-grid,
  .process-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .blog-header h2 {
    font-size: 2.55rem;
  }

  .blog-main-link {
    justify-self: start;
  }

  .agents-section[data-active-agent="overview"] .agent-bubble-stage {
    min-height: 20rem;
  }

  .agents-section[data-active-agent="overview"] .agent-bubble-picker {
    gap: 0.65rem;
  }

  .agents-section[data-active-agent="overview"] .agent-bubble-choice {
    width: min(7.5rem, 28vw);
  }

  .agents-section[data-active-agent="overview"] .agent-bubble-choice span,
  .agents-section[data-active-agent="overview"] .agent-bubble-choice em {
    min-width: 5.4rem;
  }

  .agents-section[data-active-agent="overview"] .agent-bubble-choice span {
    bottom: 1.15rem;
    font-size: 0.78rem;
  }

  .agents-section[data-active-agent="overview"] .agent-bubble-choice em {
    bottom: -0.05rem;
    font-size: 0.62rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-highlights {
    gap: 0.35rem;
  }

  .contact-form .button {
    width: 100%;
  }

  .hero-portrait {
    opacity: 0.28;
  }

  .hero[data-active-agent="hse"] .hero-portrait--hse {
    right: 9rem;
    bottom: -5rem;
  }

  .hero[data-active-agent="hse"] .hero-portrait--recruitment {
    right: 4rem;
    bottom: 4rem;
  }

  .hero[data-active-agent="hse"] .hero-portrait--telephonic {
    right: -4rem;
    bottom: -1rem;
  }

  .hero[data-active-agent="recruitment"] .hero-portrait--hse {
    right: 13rem;
    bottom: -1rem;
  }

  .hero[data-active-agent="recruitment"] .hero-portrait--recruitment {
    right: 4rem;
    bottom: -5rem;
  }

  .hero[data-active-agent="recruitment"] .hero-portrait--telephonic {
    right: -4rem;
    bottom: -1rem;
  }

  .hero[data-active-agent="telephonic"] .hero-portrait--hse {
    right: 13rem;
    bottom: -1rem;
  }

  .hero[data-active-agent="telephonic"] .hero-portrait--recruitment {
    right: 7rem;
    bottom: 4rem;
  }

  .hero[data-active-agent="telephonic"] .hero-portrait--telephonic {
    right: -3rem;
    bottom: -5rem;
  }

  .band,
  .agents-section,
  .product-section,
  .process-section,
  .blog-section,
  .faq-section,
  .contact-section {
    padding: 4.25rem 0;
  }

}

@media (max-width: 480px) {
  .shell {
    width: calc(100% - 1rem);
  }

  .brand {
    font-size: 1.18rem;
    gap: 0.45rem;
  }

  .brand-mark {
    height: 1.7rem;
  }

  .brand-name em {
    font-size: 1.3rem;
  }

  .hero h1,
  .section-head h2,
  .blog-header h2,
  .agent-detail-panel h2,
  .product-copy h2,
  .faq-layout h2,
  .contact-copy h2 {
    font-size: 1.85rem;
    line-height: 1;
  }

  .product-layout {
    gap: 1.5rem;
  }

  .agents-lab {
    gap: 2.4rem;
    min-height: auto;
  }

  .agent-bubble-main {
    width: min(18rem, 78vw);
  }

  .agent-bubble-main figcaption {
    bottom: -1.45rem;
    max-width: calc(100vw - 2rem);
  }

  .agent-bubble-choice {
    min-width: min(12rem, calc(50vw - 0.8rem));
    grid-template-columns: 2.7rem 1fr;
    padding-right: 0.55rem;
  }

  .agent-bubble-choice img {
    width: 2.7rem;
    height: 2.7rem;
  }

  .product-visual {
    width: min(19rem, 82vw);
    aspect-ratio: 1;
  }

  .product-copy {
    width: 100%;
    max-width: min(20rem, calc(100vw - 2rem));
  }

  .agent-detail-panel {
    width: 100%;
    max-width: min(20rem, calc(100vw - 2rem));
  }

  .agent-detail-panel h2,
  .product-copy h2 {
    max-width: 100%;
    font-size: 1.62rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .agent-detail-panel > p:not(.section-kicker),
  .product-copy > p:not(.section-kicker),
  .feature-list,
  .feature-list span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 580px;
  }

  .agent-tab {
    min-height: 3.35rem;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .integration-grid article,
  .blog-card-body,
  .process-grid article,
  .contact-card,
  .contact-form {
    padding: 0.9rem;
  }

  .contact-highlights span {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
