/* ============================================
   Voqual — Premium-minimal design system
   Monochrome + single iris accent. Geist type.
   ============================================ */

:root {
  /* Palette — monochrome + one thin accent */
  --paper: #fafaf9;        /* warm off-white page bg */
  --surface: #ffffff;      /* cards */
  --surface-2: #f5f4f2;    /* subtle fills */
  --ink: #0a0a0a;          /* primary text / CTA bg */
  --ink-soft: #1c1c1c;
  --muted: #5b5b58;        /* secondary text */
  --faint: #8c8c88;        /* tertiary text */
  --line: #e7e5e4;         /* warm-grey borders */
  --line-strong: #d6d3d1;

  --accent: #4f46e5;       /* iris — used sparingly */
  --accent-ink: #4338ca;
  --accent-soft: rgba(79, 70, 229, 0.10);
  --accent-line: rgba(79, 70, 229, 0.28);

  --danger: #dc2626;
  --success: #16a34a;

  /* Radius */
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow — soft, expensive */
  --shadow-xs: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(10, 10, 10, 0.14);
  --shadow-lg: 0 30px 70px -28px rgba(10, 10, 10, 0.28);

  --container: 1180px;
  --header-h: 70px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.22s var(--ease);

  --font: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
strong {
  font-weight: 650;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === LENIS (smooth scroll / inertia) === */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important; /* Lenis owns the scroll, not the browser */
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.25rem 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
}

.section-desc {
  margin-top: 1rem;
  font-size: 1.06rem;
  color: var(--muted);
  line-height: 1.6;
}

.text-accent {
  color: var(--accent-ink);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 0.8rem 1.3rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t),
    box-shadow var(--t), transform var(--t);
  white-space: nowrap;
}
.btn i {
  font-size: 0.85em;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-ink);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover {
  background: var(--surface-2);
  border-color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--ink);
}

.btn-lg {
  padding: 0.95rem 1.6rem;
  font-size: 1.02rem;
}
.btn-xl {
  padding: 1.1rem 2rem;
  font-size: 1.08rem;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 250, 249, 0.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.header.scrolled {
  background: rgba(250, 250, 249, 0.88);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 650;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  position: relative;
  z-index: 120;
}
.logo-mark {
  width: 26px;
  height: 30px;
  flex-shrink: 0;
  background: url("/imgs/logos/voqual.webp") center / contain no-repeat;
}
.logo-text {
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--t);
}
.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}
.mobile-menu-demo {
  display: none;
}
.btn-header {
  margin-left: 1.4rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 120;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === INTRO (full-screen scroll-scrubbed avatar) === */
.intro {
  position: relative;
  height: 100vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  background: var(--paper);

  /* Avatar size as a % of the fitted size — tweak per breakpoint below.
     1 = fills the fit, 0.8 = 80%, etc. (read by initIntroSequence in main.js) */
  --intro-scale: 0.82; /* phones: smaller centered figure on paper */
  /* Vertical position of the avatar: + moves her DOWN, - moves her UP (px). */
  --intro-offset-y: 90px; /* phones */
}
@media (min-width: 768px) {
  .intro {
    --intro-scale: 0.85; /* tablets */
    --intro-offset-y: 100px; /* tablets */
  }
}
@media (min-width: 1024px) {
  .intro {
    --intro-scale: 0.7; /* desktop: 70% */
    --intro-offset-y: 30px; /* desktop */
  }
}
.intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
.intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none; /* re-enabled on interactive children */
}
.intro-badge {
  position: absolute;
  top: calc(var(--header-h) + 1.4rem);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.intro-headline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(0.95rem, 4.6vw, 4.4rem);
  color: var(--ink);
  white-space: nowrap;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.92),
    0 0 5px rgba(255, 255, 255, 0.85);
}
.intro-word {
  flex: 0 0 auto;
}
.intro-gap {
  flex: 0 0 auto;
  width: clamp(110px, 32vw, 460px); /* clears the avatar's head */
}
.intro-actions {
  position: absolute;
  bottom: clamp(2.2rem, 8vh, 5.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: auto;
  z-index: 3;
}
/* Frosted white band rising from the bottom — covers the shoulders and
   gives the buttons a clean backdrop. */
.intro-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42vh;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--paper) 0%,
    var(--paper) 24%,
    rgba(250, 250, 249, 0.62) 55%,
    rgba(250, 250, 249, 0) 100%
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to top, #000 38%, transparent 100%);
  mask-image: linear-gradient(to top, #000 38%, transparent 100%);
}
.intro-scroll-hint {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  z-index: 3;
  color: var(--faint);
  font-size: 1rem;
  pointer-events: none;
  animation: introBob 1.8s var(--ease) infinite;
}
@keyframes introBob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 7px);
  }
}

/* === HERO === */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3.5rem;
  overflow: hidden;
  background: var(--paper);
}
.hero-grid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
}
.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color var(--t), color var(--t);
}
.hero-badge:hover {
  border-color: var(--accent-line);
  color: var(--ink);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.55);
  animation: badgePulse 1.9s ease-out infinite;
}
@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(79, 70, 229, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.hero-title {
  margin-top: 1.5rem;
  font-size: clamp(2.3rem, 7vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--ink);
}
.hero-subtitle {
  margin: 1.4rem auto 0;
  max-width: 640px;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  color: var(--muted);
  line-height: 1.6;
}
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* Benefit cards — visible in the hero, next to the CTAs */
.hero-benefits {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
.hero-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-xs);
  text-align: left;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.hero-benefit:hover {
  border-color: var(--accent-line);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.hero-benefit i {
  color: var(--accent);
  font-size: 0.98rem;
  margin-top: 0.18rem;
  flex-shrink: 0;
}
.hero-benefit strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero-benefit span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

/* Vertical avatar video — edges feather into the page, soft floating shadow */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 14;
  border-radius: var(--r-xl);
  overflow: hidden;
  -webkit-mask-image: radial-gradient(
    128% 116% at 50% 48%,
    #000 50%,
    rgba(0, 0, 0, 0.28) 80%,
    transparent 100%
  );
  mask-image: radial-gradient(
    128% 116% at 50% 48%,
    #000 50%,
    rgba(0, 0, 0, 0.28) 80%,
    transparent 100%
  );
  filter: drop-shadow(0 26px 50px rgba(10, 10, 10, 0.12));
}
.hero-video,
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  object-fit: cover;
  z-index: 1;
}
.hero-video-placeholder {
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 1.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1f0ee 100%);
  color: var(--faint);
  font-size: 0.88rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.hero-video-placeholder i {
  font-size: 2.6rem;
  color: var(--line-strong);
}

