/* Vector landing - static CSS only */
:root {
  --ink: #0f0f12;
  --text: var(--ink);
  --muted: #52525b;
  --accent: #e878be;
  --font: "Outfit", system-ui, sans-serif;
  --max: 96rem;
  /* Slightly larger default reading size for landing sections */
  --section-title: clamp(1.875rem, 3.6vw + 1rem, 3.15rem);
  --section-body: clamp(1.125rem, 1.1vw + 1rem, 1.375rem);
  /* Timeline list + column labels: slightly under body prose */
  --timeline-list-size: clamp(0.9375rem, 0.85vw + 0.82rem, 1.0625rem);
  --timeline-list-size-lg: clamp(1rem, 0.75vw + 0.88rem, 1.125rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.block {
  display: block;
}
.flex-1 {
  flex: 1;
  min-width: 0;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-2xl {
  max-width: 45rem;
}
@media (min-width: 640px) {
  .sm\:mt-8 {
    margin-top: 2rem;
  }
}

::selection {
  background: rgba(232, 120, 190, 0.18);
  color: var(--ink);
}

/* Grid backdrop */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.page-bg__solid {
  position: absolute;
  inset: 0;
  background: #fff;
}
.page-bg__grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: linear-gradient(to right, rgba(15, 15, 18, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 15, 18, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

main {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 5rem;
}
@media (min-width: 640px) {
  .wrap {
    padding: 1rem 2rem 7rem;
  }
}

.section {
  padding: 3.5rem 1.25rem;
}
@media (min-width: 640px) {
  .section {
    padding: 4.5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 5.25rem 2rem;
  }
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

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

h1 {
  font-size: clamp(1.5rem, 4.5vw + 0.9rem, 4.35rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0;
}

h2 {
  font-size: var(--section-title);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

.sub {
  font-size: var(--section-body);
  line-height: 1.65;
  color: var(--muted);
}
@media (min-width: 1024px) {
  .sub {
    font-size: clamp(1.1875rem, 1vw + 1.05rem, 1.4375rem);
  }
}
.text-center {
  text-align: center;
}

/* Hero - two column layout on desktop, stacked on mobile */
.wrap.hero {
  padding: 2rem 0 2.25rem;
  max-width: 100%;
}
@media (min-width: 640px) {
  .wrap.hero {
    padding: 2.5rem 0 2.75rem;
  }
}
.hero-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
    align-items: start;
    gap: clamp(2.5rem, 4.5vw, 4rem);
  }
}
.hero-copy {
  min-width: 0;
}
@media (min-width: 1024px) {
  .hero-copy {
    padding-top: 0.6rem;
  }
}
.hero-lead {
  max-width: 40rem;
  text-align: left;
}
.hero-sub-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 40rem;
  overflow: visible;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.hero-cta-row .btn-pill--hero,
.hero-cta-row .btn-light {
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font);
}
.hero-lead .logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 1.25rem;
}
.hero-lead .logo-row img {
  height: 2rem;
  width: auto;
}
.hero-lead .logo-wordmark {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1;
}
@media (min-width: 640px) {
  .hero-lead .logo-row img {
    height: 2.25rem;
  }
  .hero-lead .logo-wordmark {
    font-size: 1.375rem;
  }
}
.hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0f172a;
  margin: 0 0 16px;
  max-width: 640px;
}
.hero h1 .block + .block {
  margin-top: 0.06em;
}
.wrap.hero .hero-sub.sub {
  font-size: 1.25rem;
  line-height: 1.55;
  color: #6b7280;
  margin: 0;
  text-align: left;
  white-space: normal;
}
.wrap.hero .hero-sub.sub strong {
  font-weight: 700;
  color: #0f172a;
}
@media (min-width: 640px) {
  .wrap.hero .hero-sub.sub {
    font-size: 1.375rem;
  }
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(228, 228, 231, 0.9);
  background: rgba(255, 255, 255, 0.75);
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 2px 16px -8px rgba(15, 15, 18, 0.06);
  backdrop-filter: blur(4px);
  margin-top: 2.25rem;
  transition: border-color 0.15s, background 0.15s;
}
.btn-pill:hover {
  border-color: #d4d4d8;
  background: #fff;
}
.btn-pill--hero {
  margin-top: 0;
  padding: 12px 24px;
  font-size: 0.9375rem;
  border: none;
  background: #0f172a;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 12px 32px -16px rgba(15, 23, 42, 0.35);
  backdrop-filter: none;
  flex-shrink: 0;
}
.btn-pill--hero:hover {
  background: #1e293b;
  color: #fff;
}
@media (max-width: 767px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
  }
  .hero-cta-row .btn-pill--hero,
  .hero-cta-row .btn-light {
    justify-content: center;
    text-align: center;
  }
  .btn-pill--hero {
    white-space: normal;
  }
}

/* Hero product panel */
.hero-product {
  width: min(100%, 34rem);
  margin-top: 0;
  padding: 0;
  box-sizing: border-box;
  align-self: start;
}
@media (max-width: 1023px) {
  .hero-product {
    width: 100%;
  }
}
.hero-product__chat-wrap {
  max-width: 33rem;
  margin: 0 auto;
}
.hero-product .chat-card {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Chat */
.chat-card {
  user-select: none;
  pointer-events: none;
  max-width: 36rem;
}
@media (min-width: 1024px) {
  .chat-card {
    max-width: none;
  }
}
.chat-shell {
  border-radius: 1rem;
  border: 1px solid rgba(228, 228, 231, 0.8);
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.12);
}
@media (min-width: 640px) {
  .chat-shell {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .chat-shell {
    padding: 1.75rem;
  }
}
.hero-product .chat-shell {
  border-radius: 16px;
  border: 1px solid rgba(228, 228, 231, 0.75);
  background: #fff;
  box-shadow: 0 14px 34px -20px rgba(15, 23, 42, 0.3);
  padding: 1rem;
}
@media (min-width: 640px) {
  .hero-product .chat-shell {
    padding: 1.15rem;
  }
}
@media (min-width: 1024px) {
  .hero-product .chat-shell {
    padding: 1.25rem;
  }
}
.hero-product .chat-head {
  padding-bottom: 0.75rem;
  margin-bottom: 0.9rem;
}
.hero-product .chat-thread {
  gap: 0.72rem;
}
.hero-product .bubble-meta {
  margin-bottom: 0.35rem;
}
.hero-product .bubble {
  padding: 0.5rem 0.72rem;
  line-height: 1.45;
}
.hero-product .bubble + .bubble {
  margin-top: 0.38rem;
}
.hero-product .chat-typing {
  margin-top: 0.1rem;
}
.chat-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(244, 244, 245, 0.95);
  font-size: 0.875rem;
}
.chat-head strong {
  font-weight: 600;
  color: #27272a;
}
.chat-head .muted {
  color: #a1a1aa;
  font-weight: 500;
}
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-block {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.chat-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.chat-row {
  display: flex;
  gap: 0.75rem;
}
.chat-row--alex {
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
}
.avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 2px solid #fff;
  outline: 1px solid rgba(244, 244, 245, 0.8);
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .avatar {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.bubble-meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.bubble-meta--alex {
  flex-direction: row-reverse;
  align-items: center;
  align-self: flex-end;
  width: auto;
  max-width: 100%;
}
.bubble {
  width: fit-content;
  max-width: min(100%, 22rem);
  border-radius: 1rem;
  border-top-left-radius: 0.25rem;
  border: 1px solid rgba(228, 228, 231, 0.7);
  background: rgba(250, 250, 250, 0.9);
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #27272a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
@media (min-width: 640px) {
  .bubble {
    font-size: 1.0625rem;
  }
}
.bubble + .bubble {
  margin-top: 0.5rem;
}
.bubble--alex {
  align-self: flex-end;
  margin-left: auto;
  margin-right: 0;
  max-width: min(100%, 20rem);
  border-radius: 1rem;
  border-top-right-radius: 0.25rem;
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(224, 242, 254, 0.7);
  color: #18181b;
  text-align: left;
}
.chat-typing {
  display: flex;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 0.5rem;
  padding-left: 3.25rem;
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #52525b;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
@media (min-width: 640px) {
  .chat-typing {
    font-size: 1rem;
  }
}
.chat-thread > .chat-typing:last-child {
  margin-top: 0.125rem;
}
.chat-typing.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.typing-dots span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: #a1a1aa;
  margin-left: 2px;
  animation: typing-dot 1s ease-in-out infinite;
}
.typing-dots span:nth-child(2) {
  animation-delay: 0.18s;
}
.typing-dots span:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes typing-dot {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-1.5px);
  }
}

/* Timeline - tighter top spacing below hero */
.section.section-timeline {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 640px) {
  .section.section-timeline {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .section.section-timeline {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }
}

/* Timeline */
.section-timeline {
  --tl-before-gap: 0.72rem;
}
.timeline-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin: 3.5rem auto 0;
  max-width: min(100%, 56rem);
  width: 100%;
}
.timeline-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 24rem;
  min-width: 0;
}
.timeline-side--before {
  grid-column: 1;
  justify-self: end;
}
.timeline-side--after {
  grid-column: 2;
  justify-self: start;
}
.timeline-compare-title {
  font-family: var(--font);
  font-size: var(--timeline-list-size);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  text-align: center;
  align-self: stretch;
  width: 100%;
  line-height: 1.45;
  min-height: 1.2em;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) {
  .timeline-compare-title {
    font-size: var(--timeline-list-size-lg);
  }
}
.timeline-compare-title--before {
  color: var(--muted);
}
.timeline-compare-title--after {
  color: var(--accent);
}
.timeline-side .timeline {
  width: fit-content;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 639px) {
  .timeline-compare {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    column-gap: 0;
  }
  .timeline-side--before,
  .timeline-side--after {
    grid-column: 1;
    justify-self: center;
    max-width: 24rem;
  }
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--tl-before-gap);
}
.timeline li:last-child {
  margin-bottom: 0;
}
.timeline-col {
  display: flex;
  width: 1.25rem;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  padding-top: 0.25rem;
}
.timeline--before .timeline-dot {
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: 1.5px solid #a1a1aa;
  background: transparent;
  opacity: 0.72;
}
.timeline--after .timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: none;
  opacity: 1;
  background: var(--accent);
}
.timeline-dot--done {
  position: relative;
}
.timeline-dot--done::after {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-size: 6px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.timeline-line {
  margin-top: 0.25rem;
  width: 1px;
  flex-grow: 1;
  min-height: 18px;
}
.timeline--before .timeline-line {
  opacity: 0.45;
  background: linear-gradient(to bottom, rgba(161, 161, 170, 0.55), rgba(228, 228, 231, 0.15));
}
.timeline--after .timeline-line {
  opacity: 0.92;
  background: linear-gradient(to bottom, rgba(232, 120, 190, 0.55), rgba(232, 120, 190, 0.12));
}
.timeline-label {
  display: block;
  font-family: var(--font);
  font-size: var(--timeline-list-size);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  padding-bottom: 0.1rem;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) {
  .timeline-label {
    font-size: var(--timeline-list-size-lg);
  }
}
.timeline--before .timeline-label {
  color: var(--muted);
}
.timeline--after .timeline-label {
  color: var(--muted);
  opacity: 1;
}

/* Problem banner — editorial beat between hero and Meet Vector */
.problem-banner {
  width: 100%;
  margin: 0;
  padding: clamp(0.8rem, 1.4vw, 1.15rem) 1.25rem clamp(0.55rem, 1vw, 0.8rem);
  background: rgba(250, 250, 251, 0.72);
}
.problem-banner.is-inview {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .problem-banner {
    opacity: 1;
  }
}
@media (min-width: 640px) {
  .problem-banner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.problem-banner__grid {
  display: none;
}
.problem-banner__inner {
  max-width: min(56rem, 100%);
  margin: 0 auto;
  padding: clamp(0.55rem, 0.75vw, 0.8rem) clamp(0.6rem, 1.2vw, 1rem);
  text-align: center;
}
.problem-banner__block + .problem-banner__block {
  margin-top: clamp(0.95rem, 1.4vw, 1.3rem);
}
.problem-banner__text {
  margin: 0;
  font-family: var(--font);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.problem-banner__block--lead .problem-banner__text {
  font-size: clamp(0.98rem, 0.38vw + 0.93rem, 1.1rem);
  font-weight: 500;
  color: rgba(15, 15, 18, 0.66);
  max-width: 46rem;
}
.problem-banner__block--focus .problem-banner__text {
  font-size: clamp(1.12rem, 0.65vw + 1rem, 1.32rem);
  font-weight: 600;
  color: var(--ink);
  max-width: 34rem;
}
.problem-banner__block--focus .problem-banner__text + .problem-banner__text {
  margin-top: 0.14rem;
}

/* Meet Vector - split editorial section with lightweight product snippet */
#meet-vector.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 640px) {
  #meet-vector.section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  #meet-vector.section {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }
}
#meet-vector .container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0;
}
#meet-vector .meet-vector-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  #meet-vector .meet-vector-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
    gap: clamp(2.5rem, 4.1vw, 4rem);
  }
}
#meet-vector .meet-vector-copy {
  max-width: 44rem;
}
#meet-vector h2 {
  margin: 0;
  text-align: left;
}
#meet-vector .meet-vector__sub {
  margin: 1rem 0 0;
  max-width: 36rem;
  text-align: left;
}
#meet-vector .meet-vector__support {
  margin: 1.15rem 0 0;
  max-width: 40rem;
  font-size: clamp(1rem, 0.55vw + 0.93rem, 1.14rem);
  line-height: 1.62;
  text-align: left;
  color: rgba(15, 15, 18, 0.74);
}
#meet-vector .meet-vector__support strong {
  color: var(--ink);
  font-weight: 600;
}
#meet-vector .meet-vector__cta {
  justify-content: flex-start;
  margin-top: 1.45rem;
}
#meet-vector .meet-vector-snippet {
  width: 100%;
  max-width: 25.5rem;
}
#meet-vector .meet-vector-typing {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(82, 82, 91, 0.92);
}
#meet-vector .meet-vector-snippet__body {
  border: 1px solid rgba(228, 228, 231, 0.85);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.95rem 1rem 1rem;
  box-shadow: 0 12px 26px -22px rgba(15, 23, 42, 0.22);
}
#meet-vector .meet-vector-snippet__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: #52525b;
}
#meet-vector .meet-vector-snippet__meta span:first-of-type {
  font-weight: 600;
  color: #27272a;
}
#meet-vector .meet-vector-snippet__avatar {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid rgba(228, 228, 231, 0.95);
  margin-right: 0.38rem;
  transform: rotate(-8deg);
  transform-origin: center;
}
#meet-vector .meet-vector-snippet__bubble {
  margin-top: 0.7rem;
  border: 1px solid rgba(228, 228, 231, 0.8);
  background: rgba(250, 250, 250, 0.95);
  border-radius: 0.9rem;
  border-top-left-radius: 0.3rem;
  padding: 0.68rem 0.82rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #27272a;
}
#meet-vector .meet-vector-snippet.is-animating .meet-vector-snippet__bubble {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 520ms ease-out, transform 520ms ease-out;
  will-change: opacity, transform;
}
#meet-vector .meet-vector-snippet.is-animating.is-inview .meet-vector-snippet__bubble {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1023px) {
  #meet-vector .meet-vector-snippet {
    max-width: 26rem;
  }
}
@media (max-width: 767px) {
  #meet-vector .meet-vector-layout {
    gap: 1.6rem;
  }
  #meet-vector .meet-vector-copy {
    max-width: 100%;
  }
  #meet-vector .meet-vector__sub,
  #meet-vector .meet-vector__support {
    max-width: 100%;
  }
  #meet-vector .meet-vector-snippet {
    max-width: 100%;
  }
  #meet-vector .meet-vector-snippet__body {
    padding: 0.9rem 0.9rem 0.95rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  #meet-vector .meet-vector-snippet.is-animating .meet-vector-snippet__bubble {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Prevent inherited centered prose spacing from previous layout */
