/* ============================================================
   Flowomatic Funnel — PRO polish layer (loaded on top of site.css)
   V2: visual depth | V3: social proof | V4: motion | V5: polish
   ============================================================ */

/* ---------- Extra tokens ---------- */
:root {
  --aurora-1: rgba(99, 102, 241, 0.28);
  --aurora-2: rgba(139, 92, 246, 0.22);
  --aurora-3: rgba(217, 70, 239, 0.16);
  --primary-color:#c9821f;
  --secondary-color:#2563EB;
  --glow-indigo: 0 0 80px rgba(99, 102, 241, 0.35);
  --glow-violet: 0 0 80px rgba(139, 92, 246, 0.3);
  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Reading progress bar ---------- */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient);
  z-index: 100;
  transition: width 120ms linear;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

/* ---------- Hero aurora + grid ---------- */
.hero {
  isolation: isolate;
}
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-aurora::before,
.hero-aurora::after,
.hero-aurora > .blob {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.85;
  animation: drift 22s ease-in-out infinite alternate;
}
.hero-aurora::before {
  width: 620px;
  height: 620px;
  top: -180px;
  right: -160px;
  background: radial-gradient(
    circle at 50% 50%,
    var(--aurora-1),
    transparent 65%
  );
}
.hero-aurora::after {
  width: 540px;
  height: 540px;
  bottom: -200px;
  left: -120px;
  background: radial-gradient(
    circle at 50% 50%,
    var(--aurora-2),
    transparent 65%
  );
  animation-delay: -8s;
}
.hero-aurora > .blob {
  width: 460px;
  height: 460px;
  top: 30%;
  left: 38%;
  background: radial-gradient(
    circle at 50% 50%,
    var(--aurora-3),
    transparent 70%
  );
  animation-delay: -14s;
}
@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(40px, -30px, 0) scale(1.08);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.pattern-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(15, 16, 32, 0.06) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
}
section.dark .pattern-grid,
section.gradient .pattern-grid {
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 0
  );
}

/* ---------- Stacked hero mock with floating shards ---------- */
.mock-stage {
  position: relative;
  perspective: 1400px;
}
.mock-stage .mock-main {
  position: relative;
  z-index: 3;
  transform: rotateY(-3deg) rotateX(2deg);
  transform-origin: center;
  transition: transform 400ms ease;
}
.mock-stage:hover .mock-main {
  transform: rotateY(0) rotateX(0);
}
.mock-stage .mock-main::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  z-index: -1;
  filter: blur(28px);
  opacity: 0.55;
}

.shard {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  font-size: 12px;
  transition: transform 400ms ease;
}
.shard-1 {
  top: -28px;
  left: -36px;
  width: 200px;
  transform: rotate(-6deg);
}
.shard-2 {
  bottom: -34px;
  right: -28px;
  width: 220px;
  transform: rotate(5deg);
}
.shard .shard-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.shard .shard-head .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.shard .shard-head .dot.purple {
  background: var(--violet-500);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.18);
}
.shard .shard-val {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.shard .shard-sub {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 4px;
}

/* ---------- Model providers strip ---------- */
.model-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 30px 0;
}
.model-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}
.model-strip .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.model-chip {
    align-items: center;
    gap: 8px;
    padding: 8px 50px 8px 19px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-2);
    background: #fff;
    transition: all 200ms ease;
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: 100%;
}
.model-chip img{
  width: 25px;
}
.model-chip:hover {
  border-color: var(--indigo-300);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.model-chip .glyph {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}
.glyph.openai {
  background: #10a37f;
}
.glyph.anthropic {
  background: #cc785c;
}
.glyph.google {
  background: linear-gradient(
    135deg,
    #4285f4,
    #ea4335 50%,
    #fbbc04 50%,
    #34a853
  );
}
.glyph.deepseek {
  background: #4d6bfe;
}
.glyph.grok {
  background: #000;
}
.glyph.meta {
  background: #0866ff;
}
.glyph.cohere {
  background: #ff7759;
}

/* ---------- Stat band — V2 icon refresh ---------- */
.stat-band {
  position: relative;
}

.stat {
  position: relative;
  padding: 8px 16px;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--line);
}
.stat .stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo-600);
}
.stat .stat-icon svg {
  width: 18px;
  height: 18px;
}
section.dark .stat .stat-icon {
  background: rgba(255, 255, 255, 0.04);
  color: var(--indigo-300);
}

/* ---------- Eyebrow with icon glyph ---------- */
.eyebrow.has-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* .eyebrow.has-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--indigo-100);
  border-radius: 4px;
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8h10M8 3v10' stroke='%234f46e5' stroke-width='2' stroke-linecap='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
} */
.eyebrow.dark.has-icon::before {
  background: rgba(139, 92, 246, 0.18);
}

/* ---------- Section dividers ---------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.section-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--bg);
}

/* ---------- "As featured in" logo strip (V3) ---------- */
.featured-strip {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.featured-strip .featured-label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.featured-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.78;
}
.featured-row .fl-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  font-size: 16px;
  transition: opacity 200ms ease, transform 200ms ease;
  width: 170px;
}
.featured-row .fl-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.featured-row .fl-item .pill {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 800;
}
.fl-jvzoo .pill {
  background: #ff5e1f;
}
.fl-warrior .pill {
  background: #1e88e5;
}
.fl-ph .pill {
  background: #da552f;
}
.fl-appsumo .pill {
  background: #ffd200;
  color: #1a1a1a;
}
.fl-beta .pill {
  background: #5e35b1;
}