/* === VIDEO SOUND TOGGLE ===
   The hero video autoplays muted (browser policy). This minimal glass button
   sits over the video as a "tap for sound" cue. Once unmuted it auto-hides and
   reappears on hover/tap (wired in main.js). */
.video-sound-toggle {
  position: absolute;
  right: 0.8rem;
  bottom: 1rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 16, 20, 0.5);
  -webkit-backdrop-filter: blur(8px) saturate(125%);
  backdrop-filter: blur(8px) saturate(125%);
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.3);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px) scale(0.9);
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.2s ease;
  pointer-events: none;
}
.video-sound-toggle.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.video-sound-toggle:hover {
  background: rgba(16, 16, 20, 0.72);
  transform: translateY(0) scale(1.07);
}
.video-sound-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.video-sound-toggle i {
  pointer-events: none;
  transform: translateX(0.5px); /* optical-center the speaker glyph */
}
/* Gentle breathing while muted, to invite the first tap. */
.video-sound-toggle.is-muted.is-visible {
  animation: soundBreath 2.6s ease-in-out infinite;
}
@keyframes soundBreath {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(0) scale(1.09); }
}

/* === LQIP BLUR-UP ===
   A tiny inline base64 placeholder (set as the <img>'s background) shows
   instantly while the real image streams in; the real image then focuses in.
   Works with or without JS, and never shifts layout (img keeps width/height). */
img.lqip {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
img.lqip.is-loaded {
  animation: lqipReveal 0.55s ease-out;
}
@keyframes lqipReveal {
  from { filter: blur(12px); transform: scale(1.03); }
  to   { filter: blur(0);    transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .video-sound-toggle {
    transition: opacity 0.2s ease;
    transform: none;
  }
  .video-sound-toggle.is-visible,
  .video-sound-toggle:hover {
    transform: none;
  }
  .video-sound-toggle.is-muted.is-visible {
    animation: none;
  }
  img.lqip.is-loaded {
    animation: none;
  }
}

/* Hero stats */
.hero-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.3rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.stat-value {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-label {
  margin-top: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

/* === TRUST MARQUEE === */
.section-logo-marquee {
  padding: 2.5rem 0 3rem;
}
.marquee-kicker {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.8rem;
}
.trust-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee var(--marquee-duration, 30s) linear infinite;
}
.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 120px; /* reserve slot width so the track never collapses */
  flex: none;
}
.trust-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity var(--t), filter var(--t);
}
.trust-logo img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* === PAINS === */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.pain-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.pain-card p {
  font-size: 0.96rem;
  color: var(--muted);
}

/* === FUNNEL COMPARE === */
.funnel-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.funnel-col {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  background: var(--surface);
}
.funnel-new {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, #fff, var(--accent-soft));
  box-shadow: var(--shadow-md);
}
.funnel-col-head {
  margin-bottom: 1.4rem;
}
.funnel-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.8rem;
}
.funnel-tag-old {
  background: var(--surface-2);
  color: var(--faint);
}
.funnel-tag-new {
  background: var(--accent);
  color: #fff;
}
.funnel-col-head h3 {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.funnel-stage-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.funnel-stage {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), width 0.6s var(--ease);
}
.animated .funnel-stage {
  opacity: 1;
  transform: translateY(0);
}
.funnel-stage:nth-child(1) { transition-delay: 0.05s; }
.funnel-stage:nth-child(2) { transition-delay: 0.15s; }
.funnel-stage:nth-child(3) { transition-delay: 0.25s; }
.funnel-stage:nth-child(4) { transition-delay: 0.35s; }

/* old funnel narrows + fades to imply leaking */
.funnel-old .funnel-stage {
  margin: 0 auto;
}
.funnel-old .funnel-stage:nth-child(1) { width: 100%; }
.funnel-old .funnel-stage:nth-child(2) { width: 84%; opacity: 0.9; }
.funnel-old .funnel-stage:nth-child(3) { width: 64%; opacity: 0.78; }
.funnel-old .funnel-stage:nth-child(4) { width: 46%; opacity: 0.95; }
.animated .funnel-old .funnel-stage { transform: translateY(0); }

.funnel-new .funnel-stage {
  background: #fff;
  border: 1px solid var(--accent-line);
}
.funnel-stage span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.funnel-stage em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.funnel-stage-end {
  background: var(--ink) !important;
}
.funnel-stage-end span { color: #fff; }
.funnel-stage-end em { color: rgba(255, 255, 255, 0.7); }
.funnel-new .funnel-stage-end {
  background: var(--accent) !important;
  border-color: var(--accent);
}
.funnel-foot {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}
.funnel-foot i {
  margin-top: 0.15rem;
}
.funnel-foot-old i { color: var(--danger); }
.funnel-foot-new i { color: var(--success); }

/* === ORBIT (planetary "how it works") === */
.section-loop {
  position: relative;
}
.orbit {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  padding: 40px 30px;
}
.orbit-stage {
  position: relative;
  container-type: inline-size; /* lets cqw scale the radius + cards with the stage */
  width: min(820px, 94vw);
  aspect-ratio: 1 / 1;
  --card-r: 40cqw; /* distance of each card's center from the middle */
}
.orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* start the progress arc at the top */
  overflow: visible;
}
.orbit-track {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
}
.orbit-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
.orbit-live .orbit-progress {
  stroke-dashoffset: 1000;
}

/* Center: round video of the AI agent */
.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31cqw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg), 0 0 0 10px rgba(255, 255, 255, 0.85),
    0 0 0 12px var(--accent-soft);
}
.orbit-core::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent-line);
  animation: blip 2.4s ease-out infinite;
  pointer-events: none;
}
.orbit-core-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.orbit-core-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: linear-gradient(160deg, #1a1a2e, #0a0a12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}
.orbit-core-ph i { font-size: 1.6rem; color: rgba(255, 255, 255, 0.7); }

.orbit-dot-wrap {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  pointer-events: none;
  display: none;
}
.orbit-live .orbit-dot-wrap { display: block; }
.orbit-dot {
  position: absolute;
  top: 15.8%; /* sits on the ring (r=205 of viewBox 600) */
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px var(--accent-soft), 0 0 18px rgba(79, 70, 229, 0.6);
}

.orbit-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26cqw;
  min-width: 178px;
  max-width: 250px;
}
.orbit-slot.pos-1 { transform: translate(-50%, -50%) rotate(0deg)   translateY(calc(-1 * var(--card-r))) rotate(0deg); }
.orbit-slot.pos-2 { transform: translate(-50%, -50%) rotate(60deg)  translateY(calc(-1 * var(--card-r))) rotate(-60deg); }
.orbit-slot.pos-3 { transform: translate(-50%, -50%) rotate(120deg) translateY(calc(-1 * var(--card-r))) rotate(-120deg); }
.orbit-slot.pos-4 { transform: translate(-50%, -50%) rotate(180deg) translateY(calc(-1 * var(--card-r))) rotate(-180deg); }
.orbit-slot.pos-5 { transform: translate(-50%, -50%) rotate(240deg) translateY(calc(-1 * var(--card-r))) rotate(-240deg); }
.orbit-slot.pos-6 { transform: translate(-50%, -50%) rotate(300deg) translateY(calc(-1 * var(--card-r))) rotate(-300deg); }

