html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* ── Scroll offset — accounts for fixed nav height (~76px) + top-4 gap (16px) ── */
#product,
#features,
#integrations,
#social-proof,
#cta-outro {
  scroll-margin-top: 96px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   SHARED TOKENS
══════════════════════════════════════════ */
:root {
  --bg-base:         #FDFCFB;
  --bg-surface:      #FFFFFF;
  --bg-elevated:     #F8F7F6;
  --bg-activate:     #F3F2F0;
  --border:          #E4E4E7;
  --border-mid:      #D1D5DC;
  --text-primary:    #1F2937;
  --text-secondary:  #6C7180;
  --text-tertiary:   #9DA2AE;
  --text-disabled:   #D1D5DC;
  --purple:          #A883B9;
  --purple-mid:      #A883B9;
  --purple-bg:       #F6F1FA;
  --purple-border:   #E1D7ED;
  --green:           #769D85;
  --green-mid:       #769D85;
  --green-bg:        #F1F7F4;
  --green-border:    #DDE8E5;
  --green-dark:      #527360;
  --warning:         #F5A00C;
  --font-mono:       'JetBrains Mono', 'Courier New', monospace;
  --r-xs:   4px;
  --r-sm:   6px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-2xl:  24px;
  --r-full: 9999px;
  --sh-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md:  0 4px 16px rgba(0,0,0,.07), 0 2px 6px rgba(0,0,0,.04);
  --sh-lg:  0 8px 32px rgba(0,0,0,.09), 0 4px 12px rgba(0,0,0,.05);
}

/* ── Layout ── */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8.5%;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-tertiary);
  letter-spacing: .06em;
  text-align: center;
  margin-bottom: 20px;
}

/* ── Color utilities ── */
.purple {
  color: var(--purple);
}

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

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav-mobile-inner {
  padding: 2px 0;
}

.nav-hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--green-border);
  background: var(--green-bg);
  color: var(--green-dark);
  cursor: pointer;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   MOBILE MENU OVERLAY
══════════════════════════════════════════ */
#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(246, 241, 250, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 250ms ease-out;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 48px;
  overflow-y: auto;
}

#mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.mobile-menu-logo {
  height: 40px;
  width: auto;
}

.mobile-menu-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--purple-border);
  background: white;
  color: var(--purple);
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-menu-link {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.03em;
  padding: 12px 0;
  border-bottom: 1px solid var(--purple-border);
  transition: color 150ms ease;
}

.mobile-menu-link:first-child {
  border-top: 1px solid var(--purple-border);
}

.mobile-menu-link:hover {
  color: var(--purple);
}

.mobile-menu-footer {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ══════════════════════════════════════════
   NAVBAR (continued)
══════════════════════════════════════════ */
#main-nav {
  padding-left: 3.6%;
  padding-right: 3.6%;
  transition: top 300ms ease, padding 300ms ease;
}

#main-nav > nav {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.85);
  padding: 10px 48px;
}

@media (max-width: 767px) {
  #main-nav > nav {
    padding: 8px 16px;
  }
}

#main-nav.nav--scrolled {
  top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#main-nav.nav--scrolled > nav {
  border-radius: 0 0 28px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.11), inset 0 1px 0 rgba(255,255,255,0.85);
}

.nav-cta {
  background: #F6F1FA;
  color: #769D85;
  border: 1px solid #E1D7ED;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  background: linear-gradient(135deg, #C2D7CE 0%, #DDE8E5 30%, #e9e3f0 60%, #CEBADC 100%);
}

.hero-content {
  padding-top: 7rem;
  padding-bottom: 0;
}

.hero-pill {
  background: #F1F7F4;
  color: #769D85;
  font-size: 15.6px;
  font-weight: 500;
}

.hero-h1 {
  letter-spacing: -0.04em;
}

.hero-h1-purple {
  color: #A883B9;
  font-size: clamp(36px, 5.5vw, 72px);
}

.hero-h1-dark {
  color: #1F2937;
  font-size: clamp(36px, 5.5vw, 72px);
}

