/* ========== TOKENS ========== */
:root{
  --bg:        #F6F7FB;            /* cool off-white */
  --bg-2:      #EEF0F6;            /* second neutral */
  --paper:     #FFFFFF;
  --ink:       #2A2840;            /* brand slate (logo wordmark) */
  --ink-2:     #413F51;
  --muted:     #6F6E83;             /* desaturated slate */
  --line:      #E5E5EE;
  --line-2:    #D6D6E1;

  --cyan:      #00A1D6;            /* brand primary cyan */
  --cyan-light:#33C4E5;
  --cyan-tint: #E0F5FC;
  --purple:    #6657CC;            /* brand primary purple */
  --purple-light:#7D7BD6;
  --purple-tint:#ECE9FA;
  --brand-grad: linear-gradient(135deg, #33C4E5 0%, #6657CC 100%);

  --indigo:    #6657CC;            /* legacy alias → brand purple */
  --indigo-2:  #4D40A8;
  --indigo-tint:#ECE9FA;
  --amber:     #E8A33D;
  --amber-tint:#FBEBCB;
  --green:     #2A8A5C;
  --red:       #C0392B;
  --yellow:    #D9A11A;

  --dark:      #2A2840;             /* brand slate-dark */
  --dark-paper:#34324A;
  --dark-line: #443F5A;
  --dark-muted:#9B98B0;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;

  --font-sans: "Inter", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  --font-serif: "Instrument Serif", Georgia, serif;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.mono{ font-family: var(--font-mono); font-feature-settings: "ss01"; }
.small{ font-size: 11px; }
.green{ color: var(--green); }

/* ========== BUTTONS ========== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  border: 1px solid transparent;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover{ background: var(--purple); border-color: var(--purple); }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover{ background: var(--paper); }
.btn-quiet{
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}
.btn-quiet:hover{ color: var(--ink); background: rgba(0,0,0,.04); }
.btn-sm{ padding: 8px 14px; font-size: 13px; }
.btn-lg{ padding: 16px 26px; font-size: 16px; }
.btn-full{ width: 100%; }

.link-quiet{ color: var(--muted); font-size: 14px; }
.link-quiet:hover{ color: var(--ink); }
.link-arrow{ color: var(--indigo); font-weight:500; }
.link-arrow:hover{ text-decoration: underline; }

/* ========== NAV ========== */
.nav{
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(246, 247, 251, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  max-width: 1280px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 28px;
}
.logo{ display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.logo-mark{
  display:flex; align-items:center; justify-content:center;
}
.logo-mark img{ height: 28px; width: auto; display: block; }
.logo-word{ font-weight: 700; font-size: 18px; letter-spacing: -0.018em; color: var(--ink); }
.logo-ai{ color: var(--cyan); font-weight: 700; }
.nav-links{
  display:flex; align-items:center; gap: 22px; margin-left: 8px;
}
.nav-links a{
  color: var(--ink-2); font-size: 14px; font-weight: 450;
  opacity: .82;
}
.nav-links a:hover{ opacity: 1; }
.nav-cta{ margin-left: auto; display:flex; align-items:center; gap: 14px; }

/* ========== SECTION SCAFFOLD ========== */
.section{ padding: 88px 0; position: relative; }
.section.dark{ background: var(--dark); color: #E9ECF2; }
.section.dark .muted{ color: #8A9099; }
.section.dark .kicker{ color: #8C90C9; }

.section-head{
  max-width: 760px;
  margin-bottom: 44px;
}
.section-head.light h2,
.section-head.light p{ color: #E9ECF2; }
.kicker{
  display: inline-block;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-2);
  margin-bottom: 18px;
}
.h2{
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 500;
  margin: 0 0 18px;
}
.h2 em{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.h2 .muted{ color: var(--muted); }
.h2, .display, .h2 * { text-wrap: balance; }
.section-lede{
  font-size: 19px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}
.section.dark .section-lede{ color: #B5BAC6; }

/* ========== HERO ========== */
.hero{
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 35%, transparent 75%);
  opacity: .45;
  pointer-events: none;
}
.hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 28px;
}
.hero-copy{ max-width: 620px; }
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.eyebrow .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,161,214,.15);
}
.display{
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.038em;
  font-weight: 500;
  margin: 0 0 22px;
}
.display em{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  padding-right: 0.06em;
  margin-right: -0.06em;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lede{
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-ctas{ display:flex; gap: 12px; align-items: center; margin-bottom: 40px; }

.hero-proof{
  display:flex; align-items: center; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.proof-item{ display:flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.proof-item strong{ color: var(--ink); font-weight: 600; }
.proof-divider{ width: 1px; height: 22px; background: var(--line); }
.check{
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ========== HERO APP MOCKUP ========== */
.hero-app{
  position: relative;
  perspective: 2200px;
  min-height: 560px;
  padding-bottom: 12px;
}

/* Live conversation card */
.hconv{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow:
    0 30px 70px -20px rgba(42,40,64,.22),
    0 12px 30px -12px rgba(42,40,64,.14);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 2;
}
.hconv-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.hconv-from{ display: flex; align-items: center; gap: 12px; }
.hconv-av{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5BE268, #27B844);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
}
.hconv-name{ font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.hconv-channel{ display: inline-flex; }
.hconv-channel img{ width: 14px; height: 14px; display: block; }
.hconv-meta{ font-size: 11px; color: var(--muted); margin-top: 2px; }

.hconv-body{
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(180deg, #FAFAFC 0%, var(--paper) 100%);
  position: relative;
}
.hmsg{ display: flex; flex-direction: column; max-width: 86%; }
.hmsg-them{ align-self: flex-start; }
.hmsg-ai{ align-self: flex-end; align-items: flex-end; }
.hmsg-bubble{
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.hmsg-them .hmsg-bubble{
  background: #F1EFF5;
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.hmsg-ai .hmsg-bubble{
  background: var(--purple);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.hmsg-meta{
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
  display: flex; align-items: center; gap: 8px;
}
.hmsg-tag{
  font-size: 9.5px;
  background: var(--purple-tint);
  color: var(--purple);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
}
.hmsg-actions{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12.5px;
}
.hact{ display: flex; align-items: center; gap: 8px; }
.hact-dot{
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  font-size: 9px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.link-stub{
  display: inline-block;
  margin-top: 4px;
  padding: 2px 6px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.hconv-typing{
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  margin-top: 4px;
  background: #F1EFF5;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  max-width: fit-content;
}
.hconv-typing .dot{
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.hconv-typing .dot:nth-child(2){ animation-delay: 0.15s; }
.hconv-typing .dot:nth-child(3){ animation-delay: 0.3s; }
.typing-lbl{ font-size: 10.5px; color: var(--muted); margin-left: 4px; }
@keyframes typing-bounce{
  0%, 80%, 100%{ transform: translateY(0); opacity: 0.4; }
  40%          { transform: translateY(-4px); opacity: 1; }
}

/* ROI / Outcome card (floats right & overlaps) */
.hroi{
  position: absolute;
  right: -8px;
  bottom: -28px;
  width: 320px;
  background: var(--dark);
  color: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow:
    0 30px 70px -20px rgba(42,40,64,.55),
    0 12px 30px -12px rgba(42,40,64,.35),
    0 0 0 1px rgba(102,87,204,.4);
  z-index: 3;
  transform: rotate(1.2deg);
}
.hroi::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(102,87,204,.4), transparent 60%);
  border-radius: 18px;
  pointer-events: none;
}
.hroi-head{ position: relative; z-index: 1; }
.hroi-eyebrow{
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B5B2C9;
}
.hroi-num{
  position: relative; z-index: 1;
  display: flex; align-items: baseline;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
}
.hroi-currency{
  font-size: 28px;
  color: #B5B2C9;
  margin-right: 2px;
}
.hroi-val{
  font-size: 46px;
  background: linear-gradient(135deg, #5EE3FF 0%, #B5A9FF 60%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.hroi-sub{ font-size: 10.5px; color: #B5B2C9; letter-spacing: 0.03em; }
.hroi-bars{
  margin: 16px 0 14px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; z-index: 1;
}
.hbar{ position: relative; }
.hbar-fill{
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple-light));
  width: var(--w);
  box-shadow: 0 0 12px rgba(51,196,229,.4);
  animation: hbar-grow 1.6s cubic-bezier(.2,.8,.2,1) both;
  transform-origin: left;
}
@keyframes hbar-grow{
  from{ transform: scaleX(0); }
  to  { transform: scaleX(1); }
}
.hbar-label{
  display: flex; justify-content: space-between;
  font-size: 11.5px;
  margin-top: 4px;
  color: #D8D5E8;
}
.hbar-label span.mono{ color: #fff; font-weight: 500; }
.hroi-foot{
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #443F5A;
  position: relative; z-index: 1;
}
.hroi-stat-divider{ padding-left: 16px; border-left: 1px solid #443F5A; }
.hroi-stat-num{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex; align-items: baseline; gap: 2px;
}
.hroi-stat-num .small{ font-size: 11px; color: #B5B2C9; margin-left: 4px; }
.hroi-stat-lbl{ font-size: 9.5px; color: #B5B2C9; margin-top: 2px; letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 1080px){
  .hero-app{ min-height: auto; padding-bottom: 120px; }
  .hconv{ max-width: 520px; margin: 0 auto; }
  .hroi{ left: 50%; right: auto; bottom: 0; transform: translateX(-50%) rotate(0deg); margin: 0; }
}
@media (max-width: 540px){
  .hroi{ width: 90%; }
}

/* ========== TRUST STRIP ========== */
.trust{
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.trust-lead{
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}
.trust-tags{
  display: flex; gap: 8px; justify-content: center;
  margin-top: 28px;
}

/* Marquee */
.marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  --gap: 64px;
  --duration: 60s;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track{
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-slide var(--duration) linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }
.marquee img{
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  margin-right: var(--gap);
  /* No filter, no opacity — original colors */
}
/* Move exactly one full set */
@keyframes marquee-slide{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}
.tl{ display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); font-size: 15px; font-weight: 500; letter-spacing: -0.01em; opacity: .75; }
.tl-mark{ font-size: 14px; color: var(--cyan); }
.rev-link{ display: inline-block; margin: 0 auto 32px; color: var(--purple); font-size: 13px; padding: 8px 0; text-align: center; width: 100%; }
.rev-link:hover{ color: var(--cyan); text-decoration: underline; }
.section.reviews .section-head { margin-bottom: 24px; }
.section.reviews .proof-banner { margin-bottom: 36px; }
.reviews-grid.second-row .rev{ background: linear-gradient(180deg, var(--paper), #FAFAFC); }

.addon-row{ display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.addon-price{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
  padding: 3px 8px;
  background: var(--purple-tint);
  border-radius: 999px;
  white-space: nowrap;
}
.addon-price-tbd{ color: var(--muted); background: var(--bg-2); }
.addon-foot{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line-2);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.addon-foot b{ color: var(--ink); font-weight: 600; }
.trust-tags{ display:flex; gap: 8px; }
.vtag{
  font-size: 11px; padding: 4px 10px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

/* ========== PROBLEM ========== */
.problem{ background: var(--bg); }
.ba-grid{
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 48px;
}
.ba-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.ba-card.before{ background: var(--paper); }
.ba-card.after{
  background: #0E1116;
  color: #E8ECF5;
  border-color: #0E1116;
  box-shadow: 0 18px 40px -18px rgba(14,17,22,.45);
}
.ba-label{
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 18px;
}
.ba-card.after .ba-label{ color: #8A9099; }
.chaos{
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 20px;
}
.chip{
  font-size: 12px;
  padding: 5px 10px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  color: var(--ink-2);
  transform: rotate(var(--r, 0deg));
}
.chaos .chip:nth-child(2n){ --r: -2deg; }
.chaos .chip:nth-child(3n){ --r: 1deg; }
.chaos .chip:nth-child(5n){ --r: -1deg; }
.chaos .chip:nth-child(7n){ --r: 2deg; }

.ba-bullets{
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--ink-2);
  font-size: 14px;
}
.ba-card.after .ba-bullets{ color: #C8CCD3; }
.ba-bullets li{
  padding-left: 18px;
  position: relative;
}
.ba-bullets li::before{
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 1px; background: var(--muted);
}
.ba-card.after .ba-bullets li::before{ background: #5A6068; }

.ba-arrow{
  align-self: center;
  display:flex; align-items: center; justify-content: center;
  color: var(--muted);
}

.after-stack{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.stack-row{
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid #262A33;
  border-radius: 10px;
}
.stack-row b{ display: block; font-size: 13.5px; }
.stack-row span.mono{ font-size: 11px; color: #8A9099; }
.stack-mark{
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #1B1F2A;
  flex-shrink: 0;
}
.stack-mark img{
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.stack-mark.hd{ background: var(--dark); }
.stack-mb b{ color: #E8ECF5; }
.sync-pill{
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 7px;
  background: #1B1F26;
  color: #8A9099;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sync-pill.live{ background: rgba(86,208,151,.15); color: #56D097; }

.problem-insight{
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
}
.quote-mark{
  font-size: 64px;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  vertical-align: -10px;
  margin-right: 4px;
  font-family: var(--font-serif);
}

/* ========== PROMISE (dark) ========== */
.promise{ background: var(--dark); }
.orbit{
  position: relative;
  height: 460px;
  margin-bottom: 64px;
  max-width: 920px;
  margin-left: auto; margin-right: auto;
}
.orbit-lines{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.orbit::before{
  content: "";
  position: absolute; inset: 0;
  border: 1px dashed #2A2E38; border-radius: 50%;
  margin: 60px;
  pointer-events: none;
  animation: orbit-rotate 60s linear infinite;
}
.orbit::after{
  content: "";
  position: absolute; inset: 0;
  border: 1px dashed #2A2E38; border-radius: 50%;
  margin: 160px;
  pointer-events: none;
  animation: orbit-rotate-rev 90s linear infinite;
}
@keyframes orbit-rotate{
  from{ transform: rotate(0deg); }
  to  { transform: rotate(360deg); }
}
@keyframes orbit-rotate-rev{
  from{ transform: rotate(0deg); }
  to  { transform: rotate(-360deg); }
}
.orbit-center{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.orbit-core{
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, #33C4E5 0%, #6657CC 70%, #4D40A8 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 80px -10px rgba(102,87,204,.6),
    0 0 120px -20px rgba(51,196,229,.5),
    0 0 0 1px rgba(51,196,229,.3);
  animation: core-breathe 4s ease-in-out infinite;
}
@keyframes core-breathe{
  0%, 100%{
    box-shadow:
      0 0 80px -10px rgba(102,87,204,.6),
      0 0 120px -20px rgba(51,196,229,.5),
      0 0 0 1px rgba(51,196,229,.3);
  }
  50%{
    box-shadow:
      0 0 100px -10px rgba(102,87,204,.8),
      0 0 160px -20px rgba(51,196,229,.7),
      0 0 0 1px rgba(51,196,229,.5);
  }
}
.orbit-core-inner{
  width: 170px; height: 170px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid #33C4E5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #E9ECF2;
  position: relative;
}
.oc-name{ font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.oc-sub{ font-size: 11px; color: #8C90C9; margin-top: 2px; }
.oc-pulse{
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(51,196,229,.55);
  animation: pulse 2.6s ease-out infinite;
}
.oc-pulse-2{ animation-delay: 0.8s; }
.oc-pulse-3{ animation-delay: 1.6s; }
.oc-scanner{
  position: absolute; inset: -22px;
  width: calc(100% + 44px); height: calc(100% + 44px);
  animation: scanner-rotate 6s linear infinite;
  pointer-events: none;
}
@keyframes scanner-rotate{
  from{ transform: rotate(0deg); }
  to  { transform: rotate(360deg); }
}
@keyframes pulse{
  0%{ transform: scale(0.95); opacity: .8; }
  100%{ transform: scale(1.6); opacity: 0; }
}
.orbit-node{
  position: absolute;
  background: #15181F;
  border: 1px solid #2A2E38;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  color: #E9ECF2;
  min-width: 200px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.6);
  z-index: 3;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.orbit-node:hover{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(51,196,229,.55);
  background: #1B1F28;
  box-shadow: 0 14px 36px -10px rgba(51,196,229,.25);
}
.orbit-node:hover .n-ic{ transform: scale(1.08); }
.orbit-node b{ font-size: 14px; display: block; }
.orbit-node span.mono{ font-size: 10.5px; color: #8A9099; }
.n-ic{
  width: 36px; height: 36px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: transform .25s ease;
}
.n-ic::after{
  /* breathing pulse ring around each channel icon */
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(51,196,229,.5);
  animation: channel-ping 3s ease-out infinite;
  pointer-events: none;
}
.orbit-node.n2 .n-ic::after{ animation-delay: 0.5s; }
.orbit-node.n3 .n-ic::after{ animation-delay: 1.0s; }
.orbit-node.n4 .n-ic::after{ animation-delay: 1.5s; }
.orbit-node.n5 .n-ic::after{ animation-delay: 2.0s; }
.orbit-node.n6 .n-ic::after{ animation-delay: 2.5s; }
@keyframes channel-ping{
  0%   { transform: scale(1);    opacity: .8; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}
.n-ic img{ width: 100%; height: 100%; object-fit: contain; display: block; position: relative; z-index: 1; }

.orbit-node.n1{ top: 20px; left: 20px; }
.orbit-node.n2{ top: 20px; right: 20px; }
.orbit-node.n3{ top: 50%; left: -10px; transform: translateY(-50%); }
.orbit-node.n4{ top: 50%; right: -10px; transform: translateY(-50%); }
.orbit-node.n5{ bottom: 20px; left: 20px; }
.orbit-node.n6{ bottom: 20px; right: 20px; }
.orbit-node.n3:hover{ transform: translateY(calc(-50% - 2px)) scale(1.02); }
.orbit-node.n4:hover{ transform: translateY(calc(-50% - 2px)) scale(1.02); }

@media (prefers-reduced-motion: reduce){
  .orbit::before, .orbit::after, .orbit-core, .oc-scanner, .oc-pulse, .n-ic::after, .orbit-ping{ animation: none; }
}

.jobs{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 28px;
  border-top: 1px solid #262A33;
}
.jobs-h{
  font-size: 11px; color: #8C90C9;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.jobs ul{
  list-style: none; padding: 0; margin: 0;
  display:flex; flex-direction: column; gap: 12px;
  color: #C8CCD3;
  font-size: 14.5px;
  line-height: 1.4;
}
.jobs li{ padding-left: 20px; position: relative; }
.jobs li::before{
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px; background: var(--indigo);
}

/* ========== MINDBODY ========== */
.mb{ background: var(--bg); padding: 72px 0; }
.section.mb .h2 { font-size: clamp(28px, 3.6vw, 44px); }
.mb-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  margin-bottom: 56px;
  align-items: center;
}
.mb-caps{ display: flex; flex-direction: column; gap: 28px; }
.cap{ display: flex; gap: 18px; }
.cap-num{
  font-size: 14px; color: var(--indigo);
  font-weight: 500;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 28px;
}
.cap h3{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.cap p{ font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.5; }

.mb-diagram{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; align-items: stretch; gap: 0;
}
.dia-card{
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 16px;
  background: var(--bg);
}
.dia-label{
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.dia-sources{ display:flex; gap: 6px; flex-wrap: wrap; }
.src{
  font-size: 12px;
  padding: 4px 9px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-2);
}
.dia-arrow{ align-self: center; color: var(--indigo); padding: 6px 0; }
.dia-arrow.two-way{ color: var(--indigo); }
.dia-hd{ background: #0E1116; color: #E9ECF2; border-color: #0E1116; }
.dia-hd .dia-label{ color: #8A9099; }
.dia-hd-body{ display:flex; gap: 6px; flex-wrap: wrap; }
.hd-tag{
  font-size: 12px;
  padding: 4px 10px;
  background: rgba(62,62,230,.18);
  color: #B5B8FF;
  border-radius: 6px;
  border: 1px solid rgba(62,62,230,.35);
}
.dia-mb{ background: var(--ink-2); color: #E9ECF2; border-color: var(--ink-2); }
.dia-mb .dia-label{ color: #8A9099; }
.dia-mb-body{ display: flex; flex-direction: column; gap: 6px; }
.mb-row{ display:flex; justify-content: space-between; align-items: center; font-size: 13px; }
.mb-row b{ font-weight: 500; }
.mb-row span.mono{ font-size: 10.5px; color: #56D097; }

.mb-banner{
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 760px){
  .mb-banner{ grid-template-columns: 1fr; gap: 18px; padding: 22px 22px; text-align: center; }
  .mb-banner-l{ display: flex; flex-direction: column; align-items: center; }
  .mb-banner-r{ font-size: clamp(17px, 4.5vw, 22px) !important; line-height: 1.4; }
  .rating-big{ font-size: 28px; }
}
.badge-mb{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  background: var(--ink); color: var(--bg);
  border-radius: 4px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.rating-big{ font-size: 32px; font-weight: 600; letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 10px; flex-wrap: nowrap; white-space: nowrap; }
.stars-small{ color: var(--amber); font-size: 16px; letter-spacing: 2px; }
.mb-banner-r{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  color: var(--ink);
}

/* ========== FUNNEL (dark) ========== */
.funnel{ background: var(--dark); }
.funnel-app{
  background: var(--dark-paper);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 56px;
}
.fa-head{ display:flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--dark-line); }
.fa-title{ font-size: 15px; font-weight: 500; color: #E9ECF2; }
.fa-legend{ display:flex; gap: 14px; align-items: center; font-size: 12px; color: #8A9099; }
.lg{ display:inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 4px; }
.lg-green{ background: #56D097; }
.lg-yellow{ background: var(--yellow); }
.lg-red{ background: #E16654; }

.fa-funnel{ display: grid; gap: 6px; margin-bottom: 24px; }
.fr{
  display: grid;
  grid-template-columns: 140px 1fr 100px 100px;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.02);
}
.fr.flag{ background: rgba(217,161,26,.08); border: 1px solid rgba(217,161,26,.3); }
.fr-lbl{ font-size: 13px; color: #E9ECF2; font-weight: 500; }
.fr-bar{
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  width: var(--w);
}
.fr-fill{ height: 100%; border-radius: 4px; }
.fr-fill.green{ background: linear-gradient(90deg, #2A8A5C, #56D097); }
.fr-fill.yellow{ background: linear-gradient(90deg, #B07A0E, var(--yellow)); }
.fr-fill.red{ background: linear-gradient(90deg, #8C2C20, #E16654); }
.fr-val{ font-size: 13px; color: #E9ECF2; text-align: right; font-weight: 500; }
.fr-bm{ font-size: 11px; color: #8A9099; text-align: right; }

.fa-insights{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
}
.fi-card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--dark-line);
  border-radius: 12px;
  padding: 16px;
}
.fi-head{ display:flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.dot-yellow{ width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.dot-green{ width: 8px; height: 8px; border-radius: 50%; background: #56D097; }
.fi-body{ font-size: 13.5px; color: #C8CCD3; line-height: 1.5; margin-bottom: 12px; }
.fi-body b{ color: #E9ECF2; }
.fi-actions{ display:flex; gap: 6px; }
.fi-card .btn-primary{ background: var(--brand-grad); border-color: transparent; color: white; }
.fi-card .btn-ghost{ background: transparent; color: #C8CCD3; border-color: var(--dark-line); }

.bna-strip{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.bna{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
  padding: 24px;
}
.bna-lbl{ font-size: 11px; color: #8A9099; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.bna-bna{ display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.bna-bna .b{ font-family: var(--font-mono); font-size: 16px; color: #8A9099; text-decoration: line-through; }
.bna-bna .arr{ color: var(--indigo); font-size: 14px; }
.bna-bna .a{ font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; color: #E9ECF2; letter-spacing: -0.02em; }
.bna-sub{ font-size: 11px; color: #8A9099; }

/* ========== VOICE ========== */
.voice{ background: var(--paper); }
.voice-split{ display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }

.vphone{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
}
.vp-head{ display:flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.vp-from{ display:flex; align-items: center; gap: 12px; }
.vp-avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: white;
  display:flex; align-items:center; justify-content:center;
  font-weight: 600; font-size: 18px;
}
.vp-name{ font-size: 16px; font-weight: 600; }
.vp-meta{ font-size: 11px; color: var(--muted); }
.vp-status{
  display:flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  background: var(--ink); color: white;
  padding: 6px 12px;
  border-radius: 999px;
}
.vp-wave{ padding: 16px 0; }
.vp-transcript{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.ts{
  font-size: 14px;
  line-height: 1.45;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 85%;
}
.ts-lbl{
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.ts-them{ background: var(--paper); border: 1px solid var(--line); align-self: flex-start; }
.ts-ai{ background: var(--ink); color: #E9ECF2; align-self: flex-end; }
.ts-ai .ts-lbl{ color: #8A9099; }
.vp-actions{ display:flex; gap: 8px; padding-top: 16px; border-top: 1px solid var(--line); }

.vside{ display: flex; flex-direction: column; gap: 16px; }
.vside-card{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.vs-head{
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.vs-row{
  display:flex; justify-content: space-between; padding: 7px 0;
  font-size: 13.5px;
  border-bottom: 1px dashed var(--line);
}
.vs-row:last-child{ border-bottom: none; }
.vs-row span{ color: var(--muted); }
.vs-action-title{ font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.vs-action-sub{ font-size: 11.5px; color: var(--muted); margin-bottom: 10px; }
.vs-action-mini{ display:flex; gap: 6px; flex-wrap: wrap; }
.mini-pill{
  font-size: 10.5px;
  padding: 3px 8px;
  background: var(--indigo-tint);
  color: var(--indigo-2);
  border-radius: 4px;
  font-family: var(--font-mono);
}
.vside-stats{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vss{
  background: var(--ink); color: #E9ECF2;
  border-radius: 12px;
  padding: 16px;
}
.vss-num{ font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 6px 0 2px; }

/* ========== INBOX ========== */
.inbox{ background: var(--bg); }
.inbox-app{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 60px -28px rgba(42,40,64,.35);
  display: grid;
  grid-template-rows: 56px 1fr;
  min-height: 720px;
}

/* ---- Top bar ---- */
.ibx-top{
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.ibx-top-brand{
  background: var(--dark);
  height: 56px;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 20px;
}
.ibx-top-brand .ibx-brand-full{
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.ibx-top-brand .ibx-brand-mark{
  height: 28px;
  width: auto;
  display: none;
}
.ibx-top-search{
  padding: 0 24px;
  font-size: 13px;
  color: var(--muted);
}
.ibx-top-actions{
  display: flex; align-items: center; gap: 16px;
  padding: 0 16px 0 0;
}
.ibx-icon-btn{
  position: relative;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  color: var(--ink-2);
  border: 1px solid var(--line);
  cursor: pointer;
}
.ibx-bell-dot{
  position: absolute; top: 5px; right: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #E54E4E;
}
.ibx-dialer{ background: var(--paper); }
.ibx-user{ display: flex; align-items: center; gap: 8px; padding-left: 8px; border-left: 1px solid var(--line); padding-left: 16px; margin-left: 4px; }
.ibx-user-mark{
  width: 30px; height: 30px;
  border-radius: 6px;
  background: var(--brand-grad);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 11px;
}
.ibx-user-name{ font-size: 12.5px; font-weight: 600; line-height: 1.2; }
.ibx-user-meta{ font-size: 10.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.online-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 0 3px rgba(46,204,113,.18);
}
.online-dot.tiny{ width: 5px; height: 5px; box-shadow: 0 0 0 2px rgba(46,204,113,.2); }

/* ---- Body grid ---- */
.ibx-body{
  display: grid;
  grid-template-columns: 200px 320px 1fr 280px;
  min-height: 0;
  height: 100%;
}

/* ---- Navy sidebar ---- */
.ibx-nav{
  background: var(--dark);
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid #1F1D33;
}
.ibx-nav-i{
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #B5B2C9;
  font-size: 13px;
  cursor: pointer;
  position: relative;
}
.ibx-nav-i:hover{ background: rgba(255,255,255,.04); color: #fff; }
.ibx-nav-i.active{
  color: #fff;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(102,87,204,.3), rgba(102,87,204,.05));
  box-shadow: inset 3px 0 0 var(--cyan);
}
.ibx-nav-ic{
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  font-size: 14px;
  color: inherit;
  opacity: .85;
}
.ibx-nav-i em{
  font-style: normal;
  margin-left: auto;
  font-size: 10px;
  font-family: var(--font-mono);
  background: var(--cyan);
  color: #fff;
  padding: 1px 6px;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
}

/* ---- Conversation list ---- */
.ibx-rail{
  background: var(--paper);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  min-width: 0;
}
.ibx-rail-head{ padding: 14px 14px 8px; border-bottom: 1px solid var(--line); }
.ibx-search{
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12px; color: var(--muted);
  margin-bottom: 10px;
}
.ibx-rail-toggle{ display: flex; align-items: center; gap: 8px; }
.ibx-tog{ font-size: 11.5px; color: var(--ink-2); margin-left: auto; }
.ibx-switch{
  width: 30px; height: 16px;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background .2s ease;
}
.ibx-switch::after{
  content: "";
  position: absolute; left: 2px; top: 2px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: left .2s ease;
}
.ibx-switch.on{ background: var(--purple); }
.ibx-switch.on::after{ left: 16px; }

.ibx-list{ flex: 1; overflow: auto; padding: 6px 8px 80px; display: flex; flex-direction: column; gap: 2px; }
.ibx-row{
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
}
.ibx-row:hover{ background: var(--bg); }
.ibx-row.sel{
  background: var(--bg);
  border-color: var(--line);
  box-shadow: inset 3px 0 0 var(--cyan);
}
.ibx-av{
  width: 36px; height: 36px;
  background: var(--bg-2);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.ibx-av .ibx-photo{
  width: 100%; height: 100%; object-fit: cover; filter: none;
  border-radius: 50%;
}
.ibx-av.no-photo{ padding: 0; }
.ibx-av.no-photo::after{
  /* subtle inner highlight so empty colored circles still feel intentional */
  content: "";
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.av-sms{ background: var(--purple); }
.av-voice{ background: linear-gradient(135deg, #5BE268, #27B844); }
.av-email{ background: linear-gradient(135deg, #4FBDF6, #1574E5); }
.av-chat{ background: linear-gradient(135deg, #7E84FF, #5A57E0); }
.av-ig{ background: linear-gradient(135deg, #F47133, #BC3081); }
.av-msgr{ background: linear-gradient(135deg, #0099FF, #A033FF); }
.ibx-meat{ min-width: 0; }
.ibx-name-row{ display: flex; align-items: baseline; gap: 6px; justify-content: space-between; }
.ibx-name{ font-size: 13.5px; font-weight: 600; color: var(--ink); }
.ibx-when{ font-size: 10.5px; color: var(--muted); flex-shrink: 0; }
.ibx-studio{ font-size: 10.5px; color: var(--purple); font-weight: 500; margin-top: 1px; }
.ibx-prev{ font-size: 12px; color: var(--muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ibx-row.sel .ibx-prev{ color: var(--ink-2); font-weight: 500; }
.ibx-status-dot{
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #2ECC71;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 8px;
}
.ibx-status-dot::after{
  content: "";
  width: 8px; height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7l3 3 7-7' stroke='%23fff' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.ibx-status-dot.active{
  background: var(--cyan);
  animation: status-pulse 1.8s ease-in-out infinite;
}
.ibx-status-dot.active::after{ display: none; }
@keyframes status-pulse{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(0,161,214,.6); }
  50%{ box-shadow: 0 0 0 6px rgba(0,161,214,0); }
}

.ibx-fab{
  position: absolute;
  bottom: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: #FF5A6A;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  box-shadow: 0 12px 26px -10px rgba(255,90,106,.6), 0 6px 14px -4px rgba(255,90,106,.4);
  cursor: pointer;
  z-index: 4;
}
.ibx-fab:hover{ filter: brightness(1.05); }

/* ---- Thread ---- */
.ibx-thread{
  display: flex; flex-direction: column;
  background: var(--paper);
  min-width: 0;
}
.thr-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
}
.thr-head-left{ display: flex; align-items: center; gap: 12px; }
.thr-av{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.thr-name{ font-size: 16px; font-weight: 600; }
.thr-meta{ font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.thr-head-actions{ display: flex; align-items: center; gap: 8px; }
.thr-tool{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  cursor: pointer;
  border: 1px solid var(--line);
}
.thr-tool:hover{ color: var(--ink); background: var(--paper); }
.thr-tool.ai-on{
  width: auto;
  padding: 0 4px;
  border-radius: 999px;
  background: transparent;
  border: none;
}
.ai-pill{
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.ai-pill .ai-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: ai-pulse 1.4s ease-in-out infinite;
}
@keyframes ai-pulse{
  0%, 100%{ opacity: 1; }
  50%    { opacity: 0.3; }
}

.thr-body{
  flex: 1;
  padding: 24px 24px 0;
  display: flex; flex-direction: column; gap: 14px;
  background: linear-gradient(180deg, #FAFAFC 0%, var(--paper) 60%);
  overflow: auto;
}
.thr-event{
  align-self: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 6px 0;
}
.thr-event.ai-event{ color: var(--purple); font-weight: 500; }
.thr-event.sys-event{
  background: var(--purple-tint);
  color: var(--purple);
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 500;
}
.msg{ display: flex; flex-direction: column; max-width: 72%; }
.msg-them{ align-self: flex-start; }
.msg-team{ align-self: flex-end; align-items: flex-end; }
.msg-bubble{
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.msg-them .msg-bubble{
  background: #F1EFF5;
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.msg-team .msg-bubble{
  background: var(--purple);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.msg-team.team-human .msg-bubble{
  background: var(--ink);
  color: #fff;
}
.msg-meta{
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
  display: flex; align-items: center; gap: 8px;
}
.seen{ color: #2ECC71; font-size: 11px; }
.ai-tag{
  font-size: 9.5px;
  background: var(--purple-tint);
  color: var(--purple);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
}
.link-stub{
  display: inline-block;
  margin-top: 4px;
  padding: 2px 6px;
  background: rgba(255,255,255,.18);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.thr-composer{
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 24px;
}
.composer-tabs{ display: flex; gap: 16px; margin-bottom: 10px; }
.ct{
  font-size: 12px;
  color: var(--muted);
  padding: 4px 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.ct.active{ color: var(--purple); font-weight: 600; border-bottom-color: var(--purple); }
.composer-input{
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}
.cp-hint{ color: var(--line-2); margin-left: 8px; font-size: 11px; }
.composer-foot{ display: flex; align-items: center; gap: 8px; }
.cp-icon{
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}
.composer-send{ margin-left: auto; }

/* ---- Right details panel ---- */
.ibx-context{
  background: var(--paper);
  border-left: 1px solid var(--line);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: auto;
}
.ctx-tabs{
  display: flex; gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin: -2px -4px 6px;
  padding-left: 4px;
}
.ctx-tab{
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  margin-bottom: -13px;
}
.ctx-tab.active{ color: var(--purple); font-weight: 600; border-bottom-color: var(--purple); }
.ctx-id{ display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 4px 0 8px; }
.ctx-avatar{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5BE268, #27B844);
  color: #fff;
  font-weight: 700; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.ctx-id-name{ font-size: 16px; font-weight: 600; }
.ctx-id-sub{ font-size: 11px; color: var(--muted); }
.ctx-fields{ display: flex; flex-direction: column; gap: 8px; padding: 8px 0; }
.ctx-field{ display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--ink-2); }
.ctx-ico{
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 14px;
}

.ctx-visits{
  text-align: center;
  padding: 14px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.ctx-visits-num{
  font-size: 36px; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ctx-visits-lbl{ font-size: 10.5px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

.ctx-visit-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ctx-visit-cell{
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.ctx-vc-lbl{ font-size: 10px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.ctx-vc-val{ font-size: 12.5px; font-weight: 600; color: var(--ink); }
.ctx-vc-tag{
  display: inline-block;
  margin-top: 4px;
  font-size: 9.5px;
  padding: 2px 6px;
  background: var(--purple-tint);
  color: var(--purple);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ctx-fact{ padding: 8px 0; border-top: 1px dashed var(--line); }
.ctx-fact-lbl{ font-size: 10px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.ctx-fact-val{ font-size: 13px; color: var(--ink); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ctx-pill{
  font-size: 9.5px;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.ctx-pill.green{ background: rgba(46,204,113,.15); color: #1F8A4A; }

@media (max-width: 1180px){
  .ibx-body{ grid-template-columns: 64px 280px 1fr 240px; }
  .ibx-nav-i{ font-size: 0; padding: 12px; justify-content: center; }
  .ibx-nav-i em{ display: none; }
  .ibx-nav-ic{ font-size: 18px; }
  .ibx-top{ grid-template-columns: 64px 1fr auto; }
  .ibx-top-brand{ padding: 0; justify-content: center; }
  .ibx-top-brand .ibx-brand-full{ display: none; }
  .ibx-top-brand .ibx-brand-mark{ display: block; }
}
@media (max-width: 900px){
  .ibx-body{ grid-template-columns: 1fr; }
  .ibx-nav, .ibx-rail, .ibx-context{ display: none; }
  .ibx-top{ grid-template-columns: 1fr auto; }
  .ibx-top-brand{ display: none; }
}

/* ========== AUTOMATIONS ========== */
.automations{ background: var(--paper); }
.auto-grid{ display:grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.auto-builder{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.ab-stage{ display: flex; flex-direction: column; align-items: center; gap: 0; }
.ab-node{
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 18px;
  width: 100%;
  max-width: 460px;
}
.ab-trigger{ background: var(--ink); color: #E9ECF2; border-color: var(--ink); }
.ab-cond{ background: var(--amber-tint); border-color: var(--amber); }
.ab-action{ background: var(--paper); }
.ab-outcome{ background: linear-gradient(180deg, #E6F1E1, #D6E8CC); border-color: #2A8A5C; }
.ab-tag{ font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: .7; margin-bottom: 4px; }
.ab-title{ font-size: 14px; line-height: 1.4; }
.ab-sub{ font-size: 11px; opacity: .7; margin-top: 4px; }
.ab-line{
  width: 1px; height: 22px;
  background: linear-gradient(180deg, var(--indigo), transparent);
}

.auto-list{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.auto-head{ font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.job-list{ list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 0; }
.job-list li{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.job-list li:last-child{ border-bottom: none; }
.rdot{ width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); }
.rch{ font-size: 10.5px; color: var(--muted); }

/* ========== LEAD CONNECTOR ========== */
.lc{ background: var(--bg); }
.lc-inner{ display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: center; }
.lc-copy .h2{ margin-bottom: 16px; }
.lc-bullets{ list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--ink-2); }
.lc-bullets li{ padding-left: 22px; position: relative; }
.lc-bullets li::before{
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: var(--cyan);
}

.lc-graph{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 20px 40px -20px rgba(42,40,64,.12);
}
.lc-stage{ display: flex; flex-direction: column; gap: 0; }
.lc-band{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  background: var(--bg);
}
.lc-band-lbl, .lc-stack-lbl{
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.lc-sources-row{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.lc-sources-row .src{
  font-size: 12px;
  padding: 5px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-2);
  white-space: nowrap;
}
.lc-converge{ display: block; padding: 0 32px; }

.lc-stack{
  background: linear-gradient(180deg, var(--cyan-tint) 0%, var(--purple-tint) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.lc-stack-lbl{ text-align: center; color: var(--ink); }
.lc-stack-pair{
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
}
.lc-node{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 8px 20px -10px rgba(42,40,64,.15);
}
.lc-node-head{ display: flex; align-items: center; gap: 12px; }
.lc-node-head b{ font-size: 15px; display: block; letter-spacing: -0.01em; }
.lc-node-head span.mono{ font-size: 10.5px; color: var(--muted); }
.lc-mark{
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.lc-mark img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-mb-mark{
  background: transparent;
  padding: 0;
}
.lc-mb-mark img{ width: 100%; height: 100%; object-fit: cover; }
.lc-node-rows{
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px 0 0;
  border-top: 1px dashed var(--line);
}
.lc-node-row{
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
  color: var(--ink-2);
  padding: 4px 0;
}
.lc-node-row b{ color: var(--green); font-weight: 600; }

.lc-sync{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  padding: 8px 0;
}
.lc-sync-label{
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  background: var(--paper);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--line);
  margin-bottom: 4px;
  white-space: nowrap;
}
.lc-sync svg{ display: block; }

.lc-output{
  display: flex; flex-direction: column; align-items: center;
}
.lc-out-arrow{ width: 100%; }
.lc-out-cards{
  display: flex; gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.lc-out{
  font-size: 12.5px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.lc-out .dot-bullet{ background: var(--cyan); width: 6px; height: 6px; border-radius: 50%; }

@media (max-width: 1080px){
  .lc-inner{ grid-template-columns: 1fr; }
  .lc-stack-pair{ grid-template-columns: 1fr; gap: 12px; }
  .lc-sync{ transform: rotate(90deg); padding: 4px 0; }
  .lc-converge{ display: none; }
}

/* ========== VERTICALS ========== */
.verticals{ background: var(--paper); }
.vgrid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vcard{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.vimg{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
}
.vimg img{
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.vcard:hover .vimg img{ transform: scale(1.04); }
.vmeta{ padding: 22px 24px 26px; }
.vtype{ font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--indigo); margin-bottom: 10px; }
.vcard h3{ font-size: 19px; font-weight: 600; letter-spacing: -0.012em; margin: 0 0 8px; }
.vcard p{ font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0 0 16px; }
.vchips{ display: flex; flex-wrap: wrap; gap: 6px; }
.vchip{
  font-size: 11.5px;
  padding: 4px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
}

/* ========== REVIEWS ========== */
.reviews{ background: var(--bg); }
.proof-banner{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ink);
  color: #E9ECF2;
  border-radius: var(--r-lg);
  padding: 28px 8px;
  margin-bottom: 40px;
}
.pb-cell{ text-align: center; padding: 0 16px; border-right: 1px solid #262A33; }
.pb-cell:last-child{ border-right: none; }
.pb-num{
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600; letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-flex; align-items: baseline; gap: 8px;
  font-variant-numeric: tabular-nums;
}
.pb-num .stars-small{ font-size: 16px; }
.pb-num .plus{ color: var(--indigo); font-weight: 500; }
.pb-lbl{ font-size: 11px; color: #8A9099; letter-spacing: 0.08em; text-transform: uppercase; }

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 16px;
  margin-bottom: 16px;
}
.rev{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.rev-big{ grid-column: span 3; margin-bottom: 16px; background: linear-gradient(180deg, var(--paper), var(--bg)); }

/* Masonry layout for the regular reviews — natural staggered heights */
.reviews-masonry { column-count: 3; column-gap: 16px; margin-bottom: 16px; }
.reviews-masonry .rev { break-inside: avoid; margin-bottom: 16px; display: flex; }
.reviews-masonry .rev:last-child { margin-bottom: 0; }
@media (max-width: 980px) {
  .reviews-masonry { column-count: 2; }
}
@media (max-width: 640px) {
  .reviews-masonry { column-count: 1; }
}
.rev-big blockquote{ font-size: clamp(20px, 2vw, 26px); line-height: 1.4; font-family: var(--font-serif); font-style: italic; }
.rev-stars{ color: var(--amber); letter-spacing: 3px; font-size: 14px; }
.rev blockquote{
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: var(--ink);
}
.rev blockquote b{ font-weight: 600; }
.rev-by{ display:flex; gap: 12px; align-items: center; padding-top: 8px; border-top: 1px solid var(--line); }
.rev-av{
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-grad); color: white;
  display:flex; align-items:center; justify-content:center;
  font-weight: 600; font-size: 14px;
}
.rev:nth-child(3n) .rev-av{ background: linear-gradient(135deg, #FCB453, #E8A33D); color: var(--ink); }
.rev:nth-child(3n+1) .rev-av{ background: linear-gradient(135deg, #5CD8A0, #2A8A5C); }
.rev-name{ font-size: 13.5px; font-weight: 600; }
.rev-meta{ font-size: 11px; color: var(--muted); }

.logo-wall{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  overflow: hidden;
}
.logo-wall img{
  height: 56px;
  width: 100%;
  object-fit: contain;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  filter: grayscale(1) brightness(.5) contrast(1.5);
  opacity: .7;
  transition: opacity .2s ease, filter .2s ease;
  box-sizing: content-box;
}
.logo-wall img:hover{
  filter: grayscale(0) brightness(1) contrast(1);
  opacity: 1;
}
.logo-wall img:nth-child(6n){ border-right: none; }
.logo-wall img:nth-child(n+7){ border-bottom: none; }

/* ========== PRICING ========== */
.pricing{ background: var(--paper); }
.plans{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.plan{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.plan-pop{
  background: var(--ink); color: #E9ECF2;
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(14,17,22,.4);
  transform: translateY(-4px);
}
.plan-flag{
  position: absolute;
  top: -10px; left: 24px;
  background: var(--brand-grad); color: white;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.plan-name{ font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.plan-tag{ font-size: 11px; color: var(--muted); letter-spacing: 0.04em; margin-top: 4px; }
.plan-pop .plan-tag{ color: #8A9099; }
.plan-price{
  font-size: 56px; font-weight: 500; letter-spacing: -0.04em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.plan-price .dollar{ font-size: 28px; color: var(--muted); }
.plan-pop .plan-price .dollar{ color: #8A9099; }
.plan-price .per{ font-size: 14px; color: var(--muted); letter-spacing: 0; }
.plan-pop .plan-price .per{ color: #8A9099; }
.plan-feats{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.plan-feats li{ padding-left: 22px; position: relative; }
.plan-feats li::before{
  content: ""; position: absolute; left: 0; top: 7px;
  width: 12px; height: 1px; background: var(--indigo);
}
.plan-pop .plan-feats li::before{ background: #B5B8FF; }
.plan-pop .btn-primary{ background: var(--brand-grad); border-color: transparent; color: white; }
.plan-pop .btn-primary:hover{ filter: brightness(1.1); }
.plan .btn-ghost{ border-color: var(--line-2); }

.addons{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.addon-head{ font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.addon-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon{
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.addon b{ font-size: 14.5px; font-weight: 600; }
.addon span{ font-size: 12.5px; color: var(--muted); line-height: 1.45; }

.compare[hidden]{ display: none !important; }
.compare{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 24px;
}
.compare summary{
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 500; font-size: 14.5px;
}
.compare-body{ margin: 12px 0 0; color: var(--muted); }

/* ========== FAQ ========== */
.faq{ background: var(--paper); }
.faq-inner{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-head{ position: sticky; top: 96px; }
.faq-head .h2{ font-size: clamp(32px, 3.6vw, 48px); }
.faq-list{ display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.qa{
  border-bottom: 1px solid var(--line);
}
.qa summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 8px 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  gap: 24px;
}
.qa summary::-webkit-details-marker{ display: none; }
.qa summary > span:first-child{ flex: 1; }
.qa-mark{
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  transition: background .2s ease, border-color .2s ease;
}
.qa-mark::before, .qa-mark::after{
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .2s ease, background .2s ease;
}
.qa-mark::before{
  width: 10px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.qa-mark::after{
  width: 1.5px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.qa[open] .qa-mark{ background: var(--ink); border-color: var(--ink); }
.qa[open] .qa-mark::before{ background: #fff; }
.qa[open] .qa-mark::after{ background: #fff; transform: translate(-50%, -50%) rotate(90deg); }
.qa-body{
  padding: 0 8px 24px 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 720px;
}
.qa-body b{ color: var(--ink); font-weight: 600; }
.qa-body a.link-arrow{ font-weight: 500; }
@media (max-width: 1080px){
  .faq-inner{ grid-template-columns: 1fr; gap: 32px; }
  .faq-head{ position: static; }
}
.magnet{ background: var(--bg); }
.magnet-inner{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.magnet-bullets{ list-style: none; padding: 0; margin: 0; display:flex; flex-direction: column; gap: 12px; font-size: 14.5px; color: var(--ink-2); }
.magnet-bullets li{ padding-left: 22px; position: relative; line-height: 1.5; }
.magnet-bullets li::before{
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: var(--indigo);
}

.magnet-form{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 20px 40px -20px rgba(14,17,22,.15);
}
.mf-head{ font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.mf-field{ display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.mf-field span{ font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.mf-field input, .mf-field select{
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
}
.mf-field input:focus, .mf-field select:focus{ border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-tint); }
.mf-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mf-field.half{ margin-bottom: 14px; }
.mf-after{ font-size: 11px; color: var(--muted); text-align: center; margin: 12px 0 0; }

/* ===== FORM STATE MACHINE ===== */
.magnet-form{ position: relative; }
.mf-state{ transition: opacity .3s ease; }
.mf-state-success{ display: none; }
.magnet-form.submitting .mf-state-form{ opacity: .55; pointer-events: none; }
.magnet-form.submitting .mf-submit-label{ opacity: .35; }
.magnet-form.submitting .mf-submit-spinner{
  display: inline-block;
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: mf-spin 0.7s linear infinite;
}
.mf-submit{ position: relative; }
.mf-submit-spinner{ display: none; }
@keyframes mf-spin{ to { transform: rotate(360deg); } }

.magnet-form.done .mf-state-form{ display: none; }
.magnet-form.done .mf-state-success{ display: block; }

/* ===== SUCCESS STATE ===== */
.mf-state-success{
  text-align: center;
  padding: 8px 4px 4px;
}
.mf-success-ring{
  position: relative;
  width: 92px; height: 92px;
  margin: 0 auto 18px;
}
.mf-success-ring svg{
  width: 100%; height: 100%;
  filter: drop-shadow(0 6px 18px rgba(102,87,204,.35));
}
.magnet-form.done .mf-success-circle{
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: mf-draw-circle .55s cubic-bezier(.2,.8,.2,1) .08s forwards;
}
.magnet-form.done .mf-success-check{
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: mf-draw-check .35s cubic-bezier(.4,1.4,.5,1) .55s forwards;
}
.magnet-form.restored .mf-success-circle{ animation: none; stroke-dashoffset: 0; }
.magnet-form.restored .mf-success-check{ animation: none; stroke-dashoffset: 0; }
@keyframes mf-draw-circle{
  to { stroke-dashoffset: 0; }
}
@keyframes mf-draw-check{
  to { stroke-dashoffset: 0; }
}

/* Confetti pieces around the checkmark */
.mf-confetti{
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 2px;
  top: 50%; left: 50%;
  opacity: 0;
  pointer-events: none;
}
.magnet-form.done .mf-confetti{
  animation: mf-confetti-pop .9s cubic-bezier(.2,.8,.2,1) .7s forwards;
}
.magnet-form.restored .mf-confetti{ display: none; }
.mf-confetti-1{ background: var(--cyan);          --tx: -56px; --ty: -42px; --rot: -22deg; }
.mf-confetti-2{ background: var(--purple);        --tx:  56px; --ty: -38px; --rot:  18deg; width: 6px; height: 6px; border-radius: 50%; }
.mf-confetti-3{ background: var(--amber);         --tx: -68px; --ty:   8px; --rot: -34deg; }
.mf-confetti-4{ background: #5BE268;              --tx:  62px; --ty:  12px; --rot:  16deg; width: 6px; height: 6px; border-radius: 50%; }
.mf-confetti-5{ background: var(--cyan);          --tx: -34px; --ty:  54px; --rot:  44deg; width: 5px; height: 5px; }
.mf-confetti-6{ background: var(--purple);        --tx:  44px; --ty:  56px; --rot: -28deg; }
@keyframes mf-confetti-pop{
  0%   { transform: translate(-50%, -50%) scale(.2) rotate(0deg);  opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1) rotate(var(--rot)); opacity: 0; }
}

.mf-success-h{
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
}
.magnet-form.done .mf-success-h{
  animation: mf-rise .45s cubic-bezier(.2,.8,.2,1) .5s forwards;
}
.magnet-form.restored .mf-success-h{ opacity: 1; transform: none; animation: none; }
.mf-success-body{
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 340px;
  margin-left: auto; margin-right: auto;
  opacity: 0;
  transform: translateY(8px);
}
.magnet-form.done .mf-success-body{
  animation: mf-rise .45s cubic-bezier(.2,.8,.2,1) .65s forwards;
}
.magnet-form.restored .mf-success-body{ opacity: 1; transform: none; animation: none; }
.mf-success-email{
  color: var(--ink);
  font-weight: 600;
  word-break: break-word;
}
.mf-success-cta{
  opacity: 0;
  transform: translateY(8px);
}
.magnet-form.done .mf-success-cta{
  animation: mf-rise .45s cubic-bezier(.2,.8,.2,1) .8s forwards;
}
.magnet-form.restored .mf-success-cta{ opacity: 1; transform: none; animation: none; }
@keyframes mf-rise{
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .magnet-form.done .mf-success-circle,
  .magnet-form.done .mf-success-check,
  .magnet-form.done .mf-confetti,
  .magnet-form.done .mf-success-h,
  .magnet-form.done .mf-success-body,
  .magnet-form.done .mf-success-cta{
    animation: none;
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
  }
}

/* ========== FINAL CTA ========== */
.final{
  background: var(--dark);
  text-align: center;
  padding: 140px 0;
  color: #E9ECF2;
}
.final-inner{
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.final-mark{
  position: relative;
  width: 88px; height: 88px;
  margin: 0 auto 32px;
}
.fm-ring{
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102,87,204,.45), transparent 70%);
  animation: pulse 3s ease-out infinite;
}
.fm-core{
  position: absolute; inset: 24px;
  border-radius: 50%;
  background: var(--brand-grad);
  box-shadow: 0 0 60px rgba(102,87,204,.5);
}
.final-h{ color: #E9ECF2; font-size: clamp(40px, 5.5vw, 76px); }
.final-h em{ background: linear-gradient(135deg, #5EE3FF 0%, #B5A9FF 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.final-lede{ color: #B5BAC6; font-size: 19px; margin: 18px auto 36px; max-width: 700px; }
.final-ctas{ display: flex; gap: 12px; justify-content: center; margin-bottom: 28px; }
.final .btn-primary{ background: var(--brand-grad); border-color: transparent; color: white; }
.final .btn-primary:hover{ filter: brightness(1.1); transform: translateY(-1px); }
.final .btn-ghost{ border-color: #2A2E38; color: #E9ECF2; }
.final .btn-ghost:hover{ background: rgba(255,255,255,.06); }
.final-micro{ font-size: 12px; color: #8A9099; letter-spacing: 0.04em; }

/* ========== FOOTER ========== */
.foot{
  background: var(--bg);
  color: var(--muted);
  padding: 80px 0 48px;
  border-top: 1px solid var(--line);
}
.foot-inner{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.4fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.foot-brand{ max-width: 320px; }
.foot .logo-mark img{ height: 28px; }
.foot-tag{ font-size: 14.5px; color: var(--ink-2); margin: 20px 0 16px; line-height: 1.55; }
.foot-tag b{ color: var(--ink); font-weight: 600; }
.foot-meta{ font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.foot-legal{ display: flex; align-items: center; gap: 10px; font-size: 12.5px; margin-bottom: 18px; }
.foot-legal a{ color: var(--ink-2); text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 3px; }
.foot-legal a:hover{ text-decoration-color: var(--ink); }
.foot-pipe{ color: var(--line-2); }
.foot-social{ display: flex; gap: 14px; }
.foot-social a{
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.foot-social a:hover{ background: var(--ink); color: #fff; border-color: var(--ink); }

.foot-col{ display: flex; flex-direction: column; }
.foot-col .fc-h{
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 16px;
}
.foot-col a{
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color .15s ease, color .15s ease;
}
.foot-col a:hover{ color: var(--ink); text-decoration-color: var(--ink); }

/* ========== DEMO MODAL ========== */
.demo-modal{
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: demo-fade .2s ease both;
}
.demo-modal[hidden]{ display: none; }
@keyframes demo-fade{
  from{ opacity: 0; }
  to  { opacity: 1; }
}
.demo-backdrop{
  position: absolute; inset: 0;
  background: rgba(20, 18, 36, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.demo-panel{
  position: relative;
  background: var(--paper);
  border-radius: 20px;
  width: 100%;
  max-width: 920px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px -30px rgba(20,18,36,.6), 0 0 0 1px var(--line);
  animation: demo-pop .25s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes demo-pop{
  from{ transform: translateY(12px) scale(.98); opacity: 0; }
  to  { transform: none; opacity: 1; }
}
.demo-close{
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.demo-close:hover{ background: var(--ink); color: #fff; border-color: var(--ink); transform: rotate(90deg); }
.demo-panel-head{
  padding: 28px 32px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper), var(--bg));
}
.demo-eyebrow{
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}
.demo-h{
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 6px;
}
.demo-sub{
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
.demo-panel .meetings-iframe-container{
  flex: 1;
  overflow: auto;
  min-height: 540px;
}
.demo-panel .meetings-iframe-container iframe{
  width: 100%;
  min-height: 540px;
  border: 0;
}
@media (max-width: 760px){
  .demo-modal{ padding: 0; }
  .demo-panel{ border-radius: 0; max-height: 100vh; height: 100vh; max-width: 100vw; }
  .demo-panel-head{ padding: 20px 20px 12px; padding-right: 64px; }
}

/* ========== MOBILE STICKY ========== */
.m-cta{ display: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1080px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-app{ margin-top: 32px; max-width: 720px; }
  .mb-grid{ grid-template-columns: 1fr; gap: 40px; }
  .voice-split{ grid-template-columns: 1fr; }
  .auto-grid{ grid-template-columns: 1fr; }
  .lc-inner{ grid-template-columns: 1fr; }
  .magnet-inner{ grid-template-columns: 1fr; }
  .inbox-app{ grid-template-columns: 1fr; }
  .ibx-rail{ display: none; }
  .ibx-context{ display: none; }
  .foot-inner{ grid-template-columns: 1fr 1fr; }
  .foot-brand{ grid-column: span 2; max-width: 100%; margin-bottom: 16px; }
  .ba-grid{ grid-template-columns: 1fr; }
  .ba-arrow{ transform: rotate(90deg); padding: 8px 0; }
}

/* Orbit/Section 02 mobile cleanup — start hiding circular-only elements early */
@media (max-width: 900px){
  .promise{ overflow: hidden; }
  .orbit{ height: auto; padding: 20px 0 0; }
  .orbit-lines{ display: none; }
  .orbit::before, .orbit::after{ display: none; }
  .oc-scanner{ display: none; }
  .orbit-center{ position: relative; left: auto; top: auto; transform: none; margin: 0 auto 28px; }
  .orbit-core{ width: 180px; height: 180px; }
  .orbit-core-inner{ width: 140px; height: 140px; }
  .orbit-node,
  .orbit-node.n1,
  .orbit-node.n2,
  .orbit-node.n3,
  .orbit-node.n4,
  .orbit-node.n5,
  .orbit-node.n6{
    position: static;
    top: auto; left: auto; right: auto; bottom: auto;
    inset: auto;
    transform: none;
    margin: 0 auto 10px;
    width: 100%;
    max-width: 360px;
    min-width: 0;
  }
  .orbit-node:hover,
  .orbit-node.n3:hover,
  .orbit-node.n4:hover{ transform: translateY(-2px) scale(1.02); }
  .n-ic::after{ display: none; }
  .jobs{ grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 760px){
  .container{ padding: 0 20px; }
  .section{ padding: 80px 0; }
  .nav-links{ display: none; }
  .nav-cta .link-quiet{ display: none; }
  .vgrid{ grid-template-columns: 1fr; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .rev-big{ grid-column: span 1; }
  .plans{ grid-template-columns: 1fr; }
  .plan-pop{ transform: none; margin-top: 12px; }
  .bna-strip{ grid-template-columns: 1fr 1fr; }
  .proof-banner{ grid-template-columns: 1fr 1fr; padding: 16px 0; }
  .pb-cell{ border-right: none; border-bottom: 1px solid #262A33; padding: 16px; }
  .pb-cell:nth-child(2){ border-right: none; }
  .pb-cell:nth-child(odd){ border-right: 1px solid #262A33; }
  .pb-cell:nth-child(3), .pb-cell:nth-child(4){ border-bottom: none; }
  .addon-grid{ grid-template-columns: 1fr; }
  .fa-funnel .fr{ grid-template-columns: 110px 1fr 80px; gap: 10px; }
  .fa-funnel .fr .fr-bm{ display: none; }
  .fa-insights{ grid-template-columns: 1fr; }
  .foot-inner{ grid-template-columns: 1fr; }
  .foot-brand{ grid-column: auto; }
  .marquee img{ height: 44px; }

  /* Compact floating pill that sits ABOVE the chat widget in the bottom-right
     corner, so the two form a small vertical cluster instead of overlapping.
     Chat bubble is ~56–64px tall and ~16–20px from edges; we clear it with
     bottom: 88px and right: 18px. */
  .m-cta{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: fixed;
    right: 18px;
    bottom: 88px;
    left: auto;
    padding: 11px 18px;
    background: var(--brand-grad, linear-gradient(135deg, #33C4E5, #6657CC));
    color: #fff;
    text-align: center;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .01em;
    z-index: 80;
    box-shadow:
      0 12px 28px -10px rgba(102, 87, 204, .55),
      0 4px 12px -4px rgba(0, 161, 214, .35),
      0 1px 0 rgba(255,255,255,.18) inset;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .m-cta:active{
    transform: translateY(1px) scale(.98);
  }
}

/* Phones — iPhone SE through standard portrait */
@media (max-width: 540px){
  .section{ padding: 64px 0; }
  .container{ padding: 0 18px; }

  /* Nav */
  .nav-inner{ padding: 12px 18px; gap: 12px; }
  .nav-cta .btn-sm{ padding: 7px 12px; font-size: 12.5px; }

  /* Section padding */
  .section{ padding: 56px 0; }
  .hero{ padding: 32px 0 64px; }
  .display{ font-size: clamp(36px, 10vw, 52px); }
  .lede{ font-size: 16.5px; }
  .hero-ctas{ flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn{ width: 100%; justify-content: center; }
  .hero-proof{ flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 20px; }
  .proof-divider{ display: none; }

  /* Hero ROI card */
  .hero-app{ padding-bottom: 0; }
  .hroi{
    position: relative; left: auto; right: auto; bottom: auto;
    transform: none;
    margin: 16px auto 0;
    width: 100%;
    max-width: 100%;
  }
  .hroi-val{ font-size: 40px; }
  .hroi-currency{ font-size: 24px; }
  .hconv-body{ padding: 14px 14px 12px; }
  .hmsg-bubble{ font-size: 13.5px; padding: 9px 12px; }

  /* Section heads */
  .h2{ font-size: clamp(28px, 9vw, 40px); }
  .section-head{ margin-bottom: 28px; }
  .section-lede{ font-size: 16px; }

  /* Trust strip */
  .trust{ padding: 28px 0; }
  .marquee img{ height: 36px; max-width: 140px; }
  .marquee{ --gap: 40px; }

  /* BNA strip stack */
  .bna-strip{ grid-template-columns: 1fr; gap: 12px; }
  .bna{ padding: 18px 20px; }

  /* Funnel rows: drop the benchmark column entirely */
  .fa-funnel .fr{ grid-template-columns: 96px 1fr 64px; gap: 8px; padding: 8px 10px; }
  .fa-funnel .fr .fr-lbl{ font-size: 11.5px; }
  .fa-funnel .fr .fr-val{ font-size: 12px; }
  .fa-head{ flex-direction: column; align-items: flex-start; gap: 10px; }
  .fa-legend{ flex-wrap: wrap; }
  .funnel-app{ padding: 16px; }

  /* Voice / Inbox / Automations spacing */
  .voice-split{ gap: 20px; }
  .vphone{ padding: 18px; }
  .auto-builder, .auto-list{ padding: 20px; }
  .ab-node{ padding: 12px 14px; }

  /* Verticals card text */
  .vmeta{ padding: 18px 20px 22px; }
  .vcard h3{ font-size: 17px; }

  /* Reviews single col */
  .rev{ padding: 18px; }
  .rev-big blockquote{ font-size: 17px; line-height: 1.45; }

  /* Proof banner single col */
  .proof-banner{ grid-template-columns: 1fr; padding: 8px 0; }
  .pb-cell{
    border-right: none !important;
    border-bottom: 1px solid #262A33;
    padding: 18px 16px;
  }
  .pb-cell:last-child{ border-bottom: none; }

  /* Logo wall — already 2-col at 760 */

  /* Pricing */
  .plan{ padding: 22px; }
  .plan-flag{ left: 18px; top: -8px; font-size: 9.5px; padding: 3px 8px; }
  .plan-price{ font-size: 44px; }
  .plan-price .dollar{ font-size: 22px; }

  /* Add-on rows */
  .addon{ padding: 14px; }
  .addon-row{ flex-direction: column; align-items: flex-start; gap: 4px; }

  /* FAQ */
  .faq-head .h2{ font-size: clamp(28px, 8vw, 36px); }
  .qa summary{ font-size: 15.5px; padding: 18px 4px 18px 0; gap: 16px; }
  .qa-body{ font-size: 14.5px; padding-bottom: 20px; }

  /* Lead Connector */
  .lc-graph{ padding: 20px; }
  .lc-stack{ padding: 16px; }
  .lc-node{ padding: 14px; }
  .lc-sources-row .src{ font-size: 11px; padding: 4px 9px; }

  /* Lead magnet form */
  .magnet-form{ padding: 22px; }
  .mf-row{ grid-template-columns: 1fr; }
  .mf-field.half{ margin-bottom: 0; }

  /* Final CTA */
  .final{ padding: 96px 0; }
  .final-h{ font-size: clamp(34px, 10vw, 56px); }
  .final-ctas{ flex-direction: column; align-items: stretch; gap: 10px; }
  .final-ctas .btn{ width: 100%; justify-content: center; }
  .final-mark{ width: 64px; height: 64px; margin-bottom: 24px; }

  /* Footer */
  .foot{ padding: 56px 0 88px; }
  .foot-tag{ font-size: 14px; }
  .foot-col .fc-h{ font-size: 14px; margin-bottom: 12px; }
  .foot-col a{ font-size: 13.5px; }
}

/* ============================================================
   LEGAL PAGES (Privacy, Terms, SaaS Terms, DPA)
   ============================================================ */
.lg-page{
  background: var(--bg);
  min-height: 100vh;
}
.lg-hero{
  padding: 92px 0 32px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 360px at 80% -20%, rgba(102,87,204,.08), transparent 60%),
    radial-gradient(720px 320px at 0% 0%, rgba(0,161,214,.06), transparent 70%),
    var(--bg);
}
.lg-hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.lg-eyebrow{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex; align-items: center; gap: 8px;
}
.lg-eyebrow::before{
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-grad);
}
.lg-h1{
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  max-width: 920px;
}
.lg-h1 em{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 4px;
}
.lg-lede{
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 6px 0 0;
  max-width: 720px;
}
.lg-updated{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  width: max-content;
}
.lg-updated .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,161,214,.5);
}
.lg-updated b{ color: var(--ink); font-weight: 600; }

.lg-tabs{
  display: flex;
  gap: 4px;
  margin-top: 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.lg-tab{
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.lg-tab:hover{ color: var(--ink-2); }
.lg-tab.active{
  color: var(--ink);
  border-bottom-color: var(--ink);
  font-weight: 600;
}

.lg-body{
  padding: 56px 0 96px;
}
.lg-body-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.lg-toc{
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 0;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.lg-toc-h{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.lg-toc-list{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lg-toc-list a{
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  transition: color .12s;
}
.lg-toc-list a:hover{ color: var(--ink); }
.lg-toc-list a.is-active{ color: var(--purple); font-weight: 600; }

.lg-prose{
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}
.lg-prose h2{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 56px 0 14px;
  scroll-margin-top: 100px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.lg-prose h2:first-child{ margin-top: 0; }
.lg-prose h2 .num{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--purple);
  font-weight: 500;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.lg-prose h3{
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 8px;
  letter-spacing: -0.005em;
}
.lg-prose p{
  margin: 0 0 14px;
  text-wrap: pretty;
}
.lg-prose p + p{ margin-top: 0; }
.lg-prose ul, .lg-prose ol{
  margin: 0 0 14px;
  padding-left: 22px;
}
.lg-prose li{
  margin-bottom: 8px;
  line-height: 1.65;
}
.lg-prose li::marker{ color: var(--purple); }
.lg-prose a{
  color: var(--purple);
  border-bottom: 1px solid var(--purple-tint);
  transition: border-color .12s;
}
.lg-prose a:hover{ border-bottom-color: var(--purple); }
.lg-prose strong{ color: var(--ink); font-weight: 600; }
.lg-prose hr{
  border: none;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}
.lg-prose .callout{
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--purple);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 18px 0 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.lg-prose .callout-lbl{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
  display: block;
}
.lg-prose .addr{
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 14px 0;
  display: inline-block;
}
.lg-prose .addr b{ color: var(--ink); }
.lg-prose .example{
  background: linear-gradient(180deg, var(--cyan-tint), var(--purple-tint));
  border-radius: 10px;
  padding: 18px 20px;
  margin: 18px 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}
.lg-prose .example-lbl{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
}
.lg-prose code{
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-2);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink);
}

.lg-footnav{
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lg-footnav a{
  font-size: 13.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lg-footnav a:hover{ color: var(--purple); }
.lg-footnav .arrow{ font-family: var(--font-mono); }

.lg-cross{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.lg-cross a{
  display: block;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s, transform .15s;
}
.lg-cross a:hover{
  border-color: var(--purple);
  transform: translateY(-1px);
}
.lg-cross .lc-lbl{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.lg-cross .lc-name{
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 980px){
  .lg-body-inner{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lg-toc{
    position: static;
    border-left: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px 18px;
    background: var(--paper);
  }
  .lg-prose{ max-width: none; }
}
@media (max-width: 560px){
  .lg-hero{ padding: 72px 0 24px; }
  .lg-body{ padding: 40px 0 72px; }
  .lg-prose h2{ font-size: 20px; }
  .lg-tab{ padding: 10px 12px; font-size: 12.5px; }
}