.orbit-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.3rem 1.35rem;
  box-shadow: var(--shadow-md);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.orbit-card.is-active {
  transform: scale(1.05);
  border-color: var(--accent-line);
  box-shadow: var(--shadow-lg);
}
.orbit-num {
  position: absolute;
  top: -13px;
  left: -13px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.orbit-card.is-active .orbit-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.orbit-card h3 {
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.orbit-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

/* per-card mini-visualization */
.orbit-viz {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.ov-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--ink), #2a2a45);
  color: #fff;
  font-size: 1.15rem;
  transition: background var(--t);
}
.orbit-card.is-active .ov-icon {
  background: linear-gradient(145deg, var(--accent), #7c3aed);
}
.ov-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.28rem 0.55rem;
  line-height: 1.1;
}
.ov-chip i { font-size: 0.72rem; color: var(--accent); }
.ov-chip-accent { color: var(--accent-ink); background: var(--accent-soft); border-color: var(--accent-line); }
.ov-chip-accent i { color: var(--success); }
.ov-typing {
  display: inline-flex;
  gap: 4px;
  padding: 0.5rem 0.6rem;
  background: var(--surface-2);
  border-radius: 11px;
}
.ov-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--faint);
  animation: ovType 1.3s ease-in-out infinite;
}
.ov-typing i:nth-child(2) { animation-delay: 0.18s; }
.ov-typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes ovType { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }
.ov-bars { display: flex; flex-direction: column; gap: 3px; width: 46px; }
.ov-bars i { display: block; height: 5px; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--accent), #7c3aed); width: var(--w); }
.ov-dots { display: inline-flex; gap: 4px; }
.ov-dots > i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.62rem;
}
.ov-d-em { background: var(--accent); }
.ov-d-li { background: #0a66c2; }
.ov-d-wa { background: #25d366; }

/* Mobile: drop the circle, stack as a clean vertical flow */
@media (max-width: 899px) {
  .orbit { padding: 0; margin-top: 2.5rem; }
  .orbit-stage {
    width: 100%;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .orbit-svg,
  .orbit-dot-wrap { display: none; }
  .orbit-core {
    position: relative; /* keep the absolutely-positioned video inside the circle */
    transform: none;
    flex: none;
    align-self: center;
    width: 128px;
    height: 128px;
    aspect-ratio: auto;
    margin: 0 auto 0.6rem;
  }
  .orbit-core::after { display: none; }
  .orbit-slot {
    position: static !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

/* === DEMO VIDEO === */
.demo-video {
  max-width: 980px;
  margin: 0 auto;
}
.demo-video-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  /* brighter, more defined contour: soft iris ring + deep lift */
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.12),
    0 0 0 6px var(--accent-soft), var(--shadow-lg);
}
.demo-video-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, var(--surface-2));
}
.dvb-dots {
  display: inline-flex;
  gap: 7px;
  justify-self: start;
}
.dvb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}
.dvb-r { background: #ff5f57; }
.dvb-y { background: #febc2e; }
.dvb-g { background: #28c840; }
.dvb-url {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  max-width: 340px;
  padding: 0.34rem 0.95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.dvb-url i {
  color: var(--success);
  font-size: 0.7rem;
}
.dvb-actions {
  justify-self: end;
  color: var(--faint);
  font-size: 0.85rem;
}
.demo-video-el,
.demo-video-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.demo-video-placeholder {
  position: absolute;
  inset: 0;
  top: 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  z-index: -1;
  background: radial-gradient(80% 80% at 50% 40%, #1a1a2e, #0a0a12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}
.demo-video-placeholder i {
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.7);
}
.demo-cta {
  text-align: center;
  margin-top: 2rem;
}

/* === FEATURES — BENTO === */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.bento-cell {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.bento-cell:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.bento-visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 180px;
  margin: 0.9rem 0.9rem 0;
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--surface-2), #fbfaf9);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.1rem;
}
.bento-text {
  padding: 1.1rem 1.25rem 1.35rem;
}
.bento-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.5rem;
}
.bento-text h3 {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.bento-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* placeholders (avatar / dashboard) */
.ba-photo,
.bento-visual-dash {
  position: relative;
  border-radius: var(--r);
  background:
    repeating-linear-gradient(45deg, #f0eeec 0 10px, #f5f3f1 10px 20px);
  border: 1px dashed var(--line-strong);
}
.ba-photo {
  flex: 1 1 auto;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-visual-dash {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}
.ba-ph {
  text-align: center;
  color: var(--faint);
  font-size: 0.82rem;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.ba-ph i {
  font-size: 1.8rem;
  color: var(--line-strong);
}
.ba-live {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.22rem 0.6rem;
}
.ba-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: blip 1.8s ease-out infinite;
}
@keyframes blip {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.ba-bubble {
  align-self: flex-start;
  max-width: 88%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.dash-chip,
.booked-chip {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-pill);
  padding: 0.32rem 0.7rem;
}
.dash-chip {
  position: absolute;
  bottom: 0.7rem;
  left: 0.7rem;
}

/* qualify — score bars */
.score {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.score-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.score-row i {
  display: block;
  height: 8px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--accent), #6f67ea);
  width: var(--w);
}
.bento-cell.animated .score-row i {
  animation: fillBar 0.9s var(--ease) both;
}
.score-row:nth-child(2) i { animation-delay: 0.1s; }
.score-row:nth-child(3) i { animation-delay: 0.2s; }
.score-row:nth-child(4) i { animation-delay: 0.3s; }
@keyframes fillBar { from { width: 0; } to { width: var(--w); } }

/* knowledge base flow */
.kb-flow { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.kb-docs { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.kb-doc {
  font-size: 0.76rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.3rem 0.55rem;
  color: var(--ink);
}
.kb-doc i { color: var(--accent); margin-right: 0.25rem; }
.kb-arrow { color: var(--faint); font-size: 0.85rem; }
.kb-answer {
  background: var(--ink);
  color: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  text-align: center;
}

/* outreach channels */
.channels { display: flex; flex-direction: column; gap: 0.55rem; }
.channels li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.5rem 0.7rem;
}
.channels li em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.74rem;
  color: var(--faint);
}
.ch-ic {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  flex: none;
}
.ch-email { background: #4f46e5; }
.ch-li { background: #0a66c2; }
.ch-wa { background: #25d366; }
.bento-cell.animated .channels li {
  animation: chIn 0.5s var(--ease) both;
}
.channels li:nth-child(2) { animation-delay: 0.14s; }
.channels li:nth-child(3) { animation-delay: 0.28s; }
@keyframes chIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* everything-else grid */
.features-more-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  margin: 2.6rem 0 1.2rem;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}
.mini-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.mini-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.mini-card > i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex: none;
}
.mini-card h4 { font-size: 0.96rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.15rem; }
.mini-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.4; }

/* bento desktop layout */
@media (min-width: 880px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
  }
  .b-avatar { grid-column: span 3; grid-row: span 2; }
  .b-qualify { grid-column: span 3; }
  .b-knowledge { grid-column: span 3; }
  .b-outreach { grid-column: span 3; }
  .b-dashboard { grid-column: span 3; }
}

/* === FEATURE SPOTLIGHTS (alternating photo / text) === */
.spotlights {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 0.5rem;
}
.spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
.spotlight-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #f5f4f2, #ffffff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--t);
}
.spotlight-media:hover {
  box-shadow: var(--shadow-lg);
}
.spotlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-media-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  padding: 1.2rem;
  color: var(--faint);
}
.spotlight-media-ph i {
  font-size: 2.2rem;
  color: var(--line-strong);
}
.spotlight-media-ph span {
  font-size: 0.84rem;
  line-height: 1.45;
}
.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.85rem;
}
.spotlight-text h3 {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
}
.spotlight-text > p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.spotlight-points {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.spotlight-points li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.spotlight-points i {
  color: var(--accent);
  margin-top: 0.22rem;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* === METRICS STRIP === */
.section-metrics {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}
.metrics-kicker {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.metric-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.metric-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.metric-value {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.metric-label {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 550;
}
.metric-foot {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--faint);
  line-height: 1.4;
}
.metric-foot strong {
  color: var(--accent-ink);
  font-weight: 650;
}
.metric-src {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92em;
  color: var(--line-strong);
}

/* Hero price microcopy */
.hero-price {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--faint);
}

/* What is Voqual — answer-first block (AEO) */
.section-whatis {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.whatis {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.whatis-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.whatis-answer {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Integrations crawlable list (AEO) */
.integ-list {
  max-width: 640px;
  margin: 1.2rem auto 0;
  display: grid;
  gap: 0.5rem;
}
.integ-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.integ-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.integ-list strong {
  color: var(--ink);
  font-weight: 600;
}
@media (min-width: 720px) {
  .metric-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === STANDOUT QUOTE (scroll-fill text) === */
.quote-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 1rem 0;
}
.quote-mark {
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.quote-text {
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink); /* fallback if scroll-driven animations aren't supported */
}
.quote-text strong { font-weight: 600; }
/* Gray text that fills to ink left→right as the quote scrolls through view. */
@supports (animation-timeline: view()) {
  .quote-text {
    background: linear-gradient(to right, var(--ink) 50%, #d6d1cb 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: quoteFill linear both;
    animation-timeline: view();
    animation-range: cover 12% cover 62%;
  }
  .quote-text strong {
    -webkit-text-fill-color: var(--accent-ink);
    color: var(--accent-ink);
  }
  @keyframes quoteFill {
    to { background-position-x: 0%; }
  }
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.quote-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 650;
  font-size: 1rem;
}
.quote-author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: left;
}
.quote-author-meta strong {
  color: var(--ink);
  font-weight: 650;
}
.quote-author-meta span {
  color: var(--muted);
  font-size: 0.86rem;
}
.quote-logo {
  height: 30px;
  width: auto;
  margin-left: 0.4rem;
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .quote-text {
    -webkit-text-fill-color: var(--ink);
    color: var(--ink);
    animation: none;
  }
}

/* === SCENARIOS (industry chips) === */
.section-scenarios {
  position: relative;
}
.scn-rows {
  position: relative;
  width: 100%;
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.scn-rows::before,
.scn-rows::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 9%;
  z-index: 2;
  pointer-events: none;
}
.scn-rows::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}
.scn-rows::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}
.scn-row {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}
.scn-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.scn-chip:hover {
  border-color: var(--accent-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.scn-chip-icon {
  color: var(--accent);
  font-size: 1rem;
}
.scn-chip-name {
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.scn-info {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.62rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.scn-info:hover,
.scn-chip:focus-within .scn-info {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.scn-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  width: min(280px, 78vw);
  padding: 0.85rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 400;
  white-space: normal;
  text-align: left;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 6;
}
.scn-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--ink);
}
.scn-chip:hover .scn-tip,
.scn-chip:focus-within .scn-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.scn-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}
.scn-foot i {
  color: var(--accent);
}
/* Static fallback (no GSAP / reduced motion): wrap so every chip is reachable */
.scn-static .scn-row {
  flex-wrap: wrap;
  width: auto;
  justify-content: center;
}
@media (prefers-reduced-motion: reduce) {
  .scn-row {
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
  .scn-rows::before,
  .scn-rows::after {
    display: none;
  }
}

/* === CONVERSATION SAMPLER === */
.section-convo {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.convo-sampler {
  max-width: 720px;
  margin: 0 auto;
}
.convo-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.convo-tab {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
}
.convo-tab:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.convo-tab.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.convo-window {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  min-height: 320px;
}
.convo-panel {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.convo-panel[hidden] {
  display: none;
}
.convo-msg {
  max-width: 82%;
  opacity: 0;
  transform: translateY(8px);
}
.convo-panel.is-active .convo-msg {
  animation: convoIn 0.45s var(--ease) forwards;
}
.convo-panel.is-active .convo-msg:nth-child(1) { animation-delay: 0.04s; }
.convo-panel.is-active .convo-msg:nth-child(2) { animation-delay: 0.22s; }
.convo-panel.is-active .convo-msg:nth-child(3) { animation-delay: 0.4s; }
.convo-panel.is-active .convo-msg:nth-child(4) { animation-delay: 0.58s; }
@keyframes convoIn {
  to { opacity: 1; transform: translateY(0); }
}
.convo-msg p {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.convo-user {
  align-self: flex-end;
}
.convo-user p {
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.convo-ai {
  align-self: flex-start;
}
.convo-ai p {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
}

/* === ONBOARD STEPS === */
.onboard-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.onboard-step {
  position: relative;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.onboard-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.onboard-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.onboard-step p {
  font-size: 0.92rem;
  color: var(--muted);
}
.onboard-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.onboard-foot i {
  color: var(--accent);
}

/* === CASES === */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.25rem;
}
.case-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.case-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.case-card-hidden {
  display: none;
}
.case-card-hidden.visible {
  display: flex;
}
.case-card-main {
  padding: 1.7rem;
  flex: 1;
}
.case-title-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.case-logo {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--accent-ink);
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.case-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.case-title-row h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.case-tag {
  font-size: 0.74rem;
  font-weight: 500;
  padding: 0.22rem 0.6rem;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  color: var(--muted);
}
.case-block {
  margin-top: 0.9rem;
}
.case-block h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.3rem;
}
.case-block p {
  font-size: 0.92rem;
  color: var(--muted);
}
.case-card-results {
  padding: 1.5rem 1.7rem;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}
.case-results-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.9rem;
}
.case-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.case-result {
  text-align: center;
}
.case-result-value {
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--accent-ink);
}
.case-result-label {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.35;
}
.case-link {
  width: 100%;
}
.cases-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* === SECURITY === */
.security-card {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  padding: 2.5rem;
  text-align: center;
}
.security-head {
  max-width: 600px;
  margin: 0 auto 2rem;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.security-item i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.security-item h4 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.security-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] {
  border-color: var(--line-strong);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 550;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  flex-shrink: 0;
  color: var(--faint);
  font-size: 0.85rem;
  transition: transform var(--t);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-answer {
  padding: 0 1.4rem 1.2rem;
}
.faq-answer p {
  font-size: 0.96rem;
  color: var(--muted);
}

/* === FINAL CTA === */
.section-cta {
  padding: 5rem 0 5.5rem;
}
.cta-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 45%, #7c3aed 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2.6rem, 5vw, 4.2rem) clamp(1.5rem, 4vw, 3.2rem);
  overflow: hidden;
  box-shadow: 0 32px 80px -22px rgba(79, 70, 229, 0.55);
}
.cta-content::before {
  content: "";
  position: absolute;
  top: -65%;
  left: 50%;
  width: 120%;
  height: 160%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.4), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}
.cta-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 88% 112%, rgba(168, 85, 247, 0.85), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.cta-content > * {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.cta-desc {
  margin: 1.1rem auto 0;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}
.cta-checklist {
  margin: 1.7rem auto;
  max-width: 680px;
}
.cta-checklist ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
}
.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.95);
}
.cta-checklist i {
  color: var(--accent-ink);
  margin-top: 0.15rem;
  font-size: 0.72rem;
  background: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-button {
  background: #fff;
  color: var(--accent-ink);
  font-weight: 650;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.3);
}
.cta-button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 560px) {
  .cta-checklist ul { flex-direction: column; align-items: center; }
}

/* Final-CTA avatar circles (placeholders for AI-agent faces) */
.cta-avatars { display: flex; justify-content: center; align-items: center; margin-bottom: 1.7rem; }
.cta-av {
  flex: none; border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  margin-left: -16px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.7); font-size: 1.1rem; overflow: hidden;
}
.cta-av:first-child { margin-left: 0; }
.cta-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cta-av.t-xs { width: 54px; height: 54px; z-index: 1; }
.cta-av.t-sm { width: 74px; height: 74px; z-index: 2; }
.cta-av.t-md { width: 94px; height: 94px; z-index: 3; }
.cta-av.t-center {
  width: 124px; height: 124px; z-index: 4; border-color: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18), 0 14px 34px -10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 560px) {
  .cta-av.t-xs { width: 38px; height: 38px; }
  .cta-av.t-sm { width: 52px; height: 52px; }
  .cta-av.t-md { width: 66px; height: 66px; }
  .cta-av.t-center { width: 86px; height: 86px; }
  .cta-avatars { margin-bottom: 1.3rem; }
}

/* === INTEGRATIONS (hub diagram) === */
.integ-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.integ-box {
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 320px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.integ-box-cap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.85rem;
}
.integ-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.integ-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.5rem 0.9rem;
}
.integ-chip i { font-size: 1.1rem; }
.integ-chip .fa-hubspot { color: #ff7a59; }
.integ-li i { color: #0a66c2; }
.integ-em i { color: var(--accent); }
.integ-z {
  display: inline-flex;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  background: #e42527;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}
.integ-hub {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 0.85rem 1.4rem;
  font-weight: 650;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 8px var(--accent-soft), var(--shadow-md);
}
.integ-hub-mark {
  width: 22px;
  height: 25px;
  background: url("/imgs/logos/voqual_white.webp") center / contain no-repeat;
}
.integ-link {
  flex: 1 1 36px;
  min-width: 36px;
  height: 2px;
  position: relative;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--line), var(--accent-line), var(--line));
}
.integ-flow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.8);
  animation: integFlow 2.2s linear infinite;
}
@keyframes integFlow {
  from { left: 0; }
  to { left: 100%; }
}
.integ-note {
  margin: 1.4rem auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}
@media (max-width: 760px) {
  .integ-diagram { flex-direction: column; }
  .integ-link {
    width: 2px;
    height: 30px;
    flex: 0 0 30px;
    background: linear-gradient(180deg, var(--line), var(--accent-line), var(--line));
  }
  .integ-flow { animation: integFlowV 2.2s linear infinite; }
  @keyframes integFlowV { from { top: 0; } to { top: 100%; } }
  .integ-box { width: 100%; max-width: none; }
}

/* === WHO IT'S FOR === */
.fit-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.fit-card { border-radius: var(--r-xl); padding: 1.6rem 1.7rem; border: 1px solid var(--line); }
.fit-yes { background: linear-gradient(150deg, #4f46e5, #7c3aed); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }
.fit-no { background: var(--surface); }
.fit-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.fit-no .fit-head { border-bottom-color: var(--line); }
.fit-head h3 { font-size: 1.15rem; font-weight: 650; letter-spacing: -0.02em; }
.fit-ic { width: 34px; height: 34px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; flex: none; font-size: 0.9rem; }
.fit-ic-yes { background: rgba(255, 255, 255, 0.2); color: #fff; }
.fit-ic-no { background: var(--surface-2); color: var(--muted); }
.fit-card ul { display: flex; flex-direction: column; gap: 0.7rem; }
.fit-card li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
.fit-yes li { color: rgba(255, 255, 255, 0.95); }
.fit-yes li i { color: #fff; margin-top: 0.2rem; }
.fit-no li { color: var(--muted); }
.fit-no li i { color: var(--faint); margin-top: 0.2rem; }
@media (min-width: 760px) { .fit-grid { grid-template-columns: 1fr 1fr; } }

/* === ONBOARD (engaging) === */
.onboard-track { display: flex; flex-direction: column; gap: 1rem; align-items: stretch; }
.onboard-step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.4rem 1.4rem; flex: 1; text-align: center; transition: border-color var(--t), box-shadow var(--t), transform var(--t); }
.onboard-step:hover { border-color: var(--accent-line); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.onboard-ic { width: 54px; height: 54px; border-radius: 15px; margin: 0 auto 0.9rem; display: flex; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent-ink); font-size: 1.3rem; }
.onboard-num { position: absolute; top: 0.7rem; right: 0.85rem; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--accent-soft); font-family: var(--font); font-size: 0.82rem; font-weight: 700; color: var(--accent-ink); }
.onboard-step h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.onboard-step p { font-size: 0.9rem; color: var(--muted); }
.onboard-line { display: none; }
@media (min-width: 760px) {
  .onboard-track { flex-direction: row; align-items: center; }
  .onboard-line { display: block; flex: 0 0 44px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-line)); position: relative; }
  .onboard-line::after { content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
}

/* === SECURITY (slim strip) === */
.section-security { padding: 2.5rem 0; }
.security-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.7rem 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 1rem 1.7rem; }
.security-strip-title { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 650; color: var(--ink); }
.security-strip-title i { color: var(--accent); }
.security-pill { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; color: var(--muted); }
.security-pill i { color: var(--success); }

/* === TRY IT LIVE === */
.trylive-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; align-items: stretch; }
.trylive-grid .demo-video { max-width: none; margin: 0; }
.trylive-card { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: 0.6rem; background: linear-gradient(150deg, #0a0a0a, #23233a); color: #fff; border-radius: var(--r-xl); padding: 2rem 1.9rem; box-shadow: var(--shadow-lg); }
.trylive-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 82% 0%, rgba(79, 70, 229, 0.55), transparent 70%); pointer-events: none; }
.trylive-card > * { position: relative; z-index: 1; }
.trylive-pulse { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; color: #fff; }
.trylive-pulse i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); animation: blip 1.8s ease-out infinite; }
.trylive-card h3 { font-size: clamp(1.4rem, 3.5vw, 1.95rem); font-weight: 650; letter-spacing: -0.025em; line-height: 1.1; }
.trylive-card p { color: rgba(255, 255, 255, 0.75); font-size: 0.98rem; max-width: 36ch; }
.trylive-open { align-self: flex-start; margin-top: 0.6rem; background: #fff; color: var(--ink); }
.trylive-open:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.trylive-note { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }
@media (min-width: 880px) { .trylive-grid { grid-template-columns: 1.4fr 1fr; } }

/* === LEAD MODAL === */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(4px);
}
.lead-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 840px;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(16px) scale(0.985);
  transition: transform var(--t);
  max-height: 92vh;
  overflow-y: auto;
}
.lead-modal.is-open .lead-modal-dialog {
  transform: translateY(0) scale(1);
}
.lead-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all var(--t);
}
.lead-modal-close:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.lead-modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lead-modal-info {
  padding: 2.4rem 2rem;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-modal-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 1.2rem;
}
.lead-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.lead-modal-sub {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
}
.lead-modal-benefits {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.lead-modal-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.9);
}
.lead-modal-benefits i {
  color: var(--accent);
}
.lead-modal-form {
  padding: 2.4rem 2rem;
  display: flex;
  align-items: center;
}
.lead-form-stage {
  position: relative;
  width: 100%;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.lead-field label {
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--ink);
}
.lead-field input {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.lead-field input::placeholder {
  color: var(--faint);
}
.lead-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.lead-submit {
  margin-top: 0.4rem;
  width: 100%;
  position: relative;
}
.lead-submit-loader {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}
.lead-form.is-loading .lead-submit-loader {
  display: inline-block;
}
.lead-form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--faint);
}
.lead-form-feedback {
  font-size: 0.88rem;
  text-align: center;
  min-height: 1rem;
}
.lead-form-feedback.error {
  color: var(--danger);
}
.lead-form-feedback.success {
  color: var(--success);
}
.lead-form-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
}
.lead-form-stage.is-loading .lead-form-overlay {
  display: flex;
}
.lead-form-overlay-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.lead-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem 0;
}
.lead-form-stage.is-success .lead-form-success {
  display: flex;
}
.lead-form-stage.is-success .lead-form {
  display: none;
}
.lead-form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.lead-form-success h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
.lead-form-success p {
  color: var(--muted);
}