.hero-h1-green {
  color: #769D85;
}

.hero-sub {
  color: #6C7180;
  font-size: 16px;
  max-width: 640px;
  text-align: left;
}

.vela-icon-sm {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
}

.vela-icon-lg {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  flex-shrink: 0;
}

.hero-mockup-wrapper {
  max-width: 1280px;
}

.hero-blob {
  inset: 10% 8% -8%;
  background: #CEBADC;
  border-radius: 9999px;
  filter: blur(96px);
  opacity: .42;
}

.hero-mockup-card {
  box-shadow: 0 25px 60px rgba(0,0,0,.18), 0 0 0 1px rgba(228,228,231,.5);
}

.hero-gradient-fade {
  height: 420px;
  background: linear-gradient(to bottom, transparent 0%, rgba(200,186,220,0.82) 55%, rgba(185,162,205,0.97) 100%);
}

/* Inline step visuals — hidden on desktop, shown inside cards on mobile */
.acc-visual {
  display: none;
}

.hero-cta-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 30;
}

.hero-tagline {
  font-size: 13px;
  background: #F6F1FA;
}

.hero-section-gradient {
  height: 35%;
  z-index: 5;
  background: linear-gradient(to bottom, transparent 0%, rgba(185,162,205,0.85) 60%, rgba(178,154,200,0.97) 100%);
}

/* ── Sparkle / circle animations ── */
@keyframes sparkle-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.6; }
  50%       { transform: scale(1.5);  opacity: 1.0; }
}

@keyframes circle-pulse {
  0%, 100% { transform: scale(0.9);  opacity: 0.45; }
  50%       { transform: scale(1.25); opacity: 0.9;  }
}