#meet-vector + .section {
  margin-top: 0;
}

/* #stack: chat → Vector (implied) → tool actions */
.execution-flow {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(min-content, 1fr);
  gap: 28px 60px;
  align-items: center;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 0.5rem;
  position: relative;
  overflow-x: auto;
}
.execution-flow__chat .chat-card {
  max-width: 100%;
  margin: 0;
}
.execution-flow .chat-block {
  opacity: 1;
  transform: none;
  transition: none;
}
.execution-flow__name {
  font-size: 14px;
  font-weight: 600;
  color: #27272a;
}
.execution-flow__time {
  font-size: 13px;
  color: #a1a1aa;
  font-weight: 500;
}
.execution-flow__bridge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 0.25rem;
}
.execution-flow__cap {
  display: block;
  flex-shrink: 0;
  height: 2px;
  width: clamp(1.25rem, 3vw, 1.85rem);
  border-radius: 999px;
}
.execution-flow__cap--left {
  background: linear-gradient(90deg, rgba(82, 82, 91, 0.1), rgba(232, 120, 190, 0.32));
}
.execution-flow__cap--right {
  background: linear-gradient(90deg, rgba(232, 120, 190, 0.32), rgba(82, 82, 91, 0.1));
}
.vector-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.72;
  white-space: nowrap;
  flex-shrink: 0;
}
.actions {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.action {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  font-size: clamp(0.9375rem, 0.45vw + 0.84rem, 1.0625rem);
  color: var(--text);
  line-height: 1.45;
}
.action__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(1.35rem, 0.5vw + 1.2rem, 1.55rem);
  height: clamp(1.35rem, 0.5vw + 1.2rem, 1.55rem);
  color: #3f3f46;
}
.action__logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.action__text {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .execution-flow {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  .execution-flow__actions {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
  }
  .execution-flow__actions .action {
    align-self: flex-start;
  }
  .execution-flow__bridge {
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.15rem 0;
  }
  .execution-flow__cap {
    width: 2px;
    height: clamp(1rem, 3vh, 1.35rem);
  }
  .execution-flow__cap--left {
    background: linear-gradient(180deg, rgba(82, 82, 91, 0.1), rgba(232, 120, 190, 0.32));
  }
  .execution-flow__cap--right {
    background: linear-gradient(180deg, rgba(232, 120, 190, 0.32), rgba(82, 82, 91, 0.1));
  }
}

/* Empowers - tabbed split: nav left, detail right */
.empowers-split {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}
@media (min-width: 768px) {
  .empowers-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 2rem;
  }
}
.empowers-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.empower-nav-item {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 1rem;
  border: 1px solid rgba(228, 228, 231, 0.85);
  background: #fff;
  padding: 1rem 1.15rem;
  box-shadow: 0 8px 28px -28px rgba(15, 23, 42, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font: inherit;
  color: inherit;
}
.empower-nav-item:hover {
  border-color: rgba(228, 228, 231, 1);
  box-shadow: 0 12px 36px -30px rgba(15, 23, 42, 0.3);
}
.empower-nav-item.is-selected {
  border-color: rgba(232, 120, 190, 0.45);
  background: rgba(253, 242, 248, 0.55);
  box-shadow: 0 14px 40px -32px rgba(232, 120, 190, 0.35);
}
.empower-nav-title {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
}
@media (min-width: 640px) {
  .empower-nav-title {
    font-size: 1.125rem;
  }
}
.empower-nav-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
}
@media (min-width: 640px) {
  .empower-nav-sub {
    font-size: 0.9375rem;
  }
}
.empowers-panel-wrap {
  min-width: 0;
}
.empower-detail {
  border-radius: 1rem;
  border: 1px solid rgba(24, 24, 27, 0.25);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 18px 46px -32px rgba(15, 23, 42, 0.35);
}
/* Daily brief: real chat-card UI (same as hero / #stack); avoid double frame */
.empower-detail:has(> .chat-card) {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.empower-detail > .chat-card {
  max-width: 100%;
  margin: 0;
}
.empower-detail .chat-block {
  opacity: 1;
  transform: none;
  transition: none;
}
.empower-detail h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}
.empower-detail .sub {
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
.empower-detail .body {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #3f3f46;
}
@media (min-width: 640px) {
  .empower-detail .body {
    font-size: 1rem;
  }
}
.proof {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(228, 228, 231, 0.8);
  background: rgba(250, 250, 250, 0.8);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
  font-size: 0.9375rem;
}
.proof--slack {
  border-radius: 1rem;
  border-top-left-radius: 0.25rem;
  background: #fff;
}
.proof--esc {
  border-color: rgba(254, 205, 211, 0.7);
  background: rgba(255, 241, 242, 0.8);
  color: #881337;
  font-weight: 600;
}
.section.section-impact {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .section.section-impact {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .section.section-impact {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }
}
.section-impact .section-inner {
  max-width: min(70rem, 100%);
}
.impact-head h2 {
  font-size: clamp(2rem, 2.4vw + 1.15rem, 3.05rem);
  letter-spacing: -0.02em;
}
.impact-grid {
  margin-top: clamp(2.1rem, 1.8vw + 1.5rem, 3rem);
}
.impact-row {
  display: grid;
  gap: clamp(1rem, 1.1vw + 0.6rem, 1.65rem);
}
.impact-row--top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.impact-row--bottom {
  margin-top: clamp(1rem, 1vw + 0.7rem, 1.5rem);
  width: min(100%, 48rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.impact-row-divider {
  margin-top: clamp(1rem, 1vw + 0.7rem, 1.5rem);
  border-top: 1px solid rgba(15, 15, 18, 0.09);
}
.impact-item {
  padding: clamp(1rem, 1vw + 0.7rem, 1.45rem) clamp(0.35rem, 0.65vw + 0.2rem, 0.75rem);
  text-align: center;
}
.impact-value {
  margin: 0;
  font-size: clamp(2.05rem, 2.2vw + 1.25rem, 3.55rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.impact-value--accent {
  color: var(--accent);
}
.impact-copy {
  margin: 0.72rem auto 0;
  max-width: 34ch;
  font-size: clamp(0.93rem, 0.2vw + 0.9rem, 1rem);
  line-height: 1.42;
  color: rgba(15, 15, 18, 0.62);
}
@media (max-width: 900px) {
  .impact-value {
    font-size: clamp(1.95rem, 5.2vw + 0.8rem, 3rem);
  }
  .impact-row--bottom {
    width: min(100%, 42rem);
  }
}
@media (max-width: 767px) {
  .impact-grid {
    margin-top: 2rem;
  }
  .impact-row {
    display: block;
    gap: 0;
  }
  .impact-row-divider {
    margin-top: 0;
    border-top-color: rgba(15, 15, 18, 0.08);
  }
  .impact-item {
    padding: 1.45rem 0.25rem 1.55rem;
  }
  .impact-row--bottom {
    margin-top: 0.9rem;
    width: 100%;
  }
  .impact-copy {
    max-width: 33ch;
    font-size: 0.98rem;
  }
}
.slack-dots span {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: #a1a1aa;
  margin-left: 2px;
  animation: typing-dot 1s ease-in-out infinite;
}
.slack-dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.slack-dots span:nth-child(3) {
  animation-delay: 0.3s;
}
.cta-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(228, 228, 231, 0.7);
  background: #fff;
  padding: 3.5rem 1.5rem;
  box-shadow: 0 20px 50px -36px rgba(15, 23, 42, 0.08);
  text-align: center;
}
@media (min-width: 640px) {
  .cta-card {
    padding: 4rem 3rem;
  }
}
.cta-card ol.cta-steps {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  width: 100%;
  max-width: min(32rem, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-align: left;
}
.cta-card ol.cta-steps li {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  column-gap: 0.75rem;
  align-items: start;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.5;
}
@media (min-width: 640px) {
  .cta-card ol.cta-steps li {
    font-size: 1.125rem;
  }
}
.cta-card .cta-step-copy {
  display: block;
  padding-top: 0.125rem;
}
.cta-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(228, 228, 231, 0.9);
  box-shadow: 0 12px 32px -20px rgba(15, 15, 18, 0.55);
}
.btn-dark:hover {
  background: #27272a;
}
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  color: #27272a;
  text-decoration: none;
  border: 1px solid rgba(228, 228, 231, 0.9);
}
.btn-light:hover {
  border-color: #d4d4d8;
}

footer {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  padding: 2.5rem 1.25rem;
}
footer p {
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  color: #a1a1aa;
}
@media (min-width: 640px) {
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