/* ---------- Testimonials (V3) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo-200);
}
.testimonial-card .quote-mark {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 48px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--indigo-200);
  font-weight: 700;
}
.testimonial-card .stars {
    display: flex;
    gap: 2px;
    color: var(--warning);
    margin-bottom: 10px;
    font-size: 26px;
}
.testimonial-card .result-pill {
  display: inline-block;
  background: var(--success-bg);
  color: #065f46;
      font-size: 14px;
    font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.testimonial-card .quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.testimonial-card .who .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.testimonial-card .who .name {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.testimonial-card .who .role {
  font-size: 13px;
  color: var(--ink-mute);
}

/* ---------- Founder operator block (V3) ---------- */
.founder-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.founder-block .portrait {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.founder-block .portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.founder-block .who {
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-top: 4px;
}
.founder-block .role {
  font-size: 13px;
  color: var(--indigo-600);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.founder-block .pitch {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 8px 0 16px;
}
.founder-block .pitch::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 0.4;
  color: var(--indigo-200);
  vertical-align: -18px;
  margin-right: 6px;
}
.founder-block .sig {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
.founder-block .sig-text {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}

/* ---------- "Inside the dashboard" hero strip (V3) ---------- */
.inside-strip {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.inside-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(99, 102, 241, 0.25),
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(139, 92, 246, 0.22),
      transparent 50%
    );
  z-index: 0;
}
.inside-strip .container {
  position: relative;
  z-index: 2;
}
.inside-strip .ins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.inside-strip h2 {
  color: #fff;
}
.inside-strip .lead {
  color: var(--dark-ink-2);
}
.inside-strip .frame {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.inside-strip .frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  z-index: -1;
  filter: blur(40px);
  opacity: 0.4;
}
.inside-strip .frame-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.02);
}
.inside-strip .frame-head .dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.inside-strip .frame-head .dots span:nth-child(1) {
  background: #ff5f57;
  margin-right: 4px;
}
.inside-strip .frame-head .dots span:nth-child(2) {
  background: #febc2e;
  margin-right: 4px;
}
.inside-strip .frame-head .dots span:nth-child(3) {
  background: #28c840;
  margin-right: 12px;
}
.inside-strip .frame-head .url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dark-ink-3);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 6px;
}
.inside-strip .frame-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
}
.inside-strip .ins-sidebar {
  background: rgba(0, 0, 0, 0.25);
  padding: 16px 12px;
  border-right: 1px solid var(--dark-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.inside-strip .ins-sidebar .nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--dark-ink-2);
  transition: background 150ms ease;
}
.inside-strip .ins-sidebar .nav.active {
  background: rgba(99, 102, 241, 0.15);
  color: #fff;
  font-weight: 600;
}
.inside-strip .ins-sidebar .nav .ico {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.inside-strip .ins-sidebar .nav.active .ico {
  background: var(--gradient);
}
.inside-strip .ins-sidebar .group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-ink-3);
  padding: 14px 10px 6px;
}
.inside-strip .ins-main {
  padding: 22px 24px;
  color: var(--dark-ink);
}
.inside-strip .ins-main h4 {
  font-size: 15px;
  color: #fff;
  margin: 0 0 14px;
}
.inside-strip .ins-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.inside-strip .ins-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
  color: var(--dark-ink-2);
}
.inside-strip .ins-card .num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.inside-strip .ins-card.brand {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.18),
    rgba(139, 92, 246, 0.12)
  );
  border-color: rgba(99, 102, 241, 0.35);
}
.inside-strip .ins-card.brand .num {
  background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inside-strip .ins-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 12px;
}
.inside-strip .ins-progress-row .name {
  color: var(--dark-ink);
  flex: 0 0 130px;
}
.inside-strip .ins-progress-row .bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.inside-strip .ins-progress-row .bar > span {
  display: block;
  height: 100%;
  background: var(--gradient);
  border-radius: 999px;
}
.inside-strip .ins-progress-row .pct {
  color: var(--dark-ink-3);
  font-family: var(--font-mono);
  flex: 0 0 36px;
  text-align: right;
}

/* ---------- Bonus thumbnails (V3) ---------- */
.bonus-card .bonus-thumb {
    position: relative;
    border-radius: 0 0 0 0;
    background: var(--gradient);
    text-align: center;
    padding: 40px 30px 0px;
}

.bonus-card .bonus-thumb .thumb-tag {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 0 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.bonus-card .bonus-thumb .corner-num {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 4px;
  z-index: 2;
}

/* ---------- Trust ribbon (V5) ---------- */
.trust-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin: 24px auto;
  max-width: 720px;
}
.trust-ribbon .ti {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
}
.trust-ribbon .pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}
.pay.visa {
  background: #1a1f71;
}
.pay.mc {
  background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%);
}
.pay.amex {
  background: #006fcf;
}
.pay.pp {
  background: #003087;
}
.pay.apay {
  background: #000;
}

/* ---------- Animated chain runner (V4) ---------- */
.mock-row.active .pill.run {
  position: relative;
  overflow: hidden;
}
.mock-row.active .pill.run::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.mock-row.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -2px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  animation: run-line 2.4s ease-in-out infinite;
  transform-origin: left center;
}
.mock-row {
  position: relative;
}
@keyframes run-line {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

/* ---------- Stat band counter animation (V4) ---------- */
.stat .num[data-counter] {
  display: inline-block;
}

/* ---------- Sticky right-rail cart preview (V4) ---------- */
@media (min-width: 1280px) {
  .rail-cart {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    z-index: 30;
    background: #fff;
    border: 1px solid var(--indigo-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease, transform 240ms ease;
  }
  .rail-cart.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
  }
  .rail-cart.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(20px);
  }
  .rail-cart .rc-head {
    background: var(--gradient);
    color: #fff;
    padding: 12px 14px;
    text-align: center;
  }
  .rail-cart .rc-head .tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.92;
  }
  .rail-cart .rc-head .price {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .rail-cart .rc-head .price s {
    opacity: 0.55;
    font-size: 14px;
    margin-right: 6px;
  }
  .rail-cart .rc-body {
    padding: 14px;
  }
  .rail-cart .rc-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 12.5px;
    color: var(--ink-2);
  }
  .rail-cart .rc-body li {
    padding: 4px 0 4px 18px;
    position: relative;
  }
  .rail-cart .rc-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 800;
  }
  .rail-cart .rc-cta {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: var(--gradient);
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
  }
  .rail-cart .rc-timer {
    text-align: center;
    font-size: 11px;
    color: var(--ink-mute);
    margin-top: 10px;
    font-family: var(--font-mono);
    font-weight: 700;
  }
  .rail-cart .rc-timer .red {
    color: var(--danger);
  }
}
@media (max-width: 1279px) {
  .rail-cart {
    display: none;
  }
}

/* ---------- Subtle entrance animations (V4) ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Mobile refinements (V5) ---------- */
@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .founder-block {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    text-align: center;
  }
  .founder-block .portrait {
    width: 140px;
    height: 140px;
    font-size: 48px;
  }
  .inside-strip .ins-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .inside-strip .frame-body {
    grid-template-columns: 1fr;
  }
  .inside-strip .ins-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
    padding: 12px;
  }
  .inside-strip .ins-sidebar .group-label {
    display: none;
  }
  .inside-strip .ins-cards {
    grid-template-columns: 1fr 1fr;
  }
  .model-strip-inner {
    gap: 14px;
  }
  .featured-row {
    gap: 24px;
  }
  .shard-1,
  .shard-2 {
    display: none;
  }
  .mock-stage .mock-main {
    transform: none;
  }
}
@media (max-width: 620px) {
  .featured-row .fl-item {
    font-size: 13px;
  }
}

/* ---------- Print pass (V5) ---------- */
@media print {
  .sticky-cta,
  .rail-cart,
  .urgency-strip,
  .masthead {
    display: none !important;
  }
  .hero-aurora,
  .pattern-grid {
    display: none !important;
  }
  section {
    padding: 28px 0 !important;
  }
}

/* ---------- Reduced motion (V5) ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-aurora::before,
  .hero-aurora::after,
  .hero-aurora > .blob,
  .mock-row.active::after,
  .mock-row.active .pill.run::after,
  .reveal-up,
  .reveal-scale,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
  .reveal-up,
  .reveal-scale,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   V6 — HEAVY REDESIGN: enterprise-grade visual upgrades
   Triggered by getaiagents.in/v2/live reference.
   ============================================================ */

