/* ===========================================================
   Marketing Asa home page
   Brand: Plus Jakarta Sans, white + near-black + orange #FF5100,
   dashed-border cards. Recreated from the Framer site, redesigned
   with hand-built interactions. No emoji, no em dashes.
   =========================================================== */

:root {
  --black: #171717;
  --black-2: #212121;
  --orange: #ff5100;
  --orange-soft: #ff7a3d;
  --white: #fcfcfc;
  --pure-white: #ffffff;
  --white-2: #e6e6e6;
  --placeholder: #a6a6a6;
  --line: #e6e6e6;
  --ink-60: rgba(23, 23, 23, 0.62);
  --ink-45: rgba(23, 23, 23, 0.45);
  --shadow-sm: 0 2px 8px rgba(23, 23, 23, 0.05);
  --shadow-md: 0 18px 50px rgba(23, 23, 23, 0.10);
  --shadow-hot: 0 18px 40px rgba(255, 81, 0, 0.28);
  --radius: 20px;
  --radius-lg: 26px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--orange); color: var(--pure-white); box-shadow: var(--shadow-hot); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(255, 81, 0, 0.4); }
.btn-light { background: var(--pure-white); color: var(--black); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25); }
.btn-lg { padding: 18px 38px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  z-index: 200; transition: width 0.1s linear;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
}
.nav.scrolled {
  background: rgba(252, 252, 252, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(23, 23, 23, 0.06);
}
.nav.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.04em; }
.brand-logo { height: 32px; width: auto; display: block; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-60); position: relative; transition: color 0.2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--orange); transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-social {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; color: var(--ink-60);
  border: 1px solid var(--line); transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-social:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.nav-cta { padding: 11px 22px; font-size: 15px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 0 28px;
  max-height: 0; overflow: hidden; background: rgba(252, 252, 252, 0.98);
  backdrop-filter: blur(14px); transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.mobile-menu.open { max-height: 420px; padding: 12px 28px 26px; box-shadow: var(--shadow-md); }
.mobile-menu a { padding: 14px 0; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 14px; }

/* ---------- layout ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 130px 28px; }
.section--tight { padding: 90px 28px; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head--left { text-align: left; margin: 0; }
.kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
  padding: 7px 16px; border-radius: 999px; background: rgba(255, 81, 0, 0.09);
  margin-bottom: 20px;
}
.section-title { font-size: clamp(30px, 4.6vw, 48px); }
.section-lead { margin-top: 18px; font-size: 18px; color: var(--ink-60); }

/* ---------- generic card ---------- */
.card {
  background: var(--pure-white);
  border: 1px dashed var(--white-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; padding: 170px 28px 60px; text-align: center; overflow: hidden; }
.hero-field {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(620px circle at var(--mx, 50%) var(--my, 28%), rgba(255, 81, 0, 0.12), transparent 60%),
    radial-gradient(1px 1px at 20% 30%, rgba(23,23,23,0.18) 50%, transparent 51%),
    radial-gradient(1px 1px at 70% 20%, rgba(23,23,23,0.14) 50%, transparent 51%),
    radial-gradient(1px 1px at 40% 70%, rgba(23,23,23,0.12) 50%, transparent 51%),
    radial-gradient(1px 1px at 85% 60%, rgba(23,23,23,0.12) 50%, transparent 51%);
  background-size: 100% 100%, 60px 60px, 80px 80px, 70px 70px, 90px 90px;
  transition: background-position 0.2s ease-out;
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink-60);
  background: var(--pure-white); border: 1px solid var(--line);
  padding: 8px 16px 8px 10px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.pill-avatars { display: inline-flex; }
.pill-avatars i {
  width: 22px; height: 22px; border-radius: 50%; margin-left: -8px;
  border: 2px solid var(--pure-white);
  background-size: cover; background-position: center; background-color: var(--white-2);
}
.pill-avatars i:first-child { margin-left: 0; }

.hero-title {
  font-size: clamp(34px, 6vw, 74px); letter-spacing: -0.045em; line-height: 1.06;
  margin: 28px auto 24px; max-width: 820px; position: relative; display: block; text-align: center;
}
.hero-title .hl-orange { display: block; color: var(--orange); margin-top: 0.14em; }
@keyframes cursorFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(-6deg); } }

.hero-sub { font-size: clamp(16px, 2vw, 20px); color: var(--ink-60); max-width: 60ch; margin: 0 auto 44px; font-weight: 500; }

.vsl {
  position: relative; max-width: 880px; margin: 0 auto 36px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  background: #000;
}
.vsl wistia-player { display: block; }

/* floating proof cards */
.float-card {
  position: absolute; z-index: 3; width: 270px; text-align: left;
  background: var(--pure-white); border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px; box-shadow: var(--shadow-md);
}
.float-card--left { top: 350px; left: 1.25vw; width: 205px; transform: rotate(-3deg); animation: bobA 6.5s var(--ease) infinite; }
.float-card--right { top: 250px; right: 1.25vw; width: 205px; transform: rotate(4deg); animation: bobB 7.5s var(--ease) infinite; }
@keyframes bobA { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
@keyframes bobB { 0%, 100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(4deg) translateY(10px); } }
.float-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.float-handle { font-weight: 700; font-size: 14px; }
.float-card blockquote { font-size: 14px; color: var(--ink-60); line-height: 1.5; }
.float-card::before {
  content: ""; position: absolute; top: 14px; right: 16px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}

/* trusted ticker */
.trusted { margin-top: 28px; }
.trusted-label { display: block; font-size: 15px; color: var(--ink-45); margin-bottom: 20px; font-weight: 600; }
.ticker { position: relative; max-width: 760px; margin: 0 auto; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: ticker 26s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track img { height: 46px; width: auto; object-fit: contain; opacity: 0.45; filter: grayscale(1); transition: opacity 0.3s, filter 0.3s; }
.ticker-track img:hover { opacity: 0.9; filter: grayscale(0); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how-card { padding: 24px; position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.how-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-no {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  font-size: 13px; font-weight: 700; color: var(--ink-60);
  background: var(--white); border: 1px dashed var(--white-2);
  padding: 4px 12px; border-radius: 10px;
}
.how-art {
  position: relative; height: 180px; border-radius: 15px; margin-bottom: 22px;
  background: var(--white); overflow: hidden;
  display: grid; place-items: center;
  border: 1px solid rgba(23,23,23,0.04);
}
.how-card h3 { font-size: 20px; margin-bottom: 10px; }
.how-card p { font-size: 15px; color: var(--ink-60); }

/* art 1: mini dashboard bars */
.mini-dash { display: flex; align-items: flex-end; gap: 10px; height: 110px; padding: 0 6px; position: relative; }
.mini-bar { width: 16px; height: var(--h); border-radius: 6px 6px 0 0; background: #dcdcdc; transition: height 0.6s var(--ease); }
.mini-bar--hot { background: linear-gradient(180deg, var(--orange), var(--orange-soft)); box-shadow: var(--shadow-hot); }
.mini-trend { position: absolute; left: 0; right: 0; bottom: 30%; height: 2px; background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 14px); opacity: 0.5; }

/* art 2 + 3: tags + cursor */
.art-tag { font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 14px; box-shadow: var(--shadow-sm); }
.art-tag--dark { background: var(--black-2); color: var(--pure-white); transform: translateY(-12px); }
.art-tag--white { background: var(--pure-white); border: 1px solid var(--line); color: var(--black); transform: translate(-26px, -14px); }
.art-tag--hot { background: var(--orange); color: var(--pure-white); transform: rotate(-14deg) translate(40px, 26px); box-shadow: var(--shadow-hot); position: absolute; }
.art-cursor { position: absolute; left: 38%; top: 58%; animation: cursorTap 2.6s ease-in-out infinite; }
.art-cursor--hot { left: 56%; top: 40%; }
@keyframes cursorTap { 0%,100% { transform: translate(0,0); } 45% { transform: translate(-8px,-6px); } 55% { transform: translate(-8px,-6px) scale(0.92); } }

/* ===========================================================
   STATS
   =========================================================== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat {
  text-align: center; padding: 48px 24px; border-radius: var(--radius);
  background: var(--pure-white); border: 1px dashed var(--white-2);
  position: relative; overflow: hidden;
}
.stat::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 60%; height: 3px; transform: translateX(-50%); background: linear-gradient(90deg, transparent, var(--orange), transparent); opacity: 0; transition: opacity 0.4s; }
.stat.counted::after { opacity: 1; }
.stat-num { display: block; font-size: clamp(42px, 6vw, 68px); font-weight: 800; letter-spacing: -0.05em; line-height: 1; background: linear-gradient(135deg, var(--black), #4a4a4a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { display: block; margin-top: 14px; font-size: 16px; color: var(--ink-60); font-weight: 500; }

/* ===========================================================
   ROADMAP BENTO
   =========================================================== */
.bento { display: grid; grid-template-columns: 1fr 0.7fr; gap: 18px; }
.bento-card { padding: 30px; min-height: 230px; display: flex; flex-direction: column; gap: 16px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s; }
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.bento-card--wide { grid-column: auto; }
.bento-card:nth-child(2) { grid-row: span 1; }
.bento-top { display: flex; flex-direction: column; gap: 14px; }
.bento-card h3 { font-size: 23px; }
.bento-card p { color: var(--ink-60); font-size: 15.5px; margin-top: auto; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 13px; font-weight: 600; color: var(--pure-white); background: var(--orange); border: 1px solid var(--orange); padding: 6px 13px; border-radius: 999px; box-shadow: 0 4px 12px rgba(255, 81, 0, 0.22); }

/* ===========================================================
   COMPARISON
   =========================================================== */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; padding: 38px; align-items: stretch; }
.compare-col { padding: 8px 30px; }
.compare-name { font-size: 22px; margin-bottom: 24px; }
.compare-col--them .compare-name { color: var(--ink-45); }
.compare-col--us .compare-name { color: var(--orange); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.compare-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; font-weight: 500; }
.compare-col--them li { color: var(--ink-60); }
.compare-divider { position: relative; width: 1px; background: repeating-linear-gradient(180deg, var(--white-2) 0 6px, transparent 6px 12px); }
.compare-divider span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 13px; font-weight: 700; color: var(--ink-45);
  background: var(--pure-white); border: 1px dashed var(--white-2);
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
}

/* hand-drawn marks */
.mark { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; position: relative; margin-top: 1px; }
.mark--check { background: rgba(255, 81, 0, 0.12); }
.mark--check::after { content: ""; position: absolute; left: 7px; top: 4px; width: 5px; height: 10px; border: solid var(--orange); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.mark--x { background: rgba(23, 23, 23, 0.06); }
.mark--x::before, .mark--x::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 2px; background: var(--ink-45); border-radius: 2px; }
.mark--x::before { transform: translate(-50%, -50%) rotate(45deg); }
.mark--x::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ===========================================================
   TESTIMONIALS  (sticky stacking)
   =========================================================== */
.reviews-wrap { display: grid; grid-template-columns: 1.7fr 1fr; gap: 28px; align-items: start; }
.reviews-stack { display: flex; flex-direction: column; gap: 22px; }
.review-card { padding: 28px 30px; position: sticky; top: 110px; }
.reviews-stack .review-card:nth-child(1) { top: 110px; }
.reviews-stack .review-card:nth-child(2) { top: 124px; }
.reviews-stack .review-card:nth-child(3) { top: 138px; }
.reviews-stack .review-card:nth-child(4) { top: 152px; }
.reviews-stack .review-card:nth-child(5) { top: 166px; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: var(--pure-white); background: linear-gradient(135deg, var(--orange), var(--orange-soft)); }
.review-handle { font-weight: 700; font-size: 16px; }
.review-card p { color: var(--ink-60); font-size: 15.5px; }

.review-cta { position: sticky; top: 110px; }
.book-card { padding: 32px; text-align: left; }
.book-card h3 { font-size: 26px; margin-bottom: 12px; }
.book-lead { color: var(--ink-60); margin-bottom: 22px; }
.book-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.book-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--pure-white); border: 1px dashed var(--white-2); border-radius: 16px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-item[open] { border-color: rgba(255, 81, 0, 0.4); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  font-weight: 700; font-size: 17px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--orange); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq-toggle::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-body { padding: 0 24px 24px; }
.faq-body p { color: var(--ink-60); font-size: 15.5px; }

/* ===========================================================
   FINAL CTA
   =========================================================== */
.final-cta { padding: 40px 28px 110px; }
.final-cta-card {
  position: relative; max-width: 1100px; margin: 0 auto; overflow: hidden;
  background: var(--black); color: var(--pure-white);
  border-radius: 32px; padding: 80px 40px; text-align: center;
}
.final-cta-glow { position: absolute; inset: 0; background: radial-gradient(600px circle at 50% -10%, rgba(255, 81, 0, 0.45), transparent 60%); pointer-events: none; }
.final-cta-card h2 { position: relative; font-size: clamp(28px, 4.4vw, 46px); max-width: 18ch; margin: 0 auto 18px; }
.final-cta-card p { position: relative; color: rgba(255, 255, 255, 0.72); font-size: 18px; max-width: 52ch; margin: 0 auto 36px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--pure-white); border-top: 1px dashed var(--white-2); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 64px 28px 40px; display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer-brand p { color: var(--ink-60); margin-top: 16px; max-width: 34ch; font-size: 15px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-45); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: var(--ink-60); font-weight: 500; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-cta { font-weight: 700 !important; color: var(--orange) !important; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 22px 28px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-45); }

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .float-card { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .reviews-wrap { grid-template-columns: 1fr; }
  .review-cta { position: relative; top: 0; order: -1; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .nav-cta { display: none; }

  .how-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .compare-divider { width: 100%; height: 1px; background: repeating-linear-gradient(90deg, var(--white-2) 0 6px, transparent 6px 12px); }
  .compare-divider span { position: static; margin: 0 auto; }
  .section { padding: 90px 22px; }
  .hero { padding: 140px 22px 40px; }
  .reviews-stack .review-card { position: relative; top: 0 !important; }
}

/* ===========================================================
   ADDED: avatars, hero orbit, scanning process art, host block
   =========================================================== */

/* avatars: photo with monogram fallback (img removed on error) */
.avatar { position: relative; width: 38px; height: 38px; flex: 0 0 auto; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--orange), var(--orange-soft)); display: grid; place-items: center; }
.avatar-mono { color: var(--pure-white); font-weight: 700; font-size: 15px; line-height: 1; }
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.avatar--lg { width: 46px; height: 46px; }
.avatar--lg .avatar-mono { font-size: 18px; }
.avatar--xl { width: 58px; height: 58px; }
.avatar--xl .avatar-mono { font-size: 23px; }