.sp {
  animation: sparkle-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.sp-slow {
  animation: sparkle-pulse 5.0s ease-in-out infinite;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.sp-fast {
  animation: sparkle-pulse 2.1s ease-in-out infinite;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.cp {
  animation: circle-pulse 3.8s ease-in-out infinite;
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.cp-slow {
  animation: circle-pulse 5.5s ease-in-out infinite;
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

/* ── Star twinkle animations ── */
@keyframes twinkle {
  0%, 100% { opacity: .06; }
  50%       { opacity: .22; }
}

@keyframes twinkle-slow {
  0%, 100% { opacity: .04; }
  50%       { opacity: .16; }
}

@keyframes twinkle-fast {
  0%, 100% { opacity: .10; }
  50%       { opacity: .30; }
}

@keyframes twinkle-med {
  0%, 100% { opacity: .08; }
  50%       { opacity: .20; }
}

.star {
  animation: twinkle 3.2s ease-in-out infinite;
}

.star-slow {
  animation: twinkle-slow 5.4s ease-in-out infinite;
}

.star-fast {
  animation: twinkle-fast 1.9s ease-in-out infinite;
}

.star-med {
  animation: twinkle-med 4.1s ease-in-out infinite;
}

/* ── Gradient border button ── */
.btn-gradient-border {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #769D85;
  color: #FDFCFB;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 0;
}

.btn-gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  background: linear-gradient(to right, #769D85, #A883B9);
  z-index: -1;
}

.btn-gradient-border:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255,255,255,.85), 0 12px 32px rgba(118,157,133,.35);
}

/* ── Live dot pulse ── */
@keyframes livepulse {
  0%, 100% { opacity: 1;   }
  50%       { opacity: .25; }
}

.live-dot {
  animation: livepulse 1.4s ease-in-out infinite;
}

/* ── Marquee ── */
@keyframes marquee {
  0%   { transform: translateX(0);    }
  100% { transform: translateX(-50%); }
}

.marquee-track {
  animation: marquee 28s linear infinite;
}

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

/* ── Testimonial scroll ── */
@keyframes tscroll {
  0%   { transform: translateX(0);    }
  100% { transform: translateX(-50%); }
}

.testi-track {
  animation: tscroll 50s linear infinite;
}

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

/* ══════════════════════════════════════════
   HOW VELORA WORKS
══════════════════════════════════════════ */
.how-section {
  padding-left: 8.5%;
  padding-right: 8.5%;
}

.how-h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.03em;
}

.how-h2-purple {
  color: #A883B9;
}

.how-h2-dark {
  color: #1F2937;
}

.how-sub {
  white-space: nowrap;
}

.acc-item {
  background: #F6F1FA;
}

.acc-num {
  font-size: 12px;
  color: #A883B9;
}

.acc-title {
  color: #A883B9;
}

.acc-body {
  max-height: 0;
  opacity: 0;
  transition: max-height 250ms ease-out, opacity 200ms ease-out;
}

.acc-body p {
  color: #A883B9;
}

/* ══════════════════════════════════════════
   FEATURES (BENTO)
══════════════════════════════════════════ */
#features {
  padding: 110px 0;
  background: #F1F7F4;
}

.features-container {
  padding-left: 3.5%;
  padding-right: 3.5%;
}

.features-h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  text-align: center;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.features-h2 .dark {
  color: var(--text-primary);
}

.features-h2 .green {
  color: var(--green);
}

.features-h2-purple {
  color: var(--purple);
}

.features-sub {
  font-size: 15px;
  white-space: nowrap;
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bento-rows {
  grid-template-rows: repeat(3, 540px);
}

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.bento-card.span2 {
  grid-column: 1 / -1;
}

.bento-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.bento-card-flex {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.bento-split-stretch {
  flex: 1;
  align-items: stretch;
  gap: 0;
}

.bento-text-col {
  display: flex;
  flex-direction: column;
  padding: 36px;
  padding-bottom: 28px;
}

.bento-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bento-icon-row .bento-title {
  margin-bottom: 0;
}

.bento-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.bento-tag-footer {
  margin-top: auto;
  padding-top: 20px;
}

.bento-img-col {
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.bento-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.bento-padded {
  padding: 36px 36px 24px;
  display: flex;
  flex-direction: column;
}

.bento-img-area {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.bento-img-overflow-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 135%;
  height: auto;
  object-fit: contain;
  object-position: right top;
}

.bento-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.bento-img-area-center {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 12px;
}

.bento-img-92 {
  width: 92%;
  height: auto;
  object-fit: contain;
  display: block;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}

.bento-feature-tag {
  font-size: 12px;
  background: #F6F1FA;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

.tag-green {
  background: var(--green-bg);
  color: var(--green-dark);
}

.tag-purple {
  background: var(--purple-bg);
  color: var(--purple);
}

.tag-cream {
  background: var(--purple-bg);
  color: var(--purple);
}

.tag-dark {
  background: var(--green-bg);
  color: var(--green-dark);
}

.bento-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #769D85;
  margin-bottom: 8px;
  line-height: 1.2;
}

.bento-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feat-mock-wrap {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 16px;
}

.feat-mock-hdr {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.feat-task-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 12px;
  margin-bottom: 7px;
}

.feat-checkbox {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 2px solid var(--border-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-checkbox.done {
  background: var(--green);
  border-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-checkbox.done::after {
  content: '✓';
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.feat-task-label {
  font-size: 12px;
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 500;
}

.feat-task-meta {
  font-size: 10.5px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.review-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: var(--bg-elevated);
  border-radius: var(--r-md);
  margin-bottom: 7px;
  font-size: 12px;
}

.review-num {
  font-size: 10px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  width: 14px;
  flex-shrink: 0;
}

.review-text {
  flex: 1;
  color: var(--text-primary);
  font-weight: 500;
}

.chip {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}

.chip-purple {
  background: var(--purple-bg);
  color: var(--purple);
}

.chip-green {
  background: var(--green-bg);
  color: var(--green);
}

.chip-amber {
  background: #FEF3C7;
  color: #92600A;
}

.routing-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.route-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.route-tool {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-primary);
}

.route-arrow {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

.route-label {
  color: var(--text-tertiary);
  font-size: 11px;
  flex: 1;
}

.know-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 12px;
  margin-bottom: 8px;
}

.know-icon-box {
  width: 30px;
  height: 30px;
  background: var(--bg-surface);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.know-info {
  flex: 1;
  min-width: 0;
}

.know-title {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.know-date {
  font-size: 10.5px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.know-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: var(--r-full);
  font-weight: 600;
  flex-shrink: 0;
}

.kb-green {
  background: var(--green-bg);
  color: var(--green-dark);
}

.kb-purple {
  background: var(--purple-bg);
  color: var(--purple);
}

@media (max-width: 768px) {
  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card.span2 {
    grid-column: 1;
  }

  .bento-split {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   INTEGRATIONS (MARQUEE)
══════════════════════════════════════════ */
#integrations {
  padding: 90px 0;
  background: var(--bg-base);
}

.int-h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  text-align: center;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.int-h2 .purple {
  color: var(--purple);
}

.int-h2 .green {
  color: var(--text-primary);
}

.int-sub {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  text-align: center;
}

.logo-marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-base), transparent);
}

.logo-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-base), transparent);
}

@keyframes logo-scroll {
  0%   { transform: translateX(0);    }
  100% { transform: translateX(-50%); }
}

@keyframes logo-scroll-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0);    }
}

/* Mobile integrations rows hidden on desktop */
.int-mobile-rows {
  display: none;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}

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

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  flex-shrink: 0;
}