/* ---------- Mega-CTA (oversized, glowing, with arrow + sub-line) ---------- */
.btn-mega {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 44px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-radius: 18px;
 background: var(--secondary-color);
  color: #fff !important;
  border: 0;
  text-align: center;
  white-space: nowrap;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
  text-decoration: none;
}
.btn-mega::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  /* background: var(--gradient); */
  filter: blur(18px);
  opacity: 0.55;
  z-index: -1;
  transition: opacity 200ms ease;
}
.btn-mega:hover {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.06);
  box-shadow: 0 22px 60px rgba(99, 102, 241, 0.55),
    0 6px 18px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-mega:hover::before {
  opacity: 0.75;
}
.btn-mega .arrow {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}
.btn-mega:hover .arrow {
  transform: translateX(4px);
}
.btn-mega .arrow svg {
  width: 14px;
  height: 14px;
}
.btn-mega-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.btn-mega-sub {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-mega-sub .dot {
  width: 4px;
  height: 4px;
  background: var(--ink-mute);
  border-radius: 50%;
}
section.dark .btn-mega-sub,
section.gradient .btn-mega-sub {
  color: var(--dark-ink-3);
}
section.dark .btn-mega-sub .dot,
section.gradient .btn-mega-sub .dot {
  background: var(--dark-ink-3);
}

/* ---------- Hero V2: bigger, more dominant ---------- */
.hero {
  padding: 88px 0 100px;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero .lead {
  font-size: 20px;
  line-height: 1.5;
  max-width: 600px;
}
.hero-grid {
  gap: 72px;
}

/* ---------- Rich dashboard mock (replaces flat .mock) ---------- */
.dash-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(15, 16, 32, 0.25),
    0 12px 40px -10px rgba(99, 102, 241, 0.18);
  position: relative;
}
.dash-frame.dark {
  background: var(--dark-card);
  border-color: var(--dark-line);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55),
    0 12px 40px -10px rgba(99, 102, 241, 0.3);
}
.dash-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: 18px;
  z-index: -1;
  filter: blur(34px);
  opacity: 0.5;
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.dash-frame.dark .dash-bar {
  background: rgba(255, 255, 255, 0.02);
  border-bottom-color: var(--dark-line);
}
.dash-bar .dots {
  display: inline-flex;
  gap: 6px;
}
.dash-bar .dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.dash-bar .dots span:nth-child(1) {
  background: #ff5f57;
}
.dash-bar .dots span:nth-child(2) {
  background: #febc2e;
}
.dash-bar .dots span:nth-child(3) {
  background: #28c840;
}
.dash-bar .url {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 8px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dash-frame.dark .dash-bar .url {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--dark-line);
  color: var(--dark-ink-3);
}
.dash-bar .url::before {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 7V5a4 4 0 118 0v2M3.5 7h9v6.5a1.5 1.5 0 01-1.5 1.5H5A1.5 1.5 0 013.5 13.5z' stroke='%2310b981' stroke-width='1.4'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.dash-bar .right {
  margin-left: auto;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.dash-bar .credit-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--gradient-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--indigo-700);
}
.dash-frame.dark .dash-bar .credit-pill {
  background: rgba(99, 102, 241, 0.15);
  color: #c7d2fe;
}
.dash-bar .avatar-mini {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.dash-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 460px;
}
.dash-frame.compact .dash-body {
  min-height: 380px;
}
/* When there is no sidebar, dash-main takes the full width */
.dash-body:not(:has(.dash-side)) {
  grid-template-columns: 1fr;
}
.dash-body.no-side {
  grid-template-columns: 1fr;
}
.dash-frame .dash-main {
  min-width: 0;
} /* prevent grid blowout from long inline tokens */
.dash-side {
  background: var(--bg-soft);
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
}
.dash-frame.dark .dash-side {
  background: rgba(0, 0, 0, 0.25);
  border-right-color: var(--dark-line);
  color: var(--dark-ink-2);
}
.dash-side .grp {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 14px 8px 6px;
}
.dash-side .nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink-2);
  transition: background 150ms ease;
}
.dash-frame.dark .dash-side .nav-item {
  color: var(--dark-ink-2);
}
.dash-side .nav-item:hover {
  background: rgba(99, 102, 241, 0.07);
}
.dash-side .nav-item.active {
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}
.dash-side .nav-item .ico {
  width: 16px;
  height: 16px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 4px;
  flex-shrink: 0;
}
.dash-side .nav-item.active .ico {
  background: rgba(255, 255, 255, 0.25);
}
.dash-frame.dark .dash-side .nav-item .ico {
  background: rgba(255, 255, 255, 0.06);
}

.dash-main {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dash-frame.dark .dash-main {
  color: var(--dark-ink);
}
.dash-main h5 {
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--ink);
}
.dash-frame.dark .dash-main h5 {
  color: #fff;
}
.dash-main .sub {
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 0;
}
.dash-frame.dark .dash-main .sub {
  color: var(--dark-ink-3);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-stat {
  padding: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.dash-frame.dark .dash-stat {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--dark-line);
}
.dash-stat .lbl {
  font-size: 10.5px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.dash-stat .val {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.dash-frame.dark .dash-stat .val {
  color: #fff;
}
.dash-stat.brand .val {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dash-stat .trend {
  font-size: 11px;
  color: var(--success);
  font-weight: 700;
  margin-top: 2px;
}

.dash-chart {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}
.dash-frame.dark .dash-chart {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--dark-line);
}
.dash-chart .ch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dash-chart .ch-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.dash-frame.dark .dash-chart .ch-title {
  color: #fff;
}
.dash-chart .ch-legend {
  display: inline-flex;
  gap: 14px;
  font-size: 11px;
  color: var(--ink-mute);
}
.dash-chart .ch-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dash-chart .ch-legend span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--indigo-500);
}
.dash-chart .ch-legend span:nth-child(2)::before {
  background: var(--violet-500);
}
.dash-chart svg.spark {
  width: 100%;
  height: 70px;
  display: block;
}

.dash-list .li {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 4px;
}
.dash-frame.dark .dash-list .li {
  background: rgba(255, 255, 255, 0.04);
  color: var(--dark-ink-2);
}
.dash-list .li .step-n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dash-list .li .model {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--indigo-600);
  background: var(--indigo-50);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.dash-frame.dark .dash-list .li .model {
  background: rgba(99, 102, 241, 0.15);
  color: #c7d2fe;
}
.dash-list .li .status {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.dash-list .li .status.done {
  background: var(--success-bg);
  color: var(--success);
}
.dash-list .li .status.run {
  background: var(--indigo-50);
  color: var(--indigo-700);
}
.dash-list .li .status.queued {
  background: #f1f3f9;
  color: #7e8195;
}
.dash-frame.dark .dash-list .li .status.done {
  background: rgba(16, 185, 129, 0.18);
  color: #6ee7b7;
}
.dash-frame.dark .dash-list .li .status.queued {
  background: rgba(255, 255, 255, 0.06);
  color: var(--dark-ink-3);
}

.dash-list .li.active {
  background: linear-gradient(
    90deg,
    var(--indigo-50),
    rgba(99, 102, 241, 0.04)
  );
  border: 1px solid var(--indigo-200);
}
.dash-frame.dark .dash-list .li.active {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.18),
    rgba(99, 102, 241, 0.04)
  );
  border: 1px solid rgba(99, 102, 241, 0.35);
}