/* booking host (Shoh, on the right of the testimonials) */
.book-host { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.book-host-meta { display: flex; flex-direction: column; }
.book-host-meta strong { font-size: 16px; }
.book-host-meta span { font-size: 13px; color: var(--ink-60); }

/* hero orbit: ambient agents-at-work accent */
.hero-orbit { position: absolute; z-index: 1; left: 5vw; top: 44%; width: 124px; height: 124px; pointer-events: none; }
.orbit-core { position: absolute; left: 50%; top: 50%; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 22px rgba(255, 81, 0, 0.85); }
.orbit-pulse { position: absolute; left: 50%; top: 50%; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; border: 2px solid var(--orange); animation: orbitPulse 2.8s ease-out infinite; }
@keyframes orbitPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(5); opacity: 0; } }
.orbit-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(255, 81, 0, 0.4); animation: spin 9s linear infinite; }
.orbit-ring--2 { inset: 26px; border-color: rgba(23, 23, 23, 0.12); animation-duration: 5.5s; animation-direction: reverse; }
.orbit-ring i { position: absolute; top: -6px; left: 50%; width: 11px; height: 11px; margin-left: -5.5px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px rgba(255, 81, 0, 0.7); }
.orbit-ring--2 i { width: 8px; height: 8px; background: var(--black-2); box-shadow: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* scanning process art (shared beam + grid) */
.scan { position: relative; overflow: hidden; }
.scan-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(23, 23, 23, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 23, 23, 0.05) 1px, transparent 1px); background-size: 22px 22px; }
.scan-beam { position: absolute; left: 0; right: 0; top: 0; height: 54px; background: linear-gradient(180deg, transparent, rgba(255, 81, 0, 0.32), rgba(255, 81, 0, 0.6), transparent); filter: blur(2px); animation: beam 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes beam { 0% { transform: translateY(-56px); } 100% { transform: translateY(196px); } }

/* card 1: data ingestion bars */
.scan-bars { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 9px; height: 100px; }
.scan-bars i { width: 14px; height: var(--h); border-radius: 5px 5px 0 0; background: #d8d8d8; animation: barGlow 3s ease-in-out infinite; animation-delay: var(--d); }
@keyframes barGlow { 0%, 100% { background: #d8d8d8; box-shadow: none; } 45%, 55% { background: linear-gradient(180deg, var(--orange), var(--orange-soft)); box-shadow: var(--shadow-hot); } }

/* card 2: A/B split test */
.ab { position: relative; z-index: 2; display: flex; gap: 16px; }
.ab-page { position: relative; width: 66px; height: 92px; background: var(--pure-white); border: 1px solid var(--line); border-radius: 8px; padding: 11px 9px; display: flex; flex-direction: column; gap: 7px; }
.ab-page > span { height: 6px; border-radius: 3px; background: #e3e3e3; }
.ab-page > span:nth-of-type(2) { width: 78%; }
.ab-page .ab-cta { margin-top: auto; height: 13px; border-radius: 4px; background: #d0d0d0; }
.ab-tag { position: absolute; top: -9px; right: -8px; width: 24px; height: 24px; border-radius: 50%; background: var(--black-2); color: var(--pure-white); font-size: 11px; font-weight: 700; display: grid; place-items: center; }
.ab-win { border-color: var(--orange); animation: winPulse 3s ease-in-out infinite; }
.ab-win .ab-tag { background: var(--orange); }
.ab-win .ab-cta { background: var(--orange); }
@keyframes winPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 81, 0, 0); } 50% { box-shadow: 0 0 0 5px rgba(255, 81, 0, 0.16); } }

/* card 3: radar qualify */
.radar { position: relative; z-index: 2; width: 122px; height: 122px; border-radius: 50%; border: 1px solid var(--line); background: radial-gradient(circle, rgba(255, 81, 0, 0.06), transparent 70%); }
.radar-ring { position: absolute; inset: 26px; border-radius: 50%; border: 1px dashed rgba(23, 23, 23, 0.12); }
.radar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(255, 81, 0, 0.38), transparent 70deg); animation: spin 2.4s linear infinite; }
.radar-core { position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px rgba(255, 81, 0, 0.85); }
.radar-blip { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); opacity: 0; }
.radar-blip.b1 { top: 30%; left: 62%; animation: blip 2.4s ease-in-out infinite; }
.radar-blip.b2 { top: 60%; left: 36%; animation: blip 2.4s ease-in-out 0.9s infinite; }
@keyframes blip { 0%, 40% { opacity: 0; transform: scale(0.4); } 55% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(0.4); } }
.scan-pill { position: absolute; z-index: 3; bottom: 16px; right: 14px; background: var(--orange); color: var(--pure-white); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-hot); animation: pillIn 3s ease-in-out infinite; }
@keyframes pillIn { 0%, 50% { opacity: 0; transform: translateY(8px); } 65%, 100% { opacity: 1; transform: translateY(0); } }

/* hide ambient hero decoration on smaller screens */
@media (max-width: 1080px) {
  .hero-orbit { display: none; }
}
/* the floating quote cards only show when the viewport is wide enough to clear the wider headline */
@media (max-width: 1279px) {
  .float-card { display: none; }
}
/* keep key states visible when motion is reduced (global rule kills animations) */
@media (prefers-reduced-motion: reduce) {
  .radar-blip, .scan-pill { opacity: 1 !important; }
}
