/* ============================================================
   Supersei Growth Engine — marketing site
   Theme: locked dark. Accent: brand emerald (#059669 → #34D399).
   Product-demo recreations use the product's own palette
   (blue #2563EB primary, night surfaces) — they are "screenshots".
   ============================================================ */

:root {
  --ink-0: #04070D;            /* page deepest */
  --ink-1: #060B16;            /* page base (brand app-icon bg) */
  --ink-2: #0B1424;            /* raised card */
  --ink-3: #12203A;            /* overlay / hover */
  --line-1: rgba(226, 232, 240, 0.07);
  --line-2: rgba(226, 232, 240, 0.13);
  --line-3: rgba(226, 232, 240, 0.22);
  --tx-1: #F1F5F9;
  --tx-2: #B9C5D8;
  --tx-3: #7E8DA6;
  --em-1: #059669;             /* brand gradient start */
  --em-2: #34D399;             /* brand gradient end */
  --em-mid: #10B981;
  --em-ink: #03261B;           /* dark text on emerald CTAs */
  --em-soft: rgba(16, 185, 129, 0.12);
  --em-line: rgba(52, 211, 153, 0.35);
  /* product palette, used only inside demo recreations */
  --pr-blue: #2563EB;
  --pr-night: #0F1B2D;
  --pr-overlay: #17243A;
  --warn: #F59E0B;
  --risk: #F87171;
  --flame: #F97316;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --r-card: 18px;
  --r-ui: 10px;
  --shadow-card: 0 24px 60px rgba(2, 6, 23, 0.45);
  --nav-h: 72px;
}

/* Day theme — applied automatically by the theme-head script (7:00–18:59
   local time). Product-demo recreations keep their own dark palette; they
   read as "screenshots" on the light page. */
html[data-theme="light"] {
  --ink-0: #E7EDF5;
  --ink-1: #F6F8FB;
  --ink-2: #FFFFFF;
  --ink-3: #EAF0F7;
  --line-1: rgba(15, 23, 42, 0.08);
  --line-2: rgba(15, 23, 42, 0.14);
  --line-3: rgba(15, 23, 42, 0.25);
  --tx-1: #0B1424;
  --tx-2: #3B4A63;
  --tx-3: #5B6B85;
  --em-soft: rgba(5, 150, 105, 0.10);
  --em-line: rgba(5, 150, 105, 0.35);
  --shadow-card: 0 24px 60px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: no-preference) {
  html.gsap-scroll { scroll-behavior: auto; } /* GSAP handles smooth scrolling */
}

body {
  margin: 0;
  background: var(--ink-1);
  color: var(--tx-1);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; }

::selection { background: rgba(52, 211, 153, 0.25); }