.logo-item svg {
  width: 64px;
  height: 64px;
}

.logo-item img {
  width: auto;
  height: 44px;
  max-width: none;
  display: block;
}

.logo-item-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   SOCIAL PROOF
══════════════════════════════════════════ */
#social-proof {
  padding: 110px 0;
  background: #F6F1FA;
  overflow: hidden;
}

.social-h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  text-align: center;
  letter-spacing: -.03em;
  margin-bottom: 52px;
  line-height: 1.1;
}

.social-h2 .purple {
  color: var(--purple);
}

.social-h2 .green {
  color: var(--green);
}

.stats-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 108px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 52px;
}

.stat-col {
  text-align: center;
}

.stat-col + .stat-col {
  border-left: 1px solid var(--border);
}

.stat-num {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -.05em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-num em {
  color: var(--green);
  font-style: normal;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.testi-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

.testi-slider-wrapper::before,
.testi-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testi-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #F6F1FA, transparent);
}

.testi-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #F6F1FA, transparent);
}

@keyframes testi-scroll {
  0%   { transform: translateX(0);    }
  100% { transform: translateX(-50%); }
}

.testi-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testi-scroll 50s linear infinite;
}

.testi-slider-track:hover {
  animation-play-state: paused;
}

.testi-dots {
  display: none;
}

.testi-card {
  width: 460px;
  flex-shrink: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 40px;
}

.testi-card-sage {
  background: #F1F7F4;
}

.testi-card-purple {
  background: #E1D7ED;
}

.testi-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.testi-av-plain {
  background: none;
  padding: 0;
}

.testi-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.testi-name-green {
  color: #769D85;
}

.testi-name-purple {
  color: #A883B9;
}

.testi-role {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 1px;
}

.testi-role-green {
  color: #769D85;
}

.testi-role-purple {
  color: #A883B9;
}

@media (max-width: 768px) {
  .stats-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .stat-col + .stat-col {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 28px;
  }

  .testi-card {
    width: 280px;
  }
}

/* ══════════════════════════════════════════
   CTA OUTRO
══════════════════════════════════════════ */
#cta-outro {
  padding: 160px 0 110px;
  background: var(--bg-base);
  text-align: center;
}

#cta-outro .container {
  text-align: center;
}

.cta-h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -.04em;
  margin-bottom: 18px;
  line-height: 1.05;
}

.cta-h2 .purple {
  color: var(--purple);
}

.cta-h2 .green {
  color: var(--green);
}

.cta-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  text-align: center;
}

.cta-note {
  font-size: 13px;
  color: var(--text-tertiary);
  display: block;
  margin-top: 10px;
}

.cta-tagline-wrapper {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.cta-tagline {
  font-size: 13px;
  background: #F6F1FA;
}

.cta-mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 56px auto 0;
}