/* ---------- 3-Step section V6 — alternating with rich frames ---------- */
.steps-v6 {
  display: flex;
  flex-direction: column;
  gap: 88px;
  margin: 56px 0 0;
}
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.step-row.reverse > .step-copy {
  order: 2;
}
.step-row.reverse > .step-visual {
  order: 1;
}
.step-row .step-copy {
  max-width: 480px;
}
.step-row .step-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.step-row .step-tag .num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.35);
}
.step-row .step-tag .label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--indigo-600);
}
.step-row h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.18;
  margin-bottom: 14px;
}
.step-row .step-copy p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
}
.step-row .step-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}
.step-row .step-bullets li {
    position: relative;
    padding-left: 40px;
    font-size: 18px;
    color: var(--ink-2);
}
.step-row .step-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: url(../images/check.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ---------- Apps Flowomatic Replaces grid ---------- */
.apps-replaced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    margin-top: 36px;
}
.app-tile {
  position: relative;
  padding: 22px 16px;
  background: #fff;
  border: 1px solid var(--violet-600);
  border-radius: 16px;
  text-align: center;
  transition: all 200ms ease;
  overflow: hidden;
}
.app-tile:before {
  content: '';
  background-image: url(../images/cross.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  top: 10px;
}
.addsubs:before {
  content: '';
  background-image: url(../images/check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.app-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.app-tile::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 2px;
  background: var(--danger);
  transform: translate(-50%, -50%) rotate(-12deg);
  opacity: 0.85;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}
.app-tile .app-glyph {
      width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.app-tile .app-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  letter-spacing: -0.01em;
}
.app-tile .app-cost {
  font-size: 20px;
  font-weight: 600;
  color: var(--danger);
  margin-top: 4px;
  display: block;
}
.app-tile .app-cancel {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--danger);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  z-index: 2;
}
.app-jasper {
  background: #cb33db;
}
.app-copyai {
  background: #ff5fa8;
}
.app-writesonic {
  background: #5b21b6;
}
.app-anyword {
  background: #1e40af;
}
.app-chatgpt {
  background: #10a37f;
}
.app-midjourney {
  background: #1f1f1f;
}
.app-canva {
  background: #00c4cc;
}
.app-elevenlabs {
  background: #0d0d0d;
}
.app-surfer {
  background: #00b4d8;
}
.app-grammarly {
  background: #15c39a;
}

.app-tile.flowomatic-final {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 32px rgba(99, 102, 241, 0.4);
}
.app-tile.flowomatic-final::after {
  display: none;
}
.app-tile.flowomatic-final .app-glyph {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.app-tile.flowomatic-final .app-name {
  color: #fff;
  font-size: 15px;
}
.app-tile.flowomatic-final .app-cost {
  color: #fff200;
  font-weight: 800;
}
.app-tile.flowomatic-final .app-cancel {
  background: #fff200;
  color: var(--ink);
}

/* ---------- Freelancer rates panel ---------- */
.rates-panel {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  margin-top: 32px;
  box-shadow: var(--shadow-md);
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rate-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
    position: relative;
    transition: all 200ms ease;
    overflow: hidden;
}
.rate-card:hover {
  transform: translateY(-2px);
  border-color: var(--indigo-200);
}
.rate-card .deliverable {
  font-size: 19px;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 8px;
}
.rate-card .price {
  font-size: 45px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--danger), var(--warning));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.rate-card .price-per {
  font-size: 15px;
  color: var(--ink-mute);
  margin-top: 6px;
}
.rate-card .with-fm {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.rate-card .with-fm .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo-600);
}
.rate-card .with-fm .val {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}

/* ---------- Before/after result tiles ---------- */
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.result-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 200ms ease;
}

.result-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.result-tile .badge-time {
  display: inline-block;
  background: var(--indigo-50);
  color: var(--indigo-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.result-tile .before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px 0 12px;
}
.result-tile .ba-side {
  flex: 1;
  text-align: center;
}
.result-tile .ba-side .num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.result-tile .ba-side.now .num {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.result-tile .ba-side .lbl {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  font-weight: 700;
  margin-top: 4px;
}
.result-tile .arrow-grow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.4);
}
.result-tile .result-who {
      display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    margin-top: 14px;
    justify-content: center;
}
.result-tile .result-who .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.result-tile .result-who .name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.result-tile .result-who .role {
  font-size: 14px;
  color: var(--ink-mute);
}
.result-tile .quote-mini {
  font-size: 18px;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.55;
      margin: 15px 0 0;
    padding-top: 15px;
    border-top: 1px solid #ececec;
}

/* ---------- Section heads V6 — bigger, more confident ---------- */
.section-head h2 {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.1;
}
.section-head .lead {
  font-size: 20px;
      line-height: 1.55;
    font-weight: 400;
}

/* ---------- Deepdive V6 — richer mock framing ---------- */
.deepdive {
  gap: 80px;
  margin: 0px 0px;
}
.deepdive p {
    font-size: 18px;
}
.deepdive h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
}
.deepdive .eyebrow {
  font-size: 12px;
}
.deepdive ul li {
  font-size: 15px;
}
.dd-feature p{
  font-size: 16px;
}

/* ---------- Section padding V6 ---------- */
section {
  padding: 96px 0;
}
section.tight {
  padding: 64px 0;
}

/* ---------- Final CTA mega-block ---------- */
.final-cta-block {
  text-align: center;
  padding: 80px 60px;
  background: radial-gradient(
      ellipse at top,
      rgba(139, 92, 246, 0.25),
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(99, 102, 241, 0.18),
      transparent 60%
    ),
    var(--dark-bg);
  border-radius: 32px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.final-cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  pointer-events: none;
}
.final-cta-block h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 14px;
}
.final-cta-block p {
  color: var(--dark-ink-2);
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 17px;
}

/* ============================================================
   V7 — Tighten hero, VSL, weak section redesign
   ============================================================ */

/* ---------- Hero V7 — centered, video-first ---------- */
.hero.v7 {
  padding: 64px 0 88px;
  text-align: center;
}
.hero.v7 .hero-grid {
  grid-template-columns: 1fr;
  /* max-width: 920px; */
  margin: 0 auto;
  text-align: center;
  gap: 10px;
}

.hero.v7 .eyebrow {
    display: inline-flex;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    padding: 5px 30px;
    border-radius: 0px;
    margin-bottom: 20px;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1.2px solid #000;
    position: relative;
}
.hero.v7 .eyebrow::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border: 1.2px solid #000;
    left: 0px;
    top: 0px;
    background: #fff;
    translate: -50% -50%;
}
.hero.v7 .eyebrow::after {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border: 1.2px solid #000;
    top: 0px;
    right: 0px;
    background: #fff;
    translate: 50% -50%;
}
.hero.v7 .eyebrow .div {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border: 1.2px solid #000;
    bottom: 0px;
    right: 0px;
    background: #fff;
    translate: 50% 50%;
}
img.smarrw {
    position: absolute;
    width: 34px;
    left: 0;
    border: 0;
    translate: -50% 50%;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.hero.v7 h1 {
  font-size: clamp(30px, 5.6vw, 68px);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.035em;
}
.hero.v7 .lead {
    line-height: 1.3;
    color: #353556;
    font-size: 24px;
    font-weight: 600;
    max-width: 970px;
    margin: 0px auto 10px;
}
.hero.v7 .hero-quick-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
}
.hero.v7 .hero-quick-bullets li {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero.v7 .hero-quick-bullets li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--gradient);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8.5L6.5 12L13 4.5' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
}
.hero.v7 .hero-cta-row {
  justify-content: center;
  margin-bottom: 20px;
  justify-content: center;
}
.hero.v7 .hero-trust {
  justify-content: center;
}