/* intl-tel-input alignment */
.iti {
  width: 100%;
}
.iti input {
  width: 100%;
}

/* === FOOTER === */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
}
.footer-about p {
  margin-top: 1rem;
  max-width: 340px;
  color: var(--muted);
  font-size: 0.93rem;
}
.footer-logo {
  font-size: 1.2rem;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: 0.94rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--t);
}
.footer-col a:hover {
  color: var(--ink);
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--faint);
}
.footer-bottom a {
  color: var(--muted);
  text-decoration: underline;
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* GSAP initial states.
   Hero: hidden via html.js-anim, set synchronously by a head script (before
   first paint) so there's no flash — and removed by JS if GSAP never loads.
   Spotlights: hidden via .gsap-scroll, added by JS only after ScrollTrigger is
   confirmed. Without JS / with reduced motion, everything stays visible. */
html.js-anim .hero-content [data-reveal],
html.js-anim .hero-benefit {
  opacity: 0;
  transform: translateY(24px);
}
html.js-anim .hero-media[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
}
.gsap-scroll [data-reveal-st] {
  opacity: 0;
  transform: translateY(40px);
}

/* === INLINE ADMIN BAR === */
.admin-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: #fff;
}
.admin-bar-status {
  font-size: 0.85rem;
  margin-right: auto;
}
.admin-bar-password {
  padding: 0.45rem 0.7rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: inherit;
}
.inline-editable {
  outline: 1px dashed var(--accent-line);
  outline-offset: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .section {
    padding: 4.25rem 0;
  }
  .container {
    padding: 0 2rem;
  }
}

