/* ============================================================
   Wovestory landing — implemented from "Wovestory Landing.dc.html"
   (claude.ai/design project "Social proof section meme")
   ============================================================ */

/* ---------- tokens & base ---------- */
:root {
  --accent: #6D5AE6;
  --accent-strong: #5B48D6;
  --accent-rgb: 109,90,230;
  --grad-a: #8168F0;
  --green: #157F63;
  --ink: #14181F;
  --body: #5A616E;
  --bg: #F7F6FC;
  --bg-tint: #EDEAFA;
  --chip-bg: #EFEBFB;
  --tint-1: #D6CFF6;
  --tint-2: #B3A6F0;
  --tint-3: #8F7CE8;
  --band: #3A2494;
  --band-grad-a: #43299F;
  --band-grad-b: #241566;
  --selection: #DCD4F8;
  --stat-label: #9A8FD0;
  --stat-dir: #7E6BE0;
  --tray-ink: #4A3D8F;
  /* surfaces — one violet undertone everywhere */
  --surface: #F5F4FB;
  --surface-2: #F0EEF9;
  --stripe-a: #ECE9F7;
  --stripe-b: #DED8F0;
  --skel: #E9E6F3;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--selection); }

body.modal-open { overflow: hidden; }

h1, h2, h3, p, ul, figure { margin: 0; }

.btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* ---------- animations ---------- */
@keyframes floatY   { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@keyframes floatY2  { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-7px) } }
@keyframes riseBar  { from { transform: scaleY(.35) } to { transform: scaleY(1) } }
@keyframes pulseRing{ 0% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb),.35) } 70% { box-shadow: 0 0 0 16px rgba(var(--accent-rgb),0) } 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0) } }

/* pure-CSS reveal: visible by default (never blank), animates on scroll where supported */
@keyframes revealUp { from { opacity: 0; transform: translateY(26px) } to { opacity: 1; transform: none } }
[data-reveal] { opacity: 1; }
@supports (animation-timeline: view()) {
  [data-reveal] {
    animation: revealUp .8s linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}

/* ---------- shared bits ---------- */
.chip {
  display: inline-block;
  background: var(--chip-bg);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
}
.chip-dotted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  letter-spacing: .01em;
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.chip-light { background: rgba(255,255,255,.15); color: #EAF0FF; }

.section-head { text-align: center; margin: 0 auto; }
.mw-560 { max-width: 560px; }
.mw-620 { max-width: 620px; }
.mw-680 { max-width: 680px; }

.section-title {
  font-size: clamp(28px, 4.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 18px 0 0;
}
.section-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  margin: 16px auto 0;
  max-width: 580px;
}

/* play triangles (CSS border trick) */
.tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--accent);
}
.tri-brand { border-width: 7px 0 7px 12px; border-left-color: #fff; margin-left: 3px; }
.tri-lg { border-width: 9px 0 9px 15px; margin-left: 3px; }
.tri-md { border-width: 8px 0 8px 13px; margin-left: 3px; }
.tri-sm { border-width: 7px 0 7px 12px; margin-left: 2px; }

.play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
}
.play-circle-sm { width: 40px; height: 40px; box-shadow: 0 8px 18px rgba(0,0,0,.12); }
.play-circle-lg { width: 52px; height: 52px; box-shadow: 0 8px 18px rgba(0,0,0,.16); }

.avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: none;
}
.avatar-28 { width: 28px; height: 28px; font-size: 12px; }
.avatar-36 { width: 36px; height: 36px; font-size: 13px; }
.avatar-48 {
  width: 48px;
  height: 48px;
  font-size: 16px;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.06);
}
.av-blue   { background: #E6E2FA; color: var(--accent); }
.av-gray   { background: #E2E6EC; color: #4B5563; }
.av-green  { background: #DCEFE7; color: #157F63; }
.av-teal   { background: #D9ECEF; color: #2C7A8C; }
.av-purple { background: #E5E3F7; color: #5848C2; }
.av-steel  { background: #DDE8F5; color: #2C5AA0; }
.av-sky    { background: #D9E9F5; color: #4A7BA3; }
.avatar-photo { object-fit: cover; background: none; padding: 0; }

.stars { color: #F2B04A; letter-spacing: 1px; }

.mark {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.mark-no    { background: #DEE3EA; color: #64708A; font-size: 13px; }
.mark-yes   { background: var(--accent); color: #fff; font-size: 12px; }
.mark-glass { background: rgba(255,255,255,.18); color: #fff; font-size: 12px; }

.btn-arrow { font-size: 16px; line-height: 1; }

/* ---------- sticky nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,246,252,.82);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(20,24,31,.07);
  box-shadow: 0 10px 30px -22px rgba(20,24,31,.35);
}
.site-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--grad-a), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(var(--accent-rgb),.30);
}
.brand-name { font-weight: 800; font-size: 20px; letter-spacing: -.02em; }

.nav-actions { display: flex; align-items: center; gap: 4px; }
.navlink {
  display: none;
  color: #4B5563;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 9px 13px;
  border-radius: 9px;
}
.navlink:hover { background: rgba(20,24,31,.05); color: var(--ink); }
@media (min-width: 880px) { .navlink { display: inline-block; } }

.btn-nav {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 999px;
  margin-left: 8px;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(var(--accent-rgb),.28);
}
.btn-nav:hover { background: var(--accent-strong); }

/* ---------- hero ---------- */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 6.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 22px 0 0;
}
.hl { position: relative; white-space: nowrap; }
.hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 12px;
  background: rgba(var(--accent-rgb),.3);
  border-radius: 6px;
  z-index: -1;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--body);
  margin: 22px 0 0;
  max-width: 520px;
}
.brand-strong { color: var(--accent); font-weight: 800; }
.ink-strong { color: var(--ink); font-weight: 700; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #2A2F39;
}
.check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--chip-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 30px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(var(--accent-rgb),.34);
}
.btn-primary:hover { background: var(--accent-strong); }

/* hero visual: mock video-wall collage */
.hero-visual { position: relative; }
.hero-glow {
  position: absolute;
  inset: -24px;
  background:
    radial-gradient(60% 60% at 70% 30%, rgba(var(--accent-rgb),.14), transparent 70%),
    radial-gradient(50% 50% at 20% 80%, rgba(242,176,74,.15), transparent 70%);
  filter: blur(4px);
  z-index: 0;
}
.mock {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 30px 60px -24px rgba(20,24,31,.30);
  border: 1px solid rgba(20,24,31,.05);
}
.mock-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 6px 14px;
}
.mock-dots span { width: 11px; height: 11px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #D7DEEF; }
.mock-dots span:nth-child(2) { background: #E2E6EC; }
.mock-dots span:nth-child(3) { background: #D6E8DF; }

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.clip {
  border-radius: 18px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--stripe-a), var(--stripe-a) 9px, var(--stripe-b) 9px, var(--stripe-b) 18px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* real video testimonials: two portrait clips side by side */
.clip-video {
  margin: 0;
  aspect-ratio: 3/4;
  background: var(--stripe-a);
}
.clip-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.clip-float-a { animation: floatY 6s ease-in-out infinite; }
.clip-float-b { animation: floatY2 5.6s ease-in-out infinite .8s; }
.clip-tag {
  position: absolute;
  left: 9px;
  bottom: 9px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #14181F;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
}
.clip-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #157F63;
}

.note-card {
  border-radius: 18px;
  background: var(--surface-2);
  padding: 13px;
  animation: floatY2 5s ease-in-out infinite .4s;
}
.note-span { grid-column: 1 / -1; }
.note-head { display: flex; gap: 9px; align-items: center; }
.note-meta { display: flex; flex-direction: column; gap: 1px; }
.note-name { margin: 0; font-size: 12.5px; font-weight: 800; color: #14181F; line-height: 1.1; }
.note-role { margin: 0; font-size: 11px; color: #8891A2; line-height: 1.1; }
.note-stars { font-size: 12px; }
.note-head .note-stars { margin-left: auto; }
.note-quote {
  margin: 11px 0 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: #2A2F39;
}

.mock-foot {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-2);
  border-radius: 14px;
  padding: 11px 14px;
}
.mock-foot span { font-size: 13px; font-weight: 700; color: #2A2F39; }

/* ---------- avatar / social-proof strip ---------- */
.social-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px 44px;
}
.eyebrow {
  text-align: center;
  color: #838A96;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.avatar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.rating { display: flex; align-items: center; gap: 8px; margin-left: 6px; }
.rating-stars { font-size: 17px; }
.rating-text { font-size: 14px; font-weight: 700; color: var(--body); }

/* ---------- comparison centerpiece ---------- */
.compare {
  scroll-margin-top: 84px;
  background: linear-gradient(180deg, var(--bg-tint), var(--bg));
  padding: 72px 24px;
}
.compare-inner { max-width: 1080px; margin: 0 auto; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.compare-card {
  background: #FBFCFE;
  border: 1px solid #D5DCE6;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 50px -30px rgba(20,24,31,.30);
}
.compare-card-with {
  border: 2.5px solid var(--accent);
  box-shadow: 0 24px 50px -28px rgba(var(--accent-rgb),.50);
}

/* user-fillable meme slot (drop an <img> inside the figure to fill it) */
.meme-slot {
  width: 100%;
  height: 320px;
  border: 1.5px dashed #C6CDD9;
  border-radius: 16px;
  background: rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 12px;
  color: rgba(0,0,0,.55);
  font: 500 13px/1.3 system-ui, -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}
.meme-slot svg { opacity: .45; }
.meme-slot img,
.meme-slot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.meme-slot:has(img), .meme-slot:has(video) { border-color: transparent; background: none; }
.compare-card-with .meme-slot { border-color: rgba(var(--accent-rgb),.85); }
.compare-card-with .meme-slot:has(img), .compare-card-with .meme-slot:has(video) { border-color: transparent; }

.compare-title {
  margin: 18px 0 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--ink);
}
.compare-title-with { color: var(--accent); }

.stat {
  margin-top: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border: 1px solid #DEE3EA;
}
.stat-label { margin: 0; font-size: 12px; font-weight: 700; color: #8A93A3; }
.stat-num { margin: 4px 0 0; font-size: 34px; font-weight: 800; color: #64708A; line-height: 1; }
.stat-dir { font-size: 15px; color: #8A93A3; }

.bars { display: flex; align-items: flex-end; gap: 5px; height: 46px; }
.bars span { width: 9px; background: #D9DEE7; border-radius: 3px; }
.bars .bar-last { background: #C6CDD9; }

.stat-up { border-color: var(--tint-1); animation: pulseRing 2.6s ease-out infinite; }
.stat-up .stat-label { color: var(--stat-label); }
.stat-up .stat-num { color: var(--accent); }
.stat-up .stat-dir { color: var(--stat-dir); }

.bars-up span { transform-origin: bottom; animation: riseBar 1.4s ease-in-out infinite alternate; }
.bars-up span:nth-child(1) { background: var(--tint-1); }
.bars-up span:nth-child(2) { background: var(--tint-2); animation-delay: .2s; }
.bars-up span:nth-child(3) { background: var(--tint-3); animation-delay: .4s; }
.bars-up span:nth-child(4) { background: var(--accent); animation-delay: .6s; }

.compare-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
}
.compare-list-no li { color: #586173; }
.compare-list-yes li { color: var(--ink); }

/* ---------- how it works ---------- */
.how {
  scroll-margin-top: 84px;
  background-color: var(--band);
  background-image: linear-gradient(160deg, var(--band-grad-a), var(--band-grad-b));
  color: #EAF0FF;
  padding: 78px 24px;
  border-radius: 36px;
  margin: 0 16px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 34px 72px -34px rgba(14,24,80,.6);
}
.how-inner { max-width: 1080px; margin: 0 auto; }
.how .section-title { color: #fff; }
.how-sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(234,240,255,.75);
  margin: 14px auto 0;
  max-width: 540px;
}

/* vertical numbered timeline — a connecting line through the badges
   carries the 1→4 sequence, so no per-card arrows and full-width text */
.steps-timeline {
  list-style: none;
  padding: 0;
  max-width: 880px;
  margin: 48px auto 0;
}
.tstep {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding-bottom: 22px;
}
.tstep:last-child { padding-bottom: 0; }
/* the line: from this badge's center down to the next badge (hidden behind it) */
.tstep:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 26px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.14));
  z-index: 0;
}
.tstep-badge {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 10px 22px -4px rgba(var(--accent-rgb),.6);
}
.tstep-card {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(20,24,31,.06);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 22px 46px -26px rgba(12,22,70,.5);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: center;
}
.tstep-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.01em; margin: 0; }
.tstep-card p { font-size: 15px; line-height: 1.55; color: var(--body); margin: 8px 0 0; }

/* ----- per-step animated mini-visuals ----- */
.viz {
  background: var(--surface);
  border: 1px solid rgba(20,24,31,.05);
  border-radius: 14px;
  padding: 14px;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
}

/* step 1 — sources flowing into your library */
.vz-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid rgba(20,24,31,.07);
  border-radius: 12px;
  padding: 8px 11px;
  box-shadow: 0 6px 14px -10px rgba(20,24,31,.35);
  animation: vzChip 4.2s ease-in-out infinite;
}
.vz-chip:nth-child(2) { animation-delay: -2.8s; }
.vz-chip:nth-child(3) { animation-delay: -1.4s; }
@keyframes vzChip {
  0%       { opacity: 0; transform: translateX(-22px); }
  10%      { opacity: 1; transform: none; }
  86%      { opacity: 1; transform: none; }
  94%,100% { opacity: 0; transform: translateX(-22px); }
}
.vz-src {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  flex: none;
}
.vz-lines { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.vz-lines i { display: block; height: 5px; border-radius: 3px; background: var(--skel); }
.vz-lines i:last-child { width: 62%; }
.vz-chipstars { color: #F2B04A; font-size: 9px; letter-spacing: 1px; flex: none; }
.vz-tray {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--chip-bg);
  border: 1px dashed rgba(var(--accent-rgb),.4);
  border-radius: 11px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--tray-ink);
}
.vz-tray b { color: var(--accent); }

/* step 2 — recording + live captioning */
.vz-recrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #D14343;
}
.vz-recdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #E5484D;
  animation: vzBlink 1.2s ease-in-out infinite;
}
@keyframes vzBlink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }
.vz-eq { display: flex; align-items: flex-end; gap: 4px; height: 46px; }
.vz-eq i {
  flex: 1;
  max-width: 12px;
  border-radius: 3px;
  background: var(--tint-3);
  transform-origin: bottom;
  animation: riseBar 1.1s ease-in-out infinite alternate;
}
.vz-eq i:nth-child(1) { height: 42%; background: var(--tint-1); }
.vz-eq i:nth-child(2) { height: 72%; animation-delay: .12s; }
.vz-eq i:nth-child(3) { height: 54%; background: var(--accent); animation-delay: .24s; }
.vz-eq i:nth-child(4) { height: 92%; animation-delay: .36s; }
.vz-eq i:nth-child(5) { height: 64%; background: var(--tint-1); animation-delay: .48s; }
.vz-eq i:nth-child(6) { height: 82%; background: var(--accent); animation-delay: .6s; }
.vz-eq i:nth-child(7) { height: 48%; animation-delay: .72s; }
.vz-typedrow { display: flex; align-items: center; gap: 8px; }
.vz-typelabel { font-size: 11px; font-weight: 700; color: #8A93A3; flex: none; }
.vz-typeline {
  height: 6px;
  border-radius: 3px;
  background: var(--stripe-b);
  flex: 1;
  position: relative;
  overflow: hidden;
}
.vz-typeline::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 30%;
  border-radius: 3px;
  background: var(--accent);
  animation: vzType 2.8s ease-in-out infinite alternate;
}
@keyframes vzType { from { width: 14%; } to { width: 96%; } }

/* step 3 — sentiment tags cycling + chart rising */
.vz-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.vz-pill {
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(20,24,31,.08);
  color: #5A616E;
  animation: vzPill 3.9s ease-in-out infinite;
}
.vz-p1 { animation-delay: 0s; }
.vz-p2 { animation-delay: -2.6s; }
.vz-p3 { animation-delay: -1.3s; }
@keyframes vzPill {
  0%, 26%   { background: var(--accent); border-color: var(--accent); color: #fff; }
  34%, 100% { background: #fff; border-color: rgba(20,24,31,.08); color: #5A616E; }
}
.vz-bars { display: flex; align-items: flex-end; gap: 6px; height: 54px; }
.vz-bars i {
  flex: 1;
  max-width: 26px;
  border-radius: 4px;
  transform-origin: bottom;
  animation: riseBar 1.4s ease-in-out infinite alternate;
}
.vz-bars i:nth-child(1) { height: 36%; background: var(--tint-1); }
.vz-bars i:nth-child(2) { height: 60%; background: var(--tint-2); animation-delay: .2s; }
.vz-bars i:nth-child(3) { height: 78%; background: var(--tint-3); animation-delay: .4s; }
.vz-bars i:nth-child(4) { height: 100%; background: var(--accent); animation-delay: .6s; }

/* step 4 — paste the snippet, wall pops in */
.vz-code {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #14181F;
  color: #C2BAEE;
  border-radius: 11px;
  padding: 10px 13px;
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
}
.vz-codetag { color: #6EE7B7; font-weight: 700; }
.vz-caret {
  width: 7px;
  height: 13px;
  background: #EAF0FF;
  animation: vzBlink 1s steps(1) infinite;
}
.vz-minwall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vz-minwall i {
  display: block;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, var(--stripe-a), var(--stripe-a) 7px, var(--stripe-b) 7px, var(--stripe-b) 14px);
  animation: vzPop 3.9s ease-in-out infinite;
}
.vz-minwall i:nth-child(2) { animation-delay: -2.6s; }
.vz-minwall i:nth-child(3) { animation-delay: -1.3s; }
@keyframes vzPop {
  0%, 6%   { opacity: 0; transform: scale(.7); }
  14%      { opacity: 1; transform: scale(1); }
  86%      { opacity: 1; transform: scale(1); }
  94%,100% { opacity: 0; transform: scale(.7); }
}

/* ---------- integrations ---------- */
.integrations {
  scroll-margin-top: 84px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 24px 20px;
}
.int-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.int-card {
  background: #fff;
  border: 1px solid rgba(20,24,31,.08);
  border-radius: 16px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 24px -20px rgba(20,24,31,.35);
}
.logo-webflow     { font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: #146EF5; font-style: italic; }
.logo-shopify     { font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--ink); }
.logo-carrd       { font-weight: 800; font-size: 22px; letter-spacing: -.01em; color: var(--ink); }
.logo-wordpress   { font-weight: 700; font-size: 20px; letter-spacing: .02em; color: var(--ink); font-family: Georgia, serif; }
.logo-kajabi      { font-weight: 800; font-size: 22px; letter-spacing: .04em; color: var(--ink); }
.logo-bubble      { font-weight: 800; font-size: 23px; letter-spacing: -.02em; color: var(--ink); }
.logo-framer      { font-weight: 800; font-size: 22px; letter-spacing: -.01em; color: var(--ink); }
.logo-squarespace { font-weight: 700; font-size: 16px; letter-spacing: .06em; color: var(--ink); }

.int-more { text-align: center; margin-top: 22px; }
.int-more a {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(var(--accent-rgb),.3);
  padding-bottom: 1px;
}
.int-more a:hover { border-bottom-color: var(--accent); }

/* ---------- who it's for ---------- */
.whofor {
  scroll-margin-top: 84px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 24px 20px;
}
.icp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.icp-card {
  grid-column: span 2;
  background: #fff;
  border: 1px solid rgba(20,24,31,.06);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 30px -22px rgba(20,24,31,.4);
}
.icp-card:nth-child(4) { grid-column: 2/4; }
.icp-card:nth-child(5) { grid-column: 4/6; }
.icp-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.icp-card p { font-size: 15px; line-height: 1.55; color: var(--body); margin: 10px 0 0; }

.icp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icp-icon-blue { background: var(--chip-bg); }
.icp-icon-amber { background: var(--chip-bg); }

.icp-icon-lines { flex-direction: column; gap: 4px; }
.icp-icon-lines span { height: 3px; border-radius: 2px; background: var(--accent); }

.icp-ring {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icp-ring-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.icp-icon-book { gap: 3px; }
.icp-page-l { width: 11px; height: 16px; border-radius: 3px 0 0 3px; background: var(--accent); }
.icp-page-r { width: 11px; height: 16px; border-radius: 0 3px 3px 0; background: var(--accent); opacity: .55; }

.icp-people { display: flex; }
.icp-person { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); }
.icp-person + .icp-person { margin-left: -5px; }
.icp-person-side { opacity: .55; }

/* ---------- wall of love ---------- */
.wall {
  scroll-margin-top: 84px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
}
.wall-head { margin-bottom: 44px; }
.wall-note { font-size: 15px; color: #949AA6; margin: 12px 0 0; }

/* gallery of real walls customers built — each framed like an embedded widget */
.walls-gallery { position: relative; }
/* varied-height screenshots flow as a masonry, feature sits full-width on top */
.wall-shot.feature { margin: 0 0 22px; }
.walls-masonry { columns: 2; column-gap: 22px; }
.walls-masonry .wall-shot { break-inside: avoid; margin: 0 0 22px; }
/* soft brand glow behind the gallery for cohesion with the site */
.walls-gallery::before {
  content: "";
  position: absolute;
  inset: -5% -4%;
  z-index: -1;
  background:
    radial-gradient(46% 40% at 22% 12%, rgba(var(--accent-rgb),.12), transparent 70%),
    radial-gradient(44% 44% at 82% 88%, rgba(242,176,74,.11), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.wall-shot {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(20,24,31,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px -30px rgba(20,24,31,.5);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wall-shot:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 66px -30px rgba(20,24,31,.55);
}
.wall-shot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(20,24,31,.06);
  background: linear-gradient(#fff, #FBFCFE);
}
.wall-shot-bar span { width: 10px; height: 10px; border-radius: 50%; }
.wall-shot-bar span:nth-child(1) { background: #D7DEEF; }
.wall-shot-bar span:nth-child(2) { background: #E2E6EC; }
.wall-shot-bar span:nth-child(3) { background: #D6E8DF; }
.wall-shot img {
  display: block;
  width: 100%;
  height: auto;
  /* gentle normalization so screenshots read as one set with the site */
  filter: saturate(1.04) contrast(1.02);
}
/* dark-themed walls: lift the blacks a touch so they sit calmer on the cream page */
.wall-shot.is-dark img { filter: saturate(1.03) brightness(1.06); }

/* ---------- final CTA band ---------- */
.cta { padding: 20px 16px 90px; }
.cta-card {
  max-width: 1080px;
  margin: 0 auto;
  /* same dark treatment as the how-band — one dark system across the page */
  background-color: var(--band);
  background-image: linear-gradient(160deg, var(--band-grad-a), var(--band-grad-b));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 34px 72px -32px rgba(14,24,80,.55);
}
.cta-title {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
  text-wrap: balance;
  color: #fff;
}
.cta-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  gap: 14px 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
}
.cta-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.btn-invert {
  background: #fff;
  color: var(--accent);
  font-weight: 800;
  font-size: 18px;
  padding: 17px 38px;
  border-radius: 999px;
  box-shadow: 0 16px 36px -10px rgba(8,14,50,.5);
}
.btn-invert:hover { background: var(--chip-bg); }
.btn-invert-sm {
  font-size: 14.5px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 12px 26px -8px rgba(8,14,50,.5);
}
.btn-invert-sm .btn-arrow { font-size: 15px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--band-grad-b);
  color: #EAF0FF;
  padding: 60px 24px 32px;
}
.foot-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: 40px 32px;
}
.foot-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.foot-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 17px;
}
.foot-name { font-weight: 800; font-size: 19px; }
.foot-brand > p {
  margin: 16px 0 0;
  max-width: 300px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(234,240,255,.72);
}
.foot-rating { display: flex; align-items: center; gap: 8px; margin-top: 18px; }
.foot-stars { font-size: 15px; }
.foot-rating span:last-child { font-size: 13.5px; font-weight: 600; color: rgba(234,240,255,.8); }

.foot-label {
  margin: 0 0 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(234,240,255,.55);
}
.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot-links a {
  color: rgba(234,240,255,.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
}
.foot-links a:hover { color: #fff; }

.foot-cta > p:not(.foot-label) {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(234,240,255,.72);
}

.foot-bottom {
  max-width: 1180px;
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.foot-bottom p { margin: 0; color: rgba(234,240,255,.6); font-size: 13px; }
.foot-bottom a {
  color: rgba(234,240,255,.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.foot-bottom a:hover { color: #fff; }

/* ---------- demo modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20,24,31,.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }

.modal {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.4);
  position: relative;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #EDEFF3;
  color: var(--body);
  font-size: 18px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.modal h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.modal-sub { font-size: 15px; color: var(--body); margin: 8px 0 0; }

.modal form {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2A2F39;
}
.field .opt { font-weight: 500; color: #9AA0AC; }
.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border-radius: 13px;
  border: 1.5px solid #DDE1E8;
  background: #FAFBFC;
  color: var(--ink);
  outline: none;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.14);
}
.btn-submit {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 16.5px;
  padding: 15px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(var(--accent-rgb),.32);
  margin-top: 4px;
}
.btn-submit:hover { background: var(--accent-strong); }
.form-note { text-align: center; font-size: 12.5px; color: #9AA0AC; margin: 2px 0 0; }

.modal-success { text-align: center; padding: 14px 4px; }
.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E3F1EB;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  margin: 0 auto 18px;
}
.modal-success h3 { letter-spacing: normal; }
.modal-success p { font-size: 15.5px; line-height: 1.55; color: var(--body); margin: 12px 0 0; }
.btn-book {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
}
.btn-book:hover { background: var(--accent-strong); }
.booking-note {
  font-size: 12px;
  color: #A9AFBB;
  margin: 14px 0 0;
  font-family: ui-monospace, monospace;
  overflow-wrap: anywhere;
}

/* ---------- responsive (matches the design's breakpoints) ---------- */
@media (max-width: 1000px) {
  .int-grid { grid-template-columns: 1fr; }
  .icp-grid { grid-template-columns: 1fr 1fr; }
  .icp-grid > .icp-card { grid-column: auto; }
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .walls-masonry { columns: 1; }
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .icp-grid { grid-template-columns: 1fr; }
  .tstep-card { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 420px) {
  .site-nav { padding-inline: 16px; }
  .btn-nav { padding: 11px 15px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