/* ---------- VSL video poster ---------- */
.vsl-stage {
  display: block; /* <a> is inline by default — aspect-ratio + max-width require block */
  width: 100%;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark-bg);
  box-shadow: 0 40px 100px -20px rgba(15, 16, 32, 0.5),
    0 20px 60px -10px rgba(99, 102, 241, 0.35);
  aspect-ratio: 16/9;
  cursor: pointer;
  z-index: 1;
  border: 3px solid #fff;
  outline: 1px solid rgba(99, 102, 241, 0.3);
}
.vsl-stage.large {
  max-width: 1040px;
}
.vsl-stage iframe.vsl-embed,
.vsl-stage video.vsl-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 4;
  background: var(--dark-bg);
}

/* WATCH NOW pill below play button */
.vsl-stage .vsl-watch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.5);
  text-transform: uppercase;
}
.vsl-stage .vsl-watch-pill::before {
  content: "▶";
  font-size: 10px;
}

/* Dedicated "watch the demo" wrap for the hero, above-fold prominent */
.hero-vsl-wrap {
  width: 100%;
  margin: 18px auto 0;
  position: relative;
}
.hero-vsl-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 4px 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--indigo-700);
    margin-bottom: 30px;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.12);
}
.video-box01 {
    border-radius: 24px;
    background-color: rgb(103 50 208);
    box-shadow: 0px 16px 46px 0px rgba(0, 0, 0, 0.22);
    padding: 3px;
    overflow: hidden;
    max-width: 880px;
    margin: auto;
}

.hero-vsl-caption {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 600;
}
.hero-vsl-caption strong {
  color: var(--ink);
}

.vsl-stage::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: var(--gradient);
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
}
.vsl-stage .vsl-poster {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 30% 40%,
      rgba(99, 102, 241, 0.4),
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 60%,
      rgba(139, 92, 246, 0.4),
      transparent 60%
    ),
    linear-gradient(135deg, #0a0a0f 0%, #1e1b4b 50%, #4338ca 100%);
}
.vsl-stage .vsl-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
}
.vsl-stage .vsl-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 2;
}
.vsl-stage .vsl-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(239, 68, 68, 0.95);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vsl-stage .vsl-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.vsl-stage .vsl-duration {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-mono);
}
.vsl-stage .vsl-cc {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
}
.vsl-stage .vsl-title-line {
  color: #fff;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  text-align: center;
  max-width: 600px;
  margin: 18px 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.vsl-stage .vsl-subline {
  color: var(--dark-ink-2);
  font-size: 14px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.vsl-stage .vsl-play {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 255, 255, 0.4);
  transition: all 250ms ease;
  position: relative;
  z-index: 3;
  cursor: pointer;
  margin-bottom: 8px;
}
.vsl-stage .vsl-play::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: vsl-ring 2.4s ease-out infinite;
}
.vsl-stage .vsl-play::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: vsl-ring 2.4s ease-out infinite 0.6s;
}
@keyframes vsl-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.vsl-stage:hover .vsl-play {
  transform: scale(1.06);
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 8px rgba(255, 255, 255, 0.15);
}
.vsl-stage .vsl-play svg {
  width: 38px;
  height: 38px;
  margin-left: 5px;
  color: var(--indigo-600);
}

/* Hero shards repositioned around VSL */
.hero.v7 .hero-shards {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.hero.v7 .hero-shards .shard-1 {
  top: 20px;
  left: -60px;
  width: 220px;
}
.hero.v7 .hero-shards .shard-2 {
  bottom: 20px;
  right: -50px;
  width: 240px;
}

/* ---------- Money-bleed section (Cost of Doing Nothing V7) ---------- */
.bleed-stage {
  background: linear-gradient(135deg, #fff7ed 0%, #fff5f5 100%);
  border: 1px solid #fed7aa;
  border-radius: 24px;
  padding: 0px 30px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.bleed-stage::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12), transparent 70%);
  border-radius: 50%;
}
.bleed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 28px;
}
.bleed-card {
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 200ms ease;
}
.bleed-card:hover {
  transform: translateY(-3px);
  border-color: var(--danger);
}
.bleed-card .b-tool {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.bleed-card .b-monthly {
  font-size: 15px;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.bleed-card .b-yearly {
  font-size: 24px;
  font-weight: 800;
  color: var(--danger);
  letter-spacing: -0.02em;
  line-height: 1;
}
.bleed-card .b-year-lbl {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 600;
}
.bleed-card .b-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}
.bleed-total {
  background: var(--danger);
  color: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 14px 40px rgba(239, 68, 68, 0.35);
}
.bleed-total .lbl {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}
.bleed-total .amount {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 4px;
}
.bleed-total .vs {
  font-size: 13px;
  opacity: 0.92;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.bleed-total .replace {
  background: #fff;
  color: var(--ink);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
}
.bleed-total .replace .lbl {
  color: var(--success);
}
.bleed-total .replace .amount {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Capability grid (Introducing Flowomatic V7) ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.cap-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 22px;
  transition: all 200ms ease;
}
.cap-tile:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(165, 180, 252, 0.4);
}
.cap-tile .cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}
.cap-tile .cap-icon svg {
  width: 22px;
  height: 22px;
}
.cap-tile h4 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 6px;
}
.cap-tile p {
  color: var(--dark-ink-2);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 10px;
}
.cap-tile .cap-num {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #c7d2fe, #ddd6fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.platform-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.platform-stats .ps-item {
  text-align: center;
}
.platform-stats .ps-num {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #2563EB;
}
.platform-stats .ps-lbl {
    font-size: 15px;
    color: var(--ink-3);
    text-transform: uppercase;
    margin-top: 12px;
    font-weight: 600;
}