.cta-laptop {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.cta-bar {
  background: var(--bg-elevated);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.cta-dots {
  display: flex;
  gap: 4px;
}

.cta-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.cta-dots .cr {
  background: #FF5F57;
}

.cta-dots .ca {
  background: #FEBC2E;
}

.cta-dots .cg {
  background: #28C840;
}

.cta-bar-label {
  font-size: 10px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  margin-left: 6px;
}

.cta-content {
  padding: 16px;
}

.dash-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.dash-stat {
  flex: 1;
  background: var(--bg-elevated);
  border-radius: var(--r-md);
  padding: 10px;
  text-align: center;
}

.ds-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.03em;
}

.ds-num em {
  color: var(--green);
  font-style: normal;
}

.ds-lbl {
  font-size: 9.5px;
  color: var(--text-tertiary);
}

.dash-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  background: var(--bg-elevated);
  border-radius: 6px;
  margin-bottom: 5px;
  font-size: 11px;
  color: var(--text-secondary);
}

.dash-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-item-text {
  flex: 1;
}

.dash-item-chip {
  font-size: 9.5px;
  padding: 2px 6px;
  border-radius: var(--r-full);
  font-weight: 600;
}

.know-mini-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg-elevated);
  border-radius: var(--r-md);
  margin-bottom: 6px;
}

.kmi-icon {
  font-size: 14px;
}

.kmi-title {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
}

.kmi-tag {
  font-size: 9.5px;
  padding: 2px 7px;
  border-radius: var(--r-full);
  font-weight: 600;
}

.kmi-green {
  background: var(--green-bg);
  color: var(--green);
}

.kmi-purple {
  background: var(--purple-bg);
  color: var(--purple);
}

@media (max-width: 768px) {
  .cta-mockups {
    grid-template-columns: 1fr;
  }
}

/* Desktop: socials stack vertically, links stack vertically */
.footer-socials-icons {
  flex-direction: column;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
}

.footer-cta-wrap {
  display: flex;
}

/* Hidden on desktop, used on mobile to force row break in flex-wrap */
.footer-link-break {
  display: none;
  padding-bottom: -100px;
}

/* <br> elements with this class are hidden on desktop, shown on mobile */
.mobile-only {
  display: none;
}

/* ── CTA Mockup Showcase Marquee ── */
.cta-showcase-wrapper {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin: 56px 0 0;
  left: 50%;
  transform: translateX(-50%);
}

.cta-showcase-wrapper::before,
.cta-showcase-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.cta-showcase-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-base), transparent);
}

.cta-showcase-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-base), transparent);
}

@keyframes showcase-scroll {
  0%   { transform: translateX(0);    }
  100% { transform: translateX(-50%); }
}

.cta-showcase-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: showcase-scroll 30s linear infinite;
}

.cta-showcase-track:hover {
  animation-play-state: paused;
}

.cta-showcase-img {
  height: 320px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0 24px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #769D85;
}

.footer-inner {
  padding-top: 64px;
  padding-bottom: 40px;
  padding-left: 5%;
  padding-right: 5%;
}

.footer-logo {
  height: 100px;
}

.footer-tagline {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #F6F1FA;
  color: #648773;
  font-weight: 700;
  font-size: 19.5px;
  padding: 17px 36px;
  border-radius: 9999px;
  border: 3px solid #A8C2B6;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  background: #769D85;
  color: #ffffff;
  border-color: #769D85;
  box-shadow: 0 8px 28px rgba(118,157,133,0.4);
}

.footer-col-heading {
  color: rgba(255,255,255,.55);
}

.footer-link {
  color: rgba(255,255,255,.75);
}


.footer-link-break {
  display: none;
}
.social-icon {
  border-radius: 6px;
}

.footer-bottom {
  background: #769D85;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.55);
  padding: 20px 24px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* Mobile overrides */


/* ══════════════════════════════════════════
   STICKY CTA
══════════════════════════════════════════ */
#sticky-cta {
  position: fixed;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#sticky-cta .btn-gradient-border {
  box-shadow: 0 0 24px rgba(255,255,255,0.9), 0 0 48px rgba(255,255,255,0.4), 0 8px 32px rgba(118,157,133,0.35);
}