/* ---------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: 0; cursor: pointer; text-decoration: none;
  font-family: inherit; font-weight: 700; white-space: nowrap;
  border-radius: 999px; transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(120deg, var(--em-mid), var(--em-2));
  color: var(--em-ink);
  padding: 12px 26px; font-size: 15px;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 10px 34px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn-ghost {
  background: transparent; color: var(--tx-1);
  border: 1px solid var(--line-3); padding: 12px 26px; font-size: 15px;
}
.btn-ghost:hover { border-color: var(--em-line); background: var(--em-soft); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-xl { padding: 19px 44px; font-size: 18px; }
[data-magnetic] { will-change: transform; }

/* ---------------------------------------------------------- nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 36px;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck,
.nav:has(.nav-links.open) {
  background: rgba(6, 11, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-1);
}
.nav:has(.nav-links.open) { background: var(--ink-1); }
html[data-theme="light"] .nav.is-stuck { background: rgba(246, 248, 251, 0.85); }
html[data-theme="light"] .nav:has(.nav-links.open) { background: var(--ink-1); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { height: 52px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; font-size: 13px; color: var(--tx-2); letter-spacing: 0.02em; }
.nav-logo-text strong { font-size: 17px; font-weight: 800; color: var(--tx-1); letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  text-decoration: none; color: var(--tx-2); font-size: 14px; font-weight: 600;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--em-2); }
.nav-cta-mobile { display: none; }
.nav-burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 9px; flex-direction: column; justify-content: center; gap: 6px;
}
.nav-burger span { display: block; height: 2px; background: var(--tx-1); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------------------------------------------------------- hero */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 24px) clamp(20px, 4vw, 48px) 64px;
  background:
    radial-gradient(1100px 600px at 78% 18%, rgba(5, 150, 105, 0.13), transparent 64%),
    radial-gradient(900px 520px at 8% 80%, rgba(14, 116, 144, 0.1), transparent 60%),
    var(--ink-1);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .dot {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, var(--em-1), var(--em-2));
  opacity: .16;
}
.hero-bg .dot.cy { background: #0E7490; }
.hero-bg .dot.sl { background: #64748B; }

.hero-inner {
  position: relative; width: 100%; max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.06fr; gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.hero-title {
  font-size: clamp(33px, 4.6vw, 64px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.04;
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero-line > span { display: inline-block; }
.hero-title em {
  font-style: italic; font-weight: 800;
  background: linear-gradient(110deg, var(--em-1) 10%, var(--em-2) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  margin: 22px 0 0; max-width: 46ch;
  color: var(--tx-2); font-size: clamp(16px, 1.4vw, 19px);
}
.hero-ctas { display: flex; gap: 8px; margin-top: 34px; flex-wrap: wrap; }
/* Three hero CTAs (trial + webinar + demo) share one row on desktop. The
   default btn-lg padding is too generous to fit three in the hero column, so
   scope a tighter padding here only. They still wrap gracefully on narrow
   viewports. */
.hero-ctas .btn-lg { padding: 15px 16px; white-space: nowrap; }
.hero-ctas .hero-webinar-btn { gap: 6px; }

/* hero CRM home screen (faithful product recreation) */
.hero-demo { position: relative; justify-self: end; width: min(540px, 100%); }

/* --- app window --- */
.appwin {
  margin: 0; position: relative; border-radius: 16px; overflow: hidden;
  background: var(--pr-night); border: 1px solid var(--line-3);
  box-shadow: 0 40px 90px rgba(2, 6, 23, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.aw-bar {
  display: flex; align-items: center; gap: 7px; padding: 10px 14px;
  background: #0B1424; border-bottom: 1px solid var(--line-2);
}
.aw-bar .aw-dot { width: 9px; height: 9px; border-radius: 50%; background: #2A3850; }
.aw-bar .aw-dot:nth-child(1) { background: #FF5F57; }
.aw-bar .aw-dot:nth-child(2) { background: #FEBC2E; }
.aw-bar .aw-dot:nth-child(3) { background: #28C840; }
.aw-host { margin-left: 10px; font-family: var(--mono); font-size: 10.5px; color: #5B6B83; }
.aw-shell { display: grid; grid-template-columns: 52px 1fr; min-height: 386px; }
.aw-side {
  display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 12px 0;
  background: linear-gradient(180deg, #0E1A2C, #0B1524); border-right: 1px solid var(--line-2);
}
.aw-logo {
  width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin-bottom: 8px;
}
.aw-ic {
  width: 34px; height: 34px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  color: #5E6E87; position: relative;
}
.aw-ic.active { background: #17243A; color: #93C5FD; box-shadow: inset 3px 0 0 #2563EB; }
.aw-ic-foot { margin-top: auto; }
.aw-main { padding: 14px 16px 16px; min-width: 0; display: flex; flex-direction: column; }
.aw-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.aw-eyebrow { font-size: 9.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #5E6E87; }
.aw-title { font-size: 21px; font-weight: 800; color: #F8FAFC; margin-top: 2px; letter-spacing: -0.02em; }
.aw-stats { display: flex; gap: 7px; }
.aw-stat {
  background: #131F33; border: 1px solid rgba(226, 232, 240, 0.07); border-radius: 9px; padding: 6px 10px;
  display: flex; flex-direction: column; min-width: 56px;
}
.aw-stat span { font-size: 8px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #6B7B93; }
.aw-stat b { font-family: var(--mono); font-size: 14px; font-weight: 700; color: #E8EEF6; line-height: 1.2; }
.aw-stat.hot b { color: #FB923C; }
.aw-thead {
  display: grid; grid-template-columns: 1fr auto 38px; gap: 8px; align-items: center;
  padding: 0 10px 7px; border-bottom: 1px solid var(--line-2);
  font-size: 8.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #6B7B93;
}
.aw-thead span:last-child { text-align: right; }
.aw-rows { display: flex; flex-direction: column; }
.aw-row {
  display: grid; grid-template-columns: 1fr auto 38px; gap: 8px; align-items: center;
  padding: 9px 10px; border-bottom: 1px solid var(--line-1);
}
.aw-row.aw-hero-row.hot { background: linear-gradient(90deg, rgba(249, 115, 22, 0.12), transparent 70%); }
.aw-lead { display: flex; align-items: center; gap: 7px; min-width: 0; }
.aw-flame { flex: 0 0 auto; opacity: 0; transition: opacity .3s ease; }
.aw-flame.on { opacity: 1; }
.aw-nm { display: flex; flex-direction: column; min-width: 0; font-size: 12.5px; font-weight: 600; color: #F1F5F9; line-height: 1.25; }
.aw-nm em { font-style: normal; font-size: 9.5px; font-weight: 600; margin-top: 1px; }
.src-chat { color: #34D399; }
.src-meta { color: #60A5FA; }
.src-wa { color: #4ADE80; }
.src-web { color: #C4B5FD; }
.aw-stage {
  font-style: normal; font-size: 9.5px; font-weight: 700; white-space: nowrap;
  padding: 3px 9px; border-radius: 999px; background: #17243A; color: #9FB2C8; border: 1px solid rgba(226, 232, 240, 0.08);
}
.aw-stage.st-conn { background: rgba(96, 165, 250, 0.14); color: #93C5FD; border-color: rgba(96, 165, 250, 0.28); }
.aw-stage.st-demo { background: rgba(167, 139, 250, 0.16); color: #C4B5FD; border-color: rgba(167, 139, 250, 0.3); }
.aw-stage.st-won { background: rgba(5, 150, 105, 0.2); color: #34D399; border-color: rgba(52, 211, 153, 0.35); }
.aw-score { font-family: var(--mono); font-size: 13px; font-weight: 700; color: #94A3B8; text-align: right; }
.aw-score.mid { color: #FCD34D; }
.aw-score.hi { color: #FB7185; }

/* hot-lead alert inside the window */
.aw-hl {
  position: absolute; right: 14px; top: 52px; z-index: 5; width: 230px;
  background: var(--pr-night); border: 1px solid var(--line-3);
  border-radius: 13px; overflow: hidden; box-shadow: 0 22px 50px rgba(2, 6, 23, 0.6);
  opacity: 0; transform: translateY(-10px) scale(0.96); transform-origin: top right; pointer-events: none;
}
.aw-hl.in { opacity: 1; transform: translateY(0) scale(1); }
.aw-hl-banner { display: flex; align-items: center; gap: 9px; padding: 10px 12px; background: linear-gradient(135deg, #F97316, #EF4444); color: #fff; }
.aw-hl-flame { width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto; background: rgba(255, 255, 255, 0.22); display: inline-flex; align-items: center; justify-content: center; }
.aw-hl-text { display: flex; flex-direction: column; line-height: 1.15; flex: 1; min-width: 0; }
.aw-hl-eyebrow { font-size: 8.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.aw-hl-name { font-size: 14px; font-weight: 800; }
.aw-hl-x { opacity: .85; flex: 0 0 auto; }
.aw-hl-body { padding: 10px 12px; font-size: 11.5px; color: var(--tx-2); }
.aw-hl-body b { color: var(--tx-1); font-weight: 700; }
.aw-hl-body span { color: var(--tx-3); }

/* AI chat */
.aw-chatwrap { position: absolute; right: 14px; bottom: 14px; z-index: 6; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.aw-chat {
  width: 236px; background: var(--pr-night); border: 1px solid var(--line-3);
  border-radius: 13px; overflow: hidden; box-shadow: 0 22px 50px rgba(2, 6, 23, 0.6);
  opacity: 0; transform: translateY(14px) scale(0.96); transform-origin: bottom right; pointer-events: none;
}
.aw-chat.in { opacity: 1; transform: translateY(0) scale(1); }
.aw-chat-hd {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  background: #2563EB; color: #fff; font-size: 11.5px; font-weight: 600;
}
.aw-ai-badge {
  width: 17px; height: 17px; border-radius: 50%; flex: 0 0 auto; background: #3427fd; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 9.5px; font-weight: 800;
  box-shadow: 0 0 7px 1px rgba(52, 39, 253, 0.95);
}
.aw-chat-body { padding: 11px 12px; background: #0B1524; min-height: 96px; display: flex; flex-direction: column; gap: 7px; }
.aw-cmsg { display: flex; max-width: 86%; }
.aw-cmsg.v { align-self: flex-end; }
.aw-cmsg.a { align-self: flex-start; }
.aw-cbubble { font-size: 11px; line-height: 1.4; padding: 7px 10px; border-radius: 11px; }
.aw-cmsg.v .aw-cbubble { background: #2563EB; color: #fff; border-bottom-right-radius: 3px; }
.aw-cmsg.a .aw-cbubble { background: #1B2A41; color: #DCE6F2; border-bottom-left-radius: 3px; }
.aw-ctyping { display: inline-flex; gap: 4px; padding: 9px 11px; align-items: center; }
.aw-ctyping i { width: 5px; height: 5px; border-radius: 50%; background: #7E8DA6; opacity: .4; animation: wblink 1.4s infinite both; }
.aw-ctyping i:nth-child(2) { animation-delay: .2s; }
.aw-ctyping i:nth-child(3) { animation-delay: .4s; }
.aw-cfab {
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: default; position: relative;
  background: #2563EB; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.5);
}
.aw-cfab.pulse { animation: hl-pulse 1.8s ease-out infinite; }
.aw-cfab-badge {
  position: absolute; top: -3px; right: -3px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: #F87171; color: #fff; font-size: 10px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--pr-night);
  transform: scale(0); transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.aw-cfab-badge.show { transform: scale(1); }
.widget {
  margin: 0; width: 100%; height: 480px;
  background: #FFFFFF; border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-size: 14px; color: #111;
}
.widget-head {
  background: var(--pr-blue); color: #fff;
  padding: 14px 16px; font-weight: 600; font-size: 15px;
  display: flex; align-items: center; gap: 10px;
}
.widget-head-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 8px #4ADE80; }
.widget-head-x { margin-left: auto; opacity: .85; font-size: 19px; line-height: 1; }
.widget-body { flex: 1; overflow: hidden; padding: 14px; background: #F9FAFB; position: relative; }
.widget-form {
  display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid #E5E7EB; background: #fff;
}
.widget-input {
  flex: 1; border: 1px solid #D1D5DB; border-radius: 8px; padding: 9px 12px;
  color: #9CA3AF; font-size: 13.5px;
}
.widget-send {
  background: var(--pr-blue); color: #fff; font-weight: 600; font-size: 13.5px;
  border-radius: 8px; padding: 9px 16px; display: inline-flex; align-items: center;
}
.wmsg { display: flex; margin-bottom: 10px; }
.wmsg.v { justify-content: flex-end; }
.wbubble {
  max-width: 80%; padding: 9px 12px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.45; word-wrap: break-word;
  transform-origin: bottom left;
}
.wmsg.v .wbubble { background: var(--pr-blue); color: #fff; border-bottom-right-radius: 4px; transform-origin: bottom right; }
.wmsg.a .wbubble { background: #F0F1F3; color: #111; border-bottom-left-radius: 4px; }
.wtyping { display: inline-flex; gap: 4px; padding: 12px 13px; align-items: center; }
.wtyping i {
  width: 6px; height: 6px; border-radius: 50%; background: #6B7280; opacity: .4;
  animation: wblink 1.4s infinite both;
}
.wtyping i:nth-child(2) { animation-delay: .2s; }
.wtyping i:nth-child(3) { animation-delay: .4s; }
@keyframes wblink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }
.wcard {
  border: 1px solid #E5E7EB; background: #fff; border-radius: 12px;
  padding: 10px 12px; margin-top: 6px; font-size: 13px; min-width: 200px;
}
.wcard b { display: block; color: #111; font-size: 13.5px; }
.wcard span { color: #6B7280; display: block; margin-top: 2px; }
.wcard .wcard-ok { color: #059669; font-weight: 700; margin-top: 6px; display: inline-flex; align-items: center; gap: 5px; }
.wpay-btn {
  display: inline-block; margin-top: 8px; background: var(--pr-blue); color: #fff;
  font-weight: 600; font-size: 12.5px; border-radius: 8px; padding: 7px 14px;
}
.wchip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
  border-radius: 999px; padding: 3px 10px; margin: 2px 0 10px;
  background: #EEF2FF; color: #4338CA;
}
.wchip.ok { background: #D1FAE5; color: #047857; }

.hero-steps {
  list-style: none; display: flex; gap: 6px; padding: 0; margin: 18px 0 0; flex-wrap: wrap;
}
.hero-steps li {
  font-size: 11.5px; font-weight: 700; letter-spacing: .01em;
  color: var(--tx-3); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 5px 12px; transition: all .35s ease;
}
.hero-steps li.on {
  color: var(--em-2); border-color: var(--em-line); background: var(--em-soft);
}
.hero-toast {
  position: absolute; left: -14px; bottom: 24px; z-index: 7;
  display: flex; align-items: center; gap: 10px;
  background: var(--ink-2); border: 1px solid var(--em-line);
  border-radius: 12px; padding: 10px 14px; font-size: 12.5px; color: var(--tx-2);
  box-shadow: var(--shadow-card); opacity: 0; transform: translateY(12px);
}
.hero-toast b { color: var(--em-2); }
.hero-toast strong { color: var(--tx-1); }
.hero-toast-check {
  width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(120deg, var(--em-1), var(--em-2)); color: var(--em-ink);
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
}

/* ---------------------------------------------------------- logos */
.logos { padding: 56px 0 30px; border-top: 1px solid var(--line-1); }
.logos-title { text-align: center; color: var(--tx-3); font-size: 13.5px; font-weight: 600; margin: 0 0 28px; }
.logos-marquee {
  display: flex; overflow: hidden; gap: 64px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logos-track {
  display: flex; gap: 64px; align-items: center; flex: 0 0 auto;
  animation: marquee 36s linear infinite;
}
.logos-track img { height: 34px; width: auto; opacity: .92;
  transition: transform .25s ease, filter .25s ease, opacity .25s ease; }
.logos-track img:hover { opacity: 1; transform: translateY(-2px) scale(1.12);
  filter: drop-shadow(0 6px 14px rgba(2, 6, 23, .55)); }
@keyframes marquee { to { transform: translateX(calc(-100% - 64px)); } }

/* ---------------------------------------------------------- shared section bits */
section { position: relative; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; padding: 0 20px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; }
.section-head p { color: var(--tx-2); margin: 16px auto 0; max-width: 56ch; font-size: 16.5px; }

/* ---------------------------------------------------------- what it is (plain-language purpose) */
.whatis { max-width: 1240px; margin: 0 auto; padding: 70px clamp(20px, 4vw, 48px) 10px; }
.whatis .section-head { margin-bottom: 40px; }
.whatis-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.whatis-card {
  background: var(--ink-2); border: 1px solid var(--line-1);
  border-radius: var(--r-card); padding: 24px 22px;
}
.whatis-card h3 { font-size: 17px; font-weight: 700; }
.whatis-card p { color: var(--tx-2); font-size: 14.5px; line-height: 1.55; margin: 10px 0 0; }

.whatis-note {
  margin: 26px auto 0; max-width: 80ch; text-align: center;
  color: var(--tx-3); font-size: 14px; line-height: 1.65;
}
.whatis-note strong { color: var(--tx-2); font-weight: 600; }
.whatis-note a { color: var(--em-2); text-decoration: none; font-weight: 600; white-space: nowrap; }
.whatis-note a:hover { text-decoration: underline; }

@media (max-width: 900px) { .whatis-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .whatis-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- pillars */
.pillars {
  padding: 110px 0 90px; overflow: hidden;
  background: radial-gradient(900px 480px at 50% -8%, rgba(16, 185, 129, 0.07), transparent 60%);
}
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
}
.pillar-card {
  background: var(--ink-2); border: 1px solid var(--line-1); border-radius: var(--r-card);
  padding: 22px 24px 28px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1), border-color .3s ease, box-shadow .45s ease;
  will-change: transform;
}
.pillar-card:hover {
  transform: scale(1.035) translateY(-6px);
  border-color: var(--em-line);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 2;
}
/* siblings lean away from the hovered card */
.pillar-grid:has(.pillar-card:nth-child(1):hover) .pillar-card:nth-child(n+2),
.pillar-grid:has(.pillar-card:nth-child(2):hover) .pillar-card:nth-child(3) { transform: translateX(14px) scale(.985); }
.pillar-grid:has(.pillar-card:nth-child(2):hover) .pillar-card:nth-child(1),
.pillar-grid:has(.pillar-card:nth-child(3):hover) .pillar-card:nth-child(-n+2) { transform: translateX(-14px) scale(.985); }

.pillar-card h3 { font-size: 21px; margin-top: 20px; }
.pillar-card > p { color: var(--tx-2); font-size: 14.5px; margin: 10px 0 14px; }
.pillar-card ul { list-style: none; margin: 0; padding: 0; }
.pillar-card li {
  position: relative; padding: 7px 0 7px 24px; color: var(--tx-3); font-size: 13.5px;
  border-top: 1px solid var(--line-1);
}
.pillar-card li::before {
  content: "\2713"; position: absolute; left: 2px; top: 7px;
  color: var(--em-2); font-weight: 800; font-size: 12px;
}
.pillar-demo {
  height: 190px; border-radius: 12px; overflow: hidden; position: relative;
  background: var(--pr-night); border: 1px solid var(--line-2);
}

/* capture demo */
.cap-lane { position: absolute; inset: 12px; display: flex; flex-direction: column; gap: 8px; }
.cap-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--pr-overlay); border: 1px solid rgba(226, 232, 240, 0.08);
  border-radius: 9px; padding: 8px 10px; font-size: 12px; color: #CBD5E1;
}
.cap-row b { color: #F8FAFC; font-weight: 600; }
.cap-src {
  font-size: 9.5px; font-weight: 700; letter-spacing: .04em; border-radius: 5px; padding: 2px 7px;
  margin-left: auto; white-space: nowrap;
}
.cap-src.meta { background: rgba(56, 132, 255, 0.16); color: #60A5FA; }
.cap-src.chat { background: rgba(16, 185, 129, 0.16); color: #34D399; }
.cap-src.wa { background: rgba(34, 197, 94, 0.16); color: #4ADE80; }
.cap-src.csv { background: rgba(168, 85, 247, 0.16); color: #C4B5FD; }
.cap-own { font-size: 10px; color: #7E8DA6; }

/* call insight demo */
.ci-card { position: absolute; inset: 12px; background: var(--pr-overlay); border-radius: 10px; padding: 12px 14px; font-size: 12px; color: #CBD5E1; border: 1px solid rgba(226,232,240,.08); }
.ci-head { display: flex; align-items: center; gap: 7px; font-weight: 700; color: #F8FAFC; font-size: 12.5px; }
.ci-spark { color: #60A5FA; }
.ci-chip {
  margin-left: auto; font-size: 9.5px; font-weight: 700; border-radius: 999px; padding: 2px 9px;
  background: rgba(148, 163, 184, 0.15); color: #94A3B8; letter-spacing: .03em;
}
.ci-chip.good { background: rgba(16, 185, 129, 0.18); color: #34D399; }
.ci-summary { margin-top: 9px; min-height: 50px; font-size: 11.5px; line-height: 1.5; color: #B9C5D8; }
.ci-summary .caret { display: inline-block; width: 7px; height: 12px; background: #60A5FA; vertical-align: -2px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.ci-action {
  display: flex; flex-direction: column; gap: 1px;
  border-left: 3px solid var(--flame); background: rgba(249, 115, 22, 0.08);
  padding: 6px 10px; border-radius: 6px; margin-top: 8px; font-size: 11px;
  opacity: 0; transform: translateY(8px);
}
.ci-action b { color: #FDBA74; font-size: 10px; letter-spacing: .04em; }
.ci-task {
  display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 11px; color: #E2E8F0;
  opacity: 0; transform: translateY(8px);
}
.ci-task i { color: #7E8DA6; font-style: normal; margin-left: auto; font-size: 10px; }
.ci-task-box { width: 13px; height: 13px; border: 1.5px solid #475569; border-radius: 4px; }

/* roas demo */
.demo-roas { padding: 12px; }
.roas-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.roas-tile { background: var(--pr-overlay); border-radius: 9px; padding: 8px 11px; border: 1px solid rgba(226,232,240,.08); }
.roas-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #7E8DA6; }
.roas-val { font-family: var(--mono); font-weight: 700; font-size: 16px; color: #F8FAFC; }
.roas-val.good { color: #34D399; }
.roas-spark { position: absolute; left: 12px; right: 12px; bottom: 10px; height: 56px; width: calc(100% - 24px); }
.roas-spark path { stroke-width: 2; }
#spark-spend { stroke: #60A5FA; opacity: .6; }
#spark-rev { stroke: #34D399; }

/* ---------------------------------------------------------- journey */
.journey { background: var(--ink-0); border-block: 1px solid var(--line-1); }
.journey-pin { min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 24px 0; }
.journey-head {
  max-width: 1240px; width: 100%; margin: 0 auto 34px; padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.journey-head h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; max-width: 18ch; }
.journey-progress {
  flex: 0 0 220px; height: 3px; background: var(--line-2); border-radius: 3px; overflow: hidden; margin-bottom: 10px;
}
.journey-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--em-1), var(--em-2)); }
.journey-track { display: flex; gap: clamp(20px, 3vw, 40px); padding: 0 clamp(20px, 4vw, 48px); width: max-content; }
.panel {
  width: min(78vw, 880px); flex: 0 0 auto;
  background: var(--ink-2); border: 1px solid var(--line-1); border-radius: var(--r-card);
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: center;
  padding: clamp(22px, 3vw, 40px);
  min-height: 420px;
}
.panel-copy h3 { font-size: clamp(20px, 2.2vw, 28px); }
.panel-copy p { color: var(--tx-2); font-size: 14.5px; margin: 14px 0 0; }
.panel-demo { min-width: 0; }
.panel-demo-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 12px; align-items: stretch; }

/* p1: pricing page recreation */
.px-page { background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; padding: 18px 14px 14px; position: relative; }
.px-hero-bar { font-weight: 700; font-size: 15px; color: var(--tx-1); text-align: center; margin-bottom: 14px; }
.px-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px; }
.px-plan {
  background: var(--pr-overlay); border-radius: 10px; padding: 12px 10px; display: flex; flex-direction: column; gap: 5px;
  border: 1px solid transparent; transition: border-color .2s;
}
.px-plan.popular { border-color: var(--em-1); position: relative; }
.px-plan-tag {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  background: var(--em-1); color: #fff; padding: 2px 8px; border-radius: 999px;
}
.px-plan-name { font-size: 11px; font-weight: 600; color: var(--tx-2); }
.px-plan-price { font-size: 16px; font-weight: 800; color: var(--tx-1); }
.px-plan-price i { font-style: normal; font-size: 10px; font-weight: 500; color: var(--tx-3); }
.px-plan-line { height: 6px; border-radius: 3px; background: rgba(148,163,184,.13); }
.px-plan-line.short { width: 60%; }
.px-badges { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; }
.px-badge {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  background: rgba(16, 185, 129, 0.14); color: #34D399; border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 3px 9px; border-radius: 999px;
}

/* p2: chat + lead card */
.mini-chat {
  background: #F9FAFB; border-radius: 12px; padding: 12px; min-height: 240px;
  font-size: 12.5px; color: #111; overflow: hidden;
}
.mini-leadcard {
  background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 12px; padding: 14px;
  font-size: 12px; color: #CBD5E1;
}
.mlc-name { font-weight: 700; color: #F8FAFC; font-size: 13.5px; margin-bottom: 10px; }
.mlc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  border-top: 1px solid rgba(226, 232, 240, 0.07); padding: 8px 0; opacity: .35;
  transition: opacity .4s ease;
}
.mlc-row::before { content: attr(data-k); color: #7E8DA6; font-size: 10.5px; flex: 0 0 62px; }
.mlc-row span { margin-right: auto; }
.mlc-row b { color: #34D399; font-size: 11px; opacity: 0; transform: scale(.5); display: inline-block; }
.mlc-row.done { opacity: 1; }
.mlc-row.done b { opacity: 1; transform: scale(1); transition: all .3s cubic-bezier(.34,1.56,.64,1); }
.mlc-row.done b::before { content: "\2713"; }
.mlc-warmth {
  margin-top: 12px; font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
  color: #7E8DA6; border: 1px dashed rgba(226, 232, 240, 0.15); border-radius: 8px;
  text-align: center; padding: 6px; transition: all .4s ease;
}
.mlc-warmth.hot { color: #FDBA74; border-color: rgba(249, 115, 22, 0.5); background: rgba(249, 115, 22, 0.1); }

/* p3: kanban */
.mini-kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mk-col { background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 12px; padding: 10px; min-height: 250px; }
.mk-col h4 {
  font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: #7E8DA6;
  margin: 0 0 10px; font-weight: 700;
}
.mk-card {
  background: var(--pr-overlay); border: 1px solid rgba(226, 232, 240, 0.09); border-radius: 9px;
  padding: 9px 10px; font-size: 11.5px; color: #F8FAFC; font-weight: 600; margin-bottom: 8px;
  position: relative;
}
.mk-card span { display: block; font-family: var(--mono); font-weight: 400; font-size: 9.5px; color: #7E8DA6; margin-top: 3px; }
.mk-card.mk-dim { opacity: .45; }
.mk-flame { font-style: normal; color: var(--flame); margin-right: 5px; opacity: 0; transition: opacity .3s ease; }
#mk-mover.hot .mk-flame { opacity: 1; }
#mk-mover.hot { border-color: rgba(249, 115, 22, 0.45); box-shadow: 0 0 18px rgba(249, 115, 22, 0.15); }
.mk-slot { border: 1.5px dashed rgba(226, 232, 240, 0.14); border-radius: 9px; height: 52px; }

/* p4: transcript */
.mini-transcript { background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 12px; padding: 16px; min-height: 250px; }
.tr-status {
  font-family: var(--mono); font-size: 10.5px; color: #60A5FA; margin-bottom: 12px;
  display: inline-block; background: rgba(56, 132, 255, 0.1); border-radius: 999px; padding: 3px 10px;
}
.tr-status.done { color: #34D399; background: rgba(16, 185, 129, 0.12); }
.tr-lines { font-size: 12px; line-height: 1.55; color: #B9C5D8; min-height: 120px; }
.tr-line { margin-bottom: 9px; opacity: 0; transform: translateY(6px); }
.tr-line b { color: #7E8DA6; font-weight: 700; font-size: 10.5px; letter-spacing: .03em; display: block; }
.tr-line.lead b { color: #93C5FD; }
.tr-line mark { background: rgba(249, 115, 22, 0.22); color: #FDBA74; border-radius: 3px; padding: 0 3px; }
.tr-insight { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 8px; }
.tr-chip {
  font-size: 10px; font-weight: 700; border-radius: 999px; padding: 3px 10px;
  background: rgba(148, 163, 184, 0.13); color: #94A3B8; opacity: 0; transform: scale(.7);
}
.tr-chip.good { background: rgba(16, 185, 129, 0.16); color: #34D399; }
.tr-chip.warn { background: rgba(249, 115, 22, 0.14); color: #FDBA74; }

/* p5: payment */
.mini-pay { background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 12px; padding: 18px; }
.mp-link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--pr-overlay); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: #F8FAFC; font-weight: 600;
}
.mp-chip { font-size: 10px; font-weight: 800; letter-spacing: .06em; border-radius: 999px; padding: 4px 11px; }
.mp-chip.pending { background: rgba(245, 158, 11, 0.16); color: #FCD34D; }
.mp-chip.paid { background: rgba(16, 185, 129, 0.2); color: #34D399; }
.mp-wire { position: relative; height: 34px; margin: 4px 18px; border-left: 2px dashed rgba(226, 232, 240, 0.15); }
.mp-pulse {
  position: absolute; left: -5px; top: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--em-2); box-shadow: 0 0 12px var(--em-2); opacity: 0;
}
.mp-verify {
  display: flex; align-items: center; gap: 8px; font-size: 12px; color: #B9C5D8;
  background: rgba(16, 185, 129, 0.07); border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 10px; padding: 9px 12px; opacity: 0; transform: translateY(6px);
}
.mp-verify span { color: #34D399; font-weight: 800; }
.mp-verify b { color: #34D399; }
.mp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.mp-stats > div { background: var(--pr-overlay); border-radius: 10px; padding: 10px 13px; }
.mp-stats span { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #7E8DA6; }
.mp-stats b { font-family: var(--mono); font-size: 18px; color: #F8FAFC; }
.mp-stats b.good { color: #34D399; }
.mp-stats i { display: block; font-style: normal; font-size: 10px; color: #7E8DA6; }

/* ---------------------------------------------------------- real screens */
.screens { padding: 110px 0 100px; position: relative; overflow: hidden; border-top: 1px solid var(--line-1); }
.screens-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(760px 420px at 82% 4%, rgba(37, 99, 235, 0.14), transparent 64%),
    radial-gradient(680px 420px at 8% 96%, rgba(16, 185, 129, 0.1), transparent 62%);
}
.screens .section-head, .screens .showcase { position: relative; z-index: 1; }
.showcase {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; max-width: 1180px; margin: 0 auto;
  padding: 46px clamp(20px, 4vw, 48px);
}
.showcase + .showcase { border-top: 1px solid var(--line-1); }
.showcase-rev .showcase-copy { order: 2; }
.showcase-rev .showcase-demo { order: 1; }
.showcase-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.showcase-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; }
.tag-fire { color: #FDBA74; background: rgba(249, 115, 22, 0.12); border: 1px solid rgba(249, 115, 22, 0.28); }
.tag-fire::before { background: #F97316; box-shadow: 0 0 8px #F97316; }
.tag-blue { color: #93C5FD; background: rgba(37, 99, 235, 0.14); border: 1px solid rgba(37, 99, 235, 0.32); }
.tag-blue::before { background: #60A5FA; box-shadow: 0 0 8px #60A5FA; }
.tag-shield { color: var(--em-2); background: var(--em-soft); border: 1px solid var(--em-line); }
.tag-shield::before { background: var(--em-2); box-shadow: 0 0 8px var(--em-2); }
.showcase-copy h3 { font-size: clamp(23px, 2.6vw, 33px); font-weight: 800; letter-spacing: -0.03em; }
.showcase-copy > p { color: var(--tx-2); font-size: 15.5px; margin: 16px 0 18px; max-width: 52ch; }
.showcase-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.showcase-points li {
  position: relative; padding: 9px 0 9px 26px; color: var(--tx-2); font-size: 14px;
  border-top: 1px solid var(--line-1);
}
.showcase-points li::before {
  content: "\2713"; position: absolute; left: 3px; top: 9px;
  color: var(--em-2); font-weight: 800; font-size: 13px;
}
.showcase-demo { min-width: 0; }

/* --- hot lead alert demo --- */
.crm-frame {
  position: relative; height: 380px; border-radius: 16px; overflow: hidden;
  background:
    radial-gradient(600px 300px at 70% -10%, rgba(37, 99, 235, 0.12), transparent 60%),
    var(--pr-night);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-card);
}
.crm-bgrows { position: absolute; inset: 20px; display: flex; flex-direction: column; gap: 12px; opacity: .4; filter: blur(0.4px); }
.crm-bgrow {
  display: flex; align-items: center; gap: 12px; height: 44px; flex: 0 0 auto;
  background: var(--pr-overlay); border: 1px solid rgba(226, 232, 240, 0.06); border-radius: 9px; padding: 0 14px;
}
.crm-bgrow span { width: 36%; height: 8px; border-radius: 4px; background: rgba(148, 163, 184, 0.28); }
.crm-bgrow i { margin-left: auto; width: 22%; height: 8px; border-radius: 4px; background: rgba(148, 163, 184, 0.16); }
.hl-fab {
  position: absolute; right: 22px; bottom: 22px; z-index: 3;
  width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: default;
  background: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(239, 68, 68, 0.45);
}
.hl-fab.pulse { animation: hl-pulse 1.6s ease-out infinite; }
@keyframes hl-pulse {
  0% { box-shadow: 0 10px 28px rgba(239, 68, 68, 0.45), 0 0 0 0 rgba(249, 115, 22, 0.5); }
  70% { box-shadow: 0 10px 28px rgba(239, 68, 68, 0.45), 0 0 0 16px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 10px 28px rgba(239, 68, 68, 0.45), 0 0 0 0 rgba(249, 115, 22, 0); }
}
.hl-badge {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: #fff; color: #DC2626; border: 2px solid #DC2626;
  font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hl-badge.show { transform: scale(1); }
.hl-popup {
  position: absolute; left: 20px; right: 20px; top: 20px; z-index: 4;
  background: var(--pr-night); border: 1px solid var(--line-2);
  border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(2, 6, 23, 0.6);
  opacity: 0; transform: translateY(-14px) scale(0.97); transform-origin: bottom right;
  pointer-events: none;
}
.hl-popup.in { opacity: 1; transform: translateY(0) scale(1); }
.hl-banner {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: linear-gradient(135deg, #F97316 0%, #EF4444 100%); color: #fff;
}
.hl-flame-circle {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.22); display: inline-flex; align-items: center; justify-content: center;
}
.hl-banner-text { display: flex; flex-direction: column; line-height: 1.2; flex: 1; min-width: 0; }
.hl-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.hl-name { font-size: 18px; font-weight: 800; }
.hl-x { opacity: .9; flex: 0 0 auto; }
.hl-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 11px; }
.hl-activity { font-size: 13.5px; }
.hl-activity b { color: var(--tx-1); font-weight: 700; }
.hl-activity span { color: var(--tx-3); }
.hl-contacts { display: flex; flex-wrap: wrap; gap: 16px; }
.hl-contact { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--tx-2); }
.hl-contact svg { color: var(--tx-3); }
.hl-foot { padding: 0 18px 16px; display: flex; justify-content: flex-end; }
.hl-view {
  display: inline-flex; align-items: center; gap: 7px;
  background: #DC2626; color: #fff; font-size: 13px; font-weight: 600;
  padding: 8px 15px; border-radius: 9px;
}

/* --- marketing analytics demo --- */
.mk-board {
  background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 16px;
  padding: 16px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 13px;
}
.mk-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mk-title { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--tx-1); }
.mk-lens { display: inline-flex; border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; }
.mk-lens-btn {
  border: 0; background: transparent; color: var(--tx-3); cursor: pointer;
  font-family: inherit; font-size: 10.5px; font-weight: 600; padding: 5px 10px;
}
.mk-lens-btn.on { background: var(--pr-overlay); color: #93C5FD; }
.mk-tiles { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.mk-tile {
  background: var(--pr-overlay); border: 1px solid rgba(226, 232, 240, 0.07); border-radius: 9px;
  padding: 9px 9px; display: flex; flex-direction: column; gap: 3px; min-width: 0; overflow: hidden;
}
.mk-tlabel { font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #7E8DA6; white-space: nowrap; }
.mk-tlabel i { font-style: normal; opacity: .7; }
.mk-tval { font-family: var(--mono); font-weight: 700; font-size: 13px; color: #F8FAFC; line-height: 1.1;
  letter-spacing: -.03em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.mk-tval em { font-style: normal; font-weight: 400; color: #7E8DA6; font-size: 10.5px; letter-spacing: 0; }
.mk-tval.good { color: #34D399; }
.mk-tsub { font-size: 9.5px; color: #94A3B8; white-space: nowrap; }
.mk-tsub b { color: #CBD5E1; font-weight: 700; }
.mk-tile-roas { position: relative; }
.mk-roas-badge {
  font-size: 8.5px; font-weight: 700; letter-spacing: .03em; align-self: flex-start;
  padding: 1px 6px; border-radius: 999px; background: rgba(5, 150, 105, 0.18); color: #34D399; margin-top: 1px;
}
.mk-roas-badge.bad { background: rgba(248, 113, 113, 0.16); color: #F87171; }
.mk-chart-wrap { background: var(--pr-overlay); border: 1px solid rgba(226, 232, 240, 0.07); border-radius: 10px; padding: 11px 12px 9px; }
.mk-chart-head { font-size: 11px; color: var(--tx-2); margin-bottom: 6px; }
.mk-chart-head span { display: inline-flex; align-items: center; gap: 6px; }
.mk-chart-head svg { color: #34D399; }
.mk-chart { width: 100%; height: 120px; display: block; }
.mk-chart rect.mk-bar { fill: #2563EB; opacity: .42; }
.mk-legend { display: flex; gap: 16px; margin-top: 7px; }
.mk-legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; color: var(--tx-3); }
.mk-legend i { width: 11px; height: 4px; border-radius: 2px; }
.mk-legend i.lg-spend { background: #2563EB; opacity: .55; }
.mk-legend i.lg-rev { background: #059669; height: 3px; }
.mk-legend i.lg-leads { background: #93C5FD; height: 0; border-top: 2px dashed #93C5FD; border-radius: 0; }
.mk-funnel { display: flex; flex-direction: column; gap: 6px; }
.mk-frow { display: grid; grid-template-columns: 64px 1fr 44px; align-items: center; gap: 9px; }
.mk-flabel { font-size: 10.5px; color: var(--tx-3); }
.mk-fbar { height: 8px; background: rgba(148, 163, 184, 0.12); border-radius: 999px; overflow: hidden; }
.mk-fbar i { display: block; height: 100%; width: 0; background: #2563EB; border-radius: 999px; transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.mk-fbar i.won { background: #059669; }
.mk-fval { font-family: var(--mono); font-size: 11px; font-weight: 700; color: #CBD5E1; text-align: right; }

/* --- copy-paste guard demo --- */
.cg-wrap { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cg-settings { background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 14px; padding: 15px 16px; box-shadow: var(--shadow-card); }
.cg-head { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--tx-1); margin-bottom: 12px; }
.cg-card {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  background: var(--pr-overlay); border: 1px solid rgba(226, 232, 240, 0.08); border-radius: 11px; padding: 13px 15px;
}
.cg-card-text h4 { font-size: 13.5px; font-weight: 700; color: var(--tx-1); }
.cg-card-text p { font-size: 11.5px; color: #94A3B8; margin: 5px 0 0; line-height: 1.5; max-width: 42ch; }
.cg-switch {
  flex: 0 0 auto; width: 44px; height: 24px; border-radius: 999px; border: 0; cursor: pointer; position: relative;
  background: rgba(226, 232, 240, 0.14); transition: background .25s ease; padding: 0; margin-top: 2px;
}
.cg-switch.on { background: #2563EB; }
.cg-thumb {
  position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; transition: left .25s cubic-bezier(0.34, 1.4, 0.64, 1); box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.cg-switch.on .cg-thumb { left: 22px; }
.cg-status { font-size: 11.5px; color: #94A3B8; margin-top: 11px; }
.cg-status.off { color: #F87171; }
.cg-table {
  position: relative; background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-card);
}
.cg-trow {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 11px 16px; align-items: center;
  border-bottom: 1px solid var(--line-1); font-size: 13px; color: var(--tx-2);
}
.cg-trow:last-child { border-bottom: 0; }
.cg-trow span { color: var(--tx-1); font-weight: 500; }
.cg-trow i { font-style: normal; font-family: var(--mono); font-size: 12px; color: var(--tx-3); }
.cg-thead { background: var(--pr-overlay); }
.cg-thead span, .cg-thead i { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #7E8DA6; font-family: var(--font); }
.cg-table.locked { cursor: not-allowed; }
.cg-table.locked .cg-trow { user-select: none; -webkit-user-select: none; }
.cg-lock {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.9);
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: rgba(127, 29, 29, 0.92); color: #FECACA; border: 1px solid rgba(248, 113, 113, 0.4);
  font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.cg-lock.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ---------------------------------------------------------- bento */
.inside {
  padding: 110px 0; overflow: hidden;
  background: radial-gradient(820px 460px at 88% 2%, rgba(37, 99, 235, 0.08), transparent 58%), radial-gradient(720px 460px at 6% 98%, rgba(16, 185, 129, 0.06), transparent 60%);
}
.bento {
  display: grid; gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "wf wf inbox approve"
    "score wa inbox approve"
    "score brand guard guard";
  max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
}
.cell {
  background: var(--ink-2); border: 1px solid var(--line-1); border-radius: var(--r-card);
  padding: 20px; overflow: hidden; position: relative;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .3s ease, transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cell:hover { border-color: var(--em-line); transform: translateY(-4px); }
.cell-text h3 { font-size: 17px; }
.cell-text p { color: var(--tx-2); font-size: 13px; margin: 7px 0 0; }
.cell-workflow { grid-area: wf; background: linear-gradient(160deg, #0B1424 60%, #0D1B2E); }
.cell-inbox { grid-area: inbox; }
.cell-approve { grid-area: approve; }
.cell-score { grid-area: score; background: radial-gradient(420px 260px at 80% -10%, rgba(249, 115, 22, 0.1), transparent 60%), var(--ink-2); }
.cell-wa { grid-area: wa; }
.cell-brand { grid-area: brand; }
.cell-guard { grid-area: guard; background: linear-gradient(150deg, var(--ink-2) 55%, rgba(5, 150, 105, 0.07)); }

/* workflow canvas */
.wf-canvas { width: 100%; height: auto; border-radius: 12px; background: var(--pr-night); border: 1px solid var(--line-2); }
.wf-edge { fill: none; stroke: rgba(96, 165, 250, 0.55); stroke-width: 1.6; stroke-dasharray: 5 5; }
.wf-node rect { fill: var(--pr-overlay); stroke: rgba(226, 232, 240, 0.14); }
.wf-node text { fill: #F8FAFC; font: 600 13px var(--font); }
.wf-node .wf-sub { fill: #7E8DA6; font: 400 10.5px var(--font); }
.wf-trigger rect { stroke: rgba(96, 165, 250, 0.6); fill: rgba(37, 99, 235, 0.16); }
.wf-runner { fill: var(--em-2); opacity: 0; filter: drop-shadow(0 0 6px var(--em-2)); }

/* inbox feed */
.ib-feed { display: flex; flex-direction: column; gap: 8px; min-height: 290px; }
.ib-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--pr-night); border: 1px solid var(--line-1); border-radius: 10px;
  padding: 9px 11px; font-size: 11.5px; color: var(--tx-2);
}
.ib-ico {
  width: 26px; height: 26px; border-radius: 8px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.ib-row b { color: var(--tx-1); display: block; font-size: 11.5px; }
.ib-row small { color: var(--tx-3); font-size: 10.5px; display: block; }
.ib-time { margin-left: auto; font-family: var(--mono); font-size: 9.5px; color: var(--tx-3); }

/* approvals */
.ap-stack { display: flex; flex-direction: column; gap: 9px; min-height: 290px; }
.ap-card {
  background: var(--pr-night); border: 1px solid var(--line-1); border-radius: 10px; padding: 10px 12px;
  font-size: 11.5px; color: var(--tx-2);
}
.ap-card b { color: var(--tx-1); display: block; font-size: 12px; margin-bottom: 2px; }
.ap-actions { display: flex; gap: 8px; margin-top: 8px; }
.ap-accept {
  background: rgba(16, 185, 129, 0.16); color: #34D399; font-weight: 700; font-size: 10.5px;
  border-radius: 7px; padding: 4px 12px; border: 1px solid rgba(52, 211, 153, 0.3);
}
.ap-skip { color: var(--tx-3); font-size: 10.5px; padding: 4px 8px; }
.ap-card.applied { border-color: rgba(52, 211, 153, 0.4); }
.ap-card.applied .ap-actions { display: none; }
.ap-applied { color: #34D399; font-weight: 700; font-size: 10.5px; margin-top: 6px; display: none; }
.ap-card.applied .ap-applied { display: block; }

/* score */
.sc-meter { display: flex; align-items: baseline; gap: 10px; }
.sc-flame { font-size: 26px; color: var(--tx-3); transition: color .4s ease, text-shadow .4s ease, transform .4s ease; }
.sc-flame.lit { color: var(--flame); text-shadow: 0 0 18px rgba(249, 115, 22, 0.65); transform: scale(1.15); }
.sc-num { font-family: var(--mono); font-size: 52px; font-weight: 700; line-height: 1; }
.sc-cap { color: var(--tx-3); font-size: 12px; }
.sc-events { display: flex; flex-direction: column; gap: 6px; min-height: 108px; }
.sc-ev {
  font-family: var(--mono); font-size: 10.5px; color: var(--tx-2);
  background: var(--pr-night); border: 1px solid var(--line-1); border-radius: 8px; padding: 5px 10px;
  display: flex; justify-content: space-between; gap: 10px;
}
.sc-ev b { color: var(--em-2); }

/* whatsapp */
.wa-thread { background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 12px; padding: 14px; min-height: 150px; }
.wa-bubble {
  max-width: 88%; border-radius: 12px; padding: 8px 11px; font-size: 12px; line-height: 1.45;
  position: relative; margin-bottom: 10px;
}
.wa-bubble.out { background: rgba(16, 185, 129, 0.14); color: #D1FAE5; border-bottom-right-radius: 4px; margin-left: auto; }
.wa-bubble.in { background: var(--pr-overlay); color: #E2E8F0; border-bottom-left-radius: 4px; opacity: 0; transform: translateY(8px); }
.wa-status {
  display: block; text-align: right; font-family: var(--mono); font-size: 8.5px; font-weight: 700;
  letter-spacing: .08em; margin-top: 5px; color: #94A3B8;
}
.wa-status.sent { color: #93C5FD; }
.wa-status.delivered { color: #6EE7B7; }
.wa-status.read { color: #34D399; }

/* brand demo */
.brand-demo { display: flex; flex-direction: column; gap: 12px; }
.brand-mini {
  display: grid; grid-template-columns: 56px 1fr; gap: 10px;
  background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 12px; padding: 12px; min-height: 130px;
}
.bm-side { display: flex; flex-direction: column; gap: 7px; align-items: center; padding-top: 2px; }
.bm-logo {
  width: 30px; height: 30px; border-radius: 9px; background: var(--em-mid); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
  transition: background .35s ease;
}
.bm-side i { font-style: normal; font-size: 8px; font-weight: 600; color: var(--tx-3); letter-spacing: .02em; }
.bm-btn {
  display: inline-block; background: var(--em-mid); color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 7px; padding: 6px 12px; width: max-content; transition: background .35s ease;
}
.bm-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; margin-top: 4px; border-bottom: 1px solid var(--pr-overlay); font-size: 10px; color: var(--tx-2);
}
.bm-row em { font-style: normal; font-size: 8px; font-weight: 700; color: var(--em-1); background: rgba(16,185,129,.12); padding: 2px 6px; border-radius: 999px; }
.brand-swatches { display: flex; gap: 10px; }
.bs {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid transparent; cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}
.bs:hover { transform: scale(1.18); }
.bs.on { border-color: #fff; }

/* guard */
.gd-table { position: relative; background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 12px; padding: 10px 0; }
.gd-row {
  display: flex; justify-content: space-between; padding: 9px 16px; font-size: 12.5px; color: var(--tx-2);
  border-top: 1px solid var(--line-1); user-select: none;
}
.gd-row:first-child { border-top: 0; }
.gd-row i { font-style: normal; font-family: var(--mono); font-size: 11.5px; color: var(--tx-3); }
.gd-shield {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(.85); opacity: 0;
  background: rgba(220, 38, 38, 0.14); border: 1px solid rgba(248, 113, 113, 0.4); color: #FCA5A5;
  font-size: 11px; font-weight: 700; border-radius: 999px; padding: 7px 16px; white-space: nowrap;
}

/* ---------------------------------------------------------- feature index */
.features { padding: 40px 0 110px; }
.feat-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  max-width: 1000px; margin: 0 auto 34px; padding: 0 20px;
}
.feat-tabs button {
  background: transparent; border: 1px solid var(--line-2); color: var(--tx-2);
  font-family: inherit; font-size: 13.5px; font-weight: 600; border-radius: 999px;
  padding: 9px 20px; cursor: pointer; transition: all .25s ease;
}
.feat-tabs button:hover { border-color: var(--em-line); color: var(--tx-1); }
.feat-tabs button[aria-pressed="true"] {
  background: var(--em-soft); border-color: var(--em-line); color: var(--em-2);
}
.feat-panel {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  min-height: 320px; align-content: start;
}
.feat-chip {
  background: var(--ink-2); border: 1px solid var(--line-1); border-radius: 14px;
  padding: 16px 18px; transition: border-color .25s ease, transform .25s ease;
}
.feat-chip:hover { border-color: var(--em-line); transform: translateY(-3px); }
.feat-chip > strong { display: block; font-size: 14.5px; letter-spacing: -0.01em; }
.feat-chip > span { display: block; color: var(--tx-3); font-size: 12.5px; margin-top: 5px; line-height: 1.5; }

/* Feature chip visuals */
.fv {
  height: 80px; background: #0c1420; border-radius: 10px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px; padding: 12px 16px; overflow: hidden;
}
.fv i, .fv em { font-style: normal; }
.fv b { font-weight: 700; }
.fv .c { display: flex; flex-direction: column; gap: 5px; width: 100%; }
.fv .r { display: flex; align-items: center; gap: 6px; }
.fv .fi { background: #17243A; border-radius: 8px 8px 8px 2px; padding: 5px 10px; font-size: 11px; color: #CBD5E1; max-width: 80%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fv .fo { background: #1e3a5f; border-radius: 8px 8px 2px 8px; padding: 5px 10px; font-size: 11px; color: #CBD5E1; align-self: flex-end; max-width: 80%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fv .d { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fv .p { border: 1px solid #334155; border-radius: 4px; padding: 3px 8px; font-size: 10px; color: #94A3B8; white-space: nowrap; }
.fv .p.a { border-color: #10B981; color: #10B981; }
.fv .sw { width: 28px; height: 15px; border-radius: 8px; background: #334155; position: relative; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.fv .sw.on { background: #2563EB; }
.fv .sw::after { content: ''; width: 13px; height: 13px; border-radius: 50%; background: #E2E8F0; position: absolute; top: 1px; left: 1px; }
.fv .sw.on::after { left: auto; right: 1px; }
.fv .bar { height: 5px; border-radius: 3px; background: #1e293b; flex: 1; overflow: hidden; }
.fv .bar i { display: block; height: 100%; border-radius: 3px; background: #10B981; }
.fv .l { height: 3px; border-radius: 2px; background: #1e293b; flex: 1; }
.fv .bx { background: #17243A; border-radius: 5px; padding: 4px 10px; font-size: 10px; color: #CBD5E1; white-space: nowrap; }
.fv .ar { color: #475569; font-size: 13px; flex-shrink: 0; }
.fv .ic { font-size: 14px; flex-shrink: 0; }
.fv .t { font-size: 10px; color: #94A3B8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fv .nt { background: #17243A; border: 1px solid #334155; border-radius: 8px; padding: 6px 12px; font-size: 11px; color: #CBD5E1; display: flex; align-items: center; gap: 8px; }
.fv .cd { background: #0f1b2d; border: 1px solid #1e293b; border-radius: 5px; padding: 6px 10px; font-family: monospace; font-size: 10px; color: #10B981; line-height: 1.5; }
.fv .kp { text-align: center; }
.fv .kp b { display: block; font-size: 16px; color: #F8FAFC; font-weight: 700; }
.fv .kp em { font-size: 9px; color: #64748b; text-transform: uppercase; }
.fv .wrap { flex-wrap: wrap; gap: 4px; }

/* ---------------------------------------------------------- feature demos */
.feat-demos {
  max-width: 620px; margin: 0 auto 36px; padding: 0 clamp(20px, 4vw, 48px);
}
.fd { display: none; }
.fd.fd-active { display: block; }
.fd-frame {
  background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 16px;
  overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.45);
}
.fd-bar {
  display: flex; gap: 6px; padding: 10px 14px 8px; background: rgba(226,232,240,.04);
  border-bottom: 1px solid var(--line-1);
}
.fd-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(226,232,240,.12); }
.fd-header {
  display: flex; align-items: center; gap: 7px; padding: 11px 16px 9px;
  font-size: 12px; font-weight: 700; color: var(--tx-2); letter-spacing: .02em;
  border-bottom: 1px solid var(--line-1);
}
.fd-header svg { color: #94A3B8; }

/* --- capture demo --- */
.fd-cap-table { padding: 0; }
.fd-cap-thead {
  display: grid; grid-template-columns: 72px 1fr 1fr 64px; gap: 8px; padding: 8px 16px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #7E8DA6;
  background: var(--pr-overlay); border-bottom: 1px solid var(--line-1);
}
.fd-cap-row {
  display: grid; grid-template-columns: 72px 1fr 1fr 64px; gap: 8px; padding: 9px 16px;
  font-size: 12.5px; color: var(--tx-2); align-items: center;
  border-bottom: 1px solid var(--line-1); opacity: 0; transform: translateX(-20px);
}
.fd-cap-row.in { opacity: 1; transform: translateX(0); transition: opacity .45s ease, transform .45s ease; }
.fd-src {
  font-style: normal; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px;
  display: inline-block; text-align: center; letter-spacing: .02em;
}
.fd-src-web { background: rgba(37,99,235,.18); color: #60A5FA; }
.fd-src-fb { background: rgba(59,130,246,.18); color: #93C5FD; }
.fd-src-google { background: rgba(234,179,8,.15); color: #FCD34D; }
.fd-src-hook { background: rgba(139,92,246,.15); color: #A78BFA; }
.fd-src-wa { background: rgba(34,197,94,.15); color: #4ADE80; }
.fd-stage { font-size: 10.5px; font-weight: 600; color: #94A3B8; }
.fd-enrich { font-family: var(--mono); font-size: 11px; color: #475569; transition: color .4s ease; }
.fd-enrich.filled { color: var(--tx-2); }
.fd-cap-enrichbar {
  padding: 8px 16px; font-size: 10.5px; color: #94A3B8; text-align: center;
  background: rgba(37,99,235,.06); border-top: 1px solid var(--line-1);
  opacity: 0; transition: opacity .4s ease;
}
.fd-cap-enrichbar.show { opacity: 1; }

/* --- ai chat demo --- */
.fd-ai-chat { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; max-height: 310px; overflow: hidden; }
.fd-ai-msg { display: flex; gap: 8px; align-items: flex-start; }
.fd-ai-msg span {
  display: inline-block; padding: 8px 12px; border-radius: 12px; font-size: 12px; line-height: 1.55;
  color: var(--tx-1); max-width: 85%;
}
.fd-ai-visitor { justify-content: flex-end; }
.fd-ai-visitor span { background: var(--pr-overlay); border-radius: 12px 12px 2px 12px; }
.fd-ai-bot span { background: rgba(37,99,235,.12); border-radius: 12px 12px 12px 2px; }
.fd-ai-bot b {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--pr-blue);
  color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.fd-ai-cal { display: block; margin-top: 6px; padding: 6px 10px; background: rgba(16,185,129,.12); border-radius: 8px; font-style: normal; font-size: 11px; color: #34D399; }
.fd-ai-pay { display: block; margin-top: 6px; padding: 6px 10px; background: rgba(249,115,22,.12); border-radius: 8px; font-style: normal; font-size: 11px; color: #FDBA74; }
.fd-ai-ok { display: block; margin-top: 4px; font-style: normal; font-size: 10.5px; color: #34D399; }
.fd-ai-msg { opacity: 0; transform: translateY(10px); }
.fd-ai-msg.in { opacity: 1; transform: translateY(0); transition: opacity .35s ease, transform .35s ease; }
.fd-ai-typing {
  display: flex; align-items: center; gap: 6px; padding: 6px 16px 12px;
  font-size: 11px; color: #94A3B8; opacity: 0; transition: opacity .25s ease;
}
.fd-ai-typing.show { opacity: 1; }
.fd-ai-typing b { flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%; background: var(--pr-blue); color: #fff; font-size: 9px; display: flex; align-items: center; justify-content: center; }
.fd-ai-typing i { width: 5px; height: 5px; border-radius: 50%; background: #94A3B8; animation: fd-dot-bounce .6s ease infinite; }
.fd-ai-typing i:nth-child(2) { animation-delay: .1s; }
.fd-ai-typing i:nth-child(3) { animation-delay: .2s; }
@keyframes fd-dot-bounce { 0%,80%,100% { transform: scale(1); opacity: .4; } 40% { transform: scale(1.4); opacity: 1; } }

/* --- calls demo --- */
.fd-call-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.fd-call-left {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 18px 14px; border-right: 1px solid var(--line-1); text-align: center;
}
.fd-call-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--pr-blue);
  color: #fff; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.fd-call-name { font-size: 13px; font-weight: 700; color: var(--tx-1); }
.fd-call-num { font-size: 10.5px; color: #94A3B8; font-family: var(--mono); }
.fd-call-timer { font-size: 22px; font-weight: 800; color: var(--tx-1); font-family: var(--mono); font-variant-numeric: tabular-nums; }
.fd-call-wave { display: flex; gap: 3px; align-items: center; height: 22px; }
.fd-call-wave i {
  width: 3px; border-radius: 2px; background: var(--pr-blue);
  animation: fd-wave .7s ease-in-out infinite alternate;
}
.fd-call-wave i:nth-child(1) { height: 6px; animation-delay: 0s; }
.fd-call-wave i:nth-child(2) { height: 14px; animation-delay: .08s; }
.fd-call-wave i:nth-child(3) { height: 8px; animation-delay: .16s; }
.fd-call-wave i:nth-child(4) { height: 18px; animation-delay: .24s; }
.fd-call-wave i:nth-child(5) { height: 10px; animation-delay: .32s; }
.fd-call-wave i:nth-child(6) { height: 16px; animation-delay: .4s; }
.fd-call-wave i:nth-child(7) { height: 7px; animation-delay: .48s; }
@keyframes fd-wave { 0% { height: 4px; } 100% { height: 20px; } }
.fd-call-rec { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: #F87171; }
.fd-rec-dot { width: 6px; height: 6px; border-radius: 50%; background: #EF4444; animation: fd-blink 1s ease infinite; }
@keyframes fd-blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.fd-call-right { padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; }
.fd-call-tlabel { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #7E8DA6; }
.fd-call-lines { display: flex; flex-direction: column; gap: 5px; }
.fd-call-lines p { font-size: 11px; color: var(--tx-2); line-height: 1.5; margin: 0; opacity: 0; transform: translateY(6px); }
.fd-call-lines p.in { opacity: 1; transform: translateY(0); transition: opacity .35s ease, transform .35s ease; }
.fd-call-lines b { color: var(--tx-1); font-weight: 600; }
.fd-call-sentiment { font-size: 10.5px; color: #34D399; margin-top: 4px; opacity: 0; transition: opacity .4s ease; }
.fd-call-sentiment.show { opacity: 1; }
.fd-senti-pos { margin-right: 3px; }
.fd-call-dispo {
  display: flex; gap: 6px; padding: 10px 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line-1); background: rgba(37,99,235,.04);
}
.fd-dispo-chip {
  font-size: 10.5px; padding: 3px 9px; border-radius: 6px; color: #94A3B8;
  background: var(--pr-overlay); border: 1px solid var(--line-1);
}
.fd-dispo-on { color: #34D399; background: rgba(16,185,129,.1); border-color: rgba(52,211,153,.25); }

/* --- messaging demo --- */
.fd-msg-split { display: grid; grid-template-columns: 160px 1fr; min-height: 250px; }
.fd-msg-list { border-right: 1px solid var(--line-1); padding: 6px 0; }
.fd-msg-item {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px; cursor: default;
  border-bottom: 1px solid var(--line-1); transition: background .2s ease;
}
.fd-msg-item:hover, .fd-msg-active { background: var(--pr-overlay); }
.fd-msg-item div { overflow: hidden; }
.fd-msg-item strong { display: block; font-size: 11px; font-weight: 600; color: var(--tx-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fd-msg-item span { display: block; font-size: 10px; color: #94A3B8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fd-ch {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-style: normal;
}
.fd-ch-wa { background: rgba(34,197,94,.18); color: #4ADE80; }
.fd-ch-email { background: rgba(37,99,235,.18); color: #60A5FA; }
.fd-ch-web { background: rgba(148,163,184,.18); color: #94A3B8; font-size: 7px; }
.fd-msg-thread { padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.fd-msg-thhead {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 700; color: var(--tx-1); padding-bottom: 8px; border-bottom: 1px solid var(--line-1);
}
.fd-msg-thhead .fd-ch { font-size: 9px; width: auto; height: auto; padding: 2px 8px; border-radius: 999px; }
.fd-msg-bubble {
  font-size: 11.5px; line-height: 1.55; color: var(--tx-1); padding: 8px 12px; border-radius: 12px;
  max-width: 88%; position: relative; opacity: 0; transform: translateY(8px);
}
.fd-msg-bubble.in { opacity: 1; transform: translateY(0); transition: opacity .35s ease, transform .35s ease; }
.fd-bubble-in { background: var(--pr-overlay); align-self: flex-start; border-radius: 12px 12px 12px 2px; }
.fd-bubble-out { background: rgba(37,99,235,.12); align-self: flex-end; border-radius: 12px 12px 2px 12px; }
.fd-bubble-out b { color: var(--pr-blue); font-weight: 700; margin-right: 4px; }
.fd-bubble-ticks { font-size: 10px; color: #94A3B8; text-align: right; margin-top: 2px; }
.fd-ticks-read { color: #60A5FA; }

/* --- money demo --- */
.fd-money-card { padding: 16px; }
.fd-money-inv {
  display: flex; flex-direction: column; gap: 4px; padding: 14px; margin-bottom: 14px;
  background: var(--pr-overlay); border: 1px solid var(--line-1); border-radius: 12px;
}
.fd-money-tag { font-size: 10px; font-weight: 700; letter-spacing: .04em; color: #94A3B8; }
.fd-money-inv strong { font-size: 13.5px; color: var(--tx-1); }
.fd-money-amt { font-size: 12px; color: var(--tx-2); }
.fd-money-amt b { color: var(--tx-1); }
.fd-money-progress { margin-bottom: 14px; }
.fd-money-pbar { height: 8px; background: rgba(148,163,184,.12); border-radius: 999px; overflow: hidden; }
.fd-money-pfill { height: 100%; width: 0; background: #16a34a; border-radius: 999px; transition: width 1.6s cubic-bezier(.22,1,.36,1); }
.fd-money-ptext { display: flex; justify-content: space-between; font-size: 10.5px; color: #94A3B8; margin-top: 6px; }
.fd-money-ptext b { color: var(--tx-2); }
.fd-money-txns { display: flex; flex-direction: column; gap: 0; }
.fd-money-tx {
  display: grid; grid-template-columns: 20px 1fr 1fr 60px; gap: 8px; padding: 7px 0;
  font-size: 11.5px; color: var(--tx-2); align-items: center;
  border-bottom: 1px solid var(--line-1); opacity: 0; transform: translateX(-12px);
}
.fd-money-tx.in { opacity: 1; transform: translateX(0); transition: opacity .35s ease, transform .35s ease; }
.fd-money-tx:last-child { border-bottom: 0; }
.fd-tx-icon { font-size: 13px; }
.fd-tx-done { color: #34D399; }
.fd-tx-wait { color: #FDBA74; }
.fd-money-pipeline {
  display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 16px;
  border-top: 1px solid var(--line-1); background: rgba(37,99,235,.04);
}
.fd-pipe-step {
  font-size: 10.5px; font-weight: 600; padding: 3px 10px; border-radius: 6px;
  background: var(--pr-overlay); color: #94A3B8; transition: all .4s ease;
}
.fd-pipe-active { background: rgba(37,99,235,.18); color: #60A5FA; }
.fd-pipe-won { background: rgba(16,185,129,.15); color: #34D399; }
.fd-pipe-arr { color: #475569; font-size: 11px; }

/* --- marketing demo --- */
.fd-mkt-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 14px 16px 10px; }
.fd-mkt-kpi {
  background: var(--pr-overlay); border: 1px solid var(--line-1); border-radius: 10px;
  padding: 10px 11px; text-align: center;
}
.fd-mkt-kval { display: block; font-size: 15px; font-weight: 800; color: var(--tx-1); font-variant-numeric: tabular-nums; }
.fd-mkt-roas { color: #34D399; }
.fd-mkt-klbl { display: block; font-size: 9px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #7E8DA6; margin-top: 3px; }
.fd-mkt-chart-wrap { padding: 0 16px 10px; }
.fd-mkt-chart {
  width: 100%; height: 70px; display: block; background: var(--pr-overlay);
  border: 1px solid var(--line-1); border-radius: 10px; padding: 8px;
}
.fd-mkt-chart rect { fill: #2563EB; opacity: .4; }
.fd-mkt-chart .fd-rev-line { fill: none; stroke: #059669; stroke-width: 1.5; stroke-linecap: round; }
.fd-mkt-legend { display: flex; gap: 14px; justify-content: center; margin-top: 6px; font-size: 10px; color: #94A3B8; }
.fd-mkt-legend i { display: inline-block; width: 10px; height: 4px; border-radius: 2px; vertical-align: middle; margin-right: 4px; }
.fd-mkt-legend .lg-spend { background: #2563EB; opacity: .55; }
.fd-mkt-legend .lg-rev { background: #059669; }
.fd-mkt-ai {
  margin: 0 16px 14px; padding: 10px 14px; background: rgba(16,185,129,.06);
  border: 1px solid rgba(52,211,153,.18); border-radius: 10px;
  opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease;
}
.fd-mkt-ai.in { opacity: 1; transform: translateY(0); }
.fd-mkt-ai-badge { font-size: 10px; font-weight: 700; color: #34D399; margin-bottom: 5px; }
.fd-mkt-ai p { font-size: 11px; color: var(--tx-2); line-height: 1.55; margin: 0; }
.fd-mkt-ai b { color: var(--tx-1); }

/* --- automation demo --- */
.fd-wf-canvas { position: relative; height: 280px; padding: 0 16px; overflow: hidden; }
.fd-wf-node {
  position: absolute; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--pr-overlay); border: 1.5px solid var(--line-2); border-radius: 10px;
  padding: 8px 14px; font-size: 11.5px; font-weight: 600; color: var(--tx-1); white-space: nowrap;
  opacity: 0; transition: opacity .4s ease, border-color .3s ease;
}
.fd-wf-node.in { opacity: 1; }
.fd-wf-trigger { border-color: rgba(37,99,235,.4); background: rgba(37,99,235,.1); }
.fd-wf-condition { border-color: rgba(249,115,22,.35); background: rgba(249,115,22,.08); }
.fd-wf-action { border-color: var(--line-2); }
.fd-wf-ic { font-size: 13px; }
.fd-wf-ic-trigger { color: #60A5FA; }
.fd-wf-ic-cond { color: #FDBA74; }
.fd-wf-ic-act { color: #4ADE80; }
.fd-wf-ic-seq { color: #A78BFA; }
.fd-wf-ic-task { color: #60A5FA; }
.fd-wf-edge { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.fd-wf-edge line { stroke: #475569; stroke-width: 1.5; stroke-dasharray: 5 4; opacity: 0; transition: opacity .5s ease; }
.fd-wf-edge line.in { opacity: 1; }
.fd-wf-elbl { fill: #7E8DA6; font-size: 9px; font-weight: 700; }
.fd-wf-dot {
  position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #60A5FA;
  box-shadow: 0 0 8px rgba(96,165,250,.6); opacity: 0; pointer-events: none;
}

/* --- control demo --- */
.fd-ctrl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.fd-ctrl-toggles { padding: 14px 16px; border-right: 1px solid var(--line-1); }
.fd-ctrl-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--line-1); font-size: 12px; color: var(--tx-2);
}
.fd-ctrl-row:last-child { border-bottom: 0; }
.fd-ctrl-sw {
  flex: 0 0 auto; width: 36px; height: 20px; border-radius: 999px; border: 0; cursor: default; position: relative;
  background: rgba(226,232,240,.14); transition: background .25s ease; padding: 0;
}
.fd-ctrl-on { background: var(--pr-blue); }
.fd-ctrl-thumb {
  position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: left .25s cubic-bezier(.34,1.4,.64,1); box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.fd-ctrl-on .fd-ctrl-thumb { left: 18px; }
.fd-ctrl-audit { padding: 14px 16px; }
.fd-ctrl-alabel { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #7E8DA6; margin-bottom: 8px; }
.fd-ctrl-arow {
  display: grid; grid-template-columns: 12px 52px 1fr 56px; gap: 6px; align-items: center;
  font-size: 11px; color: var(--tx-2); padding: 6px 0; border-bottom: 1px solid var(--line-1);
  opacity: 0; transform: translateY(6px);
}
.fd-ctrl-arow.in { opacity: 1; transform: translateY(0); transition: opacity .3s ease, transform .3s ease; }
.fd-ctrl-arow:last-child { border-bottom: 0; }
.fd-ctrl-arow b { font-weight: 600; color: var(--tx-1); }
.fd-ctrl-ok { color: #34D399; font-size: 7px; }
.fd-ctrl-warn { color: #FDBA74; font-size: 7px; }
.fd-ctrl-roles {
  display: flex; gap: 6px; padding: 10px 16px; border-top: 1px solid var(--line-1);
  background: rgba(37,99,235,.04); flex-wrap: wrap;
}
.fd-role {
  font-size: 10.5px; font-weight: 600; padding: 4px 10px; border-radius: 8px;
  background: rgba(37,99,235,.12); color: #60A5FA; display: inline-flex; align-items: center; gap: 6px;
}
.fd-role i { font-style: normal; font-weight: 400; color: #94A3B8; font-size: 10px; }
.fd-role-dim { opacity: .5; }

/* ---------------------------------------------------------- stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1240px; margin: 0 auto; padding: 70px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--line-1); position: relative;
}
.stats::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--em-line), transparent);
}
.stat b {
  display: block; font-family: var(--mono); font-weight: 700;
  font-size: clamp(34px, 3.6vw, 52px); letter-spacing: -0.03em;
  background: linear-gradient(110deg, var(--em-1), var(--em-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { color: var(--tx-3); font-size: 13.5px; display: block; margin-top: 8px; max-width: 26ch; }

/* ---------------------------------------------------------- faq */
.faq { padding: 90px 0 110px; }
.faq-list { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.faq-item {
  border-bottom: 1px solid var(--line-1);
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px;
  padding: 22px 4px; font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--em-2); }
.faq-icon {
  margin-left: auto; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line-2); position: relative; transition: all .3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--tx-2); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-icon::before { width: 11px; height: 1.6px; }
.faq-icon::after { width: 1.6px; height: 11px; transition: transform .3s ease; }
.faq-item[open] .faq-icon { background: var(--em-soft); border-color: var(--em-line); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-body { overflow: hidden; }
.faq-body p { margin: 0; padding: 0 44px 24px 4px; color: var(--tx-2); font-size: 15px; max-width: 64ch; }

/* ---------------------------------------------------------- cta */
.cta {
  position: relative; text-align: center; padding: 130px 20px 140px; overflow: hidden;
  border-top: 1px solid var(--line-1);
}
.cta-glow {
  position: absolute; inset: auto 0 -40%; height: 560px; pointer-events: none;
  background: radial-gradient(640px 360px at 50% 100%, rgba(16, 185, 129, 0.22), transparent 70%);
}
.cta-mark { margin: 0 auto 26px; }
.cta h2 { font-size: clamp(32px, 4.6vw, 58px); font-weight: 800; letter-spacing: -0.03em; }
.cta p { color: var(--tx-2); max-width: 46ch; margin: 18px auto 34px; font-size: 17px; }
.cta-note { display: block; margin-top: 18px; color: var(--tx-3); font-size: 13px; }

/* ---------------------------------------------------------- footer */
.footer {
  border-top: 1px solid var(--line-1);
  max-width: 1240px; margin: 0 auto;
  padding: 60px clamp(20px, 4vw, 48px) 40px;
}
.ft-top {
  display: flex; gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid var(--line-1);
}
.ft-brand { flex: 0 0 240px; }
.ft-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ft-logo img { height: 52px; width: auto; }
.ft-logo-text { display: flex; flex-direction: column; line-height: 1.15; font-size: 12px; color: var(--tx-2); letter-spacing: 0.02em; }
.ft-logo-text strong { font-size: 16px; font-weight: 800; color: var(--tx-1); letter-spacing: -0.01em; }
.ft-tagline { color: var(--tx-3); font-size: 13px; margin-top: 14px; line-height: 1.5; }
.ft-cols { display: flex; flex: 1; gap: 40px; justify-content: space-between; }
.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tx-2); margin: 0 0 4px; }
.ft-col a { color: var(--tx-3); text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color .2s; }
.ft-col a:hover { color: var(--em-2); }
.ft-bottom { padding-top: 32px; }
.ft-meta { display: flex; align-items: center; justify-content: space-between; color: var(--tx-3); font-size: 12.5px; }
.ft-big {
  font-size: clamp(64px, 12vw, 140px); font-weight: 800; letter-spacing: -0.03em;
  color: var(--line-1); text-align: center; margin-top: 40px; line-height: 1;
  user-select: none;
}
.to-top {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--line-2); color: var(--tx-2);
  font-family: inherit; font-size: 12.5px; font-weight: 700; border-radius: 999px;
  padding: 9px 18px; cursor: pointer; transition: border-color .25s ease, color .25s ease;
}
.to-top:hover { border-color: var(--em-line); color: var(--em-2); }
.to-top-arrow { display: inline-block; }
.ft-contact { font-style: normal; color: var(--tx-3); font-size: 12.5px; line-height: 1.65; margin-top: 16px; }
.ft-contact a { color: var(--tx-3); text-decoration: none; transition: color .2s; }
.ft-contact a:hover { color: var(--em-2); }
.ft-reg { color: var(--tx-3); font-size: 12px; line-height: 1.7; margin-top: 8px; }
.ft-reg span { white-space: nowrap; }
.ft-social { display: flex; gap: 10px; margin-top: 18px; }
.ft-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--tx-3);
  transition: border-color .25s ease, color .25s ease;
}
.ft-social a:hover { border-color: var(--em-line); color: var(--em-2); }
.ft-social svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------------------------------------------------------- try-it FAB widget */
.fab-wrap { position: fixed; right: 22px; bottom: 22px; z-index: 70; }
.fab {
  width: 56px; height: 56px; border-radius: 28px; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--em-1), var(--em-2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(5, 150, 105, 0.45);
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  visibility: hidden;
  transition: transform .2s ease, opacity .3s ease, visibility .3s;
}
.fab:hover { transform: scale(1.07); }
.fab.shown { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.fab-panel[hidden] { display: none; }
.fab-panel {
  position: absolute; right: 0; bottom: 70px;
  width: 340px; max-width: calc(100vw - 44px); height: 460px; max-height: calc(100dvh - 130px);
  background: #fff; border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transform-origin: bottom right;
}
.fab-head { background: linear-gradient(120deg, #03543E, #047857); }
.fab-close { margin-left: auto; background: none; border: 0; color: #fff; font-size: 20px; cursor: pointer; opacity: .85; line-height: 1; padding: 0; }
.fab-body { overflow-y: auto; }
.fab-body .wmsg.v .wbubble { background: var(--em-1); }
.fab-quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 12px 14px; border-top: 1px solid #E5E7EB; background: #fff; }
.fab-quick button {
  background: #ECFDF5; border: 1px solid #A7F3D0; color: #047857;
  font-family: inherit; font-size: 12px; font-weight: 600;
  border-radius: 999px; padding: 7px 13px; cursor: pointer; transition: background .2s ease;
}
.fab-quick button:hover { background: #D1FAE5; }

/* ---------------------------------------------------------- reveal pre-states (JS adds .revealed) */
.js .section-head:not(.revealed), .js .pillar-card:not(.revealed), .js .cell:not(.revealed),
.js .stat:not(.revealed), .js .faq-item:not(.revealed), .js .cta h2:not(.revealed),
.js .cta p:not(.revealed), .js .cta .btn:not(.revealed), .js .cta-mark:not(.revealed),
.js .showcase:not(.revealed) {
  opacity: 0; transform: translateY(42px);
}
.js .logos-title:not(.revealed), .js .logos-marquee:not(.revealed) { opacity: 0; }
/* if JS dies, everything stays visible */
html:not(.js) .hero-toast { opacity: 1; transform: none; }

/* ---------------------------------------------------------- responsive */
@media (max-width: 1080px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "wf wf"
      "inbox approve"
      "score wa"
      "brand guard";
  }
  .feat-panel { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}

@media (max-width: 920px) {
  .hero { padding-top: calc(var(--nav-h) + 12px); }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-demo { justify-self: center; }
  .hero-toast { left: 4px; bottom: 12px; }
  .pillar-grid { grid-template-columns: 1fr; max-width: 580px; }
  .pillar-grid:has(.pillar-card:hover) .pillar-card { transform: none; }
  .pillar-card:hover { transform: none; }
  .panel { grid-template-columns: 1fr; min-height: 0; width: 86vw; }
  .panel-demo-split { grid-template-columns: 1fr; }
  .journey-head { flex-direction: column; align-items: flex-start; }
  .journey-progress { flex-basis: auto; width: 160px; }
  /* showcases stack: copy first, demo second */
  .showcase { grid-template-columns: 1fr; gap: 28px; max-width: 580px; padding: 40px clamp(20px, 4vw, 48px); }
  .showcase-rev .showcase-copy { order: 1; }
  .showcase-rev .showcase-demo { order: 2; }
}

@media (max-width: 560px) {
  .fd-cap-thead, .fd-cap-row { grid-template-columns: 56px 1fr 68px; }
  .fd-cap-thead span:nth-child(3), .fd-cap-row .fd-enrich { display: none; }
  .fd-call-split { grid-template-columns: 1fr; }
  .fd-call-left { border-right: 0; border-bottom: 1px solid var(--line-1); padding: 12px; }
  .fd-msg-split { grid-template-columns: 1fr; }
  .fd-msg-list { display: none; }
  .fd-ctrl-split { grid-template-columns: 1fr; }
  .fd-ctrl-toggles { border-right: 0; border-bottom: 1px solid var(--line-1); }
  .fd-mkt-kpis { grid-template-columns: repeat(2, 1fr); }
  .mk-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mk-tile-roas { grid-column: span 2; flex-direction: row; align-items: center; gap: 8px; flex-wrap: wrap; }
  .crm-frame { height: 340px; }
  .hl-name { font-size: 16px; }
}

@media (max-width: 720px) {
  .nav { gap: 16px; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; gap: 4px; padding: 12px 20px 24px;
    background: var(--ink-1); border-bottom: 1px solid var(--line-1);
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.6);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 4px; font-size: 16px; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 12px; justify-content: center; }
  .nav-burger { display: flex; margin-left: auto; }
  .bento { grid-template-columns: 1fr; grid-template-areas: "wf" "inbox" "approve" "score" "wa" "brand" "guard"; }
  .feat-panel { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .mini-kanban { grid-template-columns: repeat(4, minmax(96px, 1fr)); overflow-x: auto; }
  .ft-top { flex-direction: column; gap: 36px; }
  .ft-brand { flex: none; }
  .ft-cols { flex-wrap: wrap; gap: 28px; }
  .ft-col { flex: 0 0 calc(50% - 14px); }
  .ft-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .fab-wrap { right: 14px; bottom: 14px; }
}

/* journey fallback: native horizontal swipe on small screens (no pinning) */
@media (max-width: 920px) {
  .journey-pin { min-height: 0; padding: 80px 0; }
  .journey-track {
    width: auto; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; padding-bottom: 16px;
  }
  .panel { scroll-snap-align: center; }
  .journey-progress { display: none; }
}

/* same swipe fallback at EVERY width when there is no pin:
   reduced motion, missing GSAP, or JS disabled entirely */
.journey-static .journey-pin,
html:not(.js) .journey-pin { min-height: 0; padding: 80px 0; }
.journey-static .journey-track,
html:not(.js) .journey-track {
  width: auto; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: 16px;
}
.journey-static .panel,
html:not(.js) .panel { scroll-snap-align: center; }
.journey-static .journey-progress,
html:not(.js) .journey-progress { display: none; }

/* ---------------------------------------------------------- policy / legal pages */
.page-main {
  max-width: 1240px; margin: 0 auto;
  padding: 120px clamp(20px, 4vw, 48px) 80px;
}
.page-header { margin-bottom: 48px; }
.page-header h1 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.03em; color: var(--tx-1);
}
.page-subtitle {
  color: var(--tx-3); font-size: 15px; margin-top: 10px;
}
.page-body h2 {
  font-size: 22px; font-weight: 700; color: var(--tx-1);
  margin: 40px 0 16px; letter-spacing: -0.01em;
}
.page-body h3 {
  font-size: 17px; font-weight: 700; color: var(--tx-1);
  margin: 28px 0 12px;
}
.page-body p {
  color: var(--tx-2); font-size: 15px; line-height: 1.7;
  margin: 0 0 16px;
}
.page-body ul, .page-body ol {
  color: var(--tx-2); font-size: 15px; line-height: 1.7;
  margin: 0 0 16px; padding-left: 24px;
}
.page-body li { margin-bottom: 6px; }
.page-body a { color: var(--em-2); text-decoration: underline; text-underline-offset: 3px; }
.page-body a:hover { color: var(--em-1); }
.page-body strong { color: var(--tx-1); font-weight: 600; }
.page-body table {
  width: 100%; border-collapse: collapse; margin: 16px 0 24px;
  font-size: 14px; color: var(--tx-2);
}
.page-body th, .page-body td {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid var(--line-1);
}
.page-body th { color: var(--tx-1); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.page-body .contact-card {
  background: var(--ink-2); border: 1px solid var(--line-1);
  border-radius: 12px; padding: 24px; margin: 24px 0;
}
.page-body .contact-card p { margin: 4px 0; }

/* ---------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .logos-track { animation: none; }
  .logos-marquee { flex-wrap: wrap; justify-content: center; mask-image: none; -webkit-mask-image: none; }
  .logos-track:last-child { display: none; }
  .js .section-head:not(.revealed), .js .pillar-card:not(.revealed), .js .cell:not(.revealed),
  .js .stat:not(.revealed), .js .faq-item:not(.revealed), .js .cta h2:not(.revealed),
  .js .cta p:not(.revealed), .js .cta .btn:not(.revealed), .js .cta-mark:not(.revealed),
  .js .logos-title:not(.revealed), .js .logos-marquee:not(.revealed),
  .js .showcase:not(.revealed) {
    opacity: 1; transform: none;
  }
  .hero-toast { opacity: 1; transform: none; }
  .mlc-row, .tr-line, .tr-chip, .mp-verify, .wa-bubble.in { opacity: 1; transform: none; }
  .ci-action, .ci-task { opacity: 1; transform: none; }
  /* real-screens demos: render final state */
  .hl-popup { opacity: 1; transform: none; }
  .hl-badge { transform: scale(1); }
  .mk-fbar i { transition: none; }
  .cg-lock { transition: none; }
}

/* ==============================================================
   Conversion-audit additions (hero clarity, modal forms, pricing
   trust + savings, mid-page CTA, mobile sticky CTA, journey swipe)
   ============================================================== */

/* ---- hero clarity (#04) + trust microline (#07/#08) ---- */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--em-2); background: var(--em-soft, rgba(16,185,129,.1));
  border: 1px solid var(--em-line, rgba(16,185,129,.28));
  padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
}
.hero-trust { margin-top: 18px; color: var(--tx-3); font-size: 13px; line-height: 1.6; }
.hero-trust a { color: var(--tx-2); text-decoration: underline; text-underline-offset: 3px; }
.hero-trust a:hover { color: var(--em-2); }

/* ---- Hero announce bar (launch webinar) ---- */
.hero-announce {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.25);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 16px;
  text-decoration: none; cursor: pointer;
}
.hero-announce:hover { background: rgba(251,191,36,.13); }
.hero-announce-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #F59E0B; flex-shrink: 0;
  animation: hero-blink 1.4s ease-in-out infinite;
}
@keyframes hero-blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-announce-label { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #FCD34D; }
.hero-announce-date  { font-size: 12px; color: var(--tx-2); }

/* ---- Hero offer pills ---- */
.hero-offer-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 0; }
.hero-pill {
  display: inline-flex; align-items: center; padding: 5px 12px;
  border-radius: 999px; font-size: 12px; font-weight: 500; line-height: 1;
}
.hero-pill--amber  { background: rgba(251,191,36,.1);  border: 1px solid rgba(251,191,36,.22); color: #FCD34D; }
.hero-pill--green  { background: rgba(5,150,105,.1);   border: 1px solid rgba(5,150,105,.25);  color: #34D399; }
.hero-pill--indigo { background: rgba(99,102,241,.1);  border: 1px solid rgba(99,102,241,.25); color: #A5B4FC; }

/* ---- Hero webinar CTA badge ---- */
.hero-webinar-btn { display: inline-flex; align-items: center; gap: 8px; }
.hero-free-badge {
  background: #EF4444; color: #fff; font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase;
}

/* ---- conversion modal form (#05/#09) ---- */
#gs-sub { color: var(--tx-2); font-size: 13.5px; margin-top: 6px; }
.gs-form { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.gs-form input {
  width: 100%; background: var(--ink-1); border: 1px solid var(--line-2);
  border-radius: var(--r-ui); color: var(--tx-1); font: inherit; font-size: 14px;
  padding: 12px 13px; outline: 0; transition: border-color .2s;
}
.gs-form input::placeholder { color: var(--tx-3); }
.gs-form input:focus { border-color: var(--em-line, rgba(16,185,129,.5)); }
.gs-form input.invalid { border-color: #F87171; }
.gs-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.gs-msg { font-size: 12.5px; color: var(--em-2); min-height: 16px; text-align: center; }
.gs-msg.error { color: #F87171; }
.gs-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px;
  margin-top: 14px; color: var(--tx-3); font-size: 11.5px; }
.gs-trust span { white-space: nowrap; }
.gs-existing { margin-top: 16px; border-top: 1px solid var(--line-2); padding-top: 12px; }
.gs-existing summary { cursor: pointer; color: var(--tx-2); font-size: 13px; font-weight: 600;
  list-style: none; }
.gs-existing summary::-webkit-details-marker { display: none; }
.gs-existing summary::after { content: " \203A"; color: var(--tx-3); }
.gs-existing[open] summary::after { content: " \2304"; }
.gs-existing .btn { width: 100%; justify-content: center; margin-top: 11px; }

/* ---- pricing: annual savings badge (#10) + trust anchors (#08) ---- */
.pr-save-badge {
  display: none; align-self: flex-start; margin: 0 0 10px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .01em;
  color: var(--em-ink); background: linear-gradient(135deg, var(--em-1), var(--em-2));
  padding: 4px 10px; border-radius: 999px;
}
.pricing[data-cycle="annual"] .pr-save-badge { display: inline-flex; }
.pr-anchor { color: var(--tx-3); font-size: 11.5px; text-align: center; margin: -6px 0 16px; line-height: 1.5; }

/* ---- mid-page CTA band (#11) ---- */
.midcta { padding: 0 20px 8px; }
.midcta-inner {
  max-width: 1000px; margin: 0 auto; text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, rgba(16,185,129,.14), transparent 60%), var(--ink-2);
  border: 1px solid var(--em-line, rgba(16,185,129,.22)); border-radius: var(--r-card);
  padding: clamp(34px, 5vw, 56px) 24px;
}
.midcta-inner h2 { font-size: clamp(22px, 3vw, 34px); color: var(--tx-1); }
.midcta-inner p { color: var(--tx-2); font-size: 15px; margin: 12px auto 0; max-width: 52ch; }
.midcta-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

/* ---- journey: thin scrollbar on the no-GSAP / mobile swipe fallback ---- */
.journey-static .journey-track { scrollbar-width: thin; }

/* ---- mobile sticky CTA bar (#03) ---- */
.mcta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 11, 22, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-2);
}
html[data-theme="light"] .mcta-bar { background: rgba(246, 248, 251, .94); }
.mcta-bar .btn { flex: 1; justify-content: center; padding: 13px 10px; font-size: 14.5px; }
.mcta-bar .mcta-demo { flex: 0 0 auto; }
/* Persistent CTA on phones (the nav CTA is hidden in the burger here). */
@media (max-width: 720px) {
  .mcta-bar { display: flex; }
  body.has-mcta { padding-bottom: 72px; }
  .fab-wrap { bottom: 84px; }
}

/* honeypot field — visually hidden, off-screen, never focusable */
.hp-field { position: absolute !important; left: -9999px !important; top: auto !important;
  width: 1px !important; height: 1px !important; opacity: 0 !important;
  pointer-events: none !important; }

/* ---- security & compliance badges (showcase) ---- */
.sec-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.sec-badges span {
  display: inline-flex; align-items: baseline; gap: 5px;
  font-size: 11.5px; font-weight: 700; color: var(--tx-1);
  background: var(--em-soft, rgba(16,185,129,.1));
  border: 1px solid var(--em-line, rgba(16,185,129,.28));
  padding: 6px 11px; border-radius: 999px; white-space: nowrap;
}
.sec-badges span i { font-style: normal; font-weight: 500; font-size: 10.5px; color: var(--tx-3); }
.sec-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600;
  color: var(--em-2); text-decoration: none; }
.sec-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---- final CTA: free-trial primary, demo secondary ---- */
.cta-primary { margin: 4px auto 6px; }
.cta-secondary { display: inline-block; min-width: 240px; }
.cta-or { color: var(--tx-3); font-size: 13.5px; margin: 8px auto 20px; }

/* ---- activity monitor (screens showcase 4) ---- */
.am-board { background: var(--pr-night); border: 1px solid var(--line-2); border-radius: 16px;
  padding: 18px 18px 15px; box-shadow: var(--shadow-card); }
.am-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.am-title { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--tx-1); }
.am-scope { font-size: 11.5px; font-weight: 600; color: var(--tx-3); white-space: nowrap; }
.am-sub { font-size: 11px; color: var(--tx-3); margin: 3px 0 0; }
.am-plot { position: relative; height: 200px; margin-top: 20px; }
.am-avg { position: absolute; left: 0; right: 0; border-top: 1px dashed rgba(148,163,184,.45); }
.am-avg span { position: absolute; right: 0; top: -8px; font-size: 10px; color: var(--tx-3);
  background: var(--pr-night); padding: 0 5px; white-space: nowrap; }
.am-bars { display: flex; align-items: flex-end; gap: 18px; height: 100%; }
.am-col { flex: 1; display: flex; align-items: flex-end; height: 100%; }
.am-bar { position: relative; width: 100%; max-width: 72px; margin: 0 auto; border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, var(--em-2), var(--em-1)); min-height: 8px; }
.am-bar-top { box-shadow: 0 0 0 1px var(--em-line), 0 10px 26px rgba(16,185,129,.28); }
.am-val { position: absolute; top: -22px; left: 0; right: 0; text-align: center;
  font-family: var(--mono); font-weight: 700; font-size: 13.5px; color: #F8FAFC; letter-spacing: -.02em; }
.am-names { display: flex; gap: 18px; margin-top: 12px; }
.am-emp { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.am-rank { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px;
  border-radius: 50%; background: var(--em-soft, rgba(16,185,129,.12)); color: var(--em-2);
  font-size: 10.5px; font-weight: 800; margin-bottom: 2px; }
.am-emp b { font-size: 12.5px; font-weight: 700; color: var(--tx-1); }
.am-emp i { font-style: normal; font-size: 10.5px; color: var(--tx-3); }
.am-foot { display: flex; align-items: center; gap: 6px; margin: 14px 0 0; padding-top: 11px;
  border-top: 1px solid var(--line-1); font-size: 11px; color: var(--tx-3); }