/* ---------- Deepdive feature cards (replaces dense bullet lists) ---------- */
.dd-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.dd-feature {
  padding: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 200ms ease;
}
.dd-feature:hover {
  background: #fff;
  border-color: var(--indigo-300);
  box-shadow: var(--shadow-sm);
}
.dd-feature .dd-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gradient-soft);
  color: var(--indigo-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.dd-feature .dd-icon svg {
  width: 14px;
  height: 14px;
}
.dd-feature h5 {
  font-size: 15px;
  margin: 0 0 5px;
  color: var(--ink);
  font-weight: 700;
}
.dd-feature p {
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.45;
}
section.dark .dd-feature,
section.gradient .dd-feature {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
section.dark .dd-feature h5 {
  color: #fff;
}
section.dark .dd-feature p {
  color: var(--dark-ink-2);
}
section.dark .dd-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(165, 180, 252, 0.4);
}

.dd-stat-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: var(--gradient-soft);
    border: 1px solid var(--indigo-400);
    border-radius: 12px;
    min-width: 30%;
    justify-content: center;
    margin-top: 40px;
}
.dd-stat-card .v {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.dd-stat-card .l {
  font-size: 15px;
  color: var(--ink-3);
  font-weight: 600;
}

/* ---------- Use-case cards (35 things V7) ---------- */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.usecase-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 10px;
    transition: all 200ms ease;
    position: relative;
    overflow: hidden;
}
.usecase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gradient-soft), transparent 60%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.usecase-card:hover {
  transform: translateY(-4px);
  border-color: var(--indigo-200);
  box-shadow: var(--shadow-lg);
}
.usecase-card:hover::before {
  opacity: 0.5;
}
.usecase-card .uc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
  justify-content: center;
  text-align: center;
}
.usecase-card .uc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  flex-shrink: 0;
}
.usecase-card .uc-icon svg {
  width: 24px;
  height: 24px;
}
.usecase-card .uc-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.usecase-card .uc-sub {
  font-size: 16px;
  color: var(--ink-mute);
  margin: 5px 0 10px;
}
.usecase-card .uc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}
.usecase-card .uc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
  transition: all 200ms ease;
}
.usecase-card .uc-chip::before {
  content: "⚡";
  color: var(--indigo-600);
  font-size: 11px;
}
.usecase-card:hover .uc-chip {
  background: #fff;
  border-color: var(--indigo-200);
}

/* ---------- Mobile V7 ---------- */
/* ============================================================
   V8 — Mid-page VSL · Worked example · Showdown · Personas
        Who-for · Income · Imagine · OTO preview
   ============================================================ */