/* ══════════════════════════════════════════
   MOBILE — 390px SINGLE-COLUMN REFLOW
══════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Hero ── */
  #hero {
    height: auto;
    min-height: 100svh;
    border-radius: 0 0 60px 60px;
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 16px;
    gap: 0;
    align-items: center;
  }

  .hero-pill {
    font-size: 11px;
    padding: 5px 12px;
    white-space: nowrap;
    margin-bottom: 10px !important;
  }

  .hero-h1 {
    text-align: center;
    margin-bottom: 12px !important;
  }

  .hero-h1-purple,
  .hero-h1-dark {
    white-space: normal;
    font-size: clamp(32px, 8.5vw, 42px);
  }

  /* Hide subtitle on mobile — !important beats Tailwind's flex utility */
  .hero-sub {
    display: none !important;
  }

  /* Mockup: portrait phone card, centred */
  .hero-mockup-wrapper {
    flex: 0 0 auto;
    width: 62%;
    max-height: 38vh;
    margin: 10px auto 0;
  }

  .hero-mockup-card {
    height: auto;
    aspect-ratio: 9 / 19.5;
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(0,0,0,.20), 0 0 0 1px rgba(228,228,231,.4);
  }

  .hero-mockup-card img {
    object-position: top center;
  }

  /* Gradient fade — visible on mobile, smaller height */
  .hero-gradient-fade {
    display: block;
    height: 55%;
  }

  /* Blob not needed at mobile size */
  .hero-blob {
    display: none;
  }

  /* CTA: static flow, full-width, below mockup */
  .hero-cta-overlay {
    position: static;
    width: 100%;
    padding: 32px 0 0;
    gap: 10px;
  }

  #hero-cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .hero-tagline {
    max-width: 280px;
    text-align: center;
    font-size: 12px;
  }

  /* ── Section labels — centered, 16px on mobile ── */
  .section-label {
    font-size: 16px;
    text-align: center;
  }

  .how-sub,
  .features-sub,
  .int-sub,
  .cta-sub {
    font-size: 14px;
    white-space: normal;
  }

  /* ── How Velora Works ── */
  .how-section {
    padding-top: 32px;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .how-sub {
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 24px;
  }

  .how-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Hide the separate right-column panels — visuals live inside cards on mobile */
  #step-panels {
    display: none;
  }

  .acc-title {
    font-size: 17px;
  }

  /* Clip card corners around inline visual */
  .acc-item {
    overflow: hidden;
  }

  /* Inline step visual — full bleed inside the card, flush at bottom */
  .acc-visual {
    display: block;
    margin: 16px -24px 0;
  }

  .acc-visual img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ── Features ── */
  #features {
    padding: 72px 0;
  }

  .features-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .features-h2 {
    text-align: center;
  }

  .features-sub {
    text-align: left;
    justify-content: flex-start;
  }

  .bento-rows {
    grid-template-rows: auto;
  }

  .bento-card-flex {
    height: auto;
  }

  .bento-img-area {
    min-height: 0;
    height: auto;
    padding: 0 20px 20px;
  }

  .bento-img-overflow-right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    display: block;
  }

  .bento-img-area-center {
    height: auto;
    padding: 0 20px 20px;
  }

  .bento-badge-overlay {
    display: none;
  }

  .bento-split-stretch {
    flex-direction: column;
  }

  .bento-text-col {
    padding: 24px 24px 16px;
  }

  .bento-img-col {
    height: 240px;
  }

  /* ── Integrations ── */
  #integrations {
    padding: 64px 0;
  }

  .int-desktop-marquee {
    display: none;
  }

  .int-mobile-rows {
    display: block;
    margin-top: 40px;
  }

  .int-mobile-row {
    overflow: hidden;
    width: 100%;
    margin-bottom: 16px;
    position: relative;
  }

  .int-mobile-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0;
  }

  .int-row-left {
    animation: logo-scroll 14s linear infinite;
  }

  .int-row-right {
    animation: logo-scroll-reverse 14s linear infinite;
  }

  .int-mobile-track .logo-item {
    padding: 8px 20px;
  }

  .int-mobile-track .logo-item img {
    height: 36px;
  }

  .mobile-only {
    display: inline;
  }

  .int-h2 {
    text-align: center;
  }

  .int-sub {
    text-align: left;
    justify-content: flex-start;
    padding: 0 20px;
  }

  /* ── Social Proof ── */
  #social-proof {
    padding: 72px 0;
  }

  .stats-card {
    border-radius: 28px;
  }

  .testi-card {
    border-radius: 28px;
  }

  .how-h2,
  .social-h2,
  .cta-h2 {
    text-align: center;
  }

  .testi-slider-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    width: 100%;
    left: 0;
    transform: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testi-slider-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testi-slider-wrapper::before,
  .testi-slider-wrapper::after {
    display: none;
  }

  .testi-slider-track {
    animation: none;
    flex-direction: row;
    width: max-content;
    padding: 0 20px 16px;
    gap: 12px;
  }

  .testi-card {
    width: 82vw;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Hide duplicate set on mobile */
  .testi-slider-track .testi-card:nth-child(n+6) {
    display: none;
  }

  /* Dot indicators */
  .testi-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
  }

  .testi-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9B8D8;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .testi-dot.active {
    background: #A883B9;
    transform: scale(1.4);
  }

  /* ── CTA Outro ── */
  #cta-outro {
    padding: 80px 0 72px;
  }

  .cta-sub {
    text-align: left;
    justify-content: flex-start;
    padding: 0 20px;
  }

  /* ── Sticky CTA — full-width bar on mobile ── */
  #sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
  }

  #sticky-cta .btn-gradient-border {
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 18px 24px;
    justify-content: center;
    white-space: nowrap;
    font-size: 15px;
  }

  #sticky-cta .btn-gradient-border::before {
    border-radius: 20px 20px 0 0;
    inset: -2px -2px 0;
  }

  /* Marquee stays on mobile — larger image height, faster scroll */
  .cta-showcase-img {
    height: 280px;
  }

  .cta-showcase-track {
    animation-duration: 16s;
  }

  .cta-tagline-wrapper {
    margin-top: 16px;
  }

  /* ── Footer ── */
  footer {
    max-height: none;
  }

  .footer-inner {
    padding-top: 40px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 0;
  }

  /* Collapse Tailwind mb-10 and gap-10 on the inner grid */
  .footer-inner > div {
    margin-bottom: 0 !important;
    gap: 0 !important;
  }

  /* Brand — centered */
  .footer-brand {
    text-align: center;
    padding-bottom: 40px;
  }

  /* Logo wrapper margin */
  .footer-brand .mb-3 {
    margin-bottom: 4px !important;
  }

  .footer-logo {
    height: 72px;
    margin: 0 auto;
    display: block;
  }

  .footer-tagline {
    font-size: 16px;
    margin-top: 4px;
  }

  /* Hide desktop CTA */
  .footer-cta-wrap {
    display: none;
  }

  /* Links + Socials — stack vertically, full width, each with a top border */
  .footer-links-socials {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.25); /* divider 1 */
  }

  .footer-links-col {
    width: 100%;
    text-align: center;
    padding: 8px 0 20px;
  }

  .footer-col-heading {
    text-align: center;
    margin-bottom: 6px;
    font-size: 14px;
  }

  /* Links — two explicit rows: row 1 = Product/Features/Integrations, row 2 = About/Contact */
  .footer-links-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 20px;
  }

  .footer-link-break {
    display: block;
    width: 100%;
    height: 0;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-socials-col {
    width: 100%;
    text-align: center;
    padding: 8px 0 28px;
    border-top: 1px solid rgba(255,255,255,.25); /* divider 2 */
  }

  .footer-socials-icons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  /* Copyright — lavender background, dark text */
  .footer-bottom {
    background: #EDE8F5;
    border-top: none;
    color: #6C7180;
    padding: 8px 24px;
  }

}