/* Hero benefits: 3 across once there's room (still single hero column) */
@media (min-width: 520px) {
  .hero-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-benefit {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Desktop: two-column hero + alternating spotlights */
@media (min-width: 900px) {
  .hero {
    padding-top: calc(var(--header-h) + 4rem);
    padding-bottom: 5rem;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
  .hero-content {
    text-align: left;
  }
  .hero-title {
    margin-top: 1.6rem;
  }
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    max-width: 540px;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .hero-video-frame {
    max-width: 380px;
  }

  .spotlights {
    gap: 5.5rem;
  }
  .spotlight {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .spotlight.is-reverse .spotlight-media {
    order: 2;
  }
}

@media (max-width: 900px) {
  .funnel-compare {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  /* Mobile nav */
  .btn-header {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    z-index: 110;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
    z-index: -1;
  }
  .nav-menu.active::before {
    opacity: 1;
    visibility: visible;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-link {
    display: block;
    padding: 0.7rem 0;
    font-size: 1.05rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu-demo {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  .mobile-menu-demo .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
  .case-results-grid {
    gap: 0.5rem;
  }
  .case-result-value {
    font-size: 1.15rem;
  }

  .lead-modal-layout {
    grid-template-columns: 1fr;
  }
  .lead-modal-info {
    padding: 2rem 1.6rem;
  }
  .lead-modal-form {
    padding: 1.8rem 1.6rem;
  }

  .loop-arrow {
    transform: rotate(90deg);
    padding: 0.3rem 0;
  }
  .loop-node {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .hero-video-frame {
    margin-top: 2.4rem;
  }
  .cta-content,
  .security-card {
    padding: 2rem 1.3rem;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
  .trust-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
  .funnel-stage,
  .convo-msg {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================================
   2026-06-26 RESTRUCTURE — see-it+setup, reworked bento, 3D CTA, extras
   ===================================================================== */

/* offset anchor so #demo lands below the fixed header */
.anchor-offset {
  display: block;
  position: relative;
  top: calc(-1 * var(--header-h) - 12px);
  height: 0;
  visibility: hidden;
}

/* --- See it + setup + CTA --- */
.section-see { overflow: hidden; }
.see-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: start;
}
.see-side { display: flex; flex-direction: column; gap: 1.1rem; }
.setup-steps { display: flex; flex-direction: column; gap: 0.7rem; }
.setup-steps li { display: flex; align-items: center; gap: 0.75rem; }
.setup-n {
  width: 28px; height: 28px; flex: none;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.setup-t { color: var(--ink); font-size: 0.96rem; line-height: 1.4; }
.setup-note {
  font-size: 0.94rem; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 0.75rem 0.95rem;
}
.setup-note i { color: var(--accent); margin-right: 0.3rem; }
.setup-note strong { color: var(--ink); }
.see-cta { align-self: flex-start; }
@media (min-width: 900px) {
  .see-grid { grid-template-columns: 1.25fr 0.92fr; gap: 2.2rem; }
}

/* --- Reworked "What it does" bento (extra cards) --- */
@media (min-width: 880px) {
  .bento-x { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; }
  .bento-x .b-avatar { grid-column: span 3; grid-row: span 2; }
  .bento-x .b-rag { grid-column: span 3; }
  .bento-x .b-proactive { grid-column: span 3; }
  .bento-x .b-whitelabel { grid-column: span 2; }
  .bento-x .b-stress { grid-column: span 2; }
  .bento-x .b-smarter { grid-column: span 2; }
  .bento-x .b-metrics { grid-column: span 4; }
  .bento-x .b-security { grid-column: span 2; }
}

/* Proactive AI viz */
.pro-viz { display: flex; flex-direction: column; align-items: center; gap: 0.65rem; text-align: center; }
.pro-eye {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.pro-track { font-size: 0.76rem; color: var(--faint); letter-spacing: 0.02em; }
.pro-bubble {
  background: var(--ink); color: #fff;
  border-radius: 14px 14px 14px 4px; padding: 0.5rem 0.8rem; font-size: 0.85rem;
  animation: proPop 3s var(--ease) infinite;
}
@keyframes proPop {
  0%, 35% { opacity: 0; transform: translateY(7px); }
  50%, 100% { opacity: 1; transform: none; }
}

/* White-label viz */
.wl-viz { display: flex; align-items: center; justify-content: center; gap: 0.6rem; flex-wrap: wrap; }
.wl-chip { padding: 0.45rem 0.85rem; border-radius: var(--r-pill); font-weight: 650; font-size: 0.9rem; border: 1px solid var(--line); }
.wl-you { background: var(--ink); color: #fff; border-color: var(--ink); }
.wl-voqual { background: var(--surface-2); color: var(--faint); text-decoration: line-through; }
.wl-swap { color: var(--accent); }
.wl-note { flex-basis: 100%; text-align: center; font-size: 0.76rem; color: var(--faint); margin-top: 0.35rem; }

/* Stress-test viz */
.stress-viz { position: relative; width: 100%; min-height: 130px; }
.stress-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; z-index: 2;
}
.stress-p {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.72rem;
}
.stress-p1 { top: 4px; left: 16%; }
.stress-p2 { top: 4px; right: 16%; }
.stress-p3 { bottom: 4px; left: 50%; transform: translateX(-50%); }
.stress-obj {
  position: absolute; font-size: 0.7rem; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 8px; padding: 0.18rem 0.45rem; color: var(--ink);
}
.stress-o1 { top: 36%; left: 0; }
.stress-o2 { bottom: 36%; right: 0; }

/* Gets-smarter viz */
.smart-viz { display: flex; align-items: flex-end; justify-content: center; gap: 7px; height: 120px; position: relative; }
.smart-bar { width: 17px; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--accent), #6f67ea); height: var(--h); }
.bento-cell.animated .smart-bar { animation: smartGrow 0.9s var(--ease) both; }
.smart-bar:nth-child(2) { animation-delay: 0.08s; }
.smart-bar:nth-child(3) { animation-delay: 0.16s; }
.smart-bar:nth-child(4) { animation-delay: 0.24s; }
.smart-bar:nth-child(5) { animation-delay: 0.32s; }
@keyframes smartGrow { from { height: 0; } to { height: var(--h); } }
.smart-trend { position: absolute; top: 2px; right: 16px; color: var(--success); }

/* Metrics card ("the math") */
.metrics-viz { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; margin: 0.9rem 0.9rem 0; }
.mv-cell { text-align: center; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 0.85rem 0.4rem; }
.mv-cell b { display: block; font-size: 1.35rem; font-weight: 680; letter-spacing: -0.02em; color: var(--ink); }
.mv-cell span { display: block; margin-top: 0.2rem; font-size: 0.72rem; color: var(--muted); line-height: 1.3; }
.mv-src { font-size: 0.8rem !important; color: var(--faint) !important; }
@media (max-width: 540px) { .metrics-viz { grid-template-columns: repeat(2, 1fr); } }

/* Security card */
.sec-visual { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.sec-shield { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.sec-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.sec-pills span { font-size: 0.76rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 0.3rem 0.6rem; color: var(--ink); }
.sec-pills i { color: var(--accent); margin-right: 0.25rem; }

/* --- Provocative 3D CTA --- */
.section-provoke { overflow: visible; perspective: 1200px; }
.provoke-card {
  position: relative; max-width: 980px; margin: 0 auto;
  background: #0a0a0a; color: #fff; border-radius: 28px;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.4rem; overflow: hidden; text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
}
.provoke-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(120% 85% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(120% 85% at 50% 0%, #000, transparent 75%);
}
.provoke-glow {
  position: absolute; left: 50%; top: -25%; width: 60%; height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(79, 70, 229, 0.55), transparent 70%);
  filter: blur(45px);
  animation: provGlow 6s ease-in-out infinite;
}
@keyframes provGlow {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-54%) scale(1.12); }
}
.provoke-inner { position: relative; z-index: 2; transform: translateZ(40px); }
.provoke-eyebrow { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: #a5a0f5; font-weight: 600; margin-bottom: 1rem; }
.provoke-eyebrow i { color: var(--accent); }
.provoke-title { font-size: clamp(1.7rem, 4.6vw, 3rem); font-weight: 680; letter-spacing: -0.03em; line-height: 1.06; }
.provoke-accent { color: #8b85f0; }
.provoke-sub { max-width: 560px; margin: 1.1rem auto 1.8rem; color: rgba(255, 255, 255, 0.72); font-size: 1.02rem; line-height: 1.55; }
.provoke-btn { background: #fff; color: var(--ink); }
.provoke-btn:hover { background: var(--accent); color: #fff; }

/* --- Moved-down extras --- */
.section-more { padding-top: 1.5rem; }
.more-title { text-align: center; font-size: 1rem; font-weight: 600; color: var(--muted); margin-bottom: 1.2rem; }
.more-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0.7rem; max-width: 940px; margin: 0 auto; }
.more-item { display: flex; align-items: center; gap: 0.7rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 0.8rem 1rem; font-size: 0.9rem; color: var(--muted); }
.more-item i { color: var(--accent); flex: none; }

@media (prefers-reduced-motion: reduce) {
  .pro-bubble, .provoke-glow, .smart-bar { animation: none !important; }
  .provoke-card { transition: none !important; }
}

/* --- See-it: equal-height top row + 3-step cards + shimmer (2026-06-26 v2) --- */
.see-top { display: grid; grid-template-columns: 1fr; gap: 1.4rem; align-items: stretch; }
.see-top .demo-video { max-width: none; margin: 0; }
@media (min-width: 900px) { .see-top { grid-template-columns: 1.3fr 0.9fr; } }
.see-talk { display: flex; flex-direction: column; height: 100%; }
.see-talk .trylive-open { margin-top: auto; }

.setup-row { display: grid; grid-template-columns: 1fr; gap: 0.8rem; margin-top: 1.6rem; align-items: stretch; }
@media (min-width: 760px) { .setup-row { grid-template-columns: 1fr auto 1fr auto 1fr; } }
.setup-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.2rem 1.25rem; box-shadow: var(--shadow-xs);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.setup-card:hover { border-color: var(--accent-line); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.setup-card .setup-n { margin-bottom: 0.6rem; }
.setup-card h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.25rem; }
.setup-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.4; }
.setup-arrow {
  color: var(--accent); font-size: 1rem; justify-self: center; align-self: center;
  animation: arrowSlide 1.6s ease-in-out infinite;
}
@keyframes arrowSlide {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(5px); opacity: 1; }
}
@media (max-width: 759px) {
  .setup-arrow { transform: rotate(90deg); animation: none; opacity: 0.6; justify-self: center; }
}

.see-foot { margin-top: 1.7rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.setup-shimmer {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.98rem; color: #fff;
  padding: 0.6rem 1.15rem; border-radius: var(--r-pill);
  background: linear-gradient(90deg, #4f46e5, #7c74f0, #a78bfa, #7c74f0, #4f46e5);
  background-size: 220% 100%;
  animation: shimmerMove 3s linear infinite;
  box-shadow: 0 8px 22px -8px rgba(79, 70, 229, 0.65);
}
.setup-shimmer i, .setup-shimmer strong { color: #fff; }
@keyframes shimmerMove { to { background-position: -220% 0; } }
.see-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.see-price { font-size: 0.9rem; color: var(--muted); }
.see-price strong { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .setup-shimmer, .setup-arrow { animation: none !important; }
}

/* === MOBILE INTRO + overflow fixes (2026-06-28) === */
@media (max-width: 767px) {
  /* Headline: stop splitting around the face — stack it at the top, centered. */
  .intro-headline {
    top: calc(var(--header-h) + 4.7rem);
    transform: none;
    flex-direction: column;
    gap: 0.05rem;
    white-space: normal;
    font-size: clamp(2.1rem, 9.5vw, 3.2rem);
    line-height: 1.03;
    padding: 0 1.25rem;
  }
  .intro-gap { display: none; }
  .intro-word { width: 100%; text-align: center; }

  /* Two clear, full-width buttons at the bottom. */
  .intro-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    width: min(300px, 84vw);
    gap: 0.7rem;
    bottom: clamp(1.6rem, 6vh, 3rem);
  }
  .intro-actions .btn { width: 100%; }
  .intro-scroll-hint { display: none; }

  /* Scenario hover tooltips don't apply on touch and overflow the viewport
     (the source of the horizontal scroll) — drop them on mobile. */
  .scn-tip { display: none !important; }
}