/* ---------- A. Mid-page demo VSL block ---------- */
.demo-vsl-section {
  background: radial-gradient(
      ellipse at top left,
      rgba(99, 102, 241, 0.1),
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(139, 92, 246, 0.08),
      transparent 50%
    ),
    var(--bg);
  position: relative;
}
.demo-vsl-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.demo-vsl-grid h2 {
  margin-bottom: 14px;
}
.demo-vsl-grid .lead {
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 22px;
}
.demo-vsl-grid ul.demo-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.demo-vsl-grid ul.demo-points li {
  position: relative;
  padding-left: 38px;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.demo-vsl-grid ul.demo-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background: var(--gradient);
  border-radius: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8.5L6.5 12L13 4.5' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

/* ---------- B. Worked example walkthrough ---------- */
.walkthrough {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}
.wt-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 24px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 44px 28px;
    box-shadow: var(--shadow-sm);
    align-items: center;
    transition: all 200ms ease;
    position: relative;
    min-height: 370px;
    background: url(../images/card-light11.webp);
    background-position: center;
    background-size: cover;
}
.wt-row2{
  background: url(../images/card-light12.webp);
  background-position: center;
  background-size: cover;
}
.wt-row3{
  background: url(../images/card-light13.webp);
  background-position: center;
  background-size: cover;
}
.wt-row4{
  background: url(../images/card-light14.webp);
  background-position: center;
  background-size: cover;
}
.wt-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.wt-row .wt-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.wt-row .wt-num span {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.wt-row .wt-copy h3 {
    font-size: 30px;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.wt-row .wt-copy .wt-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.wt-row .wt-copy .wt-meta .model-pill {
  background: var(--indigo-50);
  color: var(--indigo-700);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}
.wt-row .wt-copy .wt-meta .runtime {
  font-size: 15px;
  color: var(--ink-mute);
  font-weight: 600;
}
.wt-row .wt-copy .wt-meta .cost {
  font-size: 15px;
  color: var(--success);
  font-weight: 800;
  font-family: var(--font-mono);
}
.wt-row .wt-copy p {
  font-size: 20px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}
.wt-row .wt-output {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.wt-row .wt-output::before {
  content: "OUTPUT";
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.wt-row .wt-output .wt-line {
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.wt-row .wt-output .wt-line:last-child {
  border-bottom: 0;
}
.wt-row .wt-output .wt-line.code {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--indigo-700);
}
.wt-row .wt-output .wt-line strong {
  color: var(--ink);
  font-weight: 700;
}
.wt-row .wt-output .wt-line .tag-chip {
  display: inline-block;
  background: var(--indigo-50);
  color: var(--indigo-700);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin: 2px 4px 2px 0;
}
.wt-total {
  background: var(--gradient);
  color: #fff;
  padding: 22px 28px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.4);
}
.wt-total .lbl {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.92;
}
.wt-total .v {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
}
.wt-total .item {
  text-align: center;
}
.wt-total .vs {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

/* ---------- C. ChatGPT vs Flowomatic showdown ---------- */
.showdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.showdown-card {
  border-radius: 24px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: all 200ms ease;
}
.showdown-card.lose {
  background: linear-gradient(160deg, #fff7f7 0%, #fef2f2 100%);
  border: 2px solid #fecaca;
}
.showdown-card.win {
  background: linear-gradient(160deg, #fff 0%, #eef2ff 100%);
  border: 2px solid var(--secondary-color);
  box-shadow: var(--shadow-xl), 0 0 0 4px rgba(99, 102, 241, 0.08);
  position: relative;
}

.showdown-card .sd-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.showdown-card.lose .sd-tag {
  background: #fee2e2;
  color: #b91c1c;
}
.showdown-card.win .sd-tag {
    background: var(--secondary-color);
    color: #fff;
}
.showdown-card h3 {
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.showdown-card.lose h3 {
  color: #7f1d1d;
}
.showdown-card.win h3 {
  color: var(--indigo-900);
}
.showdown-card .sd-sub {
  font-size: 16px;
  margin-bottom: 22px;
  font-weight: 600;
}
.showdown-card.lose .sd-sub {
  color: #991b1b;
}
.showdown-card.win .sd-sub {
  color: var(--indigo-700);
}
.showdown-card ul {
  list-style: none;
  padding: 0;
  margin: 0 ;
  display: grid;
  gap: 12px;
}
.showdown-card li {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  line-height: 1.5;
}
.showdown-card.lose li {
  color: #7f1d1d;
}
.showdown-card.win li {
  color: var(--ink);
  font-weight: 500;
}
.showdown-card.lose li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.showdown-card.win li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bs-success);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.showdown-card .sd-foot {
  padding-top: 18px;
  border-top: 1px solid #9ca0ae;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.showdown-card .sd-cost {
  font-size: 20px;
  font-weight: 600;
}
.showdown-card.lose .sd-cost {
  color: #b91c1c;
}
.showdown-card.win .sd-cost {
  color: var(--indigo-700);
}
.showdown-card .sd-amount {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.showdown-card.lose .sd-amount {
  color: var(--danger);
}
.showdown-card.win .sd-amount {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- D. OTO cross-sell preview ---------- */
.oto-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.oto-card {
    background: #fff;
    border: 1px solid var(--primary-color) !important;
    border-radius: 24px;
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
    transition: all 200ms ease;
    height: calc(100% - 20px);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.oto-card:hover {
  transform: translateY(-3px);
  border-color: var(--indigo-200);
  box-shadow: var(--shadow-lg);
}
.oto-card .oto-num {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 20px;
}
.oto-card .oto-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}
.oto-card .oto-icon svg {
  width: 22px;
  height: 22px;
}
.oto-card h4 {
  font-size: 20px;
  margin: 0 0 5px;
  letter-spacing: -0.01em;
}
.oto-card .oto-sub {
    font-size: 16px;
    color: var(--ink-3);
    margin-bottom: 14px;
}
.oto-card .oto-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
}
.oto-card .oto-points li {
    font-size: 18px;
    display: flex;
    align-items: start;
    gap: 10px;
  position: relative;
}
.oto-card .oto-points li img {
    width: 22px;
    margin-top: 2px;
}
/* .oto-card .oto-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
} */
.oto-card .oto-price {
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.oto-card .oto-price .oto-amt {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}
.oto-card .oto-price .oto-amt-sub {
    font-size: 15px;
    color: var(--ink-mute);
    margin-left: 4px;
}
.oto-card .oto-price .oto-after {
    font-size: 13px;
    color: var(--ink-mute);
    font-weight: 600;
    text-transform: capitalize;
    background: #ececec;
    padding: 2px 10px;
    border-radius: 7px;
}

/* ---------- E. Persona grid (chatbot templates) ---------- */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 36px;
}
.persona-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 200ms ease;
  position: relative;
}
.persona-card:hover {
  transform: translateY(-3px);
  border-color: var(--indigo-300);
  box-shadow: var(--shadow-md);
}
.persona-card .persona-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  position: relative;
}
.persona-card .persona-avatar::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: var(--success);
  border: 2px solid #fff;
  border-radius: 50%;
}
.persona-card .persona-role {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 4px;
}
.persona-card .persona-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.persona-card .persona-desc {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.4;
  margin: 0;
}
/* Avatar color variations */
.pa-1 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.pa-2 {
  background: linear-gradient(135deg, #ec4899, #db2777);
}
.pa-3 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.pa-4 {
  background: linear-gradient(135deg, #10b981, #059669);
}
.pa-5 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.pa-6 {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}
.pa-7 {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.pa-8 {
  background: linear-gradient(135deg, #f43f5e, #be123c);
}
.pa-9 {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}
.pa-10 {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

/* ---------- F. Who this is for / NOT for ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.who-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  transition: all 200ms ease;
}
.who-card.yes {
  border: 2px solid var(--success);
  background: linear-gradient(160deg, #fff 0%, #f0fdf4 100%);
}
.who-card.no {
  border: 2px solid var(--line);
  background: linear-gradient(160deg, #fff 0%, #f8f9fb 100%);
  opacity: 0.92;
}
.who-card .who-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  justify-content: center;
}
.who-card .who-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  flex-shrink: 0;

}
.who-card.yes .who-icon {
  background: var(--success);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3);
}
.who-card.no .who-icon {
  background: var(--ink-mute);
}
.who-card .who-title {
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.who-card.yes .who-title {
  color: #065f46;
}
.who-card.no .who-title {
  color: var(--ink-3);
}
.who-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.who-card li {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  line-height: 1.55;
}
.who-card.yes li {
  color: var(--ink);
}
.who-card.no li {
  color: var(--ink-3);
}
.who-card.yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  background: var(--success);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.who-card.no li::before {
  content: "−";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  background: var(--ink-mute);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.who-card li strong {
  color: var(--ink);
  font-weight: 700;
}

/* ---------- G. Service-business income block ---------- */
.income-block {
  background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 50%, #fff 100%);
  border: 1px solid #fde68a;
  border-radius: 28px;
  padding: 48px 40px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.income-block::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.18),
    transparent 70%
  );
  pointer-events: none;
}
.income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  position: relative;
}
.income-tile {
  background: #fff;
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 22px;
  transition: all 200ms ease;
  position: relative;
}
.income-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.income-tile .gig-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.income-tile .gig-platform .glyph {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #1dbf73;
  color: #fff;
  font-size: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.income-tile .gig-platform .glyph.upwork {
  background: #14a800;
}
.income-tile .gig-platform .glyph.contra {
  background: #0d0d0d;
}
.income-tile .gig-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.income-tile .gig-desc {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 14px;
  line-height: 1.45;
}
.income-tile .gig-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed #fde68a;
}
.income-tile .gig-price .market {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.income-tile .gig-price .market-sub {
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 600;
}
.income-tile .gig-runtime {
  display: inline-block;
  background: var(--success-bg);
  color: #065f46;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 8px;
}
.income-summary {
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 24px 30px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.income-summary .lbl {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-ink-3);
}
.income-summary .v {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.income-summary .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.income-summary .vs-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- H. Aspirational "Imagine..." callout ---------- */
.imagine-cta {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 36px 32px;
  background: linear-gradient(135deg, var(--indigo-50), #f3e8ff);
  border: 1px solid var(--indigo-200);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.imagine-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  filter: blur(40px);
  opacity: 0.15;
  z-index: -1;
}
.imagine-cta .imagine-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--indigo-200);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-700);
  margin-bottom: 14px;
}
.imagine-cta .imagine-tag::before {
  content: "✦";
  color: var(--violet-500);
}
.imagine-cta h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.imagine-cta p {
  font-size: 20px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
.imagine-cta strong {
  color: var(--indigo-700);
  font-weight: 700;
}
section.imagine-section {
  padding: 56px 0;
  background-image: url(../images/imagine-section.webp);
  background-position: center;
  background-size: cover;
}

/* ============================================================
   V10 — Exit intent modal · Live purchase toast
        Testimonial credibility scaffolding · Screenshot slots
   ============================================================ */

/* ---------- Exit-intent modal ---------- */
.exit-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 16, 32, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.exit-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.exit-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  transform: scale(0.92) translateY(20px);
  transition: transform 280ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  overflow: hidden;
}
.exit-backdrop.open .exit-modal {
  transform: scale(1) translateY(0);
}
.exit-modal-head {
  background: var(--gradient);
  color: #fff;
  padding: 32px 32px 24px;
  text-align: center;
  position: relative;
}
.exit-modal-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 0
  );
  background-size: 24px 24px;
  pointer-events: none;
}
.exit-modal-head .pre {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.22);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.exit-modal-head .pre::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff200;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.exit-modal-head h3 {
  font-size: 26px;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  position: relative;
}
.exit-modal-head p {
  font-size: 14.5px;
  margin: 0;
  opacity: 0.92;
  position: relative;
}
.exit-modal-body {
  padding: 28px 32px 32px;
  text-align: center;
}
.exit-coupon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff200;
  border: 2px dashed #f59e0b;
  border-radius: 12px;
  padding: 14px 20px;
  margin: 0 auto 18px;
  max-width: 360px;
  cursor: pointer;
  transition: all 200ms ease;
}
.exit-coupon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}
.exit-coupon .ec-code {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-align: center;
}
.exit-coupon .ec-copy {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-shrink: 0;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}
.exit-coupon.copied {
  background: var(--success);
  border-color: var(--success);
}
.exit-coupon.copied .ec-code,
.exit-coupon.copied .ec-copy {
  color: #fff;
}
.exit-coupon.copied .ec-copy {
  background: rgba(255, 255, 255, 0.18);
}
.exit-modal-body .exit-savings {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.exit-modal-body .exit-savings .price-old {
  text-decoration: line-through;
  color: var(--ink-mute);
}
.exit-modal-body .exit-savings .price-new {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.exit-modal-body .btn-mega {
  font-size: 17px;
  padding: 18px 32px;
}
.exit-modal-body .exit-skip {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-mute);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: 0;
  font-family: inherit;
}
.exit-modal-body .exit-skip:hover {
  color: var(--ink-3);
}
.exit-modal .exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  z-index: 5;
  transition: background 150ms ease;
}
.exit-modal .exit-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ---------- Live purchase toast ---------- */
.toast-stack {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
@media (max-width: 980px) {
  .toast-stack {
    bottom: 80px;
    left: 12px;
    right: 12px;
  }
}
.toast {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px 12px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  box-shadow: 0 12px 36px rgba(15, 16, 32, 0.18);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 320ms ease,
    transform 320ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  pointer-events: auto;
  position: relative;
}
.toast.in {
  opacity: 1;
  transform: translateX(0);
}
.toast.out {
  opacity: 0;
  transform: translateX(-20px);
}
.toast .toast-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.toast .toast-av::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  background: var(--success);
  border: 2px solid #fff;
  border-radius: 50%;
}
.toast .toast-body {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink-2);
}
.toast .toast-body strong {
  color: var(--ink);
  font-weight: 700;
}
.toast .toast-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 11px;
  color: var(--ink-mute);
}
.toast .toast-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.toast .toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: 0;
  color: var(--ink-mute);
  cursor: pointer;
  font-size: 14px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 150ms ease;
}
.toast .toast-close:hover {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .toast,
  .toast.in,
  .toast.out {
    transition: none;
    transform: none;
  }
  .exit-modal {
    transition: none;
    transform: none;
  }
}

