/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1f2937;
  background-color: #fff;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: #0a6fff; text-decoration: none; transition: all 0.15s ease; }
a:hover { color: #0858d4; }
strong { font-weight: 600; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111827;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
}
p { line-height: 1.7; color: #4b5563; }

.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a6fff;
  background: #f0f5ff;
  border: 1px solid rgba(10, 111, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}
@media (max-width: 768px) { .section-title { font-size: 1.875rem; } }
.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 640px;
  line-height: 1.6;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ---------- Container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 640px) { .container { padding: 0 1rem; } }

/* ---------- Top banner ---------- */
.nav-banner { background: #0a1628; text-align: center; padding: 0.5rem 1rem; }
.nav-banner__link {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s ease;
}
.nav-banner__link:hover { opacity: 0.85; color: #fff; }
.nav-banner__badge {
  display: inline-block;
  background: #0a6fff;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1em 0.5em;
  border-radius: 9999px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: inherit;
}
.nav__logo:hover { color: inherit; }
.nav__logo-mark { height: 28px; width: auto; }
.nav__logo-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a6fff;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
}
.nav__logo-text .pipe {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: #d1d5db;
  align-self: center;
}
.nav__logo-text .flow {
  color: #111827;
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (max-width: 768px) { .nav__links { display: none; } }
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav__link:hover { color: #0a6fff; }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
@media (max-width: 640px) { .nav__cta .btn-secondary { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid rgba(59, 130, 246, 0.45); outline-offset: 2px; }
.btn-primary {
  background: #0a6fff;
  color: #fff;
  border-color: #0a6fff;
  box-shadow: 0 4px 20px -4px rgba(10, 111, 255, 0.3);
}
.btn-primary:hover {
  background: #0858d4;
  border-color: #0858d4;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px -4px rgba(10, 111, 255, 0.4);
}
.btn-secondary { background: transparent; color: #374151; border-color: #d1d5db; }
.btn-secondary:hover { background: #f8faff; border-color: #9ca3af; color: #111827; }
.btn-ghost { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn-white { background: #fff; color: #0a6fff; border-color: #fff; }
.btn-white:hover { background: #f8faff; color: #0858d4; transform: translateY(-1px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
@media (max-width: 768px) { .section { padding: 4rem 0; } }
.section--light { background: #f8faff; }
.section--blue-tint { background: #f0f5ff; }
.section--dark {
  background: #0a1628;
  background: linear-gradient(160deg, #0a1628 0%, #0d1f3c 60%, #041432 100%);
  position: relative;
  overflow: hidden;
}
.section--dark::before, .section--dark::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section--dark::before {
  top: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10, 111, 255, 0.2) 0%, transparent 70%);
}
.section--dark::after {
  bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(209, 0, 113, 0.12) 0%, transparent 70%);
}
.section--dark > .container { position: relative; z-index: 1; }
.section--dark .section-title, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p, .section--dark li { color: rgba(255, 255, 255, 0.75); }
.section--dark .eyebrow {
  background: rgba(10, 111, 255, 0.18);
  border-color: rgba(10, 111, 255, 0.3);
  color: #4d94ff;
}

/* ---------- Hero ---------- */
.hero {
  padding: 7rem 0 6rem;
  background: linear-gradient(160deg, #0a1628 0%, #0d1f3c 60%, #001f4d 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(10, 111, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(209, 0, 113, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 111, 255, 0.14);
  border: 1px solid rgba(10, 111, 255, 0.3);
  color: #4d94ff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.hero__pill .dot {
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: #4d94ff;
  box-shadow: 0 0 8px #4d94ff;
}
.hero__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__title span {
  background: linear-gradient(135deg, #0a6fff, #4d94ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) { .hero__title { font-size: 3rem; } }
@media (max-width: 480px) { .hero__title { font-size: 2.25rem; } }
.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) { .hero__subtitle { font-size: 1.125rem; } }
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 640px) { .hero__stats { gap: 1.5rem; } }
.hero__stat { text-align: center; }
.hero__stat-number {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.55); }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-split { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 12px 40px -8px rgba(10, 31, 64, 0.14), 0 4px 12px -4px rgba(10, 31, 64, 0.08);
  border-color: transparent;
  transform: translateY(-2px);
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 0.875rem;
  background: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #0a6fff;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.card__body { font-size: 0.9375rem; color: #6b7280; line-height: 1.6; }

/* Use case card variant - colored icon background */
.uc-card .card__icon { background: rgba(10, 111, 255, 0.10); }
.uc-card.is-pink .card__icon { background: #FFDEF0; color: #D10071; }
.uc-card.is-green .card__icon { background: #dcfce7; color: #16a34a; }
.uc-card.is-amber .card__icon { background: #fef3c7; color: #b45309; }

/* Problem cards - ringed icons */
.prob-card .card__icon {
  background: rgba(229, 62, 62, 0.10);
  color: #e53e3e;
}

/* ---------- Feature list ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #374151;
  line-height: 1.55;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 9999px;
  background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2316a34a'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}
.section--dark .feature-list li { color: rgba(255, 255, 255, 0.85); }
.section--dark .compare__col .feature-list li { color: #374151; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, #c7d2fe 0 6px, transparent 6px 14px);
  z-index: 0;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .steps::before { display: none; }
}
.step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}
.step:hover {
  box-shadow: 0 12px 40px -8px rgba(10, 31, 64, 0.14), 0 4px 12px -4px rgba(10, 31, 64, 0.08);
  transform: translateY(-2px);
  border-color: rgba(10, 111, 255, 0.2);
}
.step__num {
  width: 48px; height: 48px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0a6fff, #4d94ff);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 4px 16px -2px rgba(10, 111, 255, 0.4);
}
.step__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}
.step__body { font-size: 0.875rem; color: #6b7280; line-height: 1.55; }

/* ---------- Diff list (3-up section) ---------- */
.diff-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0a6fff, transparent 70%);
}
.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px -12px rgba(10, 31, 64, 0.18), 0 4px 12px -4px rgba(10, 111, 255, 0.12);
  border-color: rgba(10, 111, 255, 0.2);
}
.diff-card__icon {
  width: 56px; height: 56px;
  border-radius: 1rem;
  background: #f0f5ff;
  color: #0a6fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
}
.diff-card__icon svg { width: 28px; height: 28px; }
.diff-card__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}
.diff-card__body { font-size: 0.9375rem; color: #6b7280; line-height: 1.6; }

/* ---------- Split section ---------- */
.split-text h2 { margin-bottom: 1rem; }
.split-text p { font-size: 1.0625rem; margin-bottom: 1.25rem; }
.split-visual {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 12px 40px -8px rgba(10, 31, 64, 0.10);
}
.section--dark .split-visual {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

/* ---------- Compare (Flow vs Zendesk) ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 768px) { .compare { grid-template-columns: 1fr; } }
.compare__col {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.compare__col--featured {
  border: 2px solid #0a6fff;
  box-shadow: 0 0 0 4px rgba(10, 111, 255, 0.10), 0 12px 40px -8px rgba(10, 31, 64, 0.14);
}
.compare__head { display: flex; align-items: center; gap: 0.75rem; }
.compare__head h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.compare__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a6fff;
  background: #e8f0ff;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}
.compare__col p { font-size: 0.9375rem; color: #4b5563; }
.compare__arrow {
  align-self: center;
  width: 56px; height: 56px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0a6fff, #4d94ff);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(10, 111, 255, 0.4);
}
@media (max-width: 768px) {
  .compare__arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: #0a6fff;
  background: linear-gradient(135deg, #0a6fff 0%, #0058cc 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-banner h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) { .cta-banner h2 { font-size: 1.875rem; } }
.cta-banner p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #0a1628; color: rgba(255, 255, 255, 0.7); padding: 4rem 0 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer__brand .footer__logo {
  display: flex; align-items: center; gap: 0.625rem;
  margin-bottom: 1rem;
}
.footer__brand .footer__logo img { height: 28px; filter: brightness(0) invert(1); }
.footer__brand .footer__logo .footer__wordmark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 280px;
}
.footer__col-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.15s ease;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.4); }

/* ---------- Logos strip (marquee) ---------- */
.logos-strip {
  padding: 3rem 0;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  overflow: hidden;
}
.logos-strip__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}
.logos-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.logos-marquee__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.logos-marquee__track:hover { animation-play-state: paused; }
.logos-marquee__track img {
  height: 47px;
  width: auto;
  max-width: 150px;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
  flex-shrink: 0;
}
.logos-marquee__track img:hover {
  opacity: 0.85;
  filter: grayscale(0);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-marquee__track { animation: none; }
}

/* ---------- Workflow visual ---------- */
.flow-viz {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  box-shadow: 0 24px 64px -16px rgba(10, 31, 64, 0.18);
  position: relative;
}
.flow-viz__head {
  display: flex; align-items: center; gap: 0.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0.25rem;
}
.flow-viz__dot { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.flow-viz__dot:nth-child(2) { background: #f59e0b; }
.flow-viz__dot:nth-child(3) { background: #16a34a; }
.flow-viz__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
  margin-left: 0.5rem;
}
.flow-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0.875rem;
  background: #f8faff;
  border: 1px solid #e8f0ff;
  border-radius: 0.875rem;
  position: relative;
}
.flow-row.is-done { border-color: rgba(22, 163, 74, 0.3); background: #f0fdf4; }
.flow-row.is-active {
  border-color: rgba(10, 111, 255, 0.4);
  background: #f0f5ff;
  box-shadow: 0 0 0 3px rgba(10, 111, 255, 0.12);
}
.flow-row__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d1d5db;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af;
}
.flow-row.is-done .flow-row__icon {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.flow-row.is-active .flow-row__icon {
  background: #0a6fff;
  border-color: #0a6fff;
  color: #fff;
}
.flow-row__icon svg { width: 14px; height: 14px; }
.flow-row__text { flex: 1; min-width: 0; }
.flow-row__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}
.flow-row__meta {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 2px;
}
.flow-row.is-done .flow-row__name { color: #166534; }
.flow-row__owner {
  font-size: 0.75rem;
  color: #6b7280;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.flow-row__avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6fff, #4d94ff);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}
.flow-row__avatar.is-amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.flow-row__avatar.is-green { background: linear-gradient(135deg, #16a34a, #22c55e); }
.flow-row__avatar.is-pink { background: linear-gradient(135deg, #D10071, #ec4899); }

/* ---------- Layout helpers ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