/* ---------- Testimonial credibility upgrades ---------- */
.testimonial-card .source-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 600;
}
.testimonial-card .source-row .verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--success-bg);
  color: #065f46;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.testimonial-card .source-row .verified::before {
  content: "✓";
  width: 12px;
  height: 12px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
}
.testimonial-card .source-row .review-date {
  font-weight: 600;
}
.testimonial-card .who .name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card .who .li-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #0a66c2;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease;
}
.testimonial-card .who .li-link:hover {
  transform: scale(1.1);
  color: #fff;
}
.testimonial-card .who .location {
  font-size: 11.5px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.testimonial-card .who .location::before {
  content: "📍 ";
}

/* ---------- Screenshot slot wrapper ---------- */
.screenshot-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-bg);
  box-shadow: 0 30px 80px -20px rgba(15, 16, 32, 0.25),
    0 12px 40px -10px rgba(99, 102, 241, 0.18);
}
.screenshot-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: 18px;
  z-index: -1;
  filter: blur(28px);
  opacity: 0.4;
}
.screenshot-frame .ss-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.screenshot-frame .ss-bar .dots {
  display: inline-flex;
  gap: 6px;
}
.screenshot-frame .ss-bar .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.screenshot-frame .ss-bar .dots span:nth-child(1) {
  background: #ff5f57;
}
.screenshot-frame .ss-bar .dots span:nth-child(2) {
  background: #febc2e;
}
.screenshot-frame .ss-bar .dots span:nth-child(3) {
  background: #28c840;
}
.screenshot-frame .ss-bar .url {
  font-family: var(--font-mono);
  font-size: 11.5px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--ink-3);
}
.screenshot-frame img.ss-img {
  display: block;
  width: 100%;
  height: auto;
}
/* Fallback if image is missing — show a "drop screenshot here" hint */
.screenshot-frame img.ss-img::after {
  content: "Screenshot missing — see HTML comment for expected path";
}

/* Screenshot drop-in (auto-falls-back to dash-frame if file missing) */
.screenshot-drop {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -20px rgba(15, 16, 32, 0.25),
    0 12px 40px -10px rgba(99, 102, 241, 0.18);
  position: relative;
}

/* ---------- Footer text visibility fix ---------- */
.site-footer {
  color: var(--dark-ink-2);
}
.site-footer p {
  color: var(--dark-ink-2);
}
.site-footer .footer-brand p {
  color: var(--dark-ink-2);
}
.site-footer .footer-grid a {
  color: var(--dark-ink-3);
}
.site-footer .footer-grid a:hover {
  color: #fff;
}
.site-footer .footer-bottom {
  color: var(--dark-ink-3);
}

/* ---------- Logo sizing in masthead + footer (PNG) ---------- */
.masthead-logo img {
  height: 32px;
  width: auto;
}
.site-footer .footer-brand .logo img {
  height: 36px;
  width: auto;
  /* Invert to white so the dark wordmark reads on the dark footer */
  filter: brightness(0) invert(1) brightness(0.95);
}

/* ---------- Mobile V6 ---------- */
@media (max-width: 980px) {
  .hero.v7 .hero-shards .shard-1,
  .hero.v7 .hero-shards .shard-2 {
    display: none;
  }
  .demo-vsl-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wt-row {
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 18px;
  }
  .wt-row .wt-output {
    grid-column: 1 / -1;
  }
  .wt-row .wt-num span {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .wt-total {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .wt-total .vs {
    display: none;
  }
  .showdown {
    grid-template-columns: 1fr;
  }
  .oto-preview {
    grid-template-columns: 1fr;
  }
  .persona-grid {
    grid-template-columns: 1fr 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .income-grid {
    grid-template-columns: 1fr;
  }
  .income-summary {
    flex-direction: column;
    text-align: center;
  }
  .income-summary .vs-sep {
    display: none;
  }
  .bleed-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bleed-total {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .platform-stats {
    grid-template-columns: 1fr 1fr;
  }
  .dd-features {
    grid-template-columns: 1fr;
  }
  .usecase-grid {
    grid-template-columns: 1fr;
  }
  .step-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-row.reverse > .step-copy {
    order: 1;
  }
  .step-row.reverse > .step-visual {
    order: 2;
  }
  .apps-replaced {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .rates-grid {
    grid-template-columns: 1fr 1fr;
  }
  .result-grid {
    grid-template-columns: 1fr;
  }
  .dash-body {
    grid-template-columns: 1fr;
  }
  .dash-side {
    display: none;
  }
  .dash-stats {
    grid-template-columns: 1fr 1fr;
  }
  section {
    padding: 64px 0;
  }
  .hero {
    padding: 56px 0 64px;
  }
  .btn-mega {
    font-size: 16px;
    padding: 18px 32px;
  }
}
@media (max-width: 620px) {
  .app-tile {
    padding: 16px 10px;
  }
  .app-tile .app-glyph {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .rates-grid {
    grid-template-columns: 1fr;
  }
}
