/* Fonts are loaded via <link rel="stylesheet"> in each page's <head>
   so they fetch in parallel with this CSS instead of after it. */

/* ─────────────────────────────────────────────
   DESIGN TOKENS — purple/lavender palette
───────────────────────────────────────────── */
:root {
  /* Page backgrounds */
  --bg-page:   #f7f5ff;
  --bg-soft:   #f2eefd;
  --bg-white:  #ffffff;

  /* Purple accent */
  --purple:       #7c3aed;
  --purple-dim:   #6d28d9;
  --purple-faint: rgba(124,58,237,.07);

  /* Dark — deep purple-navy for dark sections/footer */
  --dark:  #0d0a1e;
  --dark-2:#160e2d;
  --dark-3:#1e1440;

  /* Grays */
  --g100: #f3f0ff;
  --g200: #e5dff7;
  --g300: #c4b5fd;
  --g400: #8b7ab5;

  /* Text */
  --text:       #1a1033;
  --text-muted: #6b5f8a;

  /* Typography */
  --font-disp: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(109,40,217,.08);
  --shadow:    0 8px 32px rgba(109,40,217,.12);
  --shadow-purple: 0 8px 28px rgba(124,58,237,.28);

  /* Z-index scale */
  --z-sticky:   50;
  --z-dropdown: 200;
  --z-grain:    9000;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; }
a, button { touch-action: manipulation; }
main { padding-top: 0; }
@media (max-width: 768px) { main { padding-top: 0; } }

/* ─── GRAIN OVERLAY  (fixed, pointer-events-none) ─── */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-disp);
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
  color: var(--text);
}
h1 { font-size: clamp(42px, 5.5vw, 76px); font-weight: 800; }
h2 { font-size: clamp(32px, 3.8vw, 54px); font-weight: 700; }
h3 { font-size: clamp(19px, 2vw, 26px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }
p  { line-height: 1.72; }
.mono { font-variant-numeric: tabular-nums; font-family: var(--font-disp); }

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }

/* Chip label */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-faint);
  border: 1px solid rgba(124,58,237,.2);
  padding: 5px 13px; border-radius: 100px;
}
.chip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple);
  animation: cdPulse 2.4s infinite;
}
@keyframes cdPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.7)} }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .18s, box-shadow .18s, background .18s;
  position: relative; overflow: hidden;
}
.btn:active { transform: translateY(1px) scale(.985); }

.btn-primary {
  background: var(--purple); color: #fff;
  box-shadow: 0 4px 18px rgba(124,58,237,.28);
}
.btn-primary:hover {
  background: var(--purple-dim);
  box-shadow: var(--shadow-purple);
  transform: translateY(-2px);
}
/* Directional hover shimmer */
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.13);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.btn-primary:hover::before { transform: scaleX(1); }

.btn-ghost-light {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--g200);
}
.btn-ghost-light:hover {
  border-color: var(--purple); color: var(--purple);
  transform: translateY(-1px);
}

.btn-ghost-dark {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,.14); color: #fff;
  border-color: rgba(255,255,255,.25);
  transform: translateY(-1px);
}

.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 12px; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ─── STAGGER REVEALS ─── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .58s ease, transform .58s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
/* ── NAV BASE ── */
.nav {
  position: sticky; top: 0; z-index: var(--z-sticky);
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  background: rgba(247,245,255,.92);
  backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(124,58,237,.09);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(109,40,217,.1); }

/* Site-wide announcement bar */
.announcement-bar {
  position: fixed;
  top: 66px;
  left: 0; right: 0;
  height: 34px;
  display: flex; align-items: center; gap: 12px;
  padding: 0 18px;
  background: rgba(247,245,255,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(124,58,237,.12);
  z-index: calc(var(--z-sticky) + 1);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
}
.announcement-bar.hidden { display: none; }
.announcement-inner {
  width: fit-content;
  max-width: calc(100% - 120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  position: relative;
  padding-right: 36px; /* room for close icon */
}
.announcement-pill {
  background: rgba(124,58,237,.12);
  color: var(--purple);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.announcement-msg { flex: 0 1 auto; color: var(--text-muted); text-align: center; }
.announcement-close {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 640px) {
  .announcement-bar { top: 60px; padding: 10px 16px; font-size: 13px; }
  .announcement-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .announcement-cta { padding-bottom: 2px; }
  .announcement-close { align-self: flex-end; }
}

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 32px; width: auto; display: block; }

/* ── NAV LINKS ── */
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

/* Flat link */
.nav-links > li > a.nav-flat {
  display: flex; align-items: center;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  padding: 7px 13px; border-radius: 8px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-links > li > a.nav-flat:hover { color: var(--purple); background: var(--purple-faint); }

/* Dropdown trigger */
.nav-dd { position: relative; }
.nav-dd-trigger {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted); padding: 7px 13px; border-radius: 8px;
  cursor: pointer; user-select: none;
  transition: color .18s, background .18s;
  white-space: nowrap; border: none; background: none;
  font-family: var(--font-body);
}
.nav-dd-trigger:hover,
.nav-dd.open .nav-dd-trigger { color: var(--purple); background: var(--purple-faint); }
.nav-dd-trigger svg { width: 13px; height: 13px; transition: transform .22s; }
.nav-dd.open .nav-dd-trigger svg { transform: rotate(180deg); }

/* ── DROPDOWN PANEL ── */
.nav-dd-panel {
  position: absolute; top: 100%; left: 50%;
  padding-top: 10px;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(109,40,217,.13), 0 2px 8px rgba(0,0,0,.06);
  min-width: 240px;
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-dd.open .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Wide panel for Solutions */
.nav-dd-panel.wide { min-width: 480px; left: 0; transform: translateY(-6px); }
.nav-dd.open .nav-dd-panel.wide { transform: translateY(0); }
.nav-dd-panel.wide .dd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }

/* Solutions two-panel dropdown */
.dd-solutions-panel { min-width: 540px; left: 0; transform: translateY(-6px) !important; padding: 8px; gap: 6px; }
.nav-dd.open .dd-solutions-panel { transform: translateY(0) !important; display: flex !important; }
.dd-sol-sidebar { width: 130px; flex-shrink: 0; display: flex; flex-direction: column; gap: 2px; padding: 4px 0; }
.dd-sol-sidebar-item { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 9px; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: background .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s; font-family: var(--font-body); border: 1.5px solid transparent; }
.dd-sol-sidebar-item:hover { background: var(--purple-faint); color: var(--purple); border-color: rgba(124,58,237,.15); transform: translateX(2px); }
.dd-sol-sidebar-item.active { background: var(--purple-faint); color: var(--purple); border-color: rgba(124,58,237,.22); box-shadow: inset 3px 0 0 var(--purple); }
.dd-panel-hidden { display: none !important; }
.dd-sol-content { flex: 1; }
.dd-sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dd-sol-card { display: block; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--g200); text-decoration: none; transition: background .15s, border-color .15s; }
.dd-sol-card:hover { background: var(--purple-faint); border-color: #c4b5fd; }
.dd-sol-card:hover .dd-sol-card-title { color: var(--purple); }
.dd-sol-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.dd-sol-card-header .dd-item-ico { width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0; }
.dd-sol-card-header .dd-item-ico svg { width: 13px; height: 13px; }
.dd-sol-card-title { font-size: 13.5px; font-weight: 600; color: var(--text); font-family: var(--font-body); transition: color .15s; }
.dd-sol-card-desc { font-size: 12px; color: var(--text-muted); font-family: var(--font-body); line-height: 1.45; }


/* Dropdown item */
.dd-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none; transition: background .15s;
  cursor: pointer;
}
.dd-item:hover { background: var(--purple-faint); }
.dd-item:hover .dd-item-title { color: var(--purple); }

.dd-item-ico {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.dd-item-ico svg { width: 16px; height: 16px; }

/* Right nav actions */
.nav-right { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* Mobile hamburger (shown on mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: none; background: none;
  cursor: pointer; border-radius: 8px;
  padding: 8px; flex-shrink: 0;
  transition: background .18s;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger:hover { background: var(--purple-faint); }
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease, transform .28s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Tooltip on demo button */
.btn-demo-wrap { position: relative; }
.btn-demo-wrap:hover .btn-demo-tip { opacity: 1; transform: translateY(0); pointer-events: auto; }
.btn-demo-tip {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-4px);
  background: var(--dark); color: rgba(255,255,255,.85); font-size: 11px; font-weight: 500;
  padding: 5px 11px; border-radius: 7px; white-space: nowrap;
  opacity: 0; transition: opacity .2s, transform .2s; pointer-events: none;
  font-family: var(--font-body);
}
.btn-demo-tip::before {
  content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-bottom-color: var(--dark);
}

/* ─────────────────────────────────────────────
   HERO  — centered as per screenshot inspiration
   (user explicit request overrides anti-center rule)
───────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  background: var(--bg-page);
  position: relative; overflow: hidden;
  padding-top: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

/* Radial gradient aura */
.hero-aura {
  position: absolute; top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,.14) 0%, rgba(167,139,250,.07) 40%, transparent 70%);
  pointer-events: none;
}
/* Subtle dot grid */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(124,58,237,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px 5% 60px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-faint); border: 1px solid rgba(124,58,237,.22);
  color: var(--purple); font-size: 11.5px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 32px;
}
.eyebrow-dot, .hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple); animation: cdPulse 2s infinite;
}

.hero h1, .hero .hero-h1 { margin-bottom: 8px; color: var(--text); font-family: var(--font-disp); font-size: clamp(42px, 5.5vw, 76px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance; }
.hero h1 em, .hero .hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple) 0%, #9333ea 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only:focus, .sr-only:focus-visible {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto;
  padding: 10px 16px; margin: 0; overflow: visible; clip: auto;
  background: var(--purple); color: #fff; border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  text-decoration: none; z-index: 10000; box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* iOS Safari: prevent zoom-on-focus when tapping form inputs on mobile.
   Inputs with font-size < 16px trigger an automatic zoom on iPhone. */
@media (max-width: 768px) {
  .fg input, .fg select, .fg textarea,
  .ra-input,
  .pb-form-field input,
  #m-ind-other {
    font-size: 16px;
  }
}

/* Rotating word */
.word-cycle {
  display: inline-block; overflow: hidden;
  vertical-align: bottom; height: 1.25em;
}
.word-cycle-inner {
  display: flex; flex-direction: column;
  animation: wCycle 9s cubic-bezier(.76,0,.24,1) infinite;
}
.word-cycle-inner span {
  height: 1.25em; display: flex; align-items: center; justify-content: center;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--purple), #9333ea);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes wCycle {
  0%,30%  { transform: translateY(0); }
  35%,63% { transform: translateY(-1.25em); }
  68%,96% { transform: translateY(-2.50em); }
  100%    { transform: translateY(0); }
}

.hero-sub {
  color: var(--text-muted); font-size: 17.5px; line-height: 1.75;
  max-width: 56ch; margin: 0 auto 38px; font-weight: 400;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

/* Dashboard card — centered under hero text */
.hero-card-wrap {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 60px;
}
/* ── Analytics hero card ── */
.hero-analytics-card {
  background: rgba(13,10,30,.88);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 20px; padding: 28px 28px 24px;
  backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 24px 64px rgba(109,40,217,.22), inset 0 1px 0 rgba(255,255,255,.06);
}

.hac-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 20px;
}
.hac-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: #ede9ff; letter-spacing: -.01em; margin-bottom: 3px;
}
.hac-sub { font-size: 12px; color: rgba(237,233,255,.6); font-family: var(--font-body); }
.hac-header-right { display: flex; align-items: center; gap: 10px; }

.hac-period-tabs {
  display: flex; gap: 2px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px; padding: 3px;
}
.hac-tab {
  padding: 4px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 600; color: rgba(237,233,255,.4);
  font-family: var(--font-body); cursor: default;
  transition: background .15s, color .15s;
}
.hac-tab.active {
  background: var(--purple); color: #fff;
  box-shadow: 0 2px 8px rgba(124,58,237,.4);
}

.live-row-inline {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  background: rgba(16,185,129,.32);
  border: 1.5px solid rgba(110,231,183,.75);
  border-radius: 100px;
  font-size: 12px; font-weight: 800; color: #ffffff;
  font-family: var(--font-body);
  box-shadow: 0 0 18px rgba(16,185,129,.5), 0 0 6px rgba(16,185,129,.35) inset;
}

/* Stat row — 4 cols */
.hac-stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-bottom: 10px;
}
.hac-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 16px 18px;
  transition: border-color .2s;
}
.hac-stat:hover { border-color: rgba(124,58,237,.4); }
.hac-stat.featured {
  background: var(--purple);
  border-color: transparent;
  position: relative; overflow: hidden;
}
.hac-stat.featured::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hac-stat-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.hac-stat-icon svg { width: 13px; height: 13px; }
.hac-stat-icon.green  { background: rgba(16,185,129,.15); }
.hac-stat-icon.violet { background: rgba(124,58,237,.2); }
.hac-stat-icon.amber  { background: rgba(245,158,11,.15); }
.hac-stat-label {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(237,233,255,.65);
  font-family: var(--font-body); margin-bottom: 8px;
}
.hac-stat.featured .hac-stat-label { color: rgba(255,255,255,.85); }
.hac-stat-val {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: #ede9ff; letter-spacing: -.03em; font-variant-numeric: tabular-nums;
  margin-bottom: 5px; line-height: 1;
}
.hac-stat-val.green  { color: #10b981; }
.hac-stat-val.purple { color: #a78bfa; }
.hac-stat-val.amber  { color: #f59e0b; }
.hac-stat-delta {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
  font-family: var(--font-body);
}
.hac-stat-delta.up {
  background: rgba(16,185,129,.2); color: #10b981;
  border: 1px solid rgba(16,185,129,.35);
}
.hac-stat-delta.neutral {
  background: rgba(255,255,255,.1); color: rgba(237,233,255,.75);
  border: 1px solid rgba(255,255,255,.15);
}
.hac-stat.featured .hac-stat-delta { background: rgba(255,255,255,.22); color: #fff; border-color: rgba(255,255,255,.3); }
.hac-stat-sub { font-size: 11px; color: rgba(237,233,255,.6); font-family: var(--font-body); margin-top: 5px; }
.hac-stat.featured .hac-stat-sub { color: rgba(255,255,255,.72); }

/* Charts 2-col row */
.hac-charts-row {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 8px;
}
.hac-chart-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 16px 18px 12px;
}
.hac-chart-header {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.hac-chart-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: #ede9ff; letter-spacing: -.01em; margin-bottom: 2px;
}
.hac-chart-sub { font-size: 11px; color: rgba(237,233,255,.6); font-family: var(--font-body); }
.hac-chart-legend {
  display: flex; align-items: center; gap: 8px; flex-wrap: nowrap; flex-shrink: 0;
}
.hac-legend-dot { width: 14px; height: 3px; border-radius: 100px; flex-shrink: 0; }
.hac-legend-lbl { font-size: 11px; font-weight: 600; color: rgba(237,233,255,.7); font-family: var(--font-body); margin-right: 2px; white-space: nowrap; }
.hac-chart-xlabels {
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(237,233,255,.5);
  font-family: var(--font-body); margin-top: 5px;
}

/* Donut */
.hac-donut-layout {
  display: flex; align-items: center; gap: 14px;
  margin-top: 12px;
}
.hac-donut-wrap {
  flex-shrink: 0; position: relative; width: 110px; height: 110px;
}
.hac-donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.hac-donut-pct {
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  color: #ede9ff; letter-spacing: -.02em;
}
.hac-donut-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(237,233,255,.65);
  font-family: var(--font-body); margin-top: 2px;
}

/* Breakdown list */
.hac-breakdown-list { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.hac-breakdown-item { display: flex; flex-direction: column; gap: 4px; }
.hac-breakdown-header {
  display: flex; align-items: center; gap: 6px;
}
.hac-breakdown-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hac-breakdown-name { font-size: 12px; font-weight: 600; color: rgba(237,233,255,.8); font-family: var(--font-body); flex: 1; }
.hac-breakdown-val { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #ede9ff; font-variant-numeric: tabular-nums; }
.hac-bar-wrap { height: 3px; background: rgba(255,255,255,.07); border-radius: 100px; overflow: hidden; }
.hac-bar { height: 100%; border-radius: 100px; transition: width .9s cubic-bezier(.4,0,.2,1); }
.hac-breakdown-pct { font-size: 11px; font-weight: 600; color: rgba(237,233,255,.55); font-family: var(--font-body); text-align: right; }

/* Donut interactivity */
.hac-breakdown-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 6px 8px; border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
}
.hac-breakdown-item:hover { background: rgba(255,255,255,.06); }
.hac-breakdown-item.active { background: rgba(255,255,255,.08); }
.hac-donut-pct { transition: all .2s; }
.hac-donut-lbl { transition: all .2s; }

/* Chart tooltip */
.hac-tooltip {
  position: absolute;
  background: #1a1730;
  border: 1px solid rgba(124,58,237,.35);
  border-radius: 10px;
  padding: 10px 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .1s;
  z-index: 20;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  font-family: var(--font-body);
}
.hac-tooltip.show { opacity: 1; }
.hac-tt-date { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(237,233,255,.35); margin-bottom: 8px; }
.hac-tt-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.hac-tt-row:last-child { margin-bottom: 0; }
.hac-tt-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hac-tt-label { font-size: 11px; color: rgba(237,233,255,.45); min-width: 64px; }
.hac-tt-val { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #ede9ff; font-variant-numeric: tabular-nums; margin-left: auto; padding-left: 12px; }
.hac-chart-card { position: relative; }

/* Live indicator row */
.live-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: var(--purple-faint); border: 1px solid rgba(124,58,237,.15);
  border-radius: 10px; margin-top: 14px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6ee7b7; animation: cdPulse 1.4s infinite;
  box-shadow: 0 0 8px #6ee7b7;
  margin-right: 8px; display: inline-block;
}
.live-label { font-size: 12.5px; color: #ffffff; font-weight: 700; font-family: var(--font-body); }

/* ─────────────────────────────────────────────
   LOGO BAR
───────────────────────────────────────────── */
.logo-bar { background: #fff; border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200); padding: 36px 0; overflow: hidden; }
.logo-bar-lbl {
  text-align: center; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--g400); margin-bottom: 18px;
}
.ticker-track { overflow: hidden; position: relative; }
.ticker-track::before, .ticker-track::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-track::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.ticker-track::after  { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.ticker {
  display: flex; gap: 80px; width: max-content;
  animation: tickScroll 28s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
@keyframes tickScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.tick-logo {
  height: 42px; object-fit: contain; opacity: .65; filter: grayscale(1);
  transition: opacity .25s, filter .25s; flex-shrink: 0;
}
.tick-logo:hover { opacity: 1; filter: grayscale(0); }

/* ─────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────── */
.stats-strip { background: var(--purple); padding: 44px 5%; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center;
}
.snum {
  font-family: var(--font-disp); font-size: 46px; font-weight: 800;
  color: #fff; letter-spacing: -.04em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sdesc { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 7px; font-weight: 500; }

/* ─────────────────────────────────────────────
   PLATFORM SECTION  (left-aligned)
───────────────────────────────────────────── */
.platform { padding: 110px 0; background: #fff; }


.tab-btn {
  padding: 10px 24px; border-radius: 9px; cursor: pointer; border: none;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  color: var(--text-muted); background: none; transition: all .2s;
}
.tab-btn.active {
  background: #fff; color: var(--text);
  box-shadow: 0 1px 8px rgba(109,40,217,.1);
}

.tab-panel { display: none; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.tab-panel.active { display: grid; }

.panel-content h3 { margin-bottom: 14px; }
.panel-content p { color: var(--text-muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 22px; max-width: 44ch; }



/* ─────────────────────────────────────────────
   PURA AI  (dark, purple aura)
───────────────────────────────────────────── */
.ai-section {
  padding: 110px 0; background: var(--dark);
  position: relative; overflow: hidden;
}
.ai-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(124,58,237,.1) 0%, transparent 65%);
}
.ai-inner { position: relative; z-index: 2; }

/* Asymmetric: left header, right cards */
.ai-layout { display: grid; grid-template-columns: 320px 1fr; gap: 72px; align-items: start; }
.ai-header h2 { color: #fff; margin-top: 14px; margin-bottom: 18px; }
.ai-header p {
  color: #e8edff;
  font-size: 16px;
  line-height: 1.78;
  max-width: 34ch;
  margin-bottom: 30px;
}

.ai-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* Spotlight border cards */
.sc {
  position: relative; border-radius: 16px; padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden; transition: border-color .3s, transform .22s;
  cursor: default;
}
.sc::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(380px circle at var(--mx,50%) var(--my,50%),
    rgba(124,58,237,.12) 0%, transparent 65%);
  transition: opacity .3s; pointer-events: none; border-radius: inherit;
}
.sc:hover::before { opacity: 1; }
.sc:hover { border-color: rgba(124,58,237,.25); transform: translateY(-3px); }
.sc-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), #a855f7);
  opacity: 0; transition: opacity .3s;
}
.sc:hover .sc-top-bar { opacity: 1; }
.sc-tag { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #a78bfa; margin-bottom: 12px; font-family: var(--font-body); }
.sc h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.sc p {
  color: #e8edff;
  font-size: 14.5px;
  line-height: 1.75;
}
.sc-ico {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 20px;
  background: rgba(124,58,237,.16); border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
}
.sc-ico svg { width: 18px; height: 18px; color: #a78bfa; }
.sc.wide { grid-column: 1 / -1; }

/* ─────────────────────────────────────────────
   CHANNELS  (bento grid)
───────────────────────────────────────────── */
.channels { padding: 110px 0; background: var(--bg-soft); }.channels-header h2 { margin-top: 14px; }
.channels-header p { color: var(--text-muted); font-size: 16px; margin-top: 12px; }.ch-grid .ch-card:nth-child(4) { grid-column: 1 / 2; }
.ch-grid .ch-card:nth-child(5) { grid-column: 2 / 4; }
.ch-grid .ch-card:nth-child(6) { grid-column: 1 / -1; }.ch-ico-w svg { width: 20px; height: 20px; }
.ch-card h3 { margin-bottom: 8px; font-family: var(--font-body); font-size: 17px; font-weight: 600; }
.ch-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.62; }

/* ─────────────────────────────────────────────
   INDUSTRIES
───────────────────────────────────────────── */
.industries { padding: 110px 0; background: #fff; }
.ind-header { text-align: center; max-width: 540px; margin: 0 auto 48px; }
.ind-header h2 { margin-top: 14px; }
.ind-header p { color: var(--text-muted); font-size: 16px; margin-top: 12px; }

.ind-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.ind-tab {
  padding: 9px 22px; border-radius: 100px;
  border: 1.5px solid var(--g200); background: #fff;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; transition: all .2s;
  display: flex; align-items: center; gap: 8px;
}
.ind-tab svg { width: 15px; height: 15px; }
.ind-tab.active, .ind-tab:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-faint); }

.ind-solutions-link { display: none; }
.ind-select-wrap { display: none; }
.ind-panel { display: none; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ind-panel.active { display: grid; }
.ind-content h3 { margin-bottom: 12px; }
.ind-content p { color: var(--text-muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 26px; max-width: 44ch; }
.ind-result {
  background: var(--g100); border: 1px solid var(--g200); border-radius: 14px;
  padding: 22px; display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.ind-big-n {
  font-family: var(--font-disp); font-size: 42px; font-weight: 800;
  color: var(--purple); line-height: 1; flex-shrink: 0; font-variant-numeric: tabular-nums;
}
.ind-res-txt { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.ind-res-src { font-size: 12px; color: var(--g400); margin-top: 4px; }

.ind-visual {
  background: var(--dark-3); border-radius: 20px; padding: 32px;
  min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 56px rgba(13,10,30,.2);
}
.ind-visual-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 20%, rgba(124,58,237,.18) 0%, transparent 60%);
}
.ind-icon-bg {
  position: absolute; top: 24px; right: 24px;
  width: 68px; height: 68px; opacity: .07; color: var(--purple);
}
.ind-icon-bg svg { width: 100%; height: 100%; }
.ind-vtag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.25);
  color: #a78bfa; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px; width: fit-content; margin-bottom: 13px;
  font-family: var(--font-body);
}
.ind-visual h4 { color: #fff; font-size: 19px; margin-bottom: 9px; font-family: var(--font-body); font-weight: 600; }
.ind-visual p { color: rgba(255,255,255,.5); font-size: 13.5px; line-height: 1.65; max-width: 38ch; }

/* ─────────────────────────────────────────────
   CASE STUDY
───────────────────────────────────────────── */
.case-study { padding: 110px 0; background: var(--bg-soft); }
.cs-header { text-align: center; max-width: 540px; margin: 0 auto 52px; }
.cs-header h2 { margin-top: 14px; }
.cs-header p { color: var(--text-muted); font-size: 16px; margin-top: 12px; }

.cs-card {
  background: var(--purple); border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr;
}
.cs-left { padding: 52px; display: flex; flex-direction: column; }
.cs-left .cs-quote { flex: 1; }
.cs-quote {
  font-family: var(--font-disp); font-size: 21px; font-weight: 500;
  color: rgba(255,255,255,.92); line-height: 1.55;
  margin-bottom: 28px; font-style: italic;
}
.cs-quote strong { color: #fff; font-style: normal; font-weight: 700; }
.cs-attr { display: flex; align-items: center; gap: 12px; margin-bottom: 36px; }.cs-avatar svg { width: 16px; height: 16px; color: #fff; }
.cs-name { font-size: 14px; font-weight: 600; color: #fff; font-family: var(--font-body); }
.cs-role { font-size: 12.5px; color: rgba(255,255,255,.55); font-family: var(--font-body); }
.cs-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.cs-met {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}
.cs-mn { font-family: var(--font-disp); font-size: 26px; font-weight: 700; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.cs-ml { font-size: 11.5px; color: rgba(255,255,255,.55); margin-top: 5px; font-family: var(--font-body); }

.cs-right {
  background: rgba(0,0,0,.18);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px; position: relative; overflow: hidden;
}.cs-right-icon svg { width: 100%; height: 100%; color: #fff; }
.cs-brand { position: relative; z-index: 2; text-align: center; }
.cs-bname { font-family: var(--font-disp); font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.cs-btag { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 7px; font-family: var(--font-body); }
.cs-bbadge {
  margin-top: 20px; display: inline-block;
  background: rgba(255,255,255,.2); color: #fff;
  font-size: 12px; font-weight: 700; padding: 7px 18px; border-radius: 100px;
  font-family: var(--font-body);
}


/* ─────────────────────────────────────────────
   COMPARISON
───────────────────────────────────────────── */
.compare { padding: 110px 0; background: var(--dark); position: relative; overflow: hidden; }
.compare::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,.1) 0%, transparent 65%);
}

.comp-grid {
  display: grid; grid-template-columns: 1fr 52px 1fr; gap: 0;
  align-items: start; max-width: 1000px; margin: 0 auto;
}

/* ─────────────────────────────────────────────
   INTEGRATIONS
───────────────────────────────────────────── */
.integrations { padding: 110px 0; background: #fff; }
.int-header { text-align: center; max-width: 520px; margin: 0 auto 52px; }
.int-header h2, .int-header h3 { margin-top: 14px; }
.int-header p { color: var(--text-muted); font-size: 16px; margin-top: 12px; }
.int-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 13px; max-width: 860px; margin: 0 auto;
}
.int-chip {
  background: var(--g100); border: 1px solid var(--g200);
  border-radius: 12px; padding: 16px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--text-muted); text-align: center;
  font-family: var(--font-body); transition: all .2s;
  flex: 0 0 calc(25% - 10px);
}
.int-chip:hover { border-color: var(--g300); color: var(--text); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(124,58,237,.1); }
.int-chip-ico { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.int-chip-ico svg { width: 17px; height: 17px; }

/* ─────────────────────────────────────────────
   PARTNERS
───────────────────────────────────────────── */
.partners { padding: 72px 0; background: var(--bg-soft); border-top: 1px solid var(--g200); }
.partners-header { text-align: center; margin-bottom: 40px; }
.partners-header h2 { font-size: clamp(24px,2.5vw,34px); margin-top: 12px; }
.partners-header p { color: var(--text-muted); font-size: 15px; margin-top: 9px; }
.partners-logos { display: flex; justify-content: center; align-items: center; gap: 52px; flex-wrap: wrap; }
.plogo { height: 38px; max-width: 160px; object-fit: contain; opacity: .5; filter: grayscale(.4); transition: all .25s; }
.plogo:hover { opacity: 1; filter: grayscale(0); transform: scale(1.06); }

/* ─────────────────────────────────────────────
   BOTTOM CTA
───────────────────────────────────────────── */
.bottom-cta {
  padding: 110px 0; background: var(--bg-page);
  border-top: 1px solid var(--g200);
  position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(124,58,237,.1) 0%, transparent 65%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 620px; margin: 0 auto 52px; }
.cta-btn-wrap { display: flex; justify-content: center; position: relative; z-index: 2; }
.cta-inner h2 { margin-top: 16px; margin-bottom: 16px; }
.cta-inner h2 em { color: var(--purple); font-style: normal; }
.cta-inner p { color: var(--text-muted); font-size: 16.5px; margin-bottom: 0; }

/* Demo form */
.demo-form {
  background: #fff; border: 1px solid var(--g200);
  border-radius: 20px; padding: 40px;
  max-width: 540px; margin: 0 auto;
  box-shadow: 0 8px 40px rgba(109,40,217,.08);
  position: relative; z-index: 2;
}
.demo-form h3 { font-size: 20px; margin-bottom: 6px; }
.demo-form .form-sub { color: var(--text-muted); font-size: 13.5px; margin-bottom: 26px; font-family: var(--font-body); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.fg label { font-size: 12.5px; font-weight: 600; color: var(--text-muted); font-family: var(--font-body); letter-spacing: .02em; }
.fg input, .fg select {
  background: var(--g100); border: 1px solid var(--g200);
  border-radius: 9px; padding: 11px 14px;
  color: var(--text); font-size: 14px; font-family: var(--font-body); outline: none;
  transition: border-color .2s, background .2s; width: 100%;
}
.fg input::placeholder { color: var(--g400); }
.fg input:focus, .fg select:focus {
  border-color: var(--g300); background: #fff;
  box-shadow: 0 0 0 3px var(--purple-faint);
}
.fg select { appearance: none; cursor: pointer; }
.fg select option { background: #fff; }
.form-note { text-align: center; font-size: 11.5px; color: var(--g400); margin-top: 13px; font-family: var(--font-body); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer { background: var(--dark); padding: 60px 5% 28px; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px;
}
.footer-brand p { color: rgba(255,255,255,.75); font-size: 13.5px; line-height: 1.7; margin-top: 14px; max-width: 240px; font-family: var(--font-body); font-weight: 500; }
.footer-brand-contact { color: rgba(255,255,255,.75); font-size: 13px; margin-top: 16px; font-family: var(--font-body); font-weight: 500; }
.footer-col-title { color: rgba(255,255,255,.9); font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.8); font-size: 13.5px; font-weight: 500; transition: color .18s; font-family: var(--font-body); }
.footer-links a:hover { color: #a78bfa; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { color: rgba(255,255,255,.55); font-size: 12.5px; font-family: var(--font-body); font-weight: 500; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */

/* ── 1200px — Large screens ── */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}

/* ── 960px — Tablet ── */
@media (max-width: 960px) {
  .dash-grid { grid-template-columns: 1fr 1fr; }
  .hac-stat-row { grid-template-columns: 1fr 1fr; }
  .hac-stat.featured { grid-column: span 2; }
  .hac-charts-row { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .tab-panel.active { grid-template-columns: 1fr; }
  .ai-layout { grid-template-columns: 1fr; gap: 40px; }
  .ai-cards { grid-template-columns: 1fr 1fr; }
  .ch-grid { grid-template-columns: 1fr 1fr; }
  .ch-grid .ch-card:nth-child(4),
  .ch-grid .ch-card:nth-child(5),
  .ch-grid .ch-card:nth-child(6) { grid-column: auto; }
  .ind-tabs { display: none; }
  .ind-select-wrap {
    display: flex; justify-content: center; margin-bottom: 16px;
  }
  .ind-select {
    -webkit-appearance: none; appearance: none;
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    color: var(--purple); background: #fff;
    border: 1.5px solid var(--purple); border-radius: 100px;
    padding: 11px 40px 11px 18px; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    width: 100%; max-width: 280px; text-align: center;
  }
  .ind-select:focus { outline: 2px solid var(--purple); outline-offset: 2px; }
  .ind-solutions-link { display: flex; justify-content: center; margin-bottom: 24px; }
  .ind-solutions-link .btn { font-size: 13px; padding: 8px 16px; }
  .ind-panel.active { grid-template-columns: 1fr; gap: 24px; }
  .ind-panel .ind-visual { order: -1; }
  .ind-panel .ind-content { order: 1; }
  .ind-content p { font-size: 14.5px; margin-bottom: 20px; }
  .ind-visual { min-height: 240px; padding: 24px; border-radius: 16px; }
  .ind-visual h4 { font-size: 17px; }
  .ind-visual p { font-size: 12.5px; }
  .customer-logo { width: 90px; height: 90px; }
  .ind-result { padding: 18px; gap: 12px; }
  .ind-big-n { font-size: 36px; }
  .cs-card { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .int-grid .int-chip { flex: 0 0 calc(33.333% - 9px); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .platform { padding: 72px 0; }
  .ai-section { padding: 72px 0; }
}

/* ── 768px hero card — prevent horizontal scroll ── */
@media (max-width: 768px) {
  .hero-card-wrap { width: 100%; padding: 0 12px 40px; }
  .hero-analytics-card { padding: 18px 14px 16px; overflow-x: hidden; }
  .hac-header { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hac-stat-row { grid-template-columns: 1fr 1fr; }
  .hac-stat.featured { grid-column: span 2; }
  .hac-charts-row { grid-template-columns: 1fr; }
}

/* ── 768px — Mobile nav + layout ── */
@media (max-width: 768px) {
  /* Nav — hamburger */
  .nav {
    height: 60px;
    padding: 0 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: sticky; top: 0;
  }
  .nav-hamburger { display: flex; z-index: 12; }
  .nav-links, .nav-right { display: none; }

  /* Full-screen overlay menu */
  .nav.nav-open {
    position: fixed; inset: 0; height: 100dvh; z-index: 10;
    flex-direction: column; flex-wrap: nowrap;
    align-items: stretch;
    padding: 0; background: #fff;
    overflow-y: auto;
  }
  .nav.nav-open .nav-logo {
    padding: 16px 24px 0;
  }
  .nav.nav-open .nav-hamburger {
    position: fixed; top: 14px; right: 20px;
  }
  .nav.nav-open .nav-links {
    display: flex; flex-direction: column;
    width: 100%; padding: 24px 24px 0; gap: 0;
    border: none; background: none; box-shadow: none;
  }
  .nav.nav-open .nav-links > li > a.nav-flat,
  .nav.nav-open .nav-dd-trigger {
    font-size: 18px; font-weight: 600; padding: 16px 0;
    border-bottom: 1px solid var(--g200); width: 100%;
    justify-content: space-between; color: var(--text);
  }
  .nav.nav-open .nav-links > li:last-child > a.nav-flat {
    border-bottom: none;
  }
  .nav.nav-open .nav-right {
    display: flex; flex-direction: column;
    width: 100%; gap: 12px;
    padding: 24px; margin-top: auto;
  }
  .nav.nav-open .nav-right .btn,
  .nav.nav-open .nav-right .btn-ghost-light,
  .nav.nav-open .nav-right a,
  .nav.nav-open .nav-right button {
    width: 100%; display: flex; align-items: center;
    justify-content: center; text-align: center;
    font-size: 15px !important; padding: 14px 24px !important;
    border-radius: 12px !important; box-sizing: border-box;
    height: 50px !important;
  }
  .nav.nav-open .nav-right .btn-demo-wrap {
    width: 100%;
  }
  .nav.nav-open .nav-right .btn-demo-wrap .btn {
    width: 100%;
  }
  .nav-links > li { width: 100%; }
  .nav-dd-panel {
    position: static;
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; box-shadow: none;
    padding: 8px 0 0; width: 100%; max-width: none;
    display: none;
  }
  .nav-dd.open .nav-dd-panel {
    display: block; position: static;
    transform: none; opacity: 1; visibility: visible;
  }
  .nav-dd-panel.wide { min-width: unset; left: 0; }
  .nav-dd.open .nav-dd-panel.wide { transform: none; }
  .dd-solutions-panel { flex-direction: column !important; min-width: unset; left: 0; }
  .dd-sol-sidebar { width: 100%; }
  .dd-sol-grid { grid-template-columns: 1fr; }
  .dd-grid { grid-template-columns: 1fr; }
  .btn-demo-tip { display: none; }

  /* Hero */
  .hero { min-height: unset; padding-top: 20px; }
  .hero-inner { padding: 20px 5% 48px; }
  .hero-aura { width: 100%; height: 300px; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero h1, .hero .hero-h1 { font-size: clamp(32px, 8vw, 52px); }
  .word-cycle-inner span { white-space: normal; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-actions a, .hero-actions button { width: 100%; justify-content: center; }

  /* Consistent section padding on mobile */
  .channels, .industries, .case-study, .integrations, .bottom-cta { padding: 56px 0; }
  .channels-header, .ind-header, .cs-header, .int-header, .cta-inner { margin-bottom: 32px; }
  .section-white, .section-soft, .section-dark { padding: 56px 0; }

  /* Case study card mobile */
  .cs-card { border-radius: 18px; }
  .cs-left { padding: 28px 20px; }
  .cs-quote { font-size: 16px; margin-bottom: 20px; }
  .cs-right { padding: 24px 20px; }
  .cs-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cs-met { padding: 12px 8px; }
  .cs-mn { font-size: 20px; }
  .cs-ml { font-size: 10px; }
  .caro-dots { margin-top: 16px; }

  /* Sections */
  .platform { padding: 56px 0; }
  .tab-btn { white-space: nowrap; font-size: 13px; padding: 8px 14px; }
  .panel-content h3 { font-size: clamp(18px, 4vw, 24px); }
  .ai-section { padding: 56px 0; }
  .ai-cards { grid-template-columns: 1fr; gap: 16px; }

  /* Channel grid */
  .ch-grid { grid-template-columns: 1fr; }
  .ch-grid .ch-card:nth-child(n) { grid-column: auto; }


  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .cs-metrics { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  /* Misc */
  .int-grid .int-chip { flex: 0 0 calc(50% - 7px); }
  .form-row { grid-template-columns: 1fr; }
  .announcement-inner { padding: 0 8px; }

  /* CTA band */
  .cta-band { padding: 48px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── 640px — Large phone / small tablet ── */
@media (max-width: 640px) {
  .ai-cards { grid-template-columns: 1fr; gap: 14px; }
}

/* ── 480px — Small mobile ── */
@media (max-width: 480px) {
  h1 { font-size: clamp(32px, 8vw, 44px); }
  h2 { font-size: clamp(24px, 6vw, 36px); }
  .hero-inner { padding: 32px 5% 40px; }
  .hero-eyebrow { font-size: 10px; padding: 4px 12px; }
  .hero-sub { font-size: 15px; }
  .stats-inner { grid-template-columns: 1fr; }
  .int-grid .int-chip { flex: 0 0 100%; }
  .tab-panel { gap: 32px; }
  .tab-btn { font-size: 12px; padding: 6px 10px; }
  section { padding: 48px 0; }
  .platform { padding: 48px 0; }
  .ai-section { padding: 48px 0; }
  .sc { padding: 22px; }
  .testi-card { padding: 20px; }
  .cs-left { padding: 28px 24px; }
  .cs-right { padding: 24px; }
  .ch-card { padding: 20px; }
  .ch-grid { gap: 10px; }
}

/* ── PRODUCT PAGES (agentic-skills, ai-assistant) ── */

/* Status badge */
.status-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
  flex-wrap: wrap;
}
.status-active {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 11px; border-radius: 100px;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #059669;
  animation: cdPulse 1.8s infinite;
}

/* Stats row (product hero) */
.stats-row {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--g200);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-n {
  font-family: var(--font-disp); font-size: 34px; font-weight: 800;
  color: var(--text); letter-spacing: -.04em; line-height: 1;
}
.stat-n span { color: var(--purple); }
.stat-l { font-size: 13px; color: var(--text-muted); margin-top: 5px; }

/* Product page sections */
.section-white { background: #fff; padding: 80px 0; }
.section-soft { background: var(--bg-soft); padding: 80px 0; }
.section-dark { background: var(--dark); position: relative; overflow: hidden; padding: 80px 0; }
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(124,58,237,.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Section header (product pages) */
.section-hdr { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-hdr.left { margin: 0 0 48px; text-align: left; }
.section-hdr h2 { margin-top: 14px; margin-bottom: 14px; }
.section-hdr p { color: var(--text-muted); font-size: 16.5px; }
.section-hdr.dark h2 { color: #fff; }
.section-hdr.dark p { color: rgba(255,255,255,.55); }

/* Hero action buttons (product pages) */
.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--text); background: rgba(255,255,255,.8);
  padding: 14px 28px; border-radius: 100px;
  border: 1.5px solid var(--g200);
  text-decoration: none; transition: all .18s;
}
.btn-ghost-hero:hover { border-color: var(--purple); color: var(--purple); }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: #fff; background: var(--purple);
  padding: 14px 28px; border-radius: 100px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 20px rgba(124,58,237,.3);
  transition: all .18s;
}
.btn-hero-primary:hover {
  background: var(--purple-dim);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(124,58,237,.35);
}

/* Campaign grid */
.campaign-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Campaign card */
.campaign-card {
  background: #fff; border: 1.5px solid var(--g200); border-radius: 20px; padding: 32px;
  transition: all .25s; position: relative; overflow: hidden;
}
.campaign-card:hover {
  border-color: var(--g300);
  box-shadow: 0 8px 32px rgba(109,40,217,.1);
  transform: translateY(-3px);
}
.campaign-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), #a855f7);
  opacity: 0; transition: opacity .3s;
}
.campaign-card:hover::before { opacity: 1; }
.campaign-card.active-card {
  border-color: rgba(124,58,237,.25);
  background: linear-gradient(135deg, #fff 0%, var(--bg-soft) 100%);
}
.campaign-card.active-card::before { opacity: 1; }

/* Card internals */
.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }
.card-title {
  font-family: var(--font-disp); font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 6px; letter-spacing: -.02em;
}
.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }


/* Section divider */
.section-divider { display: flex; align-items: center; gap: 16px; margin: 48px 0 40px; }
.section-divider-label {
  font-family: var(--font-disp); font-size: 22px; font-weight: 700;
  color: var(--text); white-space: nowrap;
}
.section-divider-line { flex: 1; height: 1px; background: var(--g200); }

/* How it works grid */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-card {
  background: #fff; border: 1px solid var(--g200);
  border-radius: 16px; padding: 28px; text-align: center;
}
.how-num {
  font-family: var(--font-disp); font-size: 48px; font-weight: 800;
  color: var(--purple); opacity: .18; line-height: 1;
  margin-bottom: 12px; letter-spacing: -.04em;
}
.how-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--purple-faint); border: 1px solid rgba(124,58,237,.22);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.how-ico svg { width: 20px; height: 20px; color: var(--purple); }
.how-card h3 {
  font-family: var(--font-disp); font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
}
.how-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* CTA band */
.cta-band {
  background: var(--purple); border-radius: 24px;
  padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden; margin-top: 80px;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  color: #fff; font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px; position: relative; z-index: 1;
}
.cta-band p {
  color: rgba(255,255,255,.7); font-size: 16px;
  margin-bottom: 32px; max-width: 480px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.cta-btns {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  color: var(--purple); background: #fff;
  padding: 12px 28px; border-radius: 100px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: all .18s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-white-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: #fff; background: transparent;
  padding: 12px 28px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.35);
  text-decoration: none; transition: all .18s;
}
.btn-white-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
}

/* Product page responsive */
@media (max-width: 768px) {
  .stats-row { gap: 20px; margin-top: 40px; padding-top: 28px; }
  .section-hdr { margin-bottom: 36px; }
  .campaign-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; margin-top: 56px; }
  .cta-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
  .cta-btns a, .cta-btns button { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .stat-n { font-size: 26px; }
  .stats-row { gap: 14px; }
  .campaign-card { padding: 22px; }
}

/* ── COMPARE PAGE ── */

/* Competitor logos strip */
.vs-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-bottom: 56px;
}
.vs-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  background: #fff; border: 1px solid var(--g200);
  padding: 8px 18px; border-radius: 100px; font-family: var(--font-body);
}
.vs-dot { width: 8px; height: 8px; border-radius: 50%; }
.vs-sep { font-size: 14px; color: var(--g300); padding: 0 8px; font-weight: 300; }

/* Matrix table */
.matrix-outer {
  position: relative; border-radius: 20px;
  border: 1.5px solid var(--g200); background: #fff;
  box-shadow: 0 8px 32px rgba(109,40,217,.1);
  overflow: hidden;
}
.matrix-scroll-fade { display: none; }
.matrix-wrap {
  overflow-x: auto;
}
.matrix-table {
  width: 100%; border-collapse: collapse; min-width: 960px; table-layout: fixed;
}
.matrix-table thead tr th {
  padding: 16px 8px; text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border-bottom: 1.5px solid var(--g200);
  font-family: var(--font-body); white-space: nowrap;
}
.matrix-table thead tr th:first-child { text-align: left; padding-left: 16px; }
.matrix-table thead tr th.col-purands {
  background: linear-gradient(180deg, rgba(124,58,237,.08) 0%, rgba(124,58,237,.04) 100%);
  border-left: 2px solid rgba(124,58,237,.3);
  border-right: 2px solid rgba(124,58,237,.3);
  color: var(--purple);
}
.matrix-table thead tr th.col-other { color: var(--g400); }
.th-brand { font-size: 12px; font-weight: 800; display: block; margin-bottom: 2px; }
.th-sub { font-size: 9px; font-weight: 500; opacity: .6; display: block; }

/* Category row */
.cat-row td {
  padding: 10px 28px; background: var(--g100);
  font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--g400); font-family: var(--font-body);
  border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200);
}

/* Data rows */
.matrix-table tbody tr.data-row { transition: background .15s; }
.matrix-table tbody tr.data-row:hover { background: var(--g100); }
.matrix-table tbody tr.data-row td {
  padding: 14px 8px; border-bottom: 1px solid rgba(124,58,237,.06);
  text-align: center; vertical-align: middle;
}
.matrix-table tbody tr.data-row td:first-child {
  text-align: left; padding-left: 16px; min-width: 180px;
}
.matrix-table tbody tr.data-row td.col-purands {
  background: rgba(124,58,237,.04);
  border-left: 2px solid rgba(124,58,237,.15);
  border-right: 2px solid rgba(124,58,237,.15);
}
.matrix-table tbody tr:last-child td { border-bottom: none; }

/* Capability label */
.cap-name { font-size: 12px; font-weight: 600; color: var(--text); font-family: var(--font-body); margin-bottom: 2px; }
.cap-desc { font-size: 10px; color: var(--text-muted); font-family: var(--font-body); line-height: 1.4; }

/* Cell values */
.cell {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 600; font-family: var(--font-body);
  padding: 4px 8px; border-radius: 100px; white-space: nowrap;
}
.cell.yes    { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.cell.no     { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.cell.partial { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.cell.core   {
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(124,58,237,.06));
  color: var(--purple); border: 1px solid rgba(124,58,237,.25);
  font-weight: 700;
}
.cell.icon-only { background: none; border: none; padding: 0; font-size: 18px; }


/* Pillars section */
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width: 768px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar-card {
  background: #fff; border: 1.5px solid var(--g200);
  border-radius: 24px; padding: 36px;
  position: relative; overflow: hidden;
  transition: all .25s;
}
.pillar-card:hover {
  border-color: rgba(124,58,237,.3);
  box-shadow: 0 8px 32px rgba(109,40,217,.1); transform: translateY(-3px);
}
.pillar-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), #a855f7); opacity: 0; transition: opacity .3s;
}
.pillar-card:hover::after { opacity: 1; }
.pillar-card.featured {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-color: rgba(124,58,237,.3);
  grid-column: 1 / -1;
}
.pillar-card.featured::after { opacity: 1; }

.pillar-num {
  font-family: var(--font-disp); font-size: 72px; font-weight: 900;
  line-height: 1; letter-spacing: -.05em; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,.25), rgba(124,58,237,.06));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pillar-card.featured .pillar-num {
  background: linear-gradient(135deg, rgba(167,139,250,.75), rgba(124,58,237,.35));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.pillar-title {
  font-family: var(--font-disp); font-size: 22px; font-weight: 700;
  color: var(--text); letter-spacing: -.03em; margin-bottom: 12px;
}
.pillar-card.featured .pillar-title { color: #fff; }

.pillar-body { font-size: 15px; color: var(--text-muted); line-height: 1.72; }
.pillar-card.featured .pillar-body { color: rgba(255,255,255,.78); }

.pillar-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-faint);
  border: 1px solid rgba(124,58,237,.2); padding: 4px 12px; border-radius: 100px;
  margin-bottom: 20px; font-family: var(--font-body);
}
.pillar-card.featured .pillar-tag {
  color: #c4b5fd; background: rgba(124,58,237,.25); border-color: rgba(196,181,253,.4);
}

/* Pillar featured layout */
.pillar-featured-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media(max-width: 768px) { .pillar-featured-inner { grid-template-columns: 1fr; } }

/* Winner strip */
.winner-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 0;
}
@media(max-width: 768px) { .winner-strip { grid-template-columns: 1fr 1fr; } }
.winner-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 24px; text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.winner-num {
  font-family: var(--font-disp); font-size: 38px; font-weight: 800;
  color: #fff; letter-spacing: -.04em; line-height: 1; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.winner-num span { color: #a78bfa; }
.winner-label { font-size: 14px; color: rgba(255,255,255,.82); font-family: var(--font-body); line-height: 1.55; }

/* Legend row */
.legend-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 20px; justify-content: flex-end;
}
.legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted); font-family: var(--font-body);
}
.legend-swatch { display: inline-flex; align-items: center; justify-content: center; padding: 2px 8px; border-radius: 100px; font-size: 11px; font-weight: 600; }


/* Compare-specific hero buttons — canonical definition below in global buttons section */

/* Swipe hint — hidden on desktop */
.matrix-swipe-hint {
  display: none; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--purple);
  background: rgba(124,58,237,.06); border: 1px solid rgba(124,58,237,.12);
  border-radius: 100px; padding: 6px 16px; margin: 0 auto 12px;
  width: fit-content; font-family: var(--font-body);
  animation: swipeHintPulse 2s ease-in-out infinite;
}
@keyframes swipeHintPulse {
  0%, 100% { opacity: .7; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

/* Compare page responsive */
@media(max-width:768px) {
  .matrix-swipe-hint { display: flex; }
  .matrix-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .matrix-scroll-fade {
    display: block;
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 40px; pointer-events: none; z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.9) 70%, #fff);
    transition: opacity .2s;
  }
  .matrix-outer.scrolled-end .matrix-scroll-fade { opacity: 0; }
  .matrix-table { min-width: 700px; table-layout: auto; }
  /* Sticky column 1 — Capability (fixed width for predictable left offset) */
  .matrix-table thead tr th:first-child,
  .matrix-table tbody tr.data-row td:first-child {
    position: sticky; left: 0; z-index: 2;
    background: #fff; width: 140px; min-width: 140px; max-width: 140px;
    box-shadow: 4px 0 8px rgba(0,0,0,.05);
  }
  /* Sticky category rows — full width, pinned */
  .matrix-table tbody tr.cat-row td {
    position: sticky; left: 0; z-index: 3;
    background: var(--g100);
    box-shadow: 0 1px 0 var(--g200);
  }
  /* Sticky column 2 — Purands (flush against col 1) */
  .matrix-table thead tr th.col-purands,
  .matrix-table tbody tr.data-row td.col-purands {
    position: sticky; left: 140px; z-index: 2;
    background: #f5f3ff;
    box-shadow: 6px 0 12px rgba(109,40,217,.08);
  }
  .matrix-table thead tr th.col-purands {
    background: #ede9fe;
  }
  .matrix-table tbody tr.data-row:hover td:first-child { background: #f3f4f6; }
  .matrix-table tbody tr.data-row:hover td.col-purands { background: #ede9fe; }
  .cat-row td { padding: 10px 16px; }
  .winner-strip { grid-template-columns: 1fr 1fr; }
  .vs-strip { gap: 4px; }
  .vs-chip { font-size: 11px; padding: 6px 12px; }
  .legend-row { flex-wrap: wrap; gap: 8px; }
}
@media(max-width:480px) {
  .matrix-outer { border-radius: 14px; }
  .matrix-table { min-width: 600px; }
  .matrix-table thead tr th:first-child,
  .matrix-table tbody tr.data-row td:first-child {
    width: 110px; min-width: 110px; max-width: 110px; padding-left: 12px;
  }
  .matrix-table thead tr th.col-purands,
  .matrix-table tbody tr.data-row td.col-purands {
    left: 110px;
  }
  .cap-name { font-size: 11px; }
  .cap-desc { font-size: 9px; }
  .pillar-card { padding: 22px; }
  .winner-strip { grid-template-columns: 1fr; }
}

/* ── SAVINGS CALCULATOR PAGE ── */

/* Wrapper */
.sc-wrapper {
  position: relative; z-index: 1;
  max-width: 1040px; margin: 0 auto;
  padding: 0 24px 80px;
}

/* Calculator card */
.calc-card { padding: 36px 40px 32px; margin-bottom: 20px; animation: fadeUp 0.5s 0.15s ease both; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::after { content:''; flex:1; height:1px; background: linear-gradient(90deg, #ede9fe, transparent); }
.inputs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 32px; }
@media(max-width:580px){.inputs-grid{grid-template-columns:1fr;gap:28px;}.calc-card{padding:24px;}}
.input-group label { display:block; font-size:13px; font-weight:500; color:rgba(22,13,53,0.6); margin-bottom:8px; }
.val-display { font-family:'Bricolage Grotesque',sans-serif; font-size:32px; font-weight:800; color:#160D35; margin-bottom:14px; line-height:1; }
.val-display .unit { font-size:14px; font-weight:400; color:rgba(22,13,53,0.35); margin-left:4px; font-family:'Outfit',sans-serif; }

/* Range slider */
input[type="range"] { -webkit-appearance:none; appearance:none; width:100%; height:3px; background:rgba(22,13,53,0.08); border-radius:3px; outline:none; cursor:pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance:none; width:22px; height:22px; border-radius:50%; background:#fff; border:2.5px solid var(--purple); box-shadow:0 2px 8px rgba(107,63,243,0.3); cursor:pointer; transition:box-shadow 0.2s,transform 0.15s; }
input[type="range"]::-webkit-slider-thumb:hover { box-shadow:0 0 0 6px rgba(107,63,243,0.12); transform:scale(1.1); }
.range-labels { display:flex; justify-content:space-between; font-size:11px; color:rgba(22,13,53,0.35); margin-top:8px; }

/* Summary bar */
.summary-bar { background:#F5F2FF; border:1px solid rgba(107,63,243,0.12); border-radius:18px; padding:20px 28px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.s-item .s-label { font-size:11px; font-weight:500; letter-spacing:0.06em; text-transform:uppercase; color:rgba(22,13,53,0.35); margin-bottom:5px; }
.s-item .s-val { font-family:'Bricolage Grotesque',sans-serif; font-size:22px; font-weight:700; color:#160D35; }
.s-divider { width:1px; height:40px; background:rgba(107,63,243,0.12); }
.plan-chip { display:inline-flex; align-items:center; gap:7px; background:var(--purple); color:#fff; border-radius:100px; padding:6px 16px; font-size:13px; font-weight:600; box-shadow:0 4px 12px rgba(107,63,243,0.3); }
.plan-chip .chip-dot { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.6); }

/* Savings banner */
.savings-banner {
  background:#fff; border-radius:24px; box-shadow:0 8px 32px rgba(22,13,53,0.10), 0 0 0 1px rgba(22,13,53,0.04);
  padding:44px 40px; text-align:center; margin-bottom:20px;
  position:relative; overflow:hidden;
  animation: fadeUp 0.5s 0.25s ease both;
}
.savings-banner::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 80% at 10% 50%, rgba(107,63,243,0.04) 0%, transparent 60%),
              radial-gradient(ellipse 50% 60% at 90% 50%, rgba(5,150,105,0.04) 0%, transparent 60%);
  pointer-events:none;
}
.savings-eyebrow { display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:600; letter-spacing:0.09em; text-transform:uppercase; color:#059669; margin-bottom:16px; background:#ecfdf5; border:1px solid #a7f3d0; border-radius:100px; padding:5px 14px; }
.savings-amount { font-family:'Bricolage Grotesque',sans-serif; font-size:clamp(52px,11vw,88px); font-weight:800; line-height:1; color:#059669; margin-bottom:10px; position:relative; z-index:1; letter-spacing:-0.03em; }
.savings-sub { font-size:15px; color:rgba(22,13,53,0.6); line-height:1.6; position:relative; z-index:1; margin-bottom:20px; }
.savings-sub strong { color:#160D35; font-weight:600; }
.annual-chips { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; position:relative; z-index:1; }
.a-chip { background:#F5F2FF; border:1px solid rgba(107,63,243,0.12); border-radius:100px; padding:7px 18px; font-size:13px; color:rgba(22,13,53,0.6); font-weight:400; }
.a-chip strong { color:#059669; font-weight:700; }
.a-chip.purple strong { color:var(--purple); }

/* Channel grid */
.channel-card { background:#fff; border-radius:24px; box-shadow:0 2px 8px rgba(22,13,53,0.06), 0 0 0 1px rgba(22,13,53,0.04); padding:28px 32px; margin-bottom:20px; animation: fadeUp 0.5s 0.30s ease both; }
.channel-table { display:grid; grid-template-columns:repeat(4,1fr); border-radius:12px; border:1px solid rgba(107,63,243,0.12); overflow:hidden; }
@media(max-width:660px){.channel-table{grid-template-columns:1fr 1fr;}}
.ct-col { padding:18px 20px; }
.ct-col+.ct-col { border-left:1px solid rgba(107,63,243,0.12); }
.ct-col.is-purands { background:#ede9fe; }
.ct-col.is-other { background:#F5F2FF; }
.ct-brand-name { font-size:10px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:12px; }
.ct-col.is-purands .ct-brand-name { color:var(--purple); }
.ct-col.is-other .ct-brand-name { color:rgba(22,13,53,0.35); }
.ct-row { font-size:12.5px; color:rgba(22,13,53,0.6); padding:4px 0; display:flex; align-items:flex-start; gap:7px; line-height:1.4; }
.ct-row .ico { flex-shrink:0; font-size:13px; }

/* Comparison cards */
.comp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:20px; animation: fadeUp 0.5s 0.35s ease both; }
@media(max-width:660px){.comp-grid{grid-template-columns:1fr;}}
.comp-card { background:#fff; border-radius:24px; padding:28px 24px; box-shadow:0 2px 8px rgba(22,13,53,0.06), 0 0 0 1px rgba(22,13,53,0.04); border:1.5px solid transparent; position:relative; overflow:hidden; transition:transform 0.2s, box-shadow 0.2s; }
.comp-card:hover { transform:translateY(-3px); box-shadow:0 8px 32px rgba(22,13,53,0.10), 0 0 0 1px rgba(22,13,53,0.04); }
.comp-card.is-purands { border-color:var(--purple); box-shadow:0 0 0 1px var(--purple), 0 8px 32px rgba(22,13,53,0.10), 0 0 0 1px rgba(22,13,53,0.04); }
.comp-card.is-purands::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--purple), #8b5cf6); }
.best-value-tag { position:absolute; top:16px; right:16px; background:var(--purple); color:#fff; font-size:10px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; padding:4px 10px; border-radius:100px; }
.cc-brand { display:flex; align-items:center; gap:7px; font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:18px; }
.cc-brand .bd { width:8px; height:8px; border-radius:50%; }
.cc-brand.b-pur { color:var(--purple); }
.cc-brand.b-pur .bd { background:var(--purple); box-shadow:0 0 6px rgba(107,63,243,0.5); }
.cc-brand.b-klav { color:rgba(22,13,53,0.35); }
.cc-brand.b-klav .bd { background:#FF6100; }
.cc-brand.b-ct { color:rgba(22,13,53,0.35); }
.cc-brand.b-ct .bd { background:#E6454A; }
.cc-price { font-family:'Bricolage Grotesque',sans-serif; font-size:46px; font-weight:800; line-height:1; color:#160D35; margin-bottom:4px; letter-spacing:-0.03em; }
.cc-price sup { font-size:22px; vertical-align:super; letter-spacing:0; }
.cc-period { font-size:13px; color:rgba(22,13,53,0.35); margin-bottom:20px; line-height:1.4; }
.cc-period .red { color:#DC2626; }
.cc-divider { height:1px; background:rgba(22,13,53,0.08); margin-bottom:16px; }
.cc-features { list-style:none; margin-bottom:20px; }
.cc-features li { display:flex; align-items:flex-start; gap:9px; font-size:13px; color:rgba(22,13,53,0.6); padding:5px 0; line-height:1.45; }
.cc-features li.warn { color:#DC2626; opacity:0.8; }
.cc-features li .fi { flex-shrink:0; }
.tag { display:inline-flex; align-items:center; gap:5px; border-radius:100px; padding:6px 14px; font-size:12px; font-weight:600; }
.tag.win { background:#ecfdf5; color:#059669; border:1px solid #a7f3d0; }
.tag.neutral { background:#F5F2FF; color:rgba(22,13,53,0.35); border:1px solid rgba(22,13,53,0.08); }
.tag.loss { background:#FEE2E2; color:#DC2626; border:1px solid #FECACA; }
.tag.brand { background:#ede9fe; color:var(--purple); border:1px solid rgba(107,63,243,0.2); }

/* Savings legend card */
.legend-card { background:#fff; border-radius:24px; box-shadow:0 2px 8px rgba(22,13,53,0.06), 0 0 0 1px rgba(22,13,53,0.04); padding:28px 32px; margin-bottom:28px; animation: fadeUp 0.5s 0.40s ease both; }
.sc-legend-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
@media(max-width:600px){.sc-legend-grid{grid-template-columns:1fr 1fr;}}
.sc-legend-item { border:1.5px solid rgba(107,63,243,0.12); border-radius:12px; padding:16px 18px; background:#F5F2FF; transition:border-color 0.2s, background 0.2s; }
.sc-legend-item.active { border-color:var(--purple); background:#ede9fe; }
.li-plan { font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--purple); margin-bottom:6px; }
.li-price { font-family:'Bricolage Grotesque',sans-serif; font-size:22px; font-weight:800; color:#160D35; margin-bottom:2px; }
.li-price span { font-size:13px; font-weight:400; color:rgba(22,13,53,0.35); }
.li-msgs { font-size:12px; color:rgba(22,13,53,0.35); }

/* Footnote */
.footnote { text-align:center; font-size:12px; color:rgba(22,13,53,0.35); line-height:1.8; }

/* Animations */
@keyframes fadeUp { from{opacity:0;transform:translateY(16px);}to{opacity:1;transform:translateY(0);} }
@keyframes numPop { 0%{transform:scale(0.97);}60%{transform:scale(1.02);}100%{transform:scale(1);} }
.anim-num { animation: numPop 0.25s ease; }

/* Savings calculator responsive */
@media(max-width:768px){
  .sc-wrapper{padding:0 16px 40px}
  .calc-card{padding:24px}
  .inputs-grid{grid-template-columns:1fr;gap:24px}
  .channel-table{grid-template-columns:1fr 1fr;overflow-x:auto}
  .comp-grid{grid-template-columns:1fr}
  .sc-legend-grid{grid-template-columns:1fr 1fr}
  .val-display{font-size:26px}
}
@media(max-width:480px){
  .sc-legend-grid{grid-template-columns:1fr}
  .channel-table{grid-template-columns:1fr}
}

/* ── PRICING PAGE ── */

/* Pricing hero */
.page-pricing .hero .hero-sub { max-width: 52ch; margin-bottom: 32px; }
.page-pricing .hero h1 { margin-bottom: 16px; }

/* Pricing toggle */
.pricing-toggle-row {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px;
}
.pricing-toggle-label { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.pricing-toggle-label.active { color: var(--text); font-weight: 600; }
.pricing-toggle {
  width: 48px; height: 26px; border-radius: 14px; cursor: pointer; position: relative;
  background: var(--g200); border: none; transition: background .25s;
}
.pricing-toggle.on { background: var(--purple); }
.pricing-toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  transition: transform .25s; box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.pricing-toggle.on::after { transform: translateX(22px); }
.annual-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #dcfce7; color: #059669; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px; letter-spacing: .03em;
}

/* Plans grid */
.plans-section { padding: 0 0 110px; background: var(--bg-page); position: relative; }
.plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
}.plans-compare-link a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--purple);
  font-family: var(--font-body); text-decoration: none;
  transition: gap .15s;
}
.plans-compare-link a:hover { gap: 10px; }

.plan-card {
  background: #fff; border: 1.5px solid var(--g200);
  border-radius: 20px; padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  transition: transform .22s, border-color .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--g300); }
.plan-card.featured {
  border-color: var(--purple); background: linear-gradient(180deg, rgba(124,58,237,.03) 0%, #fff 40%);
  box-shadow: 0 0 0 1px var(--purple), 0 24px 64px rgba(109,40,217,.16);
}
.plan-card.featured:hover { transform: translateY(-6px); }
.plan-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), #a855f7);
}

.plan-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--purple); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px; font-family: var(--font-body);
}

.plan-name {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 16px; font-family: var(--font-body);
}
.plan-price {
  font-family: var(--font-disp); font-size: 48px; font-weight: 800;
  color: var(--text); line-height: 1; letter-spacing: -.03em; margin-bottom: 4px;
}
.plan-price sup { font-size: 22px; vertical-align: super; }
.plan-price .p-amount { display: inline-flex; gap: 0; }
.plan-price-custom { font-size: 40px; background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.digit { display: inline-block; overflow: hidden; height: 1em; line-height: 1em; vertical-align: bottom; }
.digit-inner { display: block; transform: translateY(0); will-change: transform; }
.plan-period { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; font-family: var(--font-body); }
.plan-annual { font-size: 12px; color: #059669; font-weight: 600; margin-bottom: 22px; font-family: var(--font-body); min-height: 18px; }
.plan-msgs {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple-faint); border: 1px solid rgba(124,58,237,.15);
  padding: 6px 13px; border-radius: 8px; font-size: 12.5px; font-weight: 600;
  color: var(--purple); margin-bottom: 24px; font-family: var(--font-body);
}

.plan-divider { height: 1px; background: var(--g200); margin-bottom: 22px; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-muted); line-height: 1.5; font-family: var(--font-body);
}
.plan-features li .pf-ico {
  width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0; margin-top: 1px;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2);
  display: flex; align-items: center; justify-content: center;
}
.plan-features li .pf-ico svg { width: 10px; height: 10px; color: #10b981; }

.plan-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 20px; border-radius: 10px; border: none;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.plan-cta.primary {
  background: var(--purple); color: #fff;
  box-shadow: 0 4px 18px rgba(124,58,237,.28);
}
.plan-cta.primary:hover { background: var(--purple-dim); transform: translateY(-1px); box-shadow: var(--shadow-purple); }
.plan-cta.outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--g200);
}
.plan-cta.outline:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-1px); }

/* Included section */
.included-section {
  padding: 110px 0; background: #fff;
}
.included-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.included-header h2 { margin-top: 14px; margin-bottom: 12px; }
.included-header p { color: var(--text-muted); font-size: 16px; }

.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1000px; margin: 0 auto; padding: 0 5%;
}
.incl-card {
  background: var(--g100); border: 1px solid var(--g200);
  border-radius: 16px; padding: 28px;
  transition: all .22s;
}
.incl-card:hover { border-color: var(--g300); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.incl-ico {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.incl-ico svg { width: 20px; height: 20px; }
.incl-card h3, .incl-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; font-family: var(--font-body); }
.incl-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.62; }

/* Calculator CTA */
.calc-cta-section {
  padding: 80px 0; background: var(--bg-soft);
  border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200);
}.calc-cta-inner h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.calc-cta-inner p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 28px; }
.calc-cta-inner .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-section { padding: 110px 0; background: #fff; }
.faq-header { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.faq-header h2 { margin-top: 14px; }
.faq-header p { color: var(--text-muted); font-size: 16px; margin-top: 12px; }

.faq-list { max-width: 720px; margin: 0 auto; padding: 0 5%; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--g100); border: 1px solid var(--g200);
  border-radius: 14px; overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--g300); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; cursor: pointer; user-select: none;
  font-size: 15px; font-weight: 600; color: var(--text); font-family: var(--font-body);
  background: none; border: none; width: 100%; text-align: left;
}
.faq-q svg {
  width: 16px; height: 16px; flex-shrink: 0; color: var(--text-muted);
  transition: transform .25s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 14px; color: var(--text-muted); line-height: 1.72;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 20px; }

/* Pricing responsive */
@media(max-width:960px){
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px){
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .included-grid { grid-template-columns: 1fr; }
  .plan-price { font-size: 42px; }
  .pricing-toggle-row { gap: 10px; }
  .page-pricing .hero h1 { font-size: clamp(28px, 7vw, 48px); }
  .plans-section { padding: 0 0 64px; }
}
@media(max-width:480px){
  .plan-card { padding: 24px 20px; }
  .plan-price { font-size: 36px; }
  .included-item { padding: 14px 16px; }
}

/* ── PROFILING PAGE ── */

/* Profile demo UI */
.profile-shell { background: var(--dark); border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(13,10,30,.3); }
.profile-sidebar { background: var(--dark-2); padding: 28px; border-right: 1px solid rgba(255,255,255,.06); }
.profile-main { padding: 28px; }

.profile-layout { display: grid; grid-template-columns: 300px 1fr; min-height: 620px; }
@media(max-width:900px) { .profile-layout { grid-template-columns: 1fr; } }

/* Avatar */
.profile-avatar { width: 64px; height: 64px; border-radius: 20px; background: linear-gradient(135deg, var(--purple), #9333ea); display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 16px; box-shadow: 0 6px 20px rgba(124,58,237,.4); }
.profile-name { font-family: var(--font-disp); font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.02em; margin-bottom: 4px; }
.profile-since { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 24px; font-family: var(--font-body); }

/* Metric pills in sidebar */
.metric-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.metric-pill { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.metric-pill-label { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.4); font-family: var(--font-body); }
.metric-pill-val { font-family: var(--font-disp); font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.metric-pill-val.purple { color: #a78bfa; }
.metric-pill-val.green { color: #34d399; }

/* Info block */
.info-block { margin-bottom: 20px; }
.info-block-title { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 10px; font-family: var(--font-body); }
.info-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.info-row:last-child { border-bottom: none; }
.info-ico { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-ico svg { width: 13px; height: 13px; color: rgba(255,255,255,.5); }
.info-label { font-size: 11px; color: rgba(255,255,255,.35); font-family: var(--font-body); }
.info-val { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); font-family: var(--font-body); margin-top: 1px; }

/* Score bar */
.score-bar-wrap { height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; margin-top: 8px; }
.score-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--purple), #a855f7); }

/* Main panel tabs */
.panel-tabs { display: flex; gap: 2px; background: rgba(255,255,255,.04); border-radius: 10px; padding: 4px; margin-bottom: 24px; }
.panel-tab { padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.45); cursor: pointer; transition: all .18s; font-family: var(--font-body); }
.panel-tab.active { background: rgba(255,255,255,.08); color: #fff; }
.panel-tab:hover:not(.active) { color: rgba(255,255,255,.7); }

/* Timeline entries */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-entry { display: flex; gap: 14px; position: relative; padding-bottom: 20px; }
.tl-entry:last-child { padding-bottom: 0; }
.tl-entry:not(:last-child)::after { content: ''; position: absolute; left: 15px; top: 34px; bottom: 0; width: 1px; background: rgba(255,255,255,.07); }
.tl-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.tl-dot svg { width: 14px; height: 14px; }
.tl-dot.purchase { background: rgba(52,211,153,.15); border: 1.5px solid rgba(52,211,153,.3); }
.tl-dot.purchase svg { color: #34d399; }
.tl-dot.chat { background: rgba(124,58,237,.18); border: 1.5px solid rgba(124,58,237,.35); }
.tl-dot.chat svg { color: #a78bfa; }
.tl-dot.email { background: rgba(251,191,36,.12); border: 1.5px solid rgba(251,191,36,.25); }
.tl-dot.email svg { color: #fbbf24; }
.tl-content { padding-top: 4px; }
.tl-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); font-family: var(--font-body); margin-bottom: 3px; }
.tl-meta { font-size: 11.5px; color: rgba(255,255,255,.4); font-family: var(--font-body); }
.tl-amount { font-size: 13px; font-weight: 700; color: #34d399; font-family: var(--font-disp); }

/* Reminder card */
.reminder-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 16px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rem-left { display: flex; align-items: center; gap: 12px; }
.rem-ico { width: 36px; height: 36px; border-radius: 10px; background: rgba(124,58,237,.18); border: 1px solid rgba(124,58,237,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rem-ico svg { width: 16px; height: 16px; color: #a78bfa; }
.rem-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); font-family: var(--font-body); }
.rem-desc { font-size: 11.5px; color: rgba(255,255,255,.4); font-family: var(--font-body); margin-top: 2px; }
.rem-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; white-space: nowrap; font-family: var(--font-body); }
.rem-badge.soon { background: rgba(251,191,36,.15); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
.rem-badge.active { background: rgba(52,211,153,.15); color: #34d399; border: 1px solid rgba(52,211,153,.25); }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:768px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card { background: #fff; border: 1px solid var(--g200); border-radius: 18px; padding: 28px; transition: all .22s; }
.feature-card:hover { border-color: var(--g300); box-shadow: 0 2px 12px rgba(109,40,217,.08); transform: translateY(-3px); }
.feature-card.highlight { border-color: rgba(124,58,237,.25); background: linear-gradient(135deg, #fff 0%, var(--bg-page) 100%); }
.feat-ico-wrap { width: 44px; height: 44px; border-radius: 13px; background: var(--purple-faint); border: 1px solid rgba(124,58,237,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feat-ico-wrap svg { width: 20px; height: 20px; color: var(--purple); }
.feature-card h3, .feature-card h4 { font-family: var(--font-disp); font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.02em; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.62; }

/* Big stats */
.big-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px; }
@media(max-width:768px) { .big-stats { grid-template-columns: 1fr 1fr; } }
.big-stat { text-align: center; padding: 28px 16px; background: #fff; border: 1px solid var(--g200); border-radius: 16px; }
.big-stat-n { font-family: var(--font-disp); font-size: 36px; font-weight: 800; color: var(--text); letter-spacing: -.04em; line-height: 1; margin-bottom: 8px; }
.big-stat-n span { color: var(--purple); }
.big-stat-l { font-size: 13px; color: var(--text-muted); }

/* Profiling responsive */
@media(max-width:768px) {
  .profile-layout { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .big-stats { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .big-stats { grid-template-columns: 1fr; }
  .big-stat-n { font-size: 28px; }
}

/* ── SHARED COMPONENT CLASSES ── */

/* Comparison grid (agentic-skills, ai-assistant) */
.cmp-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;margin-top:16px;border:1px solid var(--g200);border-radius:10px;overflow:hidden;align-items:stretch}
.cmp-col-std{padding:12px 14px;background:var(--g100);display:flex;flex-direction:column;gap:4px}
.cmp-col-purands{padding:12px 14px;background:#f5f3ff;border-left:1px solid var(--g200);display:flex;flex-direction:column;gap:4px}
.cmp-label{font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;font-family:var(--font-body)}
.cmp-label-std{color:var(--text-muted)}
.cmp-label-purands{color:#7c3aed}
.cmp-value{font-size:13px;color:var(--text);font-family:var(--font-body)}
.cmp-value-bold{font-size:13px;color:var(--text);font-weight:700;font-family:var(--font-body)}

/* Example boxes (product-level reminders) */
.example-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:16px}
.example-box{background:var(--g100);border:1px solid var(--g200);border-radius:10px;padding:14px}
@media(max-width:768px){.example-row{grid-template-columns:1fr}}
.example-label{font-size:10.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);margin-bottom:8px;font-family:var(--font-body)}
.example-text{font-size:13px;color:var(--text);font-family:var(--font-body)}

/* Card layout helpers */
.card-body{flex:1}
.card-header-row{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.status-no-mt{margin-top:0}

/* Icon background color variants */
.icon-bg-green{background:#dcfce7}
.icon-bg-pink{background:#fce7f3}
.icon-bg-blue{background:#dbeafe}
.icon-bg-yellow{background:#fef9c3}
.icon-bg-purple{background:#ede9fe}

/* Customer / brand logo images */
.customer-logo{width:110px;height:110px;object-fit:contain;border-radius:12px;margin-bottom:16px;display:block;background:#fff;padding:8px}


/* Footer logo */
.footer-logo-link{display:inline-flex;text-decoration:none}
.footer-logo-img{height:28px;width:auto;display:block}

/* Inline status text */
.status-inline{font-size:14px;color:var(--text-muted);font-family:var(--font-body)}

/* Section divider first (no top margin) */
.section-divider-first{margin-top:64px}

/* Text center with top margin */
.text-center-mt{text-align:center;margin-top:40px}

/* ── FORM VALIDATION ── */
.fg .field-error { border-color: #ef4444 !important; }
.fg .error-msg { display: none; font-size: 12px; color: #ef4444; margin-top: 4px; font-family: var(--font-body); }
.fg .error-msg.show { display: block; }

/* ── FOCUS STYLES ── */
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-ghost-light:focus-visible,
.btn-ghost-dark:focus-visible,
.btn-hero-primary:focus-visible,
.btn-ghost-hero:focus-visible,
.nav-flat:focus-visible,
.nav-dd-trigger:focus-visible,
.ind-tab:focus-visible,
.tab-btn:focus-visible,
.chs-link:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 320px — Extra small phones ── */
@media (max-width: 320px) {
  .container { padding: 0 12px; }
  h1 { font-size: clamp(24px, 8vw, 36px); }
  h2 { font-size: clamp(20px, 6vw, 30px); }
  .hero-inner { padding: 24px 4% 32px; }
  .hero-sub { font-size: 14px; }
  section { padding: 32px 0; }
  .platform { padding: 32px 0; }
  .ai-section { padding: 32px 0; }
  .sc { padding: 18px; }
  .cs-left { padding: 20px 16px; }
  .cs-right { padding: 16px; }
  .stats-strip { padding: 32px 4%; }
  .ch-card { padding: 16px; }
  .ch-card h3 { font-size: 15px; }
  .ch-card p { font-size: 12.5px; }
  .ch-ico-w { width: 38px; height: 38px; margin-bottom: 10px; }
  .btn, .btn-primary, .btn-ghost { font-size: 13px; padding: 10px 18px; }
  .channels-header h2 { font-size: clamp(20px, 6vw, 30px); }
  .channels-header p { font-size: 14px; }
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.page-about .hero .hero-sub { max-width: 50ch; margin-bottom: 36px; }
.page-about .hero h1 { margin-bottom: 20px; }

/* ── About — Mission ── */
.about-mission {
  padding: 96px 0;
  background: #fff;
}
.about-mission-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-mission-text h2 { margin-bottom: 20px; }
.about-mission-text p {
  color: var(--text-muted); font-size: 16.5px; line-height: 1.8;
  margin-bottom: 0;
}
.about-stat-cards {
  display: flex; flex-direction: column; gap: 16px;
}
.about-stat-card {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
  background: var(--bg-page);
  border: 1px solid rgba(124,58,237,.1);
  border-radius: 16px;
}
.about-stat-ico {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(124,58,237,.1);
  display: flex; align-items: center; justify-content: center;
}
.about-stat-ico svg { width: 20px; height: 20px; stroke: var(--purple); }
.about-stat-n {
  font-family: var(--font-disp); font-size: 26px; font-weight: 800;
  color: var(--purple); letter-spacing: -.03em; line-height: 1;
}
.about-stat-l {
  font-size: 13px; color: var(--text-muted); margin-top: 3px;
  font-family: var(--font-body);
}

/* ── About — Vision ── */
.about-vision {
  padding: 96px 0;
  background: var(--bg-soft);
}
.about-vision-inner {
  max-width: 760px; margin: 0 auto; padding: 0 5%; text-align: center;
}
.about-vision-inner h2 { margin-bottom: 20px; }
.about-vision-inner p {
  color: var(--text-muted); font-size: 18px; line-height: 1.8;
  max-width: 58ch; margin: 0 auto;
}

/* ── About — Goals ── */
.about-goals {
  padding: 96px 0;
  background: #fff;
}
.about-goals-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 5%;
}
.about-goals-header {
  text-align: center; margin-bottom: 56px;
}
.about-goals-header h2 { margin-bottom: 12px; }
.about-goals-header p {
  color: var(--text-muted); font-size: 16px; max-width: 48ch; margin: 0 auto;
}
.about-goals-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.about-goal-card {
  padding: 32px 28px;
  border: 1px solid var(--g200);
  border-radius: 20px;
  background: var(--bg-page);
  transition: box-shadow .2s, border-color .2s;
}
.about-goal-card:hover {
  box-shadow: 0 8px 32px rgba(124,58,237,.1);
  border-color: rgba(124,58,237,.2);
}
.about-goal-num {
  font-family: var(--font-disp); font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.about-goal-num::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--purple); border-radius: 2px;
}
.about-goal-card h3, .about-goal-card h4 {
  font-size: 18px; font-weight: 700; color: var(--text);
  margin-bottom: 10px; letter-spacing: -.02em;
}
.about-goal-card p {
  font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin: 0;
}

/* ── About — CTA ── */
.about-cta {
  padding: 96px 0;
  background: var(--dark);
  text-align: center; position: relative; overflow: hidden;
}
.about-cta::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,.25) 0%, transparent 70%);
  pointer-events: none;
}
.about-cta-inner { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; padding: 0 5%; }
.about-cta-inner .chip {
  background: rgba(167,139,250,.12); border-color: rgba(167,139,250,.2); color: #a78bfa;
  margin: 0 auto 24px;
}
.about-cta-inner .chip .chip-dot { background: #a78bfa; }
.about-cta-inner h2 { color: #fff; margin-bottom: 16px; }
.about-cta-inner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-cta-inner p { color: rgba(255,255,255,.55); font-size: 16px; margin-bottom: 36px; }

/* ── About — Responsive ── */
@media (max-width: 768px) {
  .about-mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-goals-grid { grid-template-columns: 1fr; }
  .about-mission, .about-vision, .about-goals, .about-cta { padding: 56px 0; }
  .page-about .hero h1 { font-size: clamp(28px, 7vw, 48px); }
  .page-about .hero-sub { font-size: 15px; }
  .about-cta-inner h2 { font-size: clamp(24px, 6vw, 36px); }
}
@media (max-width: 480px) {
  .about-goals-grid { grid-template-columns: 1fr; }
  .about-goal-card { padding: 24px 20px; }
  .about-stat-card { padding: 16px; }
}

/* ─────────────────────────────────────────────
   SOLUTIONS PAGE
───────────────────────────────────────────── */
.sol-hero {
  padding: 140px 0 100px;
  background: var(--bg-page);
  position: relative; overflow: hidden; text-align: center;
}
.sol-hero::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,.13) 0%, rgba(167,139,250,.06) 40%, transparent 70%);
  pointer-events: none;
}
.sol-hero .hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(124,58,237,.11) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
}.sol-hero-inner h1 { margin-bottom: 20px; }
.sol-hero-inner h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple) 0%, #9333ea 50%, #a855f7 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sol-hero-inner p {
  color: var(--text-muted); font-size: 17px; line-height: 1.75;
  max-width: 50ch; margin: 0 auto 36px;
}

.sol-section {
  padding: 80px 0;
}
.sol-section:nth-child(even) {
  background: #fff;
}
.sol-section:nth-child(odd) {
  background: var(--bg-page);
}

.sol-industry-block {
  max-width: 1060px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.sol-industry-block.reverse { direction: rtl; }
.sol-industry-block.reverse > * { direction: ltr; }

.sol-industry-content h2 { margin-bottom: 16px; }
.sol-industry-content p { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }

.sol-result {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 12px;
  background: rgba(124,58,237,.04); border: 1px solid rgba(124,58,237,.1);
  margin-bottom: 28px;
}
.sol-big-n {
  font-size: 42px; font-weight: 800; color: var(--purple); line-height: 1;
  font-family: var(--font-disp);
}
.sol-res-txt { font-size: 14px; line-height: 1.6; color: var(--text); }
.sol-res-src { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.sol-cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.sol-visual {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 40px 24px;
  background: var(--dark); border-radius: 20px; overflow: hidden;
}
.sol-visual-glow {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(124,58,237,.35), transparent 70%);
  pointer-events: none;
}
.sol-visual img {
  width: 110px; height: 110px; object-fit: contain; border-radius: 12px;
  margin-bottom: 16px; display: block; background: #fff; padding: 8px;
  position: relative; z-index: 1;
}
.sol-visual .sol-vtag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--purple); background: rgba(124,58,237,.15);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.sol-visual h3, .sol-visual h4 {
  color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.sol-visual p {
  color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.65;
  max-width: 32ch; position: relative; z-index: 1;
}

/* ── Solutions — Responsive ── */
@media (max-width: 768px) {
  .sol-industry-block { grid-template-columns: 1fr; gap: 32px; }
  .sol-industry-block.reverse { direction: ltr; }
  .sol-hero { padding: 100px 0 50px; }
}

/* ─────────────────────────────────────────────
   PRIVACY PAGE
───────────────────────────────────────────── */
.privacy-body {
  background: var(--bg-page);
  padding: 64px 0 96px;
}
.privacy-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: clamp(32px, 5vw, 56px);
  max-width: 860px;
  margin: 0 auto;
}
.privacy-card p,
.privacy-card li {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.privacy-card ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.privacy-card li::marker {
  color: var(--purple);
}
.privacy-section {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--g200);
}
.privacy-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.privacy-section h2 {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.privacy-section p + p {
  margin-top: 12px;
}
.privacy-section p + ul,
.privacy-section p:first-child + ul {
  margin-top: 10px;
}
.privacy-section ul + p {
  margin-top: 12px;
}

/* ─────────────────────────────────────────────
   INDEX PAGE (page-specific)
───────────────────────────────────────────── */
.ep-tab{font-size:13px;color:rgba(255,255,255,0.35);padding:8px 14px;cursor:pointer;border-bottom:2px solid transparent;transition:all .18s;white-space:nowrap;}
.ep-tab.active{color:#a78bfa;border-bottom-color:#7c3aed;}
.ep-tab:hover:not(.active){color:rgba(255,255,255,0.6);}
.ep-panel{display:none;}
.ep-panel.active{display:block;}
.wa-bubble{background:rgba(255,255,255,0.94);border-radius:12px;border-top-left-radius:3px;padding:14px 16px;}
/* ── Carousel ── */
.caro-wrap{position:relative;overflow:hidden;width:100%;}
.caro-track{display:flex;width:100%;transition:transform .5s cubic-bezier(.4,0,.2,1);}
.caro-slide{flex:0 0 100%;width:100%;min-width:0;box-sizing:border-box;display:flex;}
.caro-slide .cs-card{flex:1;display:grid;}
@keyframes caroIn{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
.caro-slide.active{animation:caroIn .5s ease both;}
.caro-dots{display:flex;justify-content:center;gap:8px;margin-top:28px;}
.caro-dot{width:8px;height:8px;border-radius:100px;background:rgba(167,139,250,.35);border:none;cursor:pointer;padding:0;transition:background .3s,width .3s;}
.caro-dot.active{background:#a78bfa;width:24px;}

/* ── AI ASSISTANT PAGE ── */
.page-ai-assistant .hero { position: relative; z-index: 1; padding: 86px 5% 50px; text-align: center; overflow: hidden; min-height: unset; display: block; }
.page-ai-assistant .hero .hero-aura { top: -10%; width: 900px; height: 550px; }
.page-ai-assistant .hero h1 { margin-bottom: 20px; }
.page-ai-assistant section { padding: 80px 0; position: relative; z-index: 1; }
body.page-ai-assistant::before { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(124,58,237,.1) 1px, transparent 1px); background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 20%, black 20%, transparent 80%); }

.platform-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.platform-card { border-radius: 24px; padding: 36px; position: relative; overflow: hidden; }
.platform-card.web { background: #fff; border: 1.5px solid var(--g200); box-shadow: 0 2px 12px rgba(109,40,217,.08); }
.platform-card.wa { background: var(--dark-2); border: 1.5px solid rgba(255,255,255,.08); }
.platform-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.platform-icon svg { width: 26px; height: 26px; }
.platform-card.web .platform-icon { background: var(--purple-faint); border: 1px solid rgba(124,58,237,.2); }
.platform-card.web .platform-icon svg { color: var(--purple); }
.platform-card.wa .platform-icon { background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.25); }
.platform-card.wa .platform-icon svg { color: #25d366; }
.platform-title { font-family: var(--font-disp); font-size: 24px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.03em; }
.platform-card.web .platform-title { color: var(--text); }
.platform-card.wa .platform-title { color: #fff; }
.platform-sub { font-size: 14.5px; margin-bottom: 28px; line-height: 1.65; }
.platform-card.web .platform-sub { color: var(--text-muted); }
.platform-card.wa .platform-sub { color: rgba(255,255,255,.55); }

.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-item { display: flex; align-items: flex-start; gap: 12px; }
.feat-ico { width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.feat-ico svg { width: 15px; height: 15px; }
.platform-card.web .feat-ico { background: var(--g100); border: 1px solid var(--g200); }
.platform-card.web .feat-ico svg { color: var(--purple); }
.platform-card.wa .feat-ico { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }
.platform-card.wa .feat-ico svg { color: rgba(255,255,255,.7); }
.feat-title { font-size: 14px; font-weight: 600; margin-bottom: 3px; font-family: var(--font-body); }
.platform-card.web .feat-title { color: var(--text); }
.platform-card.wa .feat-title { color: #fff; }
.feat-desc { font-size: 12.5px; line-height: 1.55; font-family: var(--font-body); }
.platform-card.web .feat-desc { color: var(--text-muted); }
.platform-card.wa .feat-desc { color: rgba(255,255,255,.45); }

.chat-mock { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px; margin-top: 28px; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.chat-mock.light { background: var(--g100); border-color: var(--g200); }
.chat-msg { display: flex; flex-direction: column; gap: 10px; }
.msg-row { display: flex; gap: 8px; align-items: flex-end; }
.msg-row.right { flex-direction: row-reverse; }
.msg-av { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.msg-av.ai { background: var(--purple); color: #fff; font-family: var(--font-disp); }
.msg-av.wa { background: #25d366; color: #fff; }
.msg-av.user { background: var(--g200); color: var(--text-muted); font-family: var(--font-body); }
.msg-bubble { font-size: 12.5px; line-height: 1.55; padding: 10px 14px; border-radius: 14px; max-width: 240px; font-family: var(--font-body); }
.msg-bubble.ai-bubble { background: var(--purple); color: #fff; border-bottom-left-radius: 4px; }
.msg-bubble.wa-bubble { background: #25d366; color: #fff; border-bottom-left-radius: 4px; }
.msg-bubble.user-bubble { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); border-bottom-right-radius: 4px; }
.msg-bubble.user-light { background: var(--g200); color: var(--text); border-bottom-right-radius: 4px; }
.typing-indicator { display: flex; align-items: center; gap: 4px; padding: 10px 14px; background: var(--purple-faint); border-radius: 14px; width: fit-content; border: 1px solid rgba(124,58,237,.2); }
.typing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); animation: typingBounce 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }

.cap-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.cap-card { background: #fff; border: 1px solid var(--g200); border-radius: 16px; padding: 24px; transition: all .22s; }
.cap-card:hover { border-color: var(--g300); box-shadow: 0 2px 12px rgba(109,40,217,.08); transform: translateY(-2px); }
.cap-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--purple-faint); border: 1px solid rgba(124,58,237,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.cap-ico svg { width: 18px; height: 18px; color: var(--purple); }
.cap-card h3 { font-family: var(--font-disp); font-size: 15px; font-weight: 700; margin-bottom: 7px; letter-spacing: -.02em; }
.cap-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.spotlight { background: #fff; border: 1.5px solid rgba(124,58,237,.2); border-radius: 24px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; box-shadow: 0 0 0 4px var(--purple-faint), 0 8px 32px rgba(109,40,217,.1); }

.lifecycle { display: flex; flex-direction: column; gap: 0; }
.lc-step { display: flex; align-items: flex-start; gap: 16px; position: relative; padding-bottom: 24px; }
.lc-step:last-child { padding-bottom: 0; }
.lc-step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 42px; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--g300), var(--g200)); }
.lc-node { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--g300); background: var(--g100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.lc-node svg { width: 16px; height: 16px; color: var(--purple); }
.lc-node.active { border-color: var(--purple); background: var(--purple-faint); }
.lc-title { font-size: 14px; font-weight: 700; color: var(--text); font-family: var(--font-body); margin-bottom: 3px; }
.lc-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; font-family: var(--font-body); }

@media (max-width: 768px) {
  .page-ai-assistant .hero { padding: 20px 5% 40px; }
  .page-ai-assistant .hero .hero-aura { width: 100%; height: 300px; }
  .page-ai-assistant .hero .hero-eyebrow { margin-bottom: 16px; }
  .page-ai-assistant .hero h1 { font-size: clamp(28px, 7vw, 48px); }
  .page-ai-assistant .hero-sub { font-size: 15px; }
  .page-ai-assistant .hero-actions {
    flex-direction: column; align-items: stretch;
    max-width: 320px; margin-left: auto; margin-right: auto;
  }
  .page-ai-assistant .hero-actions a,
  .page-ai-assistant .hero-actions button { width: 100%; justify-content: center; }
  .page-ai-assistant section { padding: 56px 0; }
  .platform-split { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
}
@media (max-width: 480px) {
  .page-ai-assistant .hero h1 { font-size: clamp(26px, 8vw, 40px); }
  .platform-card { padding: 24px; }
}

/* ─────────────────────────────────────────────
   AGENTIC SKILLS PAGE (page-specific overrides)
───────────────────────────────────────────── */
.page-agentic-skills .hero { position: relative; z-index: 1; padding: 86px 5% 50px; text-align: center; overflow: hidden; min-height: unset; display: block; }
.page-agentic-skills .hero .hero-aura { top: -10%; width: 800px; height: 500px; }
.page-agentic-skills .hero .hero-sub { max-width: 54ch; }
.page-agentic-skills .hero h1 { margin-bottom: 20px; }
.page-agentic-skills section { padding: 80px 0; position: relative; z-index: 1; }
/* dots overlay */
body.page-agentic-skills::before { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(124,58,237,.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 20%, black 20%, transparent 80%); }
@media (max-width: 768px) {
  .page-agentic-skills .hero { padding: 20px 5% 40px; }
  .page-agentic-skills .hero .hero-aura { width: 100%; height: 300px; }
  .page-agentic-skills .hero .hero-eyebrow { margin-bottom: 16px; }
  .page-agentic-skills .hero h1 { font-size: clamp(28px, 7vw, 48px); }
  .page-agentic-skills .hero-sub { font-size: 15px; }
  .page-agentic-skills .hero-actions {
    flex-direction: column; align-items: stretch;
    max-width: 320px; margin-left: auto; margin-right: auto;
  }
  .page-agentic-skills .hero-actions a,
  .page-agentic-skills .hero-actions button { width: 100%; justify-content: center; }
  .page-agentic-skills section { padding: 48px 0; }
  .page-agentic-skills .stats-row { gap: 16px; margin-top: 32px; padding-top: 24px; }
  .page-agentic-skills .stat-n { font-size: 26px; }
  .page-agentic-skills .section-divider { margin: 32px 0 24px; }
  .page-agentic-skills .section-divider-label { font-size: 18px; }
  .page-agentic-skills .campaign-card { padding: 22px; }
  .page-agentic-skills .card-title { font-size: 16px; }
  .page-agentic-skills .cmp-grid { grid-template-columns: 1fr; }
  .page-agentic-skills .cmp-col-purands { border-left: none; border-top: 1px solid var(--g200); }
}
@media (max-width: 480px) {
  .page-agentic-skills .hero h1 { font-size: clamp(26px, 8vw, 40px); }
  .page-agentic-skills .stats-row { flex-direction: column; gap: 12px; align-items: center; }
}

/* ── Subpage hero — consistent spacing ── */
.page-profiling .hero,
.page-compare .hero,
.page-solutions .hero,
.page-pricing .hero,
.page-about .hero,
.page-privacy .hero,
.page-calculator .hero,
.page-skincare-beauty .hero {
  position: relative; z-index: 1;
  padding: 86px 5% 50px;
  text-align: center; overflow: hidden;
  min-height: unset; display: block;
}
@media (max-width: 768px) {
  .page-profiling .hero, .page-compare .hero, .page-solutions .hero,
  .page-pricing .hero, .page-about .hero, .page-privacy .hero,
  .page-calculator .hero { padding: 20px 5% 36px; }
  .page-skincare-beauty .hero { padding: 100px 5% 40px; }
}
@media (max-width: 480px) {
  .page-profiling .hero, .page-compare .hero, .page-solutions .hero,
  .page-pricing .hero, .page-about .hero, .page-privacy .hero,
  .page-calculator .hero { padding: 16px 5% 32px; }
  .page-skincare-beauty .hero { padding: 80px 5% 36px; }
}

/* ─────────────────────────────────────────────
   CASE STUDIES PAGE (page-case-studies)
───────────────────────────────────────────── */
.page-case-studies .hero {
  position: relative; z-index: 1;
  padding: 86px 5% 50px;
  text-align: center; overflow: hidden;
  min-height: unset; display: block;
}
.page-case-studies .hero .hero-aura { top: -10%; width: 800px; height: 500px; }
.page-case-studies .hero .hero-sub { max-width: 52ch; }

/* Stats bar */
.cs-stats-section {
  background: #fff;
  border-bottom: 1px solid var(--g200);
  padding: 32px 5%;
}
.cs-stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.cs-stat {
  flex: 1; min-width: 140px;
  text-align: center; padding: 12px 20px;
}
.cs-stat-n {
  font-family: var(--font-disp); font-size: 36px; font-weight: 800;
  color: var(--purple); line-height: 1; font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.cs-stat-label {
  font-size: 13.5px; color: var(--text-muted); margin-top: 6px;
  font-family: var(--font-body);
}
.cs-stat-divider {
  width: 1px; height: 48px; background: var(--g200); flex-shrink: 0;
}

/* Filter + grid section */
.cs-main-section { padding: 56px 0 96px; background: #fff; }
.cs-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* Filter pills */
.cs-filters {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 48px;
}
.cs-pill {
  display: inline-flex; align-items: center;
  padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500; font-family: var(--font-body);
  border: 1px solid var(--g200);
  background: transparent; color: var(--text-muted);
  cursor: pointer; transition: all .15s ease;
}
.cs-pill:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-faint); }
.cs-pill.active { background: var(--purple); color: #fff; border-color: var(--purple); box-shadow: var(--shadow-purple); }

/* Story card grid */
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }

/* Card — flat editorial style: image box + title below, no chrome */
.page-case-studies .cs-card {
  display: flex; flex-direction: column; gap: 14px;
  background: transparent; border: none;
  border-radius: 0; box-shadow: none; overflow: visible;
  text-decoration: none;
  transition: opacity .15s ease;
}
.page-case-studies .cs-card:hover { opacity: .75; }
.cs-card-img {
  height: 200px; background: var(--g100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 32px;
  transition: background .15s ease;
}
.page-case-studies .cs-card:hover .cs-card-img { background: var(--g200); }
.cs-card-img img { max-height: 100%; max-width: 76%; object-fit: contain; }
.cs-text-logo {
  font-family: var(--font-disp); font-size: 26px; font-weight: 700;
  color: var(--purple); letter-spacing: -0.03em;
}
.cs-card-title {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 400;
  color: var(--text); line-height: 1.55;
  padding: 0;
}

/* Empty state */
.cs-empty { display: none; text-align: center; padding: 60px 0; color: var(--text-muted); font-size: 15px; }
.cs-empty--visible { display: block; }

@media (max-width: 900px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-stat-divider { display: none; }
}
@media (max-width: 768px) {
  .page-case-studies .hero { padding: 100px 5% 40px; }
}
@media (max-width: 600px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-stat { flex: 0 0 50%; }
}

/* ─────────────────────────────────────────────
   CASE STUDY DETAIL PAGE (page-cs-detail)
───────────────────────────────────────────── */

/* Breadcrumb */
.csd-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--g200);
  padding: 14px 5%;
}
.csd-breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-family: var(--font-body); color: var(--text-muted);
}
.csd-breadcrumb-inner a { color: var(--text-muted); text-decoration: none; transition: color .15s; }
.csd-breadcrumb-inner a:hover { color: var(--purple); }
.csd-breadcrumb-inner span { color: var(--text); font-weight: 500; }

/* Hero */
.csd-hero { background: var(--bg-page); padding: 60px 5% 52px; position: relative; z-index: 1; }
.csd-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.csd-industry-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; font-family: var(--font-body);
  color: var(--purple); text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 20px;
}
.csd-hero h1 {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
  font-family: var(--font-disp); color: var(--text);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px;
}
.csd-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #a855f7 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.csd-hero-sub {
  font-size: 17px; color: var(--text-muted); line-height: 1.65;
  max-width: 58ch; margin: 0 auto 28px; font-family: var(--font-body);
}
.csd-hero-meta {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-size: 13px; color: var(--text-muted); font-family: var(--font-body);
}
.csd-brand-logo { height: 28px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; }
.csd-meta-divider { width: 1px; height: 20px; background: var(--g300); }

/* Stats bar */
.csd-stats { background: var(--dark); padding: 40px 5%; }
.csd-stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; flex-wrap: wrap;
}
.csd-stat {
  flex: 1; min-width: 160px;
  text-align: center; padding: 16px 24px;
}
.csd-stat-n {
  font-family: var(--font-disp); font-size: 44px; font-weight: 800;
  color: #fff; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -0.03em;
}
.csd-stat-sym { font-size: 28px; }
.csd-stat p {
  font-size: 13.5px; color: rgba(255,255,255,.55); margin-top: 8px;
  font-family: var(--font-body); max-width: 22ch; margin-left: auto; margin-right: auto;
}
.csd-stat-div { width: 1px; height: 64px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* Body layout */
.csd-body { padding: 80px 0; background: #fff; }
.csd-body-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start;
}
.csd-content { min-width: 0; }

/* Content sections */
.csd-section { margin-bottom: 48px; }
.csd-section h2 {
  font-size: clamp(22px, 2.5vw, 28px); font-weight: 700;
  font-family: var(--font-disp); color: var(--text);
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.csd-section h3 {
  font-size: 17px; font-weight: 600; font-family: var(--font-body);
  color: var(--text); margin-top: 28px; margin-bottom: 10px;
}
.csd-section p {
  font-size: 16px; color: var(--text-muted); line-height: 1.75;
  font-family: var(--font-body); margin-bottom: 14px;
}

/* Custom list */
.csd-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.csd-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--text-muted); line-height: 1.65; font-family: var(--font-body); }
.csd-list-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  background: var(--purple-faint); border: 1px solid rgba(124,58,237,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-top: 1px;
}
.csd-list-icon--green { background: var(--green-bg); border-color: var(--green-b); color: var(--green); }

/* Pull quote */
.csd-pullquote {
  background: var(--g100); border-left: 3px solid var(--purple);
  border-radius: 0 14px 14px 0; padding: 24px 28px; margin: 36px 0;
}
.csd-pullquote p {
  font-size: 17px; font-style: italic; font-family: var(--font-disp);
  color: var(--text); line-height: 1.6; margin-bottom: 10px;
}
.csd-pullquote p em {
  font-style: normal;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 600;
}
.csd-pullquote cite { font-size: 13px; color: var(--text-muted); font-family: var(--font-body); font-style: normal; }

/* Sidebar */
.csd-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 24px; }
.csd-sidebar-card {
  background: #fff; border: 1.5px solid var(--g200);
  border-radius: 20px; padding: 28px; box-shadow: var(--shadow-sm);
}
.csd-sidebar-logo { height: 48px; display: flex; align-items: center; margin-bottom: 24px; }
.csd-sidebar-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.csd-sidebar-info { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.csd-sidebar-info div {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--g100);
}
.csd-sidebar-info div:last-child { border-bottom: none; padding-bottom: 0; }
.csd-sidebar-info dt {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: .04em; flex-shrink: 0;
}
.csd-sidebar-info dd { font-size: 13.5px; font-weight: 500; color: var(--text); font-family: var(--font-body); text-align: right; }
.csd-sidebar-card .btn { justify-content: center; margin-top: 8px; width: 100%; }

/* More stories */
.csd-more { display: flex; flex-direction: column; gap: 10px; }
.csd-more-label {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted); font-family: var(--font-body); margin-bottom: 4px;
}
.csd-more-card {
  display: flex; flex-direction: column; gap: 5px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: 14px; padding: 16px 18px;
  text-decoration: none; transition: all .18s ease; box-shadow: var(--shadow-sm);
}
.csd-more-card:hover { border-color: var(--purple); box-shadow: var(--shadow); }
.csd-more-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--purple); font-family: var(--font-body);
}
.csd-more-card span:last-child { font-size: 13.5px; font-weight: 500; color: var(--text); line-height: 1.5; font-family: var(--font-body); }

@media (max-width: 960px) {
  .csd-body-inner { grid-template-columns: 1fr; }
  .csd-sidebar { position: static; }
  .csd-stat { flex: 0 0 50%; }
  .csd-stat-div { display: none; }
}
@media (max-width: 600px) {
  .csd-hero { padding: 40px 5% 36px; }
  .csd-hero-sub { font-size: 15px; }
  .csd-stat { flex: 0 0 100%; }
  .csd-pullquote { padding: 18px 20px; }
  .csd-pullquote p { font-size: 15px; }
}

/* ─────────────────────────────────────────────
   SKINCARE & BEAUTY SOLUTION PAGE
   (page-skincare-beauty)
───────────────────────────────────────────── */

/* ── Logo strip ── */
.sbc-logos {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--g200);
  background: #fff;
}
.sbc-logos-label {
  text-align: center; font-size: 11px; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--g400); margin-bottom: 18px;
}
.sbc-logos-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
}
.sbc-logo-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--g200); background: #fff;
  font-family: var(--font-disp); font-size: 13px; font-weight: 700;
  color: var(--text); letter-spacing: -.01em;
  transition: border-color .2s, box-shadow .2s;
}
.sbc-logo-pill:hover { border-color: var(--g300); box-shadow: var(--shadow-sm); }
.sbc-logo-pill.featured {
  border-color: rgba(124,58,237,.3);
  background: var(--purple-faint);
  color: var(--purple);
}
.sbc-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; opacity: .5; flex-shrink: 0;
}

/* ── Dark stats section chip variant ── */
.chip-on-dark {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: #a78bfa; background: rgba(167,139,250,.12);
  border: 1px solid rgba(167,139,250,.22);
  padding: 5px 13px; border-radius: 100px;
}
.chip-on-dark .chip-dot { background: #a78bfa; }

/* ── Demo / Mock result panel ── */
.sbc-demo-section { padding: 80px 0; }
.sbc-demo-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start; max-width: 1060px; margin: 0 auto;
}

/* Dashboard panel */
.sbc-dash-panel {
  background: var(--dark); border-radius: 24px; padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.07); position: relative; overflow: hidden;
}
.sbc-dash-panel::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  pointer-events: none;
}
.sbc-dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.sbc-dash-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.4); letter-spacing: .07em; text-transform: uppercase;
}
.sbc-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(5,150,105,.15); border: 1px solid rgba(5,150,105,.3);
  font-size: 11px; font-weight: 600; color: #34d399;
}
.sbc-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34d399; animation: cdPulse 2s infinite; flex-shrink: 0;
}
.sbc-dash-name {
  font-family: var(--font-disp); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 3px; position: relative; z-index: 1;
}
.sbc-dash-sub {
  font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 26px;
  position: relative; z-index: 1;
}
.sbc-kpi-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
  margin-bottom: 26px; position: relative; z-index: 1;
}
.sbc-kpi {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 14px 12px;
}
.sbc-kpi-n {
  font-family: var(--font-disp); font-size: 22px; font-weight: 800;
  color: #fff; font-variant-numeric: tabular-nums;
  letter-spacing: -.03em; margin-bottom: 4px;
}
.sbc-kpi-n.green { color: #34d399; }
.sbc-kpi-label { font-size: 11px; color: rgba(255,255,255,.42); line-height: 1.4; }
.sbc-bars { display: flex; flex-direction: column; gap: 11px; position: relative; z-index: 1; }
.sbc-bar-row { display: flex; align-items: center; gap: 10px; }
.sbc-bar-name {
  font-size: 12px; color: rgba(255,255,255,.48); width: 76px;
  flex-shrink: 0; text-align: right;
}
.sbc-bar-track {
  flex: 1; height: 7px; background: rgba(255,255,255,.08);
  border-radius: 100px; overflow: hidden;
}
.sbc-bar-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}
.sbc-bar-fill.green { background: linear-gradient(90deg, #059669, #34d399); }
.sbc-bar-w84 { width: 84%; }
.sbc-bar-w52 { width: 52%; }
.sbc-bar-w31 { width: 31%; }
.sbc-bar-pct {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6);
  font-family: var(--font-disp); font-variant-numeric: tabular-nums;
  width: 32px; flex-shrink: 0;
}
.sbc-dash-footer {
  display: flex; align-items: center; gap: 8px; margin-top: 22px;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.07);
  position: relative; z-index: 1;
}
.sbc-channel-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 600;
}
.sbc-channel-badge.wapp { background: rgba(37,211,102,.12); color: #34d399; border: 1px solid rgba(37,211,102,.25); }
.sbc-channel-badge.email { background: rgba(124,58,237,.12); color: #a78bfa; border: 1px solid rgba(124,58,237,.22); }
.sbc-dash-source { margin-left: auto; font-size: 12px; color: rgba(255,255,255,.28); }

/* Phone mockup */
.sbc-phone-wrap { display: flex; justify-content: center; }
.sbc-phone-frame {
  width: 268px; background: var(--dark-2); border-radius: 36px;
  border: 2px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 72px rgba(13,10,30,.55), 0 0 0 1px rgba(124,58,237,.15);
  overflow: hidden; padding-bottom: 12px;
}
.sbc-phone-notch {
  width: 76px; height: 22px; background: var(--dark);
  border-radius: 0 0 14px 14px; margin: 0 auto;
}
.sbc-wa-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sbc-wa-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #a855f7);
  flex-shrink: 0;
}
.sbc-wa-name {
  font-family: var(--font-disp); font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: -.01em;
}
.sbc-wa-status { font-size: 11px; color: #34d399; margin-top: 1px; }
.sbc-wa-msgs { padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; }
.sbc-wa-ts {
  text-align: center; font-size: 10px; color: rgba(255,255,255,.3);
  margin-bottom: 2px;
}
.sbc-msg-bubble {
  background: rgba(124,58,237,.18); border: 1px solid rgba(124,58,237,.25);
  border-radius: 4px 16px 16px 16px;
  padding: 12px 14px;
}
.sbc-msg-bubble strong {
  display: block; font-size: 13px; font-weight: 700;
  color: #fff; margin-bottom: 6px; font-family: var(--font-disp);
}
.sbc-msg-bubble p { font-size: 12px; color: rgba(255,255,255,.8); line-height: 1.55; margin: 3px 0; }
.sbc-msg-cta {
  display: inline-block; margin-top: 10px; padding: 7px 14px;
  background: var(--purple); border-radius: 8px;
  font-size: 11px; font-weight: 700; color: #fff; text-decoration: none;
  font-family: var(--font-disp); letter-spacing: -.01em;
}
.sbc-msg-read { font-size: 10px; color: rgba(255,255,255,.28); text-align: right; }
.sbc-phone-home {
  display: flex; justify-content: center; padding: 12px 0 2px;
}
.sbc-phone-home-bar {
  width: 72px; height: 4px; border-radius: 100px;
  background: rgba(255,255,255,.18);
}

/* ── Case study section on soft bg ── */
.sbc-case-section { padding: 80px 0; background: var(--bg-soft); }

/* ── Use cases grid ── */
.sbc-use-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.sbc-use-card {
  background: #fff; border: 1px solid var(--g200);
  border-radius: 18px; padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.sbc-use-card:hover {
  border-color: var(--g300); box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.sbc-use-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--purple-faint); border: 1px solid rgba(124,58,237,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sbc-use-icon svg { width: 18px; height: 18px; color: var(--purple); }
.sbc-use-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-faint);
  padding: 3px 9px; border-radius: 100px; margin-bottom: 10px;
}
.sbc-use-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.sbc-use-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.62; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sbc-demo-wrap { grid-template-columns: 1fr; gap: 28px; }
  .sbc-phone-wrap { order: -1; }
  .sbc-use-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sbc-use-grid { grid-template-columns: 1fr; }
  .sbc-kpi-row { gap: 8px; }
  .sbc-kpi-n { font-size: 19px; }
  .sbc-phone-frame { width: 240px; }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY — Background colour tokens
   Used for channel icons, integration chips, nav dropdown icons, etc.
   Never use style="background:#..." inline — use these classes instead.
   ═══════════════════════════════════════════════════════════════════ */
.bg-soft-green      { background: #dcfce7; }
.bg-soft-yellow     { background: #fef9c3; }
.bg-soft-blue       { background: #dbeafe; }
.bg-soft-purple     { background: #ede9fe; }
.bg-soft-mint       { background: #ecfdf5; }
.bg-soft-lightgreen { background: #f0fdf4; }
.bg-soft-sky        { background: #eff6ff; }
.bg-soft-amber      { background: #fefce8; }
.bg-soft-red        { background: #fff1f2; }
.bg-soft-orange     { background: #fff7ed; }
.bg-soft-pink       { background: #fce7f3; }
/* Nav dropdown icon backgrounds — same tokens, nav-scoped naming */
.dd-ico-purple     { background: #ede9fe; }
/* ═══════════════════════════════════════════════════════════════════
   UTILITY — Form helpers
   ═══════════════════════════════════════════════════════════════════ */
/* Industry "Other" text input — hidden by default, revealed via JS */
.ind-other-field {
  display: none;
  margin-top: 8px;
  border: 1.5px solid var(--g200);
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  width: 100%;
}
.ind-other-visible { display: block; }

/* Full-width submit button modifier */
.btn-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

/* Form success message — hidden by default */
.form-success {
  display: none;
  color: #10b981;
  font-weight: 700;
}

/* Privacy page — highlighted link colour */
.privacy-link { color: var(--purple); font-weight: 600; }
.privacy-footer { margin-top: 24px; color: var(--text-muted); font-size: 13px; }

/* Case-study brand logo inside carousel card */
.cs-bname { display: flex; justify-content: center; margin-bottom: 8px; }
.cs-brand-logo {
  height: 100px;
  width: auto;
  display: block;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE: og-generator.html
   Styles moved from inline <style> block in og-generator.html
   ═══════════════════════════════════════════════════════════════════ */
.og-page * { margin: 0; padding: 0; box-sizing: border-box; }.og {
  width: 1200px;
  height: 630px;
  background: linear-gradient(135deg, #0d0a1e 0%, #1e1440 40%, #2d1b69 70%, #7c3aed 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}
.og::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.4) 0%, transparent 70%);
}
.og::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,.2) 0%, transparent 70%);
}
.og .content { position: relative; z-index: 1; text-align: center; padding: 0 80px; }
.og .logo { font-size: 42px; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 8px; }
.og .logo span { color: #a78bfa; }
.og .tagline { font-size: 52px; font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 20px; }
.og .tagline em { font-style: normal; color: #c4b5fd; }
.og .sub { font-size: 22px; color: rgba(255,255,255,.6); font-weight: 400; max-width: 600px; line-height: 1.5; font-family: 'Plus Jakarta Sans', sans-serif; }
/* ═══════════════════════════════════════════════════════════════════
   UTILITY — Spacing & Layout helpers (replaces one-off inline styles)
   ═══════════════════════════════════════════════════════════════════ */
.col-span-full   { grid-column: 1 / -1; }
.chip-mb20       { margin-bottom: 20px; }
.chip-center20   { margin: 0 auto 20px; }
.chip-center16   { margin: 0 auto 16px; }
.text-white      { color: #fff; }
.text-sm-muted   { font-size: 13px; opacity: 0.75; }
.tag-row         { display: flex; gap: 6px; flex-wrap: wrap; }

/* Inline word-cycle container — keeps it inline while animating */
.word-cycle      { display: inline-block; width: auto; }

/* Purple chip variant (AI section in index.html) */
.chip-purple {
  background: rgba(167,139,250,.1);
  border-color: rgba(167,139,250,.2);
  color: #a78bfa;
}
.chip-purple .chip-dot { background: #a78bfa; }

/* ═══════════════════════════════════════════════════════════════════
   COMPONENT — Compare page: brand dots & legend
   ═══════════════════════════════════════════════════════════════════ */
.vs-dot-purands  { background: #7c3aed; }
.vs-dot-klaviyo  { background: #ff6100; }
.vs-dot-braze    { background: #6366f1; }
.vs-dot-moengage { background: #e11d48; }
.vs-dot-netcore  { background: #0ea5e9; }
.vs-dot-omnisend { background: #16a34a; }
.vs-dot-clevertap{ background: #f97316; }

.legend-core    { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.legend-partial { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.legend-no      { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

.matrix-col-cap { width: 180px; }

/* Compare page — Decisions card (dark featured card) */
.compare-dark-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.compare-label-muted {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
  font-family: var(--font-b);
}
.compare-label-purple {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(167,139,250,.9);
  margin-bottom: 16px;
  font-family: var(--font-b);
}
.compare-flow-old {
  background: rgba(248,113,113,.12);
  border: 1px solid rgba(248,113,113,.3);
  border-radius: 10px;
  padding: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,.82);
  font-family: var(--font-b);
}
.compare-flow-new {
  background: rgba(124,58,237,.22);
  border: 1px solid rgba(167,139,250,.4);
  border-radius: 10px;
  padding: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,.92);
  font-family: var(--font-b);
}
.compare-flow-new .highlight { color: #c4b5fd; font-weight: 700; }
.compare-flow-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }

.compare-cta-wrap { position: relative; z-index: 2; }
.chip-proven {
  color: #a78bfa;
  background: rgba(124,58,237,.2);
  border-color: rgba(167,139,250,.3);
}
.chip-proven .chip-dot { background: #a78bfa; }

/* ═══════════════════════════════════════════════════════════════════
   COMPONENT — AI Assistant page: chat mock UI
   ═══════════════════════════════════════════════════════════════════ */
.chat-mock-mt    { margin-top: 24px; }
.chat-reply-options { display: flex; gap: 6px; margin-left: 36px; flex-wrap: wrap; }
.chat-reply-options-dark { display: flex; gap: 7px; margin-left: 36px; flex-wrap: wrap; margin-top: 4px; }

.reply-btn-primary {
  background: var(--purple-faint);
  border: 1px solid rgba(124,58,237,.25);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-b);
}
.reply-btn-ghost {
  background: var(--g100);
  border: 1px solid var(--g200);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-b);
}
.reply-btn-wa-primary {
  background: rgba(37,211,102,.2);
  border: 1px solid rgba(37,211,102,.3);
  color: #25d366;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-b);
}
.reply-btn-wa-ghost {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-b);
}

.platform-title-dark { color: #fff; }
.chat-day-divider {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.25);
  font-family: var(--font-b);
}
.chat-thread-wrap {
  background: var(--dark-2);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 56px rgba(13,10,30,.2);
}
.chat-thread-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  font-family: var(--font-b);
}
.msg-bubble-sm { font-size: 13px; }

.order-lifecycle-chip  { margin-bottom: 20px; }
.order-lifecycle-title { margin-bottom: 16px; }
.order-lifecycle-sub   { color: var(--muted); font-size: 15.5px; margin-bottom: 32px; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════════
   COMPONENT — Profiling page: profile card mock UI
   ═══════════════════════════════════════════════════════════════════ */
.score-row        { margin-bottom: 12px; }
.score-row-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.score-label      { font-size: 12px; color: rgba(255,255,255,.5); font-family: var(--font-b); }
.score-value      { font-size: 12px; font-weight: 700; font-family: var(--font-b); }
.score-value-purple { color: #a78bfa; }
.score-value-green  { color: #34d399; }
.score-value-yellow { color: #fbbf24; }
.score-bar-churn  { width: 18%; background: linear-gradient(90deg,#34d399,#059669); }
.score-bar-intent { width: 55%; background: linear-gradient(90deg,#fbbf24,#f59e0b); }
.score-bar-recommend { width: 78%; }

.profile-section-hdr  { margin-bottom: 32px; }
.profile-activity-wrap { margin-bottom: 32px; }
.profile-hdr-title    { margin-top: 14px; }
.profile-activity-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
  font-family: var(--font-b);
}
.profile-reminders-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
  font-family: var(--font-b);
}
.tl-meta-mt      { margin-top: 4px; }
.tl-product-row  { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.profile-empty-state {
  padding: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  text-align: center;
  margin-top: 6px;
}
.profile-empty-txt {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  font-family: var(--font-b);
}

/* ═══════════════════════════════════════════════════════════════════
   COMPONENT — Index page: carousel slides
   ═══════════════════════════════════════════════════════════════════ */
.cs-logo-wrap   { margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.cs-logo-img    { max-width: 180px; max-height: 90px; object-fit: contain; filter: brightness(0) invert(1); }
.cs-bname-text  { font-size: 26px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 6px; letter-spacing: -.5px; }
.cs-logo-small  { height: 60px; width: auto; display: block; }

/* ═══════════════════════════════════════════════════════════════════
   COMPONENT — Agentic Skills page
   ═══════════════════════════════════════════════════════════════════ */
.campaign-card-full { grid-column: 1 / -1; }

/* =================================================================
   PAGE — marketing-playbook.html
   ================================================================= */

.page-playbook .hero { text-align: center; }

.pb-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px auto 0;
  max-width: 480px;
  text-align: left;
}
.pb-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pb-check-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--purple-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.pb-social-proof {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pb-social-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.4;
  flex-shrink: 0;
}
.pb-form-wrap {
  display: flex;
  justify-content: center;
  padding: 0 5%;
}
.pb-form-card {
  background: #ffffff;
  border: 1.5px solid var(--g300);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 520px;
}.pb-form-field {
  margin-bottom: 14px;
}
.pb-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pb-form-field input {
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--g200);
  border-radius: 10px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-page);
  transition: border-color .18s, background .18s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.pb-form-field input:focus {
  border-color: var(--purple);
  background: #ffffff;
}
.pb-form-field input.field-error {
  border-color: #dc2626;
}
.pb-field-err {
  display: none;
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}
.pb-field-err.show {
  display: block;
}
.pb-form-submit {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
}
.pb-form-note a { color: var(--purple); text-decoration: underline; }
.pb-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}
.pb-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.pb-success-ico {
  width: 52px;
  height: 52px;
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #059669;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-disp);
}
.pb-success h3 {
  font-family: var(--font-disp);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pb-success p {
  font-size: 14px;
  color: var(--text-muted);
}
.pb-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.pb-what-card {
  background: #ffffff;
  border: 1px solid var(--g200);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.pb-what-card:hover {
  border-color: var(--g300);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pb-what-ico {
  width: 46px;
  height: 46px;
  background: var(--purple-faint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 16px;
}
.pb-what-card h4 {
  font-family: var(--font-disp);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pb-what-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .pb-what-grid { grid-template-columns: 1fr; gap: 14px; }
  .pb-form-card { padding: 24px; }
  .pb-checklist { margin: 20px 0 0; }
}
@media (max-width: 480px) {
  .pb-form-card { border-radius: 18px; padding: 20px; }
}

/* ─── Playbook narrative & layout additions ─── */
.pb-get-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.pb-success-cta {
  margin-top: 16px;
  display: inline-flex;
}
.pb-story-block {
  margin-top: 48px;
}
.pb-story-group-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pb-label-old {
  color: var(--text-muted);
}
.pb-story-row {
  display: grid;
  gap: 20px;
}
.pb-story-2col {
  grid-template-columns: repeat(2, 1fr);
}
.pb-story-3col {
  grid-template-columns: repeat(3, 1fr);
}
.pb-story-card {
  background: var(--bg-white);
  border: 1px solid var(--g200);
  border-radius: 20px;
  padding: 28px;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.pb-story-card:hover {
  border-color: var(--g300);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pb-story-card.skill {
  border-color: rgba(124,58,237,.18);
}
.pb-story-card.skill:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}
.pb-story-ico {
  width: 40px;
  height: 40px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--text-muted);
}
.pb-story-ico.skill {
  background: var(--purple-light);
  color: var(--purple);
}
.pb-story-card h4 {
  font-family: var(--font-disp);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.pb-story-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.pb-story-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 18px;
}
.pb-story-divider::before,
.pb-story-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--g200);
}
.pb-story-divider span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .pb-get-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pb-story-2col,
  .pb-story-3col { grid-template-columns: 1fr; }
}

/* === Resources dropdown divider === */
.dd-sol-divider {
  border-top: 1px solid var(--g200);
  margin: 12px 0;
}

/* === Retention Audit page (ra-*) === */

.ra-body-lock { overflow: hidden; }

/* Overlay */
.ra-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(13,10,30,.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.ra-overlay.ra-open {
  opacity: 1;
  pointer-events: all;
}

/* Modal card */
.ra-modal {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  max-width: 520px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform .28s ease;
  box-shadow: 0 24px 64px rgba(109,40,217,.24);
  isolation: isolate;
}
.ra-overlay.ra-open .ra-modal {
  transform: translateY(0);
}

/* Close button */
.ra-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .18s, background .18s;
}
.ra-close:hover {
  color: var(--text);
  background: var(--g100);
}

/* Progress */
.ra-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.ra-progress-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ra-dots {
  display: flex;
  gap: 5px;
}
.ra-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g200);
  transition: background .22s;
}
.ra-dot-done { background: var(--g300); }
.ra-dot-active { background: var(--purple); }

/* Question */
.ra-step-q {
  font-family: var(--font-disp);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 22px;
}

/* Options */
.ra-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ra-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  padding: 13px 18px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  position: relative;
}
.ra-option:hover {
  border-color: var(--purple);
  background: var(--purple-faint);
}
.ra-option-selected {
  border-color: var(--purple);
  background: var(--purple-faint);
}
.ra-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ra-option-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}

/* Continue button */
.ra-continue {
  width: 100%;
  padding: 14px 24px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, opacity .18s;
  margin-top: 4px;
}
.ra-continue:hover:not([disabled]) { background: var(--purple-dim); }
.ra-continue[disabled] { opacity: .38; cursor: not-allowed; }

/* Optional text field */
.ra-opt-text-wrap {
  display: none;
  margin-bottom: 0;
}
.ra-opt-text-visible {
  display: block;
  margin-bottom: 14px;
}

/* Teaser */
.ra-teaser {
  text-align: center;
  background: var(--g100);
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.ra-teaser-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ra-teaser-num {
  font-family: var(--font-disp);
  font-size: 38px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}
.ra-teaser-lock {
  color: var(--g400);
  display: inline-flex;
}
.ra-teaser-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

/* Lead form */
.ra-lead-form { display: flex; flex-direction: column; gap: 16px; }
.ra-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ra-field { display: flex; flex-direction: column; gap: 5px; }
.ra-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ra-input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-white);
  border: 1.5px solid var(--g200);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.ra-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.1);
}
.ra-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b5f8a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
.ra-field-err {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--red);
  min-height: 16px;
}
.ra-consent-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
}
.ra-consent-note a { color: var(--purple); text-decoration: underline; }
.ra-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, transform .15s;
  margin-top: 4px;
}
.ra-submit:hover { background: var(--purple-dim); transform: translateY(-1px); }
.ra-submit:active { transform: translateY(0); }

/* Success state */
.ra-success {
  text-align: center;
  padding: 20px 10px 10px;
}
.ra-success-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 2px solid var(--green-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
  margin: 0 auto 20px;
}
.ra-success h3 {
  font-family: var(--font-disp);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.ra-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Page sections */
.ra-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ra-step-card {
  background: var(--bg-white);
  border: 1.5px solid var(--g200);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.ra-step-card:hover {
  border-color: var(--g300);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ra-step-num {
  font-family: var(--font-disp);
  font-size: 36px;
  font-weight: 800;
  color: var(--purple);
  opacity: .25;
  letter-spacing: -.04em;
  margin-bottom: 12px;
  line-height: 1;
}
.ra-step-card h4 {
  font-family: var(--font-disp);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.ra-step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 700px) {
  .ra-modal { padding: 28px 20px; }
  .ra-steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .ra-fields-row { grid-template-columns: 1fr; }
  .ra-teaser-num { font-size: 30px; }
}
@media (max-width: 480px) {
  .ra-modal { border-radius: 16px; padding: 24px 16px; }
  .ra-step-q { font-size: 17px; }
}

/* ─── CHANNELS STICKY STACK ─── */

.chs-section {
  background: var(--bg-soft);
  padding: 80px 0 0;
  overflow: visible;
}
.chs-section .section-hdr.dark {
  margin-bottom: 56px;
}
.chs-section .section-hdr.dark h2 { color: var(--text); }
.chs-section .section-hdr.dark p { color: var(--text-muted); }
.chs-spacer { height: 80px; }

.chs-stack { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px,4vw,32px); }

.chs-card {
  position: sticky;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(167,139,250,.12);
  margin-bottom: 16px;
  box-shadow: 0 24px 60px rgba(109,40,217,.14);
}
.chs-card:nth-child(1) { top: 80px; z-index: 1; }
.chs-card:nth-child(2) { top: 136px; z-index: 2; }
.chs-card:nth-child(3) { top: 192px; z-index: 3; }
.chs-card:nth-child(4) { top: 248px; z-index: 4; }
.chs-card:nth-child(5) { top: 304px; z-index: 5; margin-bottom: 0; }

.chs-card-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 420px;
}

.chs-vis-col {
  border-right: 1px solid rgba(167,139,250,.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 100%);
}
.chs-vis-label {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(167,139,250,.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.chs-vis-label-dot {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--purple), #4c1d95);
  flex-shrink: 0;
}
.chs-vis-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.chs-vis-glow {
  position: absolute;
  width: 280px; height: 280px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.chs-glow-green  { background: radial-gradient(circle, rgba(37,211,102,.15), transparent 70%); }
.chs-glow-amber  { background: radial-gradient(circle, rgba(245,158,11,.12), transparent 70%); }
.chs-glow-purple { background: radial-gradient(circle, rgba(167,139,250,.15), transparent 70%); }
.chs-glow-blue   { background: radial-gradient(circle, rgba(56,189,248,.12), transparent 70%); }
.chs-glow-red    { background: radial-gradient(circle, rgba(244,63,94,.10), transparent 70%); }

.chs-text-col {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.chs-card-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a78bfa;
}
.chs-card-title {
  font-family: var(--font-disp);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}
.chs-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.chs-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}
.chs-bullet-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  flex-shrink: 0;
  margin-top: 8px;
}
.chs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #a78bfa;
  text-decoration: none;
  border-bottom: 1px solid rgba(167,139,250,.3);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .2s, border-color .2s;
}
.chs-link::after { content: ' →'; }
.chs-link:hover { color: #c4b5fd; border-color: #c4b5fd; }

.chs-anim-el {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.chs-anim-el.chs-show {
  opacity: 1;
  transform: translateY(0);
}

.chs-live-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  margin-right: 4px;
}
.chs-live-green { background: #25d366; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.8)} }

/* ── WhatsApp mockup ── */
.chs-wa-wrap { width: 100%; max-width: 280px; }
.chs-wa-header {
  background: #1a1f2e;
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(167,139,250,.12);
  border-bottom: none;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chs-wa-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp); font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.chs-wa-name { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: #fff; }
.chs-wa-status { font-family: var(--font-body); font-size: 10px; color: #25d366; display: flex; align-items: center; }
.chs-wa-body {
  background: #13112a;
  border: 1px solid rgba(167,139,250,.12);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 130px;
}
.chs-wa-msg {
  max-width: 88%;
  padding: 8px 10px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.5;
  color: #fff;
}
.chs-wa-out {
  background: #1e1b3a;
  align-self: flex-end;
  border-radius: 10px 10px 2px 10px;
}
.chs-wa-in {
  background: var(--dark-3);
  align-self: flex-start;
  border-radius: 10px 10px 10px 2px;
}
.chs-wa-confirm { background: rgba(16,185,129,.15); color: #34d399; }
.chs-wa-time { font-size: 9px; color: rgba(255,255,255,.35); margin-top: 3px; text-align: right; }
.chs-typing {
  display: flex;
  gap: 3px;
  align-items: center;
  padding: 8px 10px;
  background: var(--dark-3);
  border-radius: 10px 10px 10px 2px;
  width: fit-content;
}
.chs-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  animation: chs-typing-bounce .9s ease-in-out infinite;
}
.chs-typing span:nth-child(2) { animation-delay: .15s; }
.chs-typing span:nth-child(3) { animation-delay: .30s; }
@keyframes chs-typing-bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }

/* ── Email mockup ── */
.chs-email-wrap {
  width: 100%;
  max-width: 240px;
  background: var(--dark-2);
  border: 1px solid rgba(167,139,250,.15);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  font-family: var(--font-body);
  font-size: 10px;
}
.chs-em-chrome {
  background: var(--dark-3);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(167,139,250,.08);
}
.chs-em-dot { width: 6px; height: 6px; border-radius: 50%; }
.chs-dot-red    { background: #f43f5e; }
.chs-dot-yellow { background: #f59e0b; }
.chs-dot-green  { background: #10b981; }
.chs-em-chrome-lbl { font-size: 9px; color: rgba(255,255,255,.3); margin-left: auto; }
.chs-em-from { padding: 8px 12px 0; color: rgba(255,255,255,.4); }
.chs-em-from strong { color: #a78bfa; }
.chs-em-subj { padding: 4px 12px; font-size: 11px; font-weight: 600; color: #fff; }
.chs-em-body { padding: 6px 12px; color: rgba(255,255,255,.55); border-top: 1px solid rgba(167,139,250,.06); margin-top: 8px; line-height: 1.5; }
.chs-em-btn {
  margin: 8px 12px 10px;
  background: #f59e0b;
  color: #000;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  cursor: default;
}
.chs-em-stat {
  padding: 6px 12px;
  background: rgba(16,185,129,.08);
  border-top: 1px solid rgba(167,139,250,.06);
  color: #34d399;
  font-size: 10px;
  font-weight: 600;
}
.chs-em-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,.5), transparent);
  top: 0;
  pointer-events: none;
  opacity: 0;
}
.chs-em-scanline.chs-scanning {
  opacity: .7;
  animation: chs-em-scan 1s ease-in-out infinite;
}
@keyframes chs-em-scan { 0%{top:0%} 100%{top:100%} }

/* ── SMS mockup ── */
.chs-sms-wrap { width: 100%; max-width: 240px; display: flex; flex-direction: column; gap: 7px; }
.chs-sms-label { font-family: var(--font-body); font-size: 9px; color: rgba(255,255,255,.35); text-align: center; margin-bottom: 2px; }
.chs-sms-msg {
  padding: 8px 12px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.5;
  max-width: 85%;
  color: #fff;
}
.chs-sms-out {
  background: var(--purple);
  align-self: flex-end;
  border-radius: 14px 14px 2px 14px;
}.chs-sms-time { font-family: var(--font-body); font-size: 9px; color: rgba(255,255,255,.3); text-align: right; }

/* ── Web App mockup ── */
.chs-web-wrap { width: 100%; max-width: 240px; }
.chs-browser-bar {
  background: var(--dark-3);
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(167,139,250,.12);
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.chs-b-dot { width: 7px; height: 7px; border-radius: 50%; }
.chs-b-red    { background: #f43f5e; }
.chs-b-yellow { background: #f59e0b; }
.chs-b-green  { background: #10b981; }
.chs-b-url {
  flex: 1;
  margin-left: 6px;
  height: 14px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
}
.chs-browser-body {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(167,139,250,.12);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 10px;
  position: relative;
  min-height: 120px;
}
.chs-page-block { border-radius: 4px; margin-bottom: 6px; background: rgba(255,255,255,.04); }
.chs-page-block-lg { height: 40px; }
.chs-page-block-sm { height: 20px; width: 60%; }
.chs-popup {
  position: absolute;
  bottom: 8px; right: 8px; left: 8px;
  background: var(--dark-3);
  border: 1px solid rgba(167,139,250,.2);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(109,40,217,.2);
}
.chs-popup-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.chs-popup-title { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: #fff; }
.chs-popup-close { font-size: 9px; color: rgba(255,255,255,.3); cursor: default; }
.chs-popup-sub { font-family: var(--font-body); font-size: 9px; color: rgba(255,255,255,.45); }
.chs-popup-btn {
  display: block;
  width: 100%;
  margin-top: 7px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 5px 8px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  cursor: default;
}

/* ── Push mockup ── */
.chs-push-wrap { width: 100%; max-width: 240px; display: flex; flex-direction: column; gap: 8px; }
.chs-push-label { font-family: var(--font-body); font-size: 9px; color: rgba(255,255,255,.35); text-align: center; }
.chs-notif {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px;
}
.chs-notif-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.chs-notif-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--purple), #4c1d95);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.chs-notif-icon svg { width: 14px; height: 14px; }
.chs-notif-app { font-family: var(--font-body); font-size: 10px; font-weight: 600; color: rgba(255,255,255,.7); }
.chs-notif-time { font-family: var(--font-body); font-size: 9px; color: rgba(255,255,255,.35); margin-left: auto; }
.chs-notif-title { font-family: var(--font-body); font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.chs-notif-body { font-family: var(--font-body); font-size: 10px; color: rgba(255,255,255,.55); line-height: 1.4; }
.chs-notif-actions { display: flex; gap: 6px; }
.chs-notif-dismiss, .chs-notif-cta {
  flex: 1;
  border-radius: 8px;
  padding: 7px 0;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  cursor: default;
}
.chs-notif-dismiss { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); }
.chs-notif-cta { background: var(--purple); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .chs-card-inner { grid-template-columns: 1fr; min-height: unset; }
  .chs-vis-col { border-right: none; border-bottom: 1px solid rgba(167,139,250,.08); min-height: 260px; }
  .chs-text-col { padding: 24px 28px; }
  .chs-card:nth-child(1) { top: 60px; }
  .chs-card:nth-child(2) { top: 100px; }
  .chs-card:nth-child(3) { top: 140px; }
  .chs-card:nth-child(4) { top: 180px; }
  .chs-card:nth-child(5) { top: 220px; }
}
@media (max-width: 480px) {
  .chs-vis-body { padding: 20px; }
  .chs-wa-wrap, .chs-email-wrap, .chs-sms-wrap, .chs-web-wrap, .chs-push-wrap { max-width: 100%; }
  .chs-text-col { padding: 20px; gap: 14px; }
  .chs-card-title { font-size: 17px; }
  /* disable sticky stacking on small phones — prevents overlap */
  .chs-card { position: static; margin-bottom: 20px; }
  .chs-card:nth-child(n) { top: unset; }
}

/* ─────────────────────────────────────────────
   AGENTIC EMAIL GENERATOR (page-aeg)
───────────────────────────────────────────── */

/* Hero */
.aeg-hero {
  background: var(--dark);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.aeg-hero-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.aeg-hero h1 { color: #fff; }
.aeg-hero .hero-sub { color: rgba(255,255,255,.72); max-width: 52ch; margin: 16px auto 0; }
.aeg-hero .chip { background: rgba(124,58,237,.18); border-color: rgba(124,58,237,.3); color: #a78bfa; margin-bottom: 20px; }
.aeg-hero .chip-dot { background: #a78bfa; }
.aeg-hero .hero-actions { justify-content: center; margin-top: 32px; }

/* UI simulation wrapper */
.aeg-ui-wrap { padding: 0 5%; }
.aeg-ui-inner {
  display: grid;
  grid-template-columns: 220px 1fr 196px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.09);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  min-height: 500px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Sidebar */
.aeg-sidebar {
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 14px 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.aeg-sidebar-textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 9px 11px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,.7);
  resize: none;
  height: 58px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color .15s;
}
.aeg-sidebar-textarea:focus { border-color: rgba(124,58,237,.5); }
.aeg-sidebar-textarea::placeholder { color: rgba(255,255,255,.28); }
.aeg-sidebar-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 8px 4px 4px;
  font-family: var(--font-body);
}
.aeg-tpl-card {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 8px 9px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
}
.aeg-tpl-card:hover {
  background: rgba(124,58,237,.08);
  border-color: rgba(124,58,237,.2);
}
.aeg-tpl-card.active {
  background: rgba(124,58,237,.14);
  border-color: var(--purple);
}
.aeg-tpl-emoji { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.aeg-tpl-info { flex: 1; min-width: 0; }
.aeg-tpl-title { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.88); font-family: var(--font-body); }
.aeg-tpl-desc { font-size: 10px; color: rgba(255,255,255,.38); font-family: var(--font-body); line-height: 1.4; margin-top: 1px; }
.aeg-tpl-gen { font-size: 9.5px; color: #a78bfa; font-weight: 600; font-family: var(--font-body); opacity: 0; transition: opacity .15s; white-space: nowrap; align-self: center; flex-shrink: 0; }
.aeg-tpl-card:hover .aeg-tpl-gen,
.aeg-tpl-card.active .aeg-tpl-gen { opacity: 1; }

/* Center email panel */
.aeg-email-center {
  background: #09061a;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.05);
  border-right: 1px solid rgba(255,255,255,.05);
}
.aeg-email-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.aeg-topbar-dot { width: 7px; height: 7px; border-radius: 50%; }
.aeg-topbar-dot.red { background: #ff5f57; }
.aeg-topbar-dot.yellow { background: #ffbd2e; }
.aeg-topbar-dot.green { background: #28ca41; }
.aeg-topbar-label { font-size: 11px; color: rgba(255,255,255,.3); font-family: var(--font-body); margin-left: 6px; flex: 1; text-align: center; }
.aeg-topbar-badge { font-size: 10px; font-weight: 600; color: #10b981; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); border-radius: 100px; padding: 2px 8px; font-family: var(--font-body); }
.aeg-email-canvas { flex: 1; overflow-y: auto; display: flex; align-items: flex-start; justify-content: center; padding: 20px 14px; position: relative; }

/* Email template cards */
.aeg-em-tpl { background: #fff; border-radius: 8px; width: 100%; max-width: 360px; overflow: hidden; box-shadow: 0 4px 24px rgba(109,40,217,.28); display: none; }
.aeg-em-tpl.active { display: block; }

/* Campaign Builder state */
.aeg-em-builder-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; text-align: center; gap: 8px; min-height: 220px; }
.aeg-builder-icon { width: 48px; height: 48px; background: var(--purple-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--purple); margin-bottom: 4px; }
.aeg-builder-label { font-family: var(--font-disp); font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.aeg-builder-sub { font-size: 12px; color: var(--text-muted); }
.aeg-builder-dots { display: flex; gap: 5px; margin-top: 8px; }
.aeg-builder-dots span { width: 6px; height: 6px; background: var(--purple); border-radius: 50%; animation: builder-dot .9s ease-in-out infinite; opacity: .3; }
.aeg-builder-dots span:nth-child(2) { animation-delay: .18s; }
.aeg-builder-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes builder-dot { 0%, 100% { opacity: .3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }

/* Email header variants */
.aeg-em-hdr { padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; }
.aeg-em-hdr-purple { background: var(--purple); }
.aeg-em-hdr-dark { background: var(--dark); }
.aeg-em-hdr-white { background: #fff; border-bottom: 1px solid var(--g100); }
.aeg-em-brand { font-family: var(--font-disp); font-size: 13px; font-weight: 800; letter-spacing: -0.01em; }
.aeg-brand-white { color: #fff; }
.aeg-brand-purple { color: var(--purple); }
.aeg-em-nav-links { display: flex; gap: 10px; }
.aeg-em-nav-link { font-size: 9px; font-family: var(--font-body); }
.aeg-nav-white { color: rgba(255,255,255,.7); }
.aeg-nav-dark { color: var(--text-muted); }

/* Email hero strips */
.aeg-em-hero { height: 90px; display: flex; align-items: center; justify-content: center; padding: 0 18px; }
.aeg-em-hero-dark { background: linear-gradient(135deg, #1a0a3e 0%, #4c1d95 100%); }
.aeg-em-hero-soft { background: var(--bg-soft); }
.aeg-em-hero-festive { background: linear-gradient(135deg, #1a0a3e 0%, #7c3aed 100%); }
.aeg-em-hero-text { text-align: center; }
.aeg-em-flash-tag { font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.7); font-family: var(--font-body); margin-bottom: 4px; }
.aeg-em-flash-headline { font-family: var(--font-disp); font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.aeg-em-new-tag { font-family: var(--font-disp); font-size: 20px; font-weight: 700; color: var(--purple); letter-spacing: -0.02em; }
.aeg-em-festive-text { font-family: var(--font-disp); font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }

/* Email body */
.aeg-em-body-pad { padding: 18px 18px 6px; }
.aeg-em-eyebrow { font-size: 8.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; font-family: var(--font-body); }
.aeg-em-headline { font-family: var(--font-disp); font-size: 19px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 7px; }
.aeg-em-sub { font-size: 11px; color: var(--text-muted); font-family: var(--font-body); line-height: 1.55; margin-bottom: 14px; }
.aeg-em-btn { display: inline-block; padding: 8px 18px; border-radius: 5px; font-size: 10.5px; font-weight: 700; font-family: var(--font-body); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px; }
.aeg-em-btn-purple { background: var(--purple); color: #fff; }
.aeg-em-btn-outline { border: 1.5px solid var(--purple); color: var(--purple); background: transparent; }
.aeg-em-code-box { background: var(--g100); border: 1.5px dashed var(--g300); border-radius: 5px; padding: 9px; text-align: center; font-family: var(--font-disp); font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--purple); margin-bottom: 12px; }
.aeg-em-article-img { height: 56px; background: var(--g100); border-radius: 6px; margin-bottom: 8px; }
.aeg-em-article-title { font-size: 12px; font-weight: 600; color: var(--text); font-family: var(--font-body); margin-bottom: 10px; line-height: 1.4; }
.aeg-em-expires { font-size: 9.5px; color: var(--text-muted); font-family: var(--font-body); margin-bottom: 10px; }
.aeg-em-divider { height: 1px; background: var(--g100); margin: 8px 0; }
.aeg-em-footer-strip { padding: 8px 0 10px; display: flex; gap: 10px; }
.aeg-em-footer-link { font-size: 8.5px; color: var(--text-muted); font-family: var(--font-body); opacity: .6; }

/* Shimmer overlay */
.aeg-shimmer {
  position: absolute; inset: 0; pointer-events: none; z-index: 10;
  background: linear-gradient(90deg, transparent 0%, rgba(124,58,237,.15) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0; transition: opacity .1s;
}
.aeg-shimmer.running {
  opacity: 1;
  animation: aegShimmerSlide .65s ease forwards;
}
@keyframes aegShimmerSlide {
  0% { background-position: 200% 0; opacity: 1; }
  80% { opacity: 1; }
  100% { background-position: -200% 0; opacity: 0; }
}

/* Quality side panel (in hero UI) */
/* Element editor panel (right panel of 3-col UI) */
.aeg-edit-panel {
  border-left: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1a1230;
}
.aeg-edit-header { padding: 10px 11px 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
.aeg-edit-header-left { display: flex; align-items: center; gap: 8px; }
.aeg-edit-el-icon { width: 26px; height: 26px; border-radius: 7px; background: var(--purple); color: #fff; font-size: 11px; font-weight: 700; font-family: var(--font-disp); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aeg-edit-el-type { font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); font-family: var(--font-body); line-height: 1.2; }
.aeg-edit-el-sub { font-size: 8.5px; color: rgba(255,255,255,.35); font-family: var(--font-body); line-height: 1.3; }
.aeg-edit-crumb { padding: 5px 11px; display: flex; align-items: center; gap: 3px; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,.05); }
.aeg-edit-crumb span { font-size: 8.5px; color: rgba(255,255,255,.35); font-family: var(--font-body); }
.aeg-crumb-sep { color: rgba(255,255,255,.2); }
.aeg-crumb-active { color: var(--purple) !important; font-weight: 600; }
.aeg-edit-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,.07); }
.aeg-edit-tab { flex: 1; text-align: center; padding: 7px 4px; font-size: 9px; font-weight: 600; letter-spacing: .06em; font-family: var(--font-body); color: rgba(255,255,255,.35); cursor: pointer; }
.aeg-edit-tab.active { color: #fff; border-bottom: 2px solid var(--purple); }
.aeg-edit-body { flex: 1; overflow-y: auto; padding: 8px 10px; display: flex; flex-direction: column; gap: 0; }
.aeg-edit-section { padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
.aeg-edit-section:last-child { border-bottom: none; margin-bottom: 0; }
.aeg-edit-section-hdr { font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); font-family: var(--font-body); display: flex; align-items: center; gap: 5px; margin-bottom: 7px; }
.aeg-edit-badge { font-size: 7px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; background: rgba(124,58,237,.2); color: #a78bfa; border: 1px solid rgba(124,58,237,.25); border-radius: 3px; padding: 1px 4px; font-family: var(--font-body); }
.aeg-edit-lbl { font-size: 7.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); font-family: var(--font-body); margin-bottom: 3px; }
.aeg-edit-field-full { margin-bottom: 6px; }
.aeg-edit-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 6px; }
.aeg-edit-select { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 5px; padding: 5px 7px; font-size: 9px; color: rgba(255,255,255,.75); font-family: var(--font-body); cursor: pointer; }
.aeg-edit-input-unit { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 5px; padding: 5px 7px; font-size: 9px; color: rgba(255,255,255,.75); font-family: var(--font-body); }
.aeg-edit-input-unit span { font-size: 7.5px; color: rgba(255,255,255,.3); }
.aeg-align-btns { display: flex; gap: 2px; }
.aeg-align-btn { flex: 1; text-align: center; padding: 4px 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; font-size: 8px; color: rgba(255,255,255,.45); font-family: var(--font-disp); cursor: pointer; }
.aeg-align-btn.active { background: rgba(124,58,237,.25); border-color: rgba(124,58,237,.5); color: #a78bfa; }
.aeg-color-row { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 5px; padding: 4px 6px; }
.aeg-color-swatch { width: 13px; height: 13px; border-radius: 3px; background: #1a1a1a; flex-shrink: 0; border: 1px solid rgba(255,255,255,.15); }
.aeg-swatch-light { background: #ffffff; }
.aeg-color-hex { font-size: 8.5px; color: rgba(255,255,255,.65); font-family: var(--font-body); flex: 1; }
.aeg-color-pick { font-size: 8px; font-weight: 600; color: var(--purple); font-family: var(--font-body); cursor: pointer; }
.aeg-spacing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 4px; }
.aeg-spacing-cell { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 5px; padding: 4px 7px; font-size: 9px; font-family: var(--font-body); color: rgba(255,255,255,.65); }
.aeg-spacing-cell span:first-child { color: rgba(255,255,255,.3); font-size: 7.5px; font-weight: 700; letter-spacing: .08em; }
.aeg-sp-unit { color: rgba(255,255,255,.25); font-size: 7.5px; margin-left: auto; }

/* AI Prompt demo section */
.aeg-prompt-demo {
  display: grid;
  grid-template-columns: 1fr 220px 320px;
  gap: 0;
  background: var(--dark);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  box-shadow: var(--shadow-purple);
  margin-top: 48px;
}

/* Left: prompt input */
.aeg-pd-input-wrap {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aeg-pd-input-label { font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.3); font-family: var(--font-body); }
.aeg-pd-input-box { background: rgba(255,255,255,.05); border: 1.5px solid rgba(124,58,237,.4); border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.aeg-pd-typed { font-size: 14px; font-family: var(--font-body); color: rgba(255,255,255,.88); line-height: 1.6; }
.aeg-pd-cursor { display: inline-block; width: 2px; height: 15px; background: var(--purple); border-radius: 1px; margin-left: 2px; vertical-align: middle; animation: aeg-blink 1.1s step-end infinite; }
@keyframes aeg-blink { 0%,100%{opacity:1} 50%{opacity:0} }
.aeg-pd-generate-btn { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; background: var(--purple); color: #fff; border: none; border-radius: 8px; padding: 9px 18px; font-size: 13px; font-weight: 700; font-family: var(--font-body); cursor: pointer; transition: background .18s; }
.aeg-pd-generate-btn:hover { background: var(--purple-dim); }

.aeg-pd-hints { display: flex; flex-wrap: wrap; gap: 6px; }
.aeg-pd-hint { font-size: 11px; font-family: var(--font-body); color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 100px; padding: 4px 12px; cursor: pointer; transition: all .15s; }
.aeg-pd-hint:hover { color: rgba(255,255,255,.75); border-color: rgba(124,58,237,.4); }

/* Center: progress steps */
.aeg-pd-progress {
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.aeg-pd-step { display: flex; align-items: center; gap: 10px; padding: 10px 0; position: relative; }
.aeg-pd-step:not(:last-child)::after { content: ''; position: absolute; left: 11px; top: calc(50% + 12px); width: 1px; height: calc(100% - 10px); background: rgba(255,255,255,.08); }
.aeg-pd-step-dot { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: transparent; position: relative; z-index: 1; }
.aeg-pd-step-dot.done { background: rgba(16,185,129,.15); border-color: #10b981; color: #10b981; }
.aeg-pd-step-dot.active { border-color: var(--purple); background: rgba(124,58,237,.15); }
.aeg-pd-step-spinner { width: 10px; height: 10px; border: 2px solid rgba(124,58,237,.3); border-top-color: var(--purple); border-radius: 50%; animation: aeg-spin .75s linear infinite; }
@keyframes aeg-spin { to { transform: rotate(360deg); } }
.aeg-pd-step span { font-size: 12px; font-family: var(--font-body); color: rgba(255,255,255,.35); }
.aeg-pd-step.done span { color: rgba(255,255,255,.65); }
.aeg-pd-step.active span { color: #fff; font-weight: 600; }

/* Right: email output */
.aeg-pd-output {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #160e2d;
}
.aeg-pd-output-label { display: flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); font-family: var(--font-body); }
.aeg-pd-email-card { background: #fff; border-radius: 10px; overflow: hidden; flex: 1; position: relative; box-shadow: 0 4px 20px rgba(109,40,217,.3); }
.aeg-pd-shimmer { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(124,58,237,.18) 50%, transparent 100%); background-size: 200% 100%; animation: aeg-shimmer-move 1.8s ease-in-out infinite; z-index: 2; border-radius: 10px; }
@keyframes aeg-shimmer-move { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.aeg-pd-em-hdr { background: var(--purple); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; }
.aeg-pd-em-brand { font-family: var(--font-disp); font-size: 9px; font-weight: 800; letter-spacing: .14em; color: #fff; }
.aeg-pd-em-nav { font-size: 7.5px; color: rgba(255,255,255,.6); font-family: var(--font-body); }
.aeg-pd-em-hero { background: var(--dark-2); padding: 18px 14px 14px; }
.aeg-pd-em-hero-tag { font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); font-family: var(--font-body); margin-bottom: 4px; }
.aeg-pd-em-hero-headline { font-family: var(--font-disp); font-size: 20px; font-weight: 800; color: #fff; line-height: 1.15; }
.aeg-pd-em-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.aeg-pd-em-eyebrow { font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); font-family: var(--font-body); }
.aeg-pd-em-copy { font-size: 10px; color: #4b5563; line-height: 1.6; font-family: var(--font-body); }
.aeg-pd-em-code { display: inline-block; background: var(--purple-faint); border: 1.5px dashed var(--purple); border-radius: 6px; padding: 6px 14px; font-family: var(--font-disp); font-size: 13px; font-weight: 800; color: var(--purple); letter-spacing: .1em; align-self: center; }
.aeg-pd-em-cta { background: var(--purple); color: #fff; text-align: center; padding: 9px 0; border-radius: 5px; font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-body); }
.aeg-pd-em-expires { font-size: 8.5px; color: #9ca3af; text-align: center; font-family: var(--font-body); }
.aeg-pd-em-footer { padding: 8px 14px; text-align: center; font-size: 8px; color: #d1d5db; font-family: var(--font-body); border-top: 1px solid #f3f4f6; }

.aeg-pd-output-meta { display: flex; flex-direction: column; gap: 5px; }
.aeg-pd-meta-item { display: flex; align-items: center; gap: 6px; font-size: 10.5px; font-family: var(--font-body); color: rgba(255,255,255,.45); }
.aeg-pd-meta-item svg { color: #10b981; flex-shrink: 0; }

@media (max-width: 900px) {
  .aeg-prompt-demo { grid-template-columns: 1fr; }
  .aeg-pd-progress { flex-direction: row; flex-wrap: wrap; gap: 8px; border-right: none; border-top: 1px solid rgba(255,255,255,.07); padding: 16px 20px; }
  .aeg-pd-step::after { display: none; }
  .aeg-pd-output { border-top: 1px solid rgba(255,255,255,.07); }
}

/* Template gallery section */
.aeg-tpl-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.aeg-tpl-filter { font-size: 12px; font-weight: 600; font-family: var(--font-body); color: var(--text-muted); background: #fff; border: 1.5px solid var(--g200); border-radius: 100px; padding: 6px 16px; cursor: default; pointer-events: none; transition: all .18s; }
.aeg-tpl-filter:hover { border-color: var(--g200); color: var(--text-muted); }
.aeg-tpl-filter.active { background: var(--purple); border-color: var(--purple); color: #fff; }

.aeg-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.aeg-gallery-card { background: #fff; border: 1.5px solid var(--g200); border-radius: 16px; overflow: hidden; position: relative; transition: border-color .22s, box-shadow .22s, transform .22s; cursor: pointer; }
.aeg-gallery-card:hover { border-color: var(--g300); box-shadow: var(--shadow); transform: translateY(-4px); }

/* Thumbnail area */
.aeg-gc-thumb { padding: 18px 16px 14px; display: flex; flex-direction: column; gap: 8px; min-height: 200px; position: relative; }
.aeg-gc-dark { background: #111827; }
.aeg-gc-yellow { background: #fef3c7; }
.aeg-gc-white { background: #ffffff; border-bottom: 1px solid var(--g100); }
.aeg-gc-warm { background: #f5f0eb; }
.aeg-gc-orange { background: #fde68a; }
.aeg-gc-forest { background: #1a2e1a; }

.aeg-gc-brand { font-family: var(--font-disp); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.aeg-brand-dark { color: #1a1033; }
.aeg-brand-purple { color: var(--purple); }

.aeg-gc-eyebrow-sm { font-size: 10px; color: rgba(255,255,255,.5); font-family: var(--font-body); }

.aeg-gc-headline-lg { font-family: var(--font-disp); font-size: 22px; font-weight: 800; color: #fff; line-height: 1.15; }
.aeg-gc-headline-xl { font-family: var(--font-disp); font-size: 28px; font-weight: 900; color: #1a1033; line-height: 1.1; }
.aeg-gc-headline-sm { font-family: var(--font-disp); font-size: 13px; font-weight: 700; color: #1a1033; line-height: 1.35; }
.aeg-hl-red { color: #dc2626; }

.aeg-gc-img-block { border-radius: 6px; background: rgba(255,255,255,.1); }
.aeg-gc-img-tall { height: 70px; }
.aeg-gc-img-short { height: 44px; }
.aeg-gc-img-warm { background: rgba(180,140,100,.25); }
.aeg-gc-img-dark { background: rgba(0,0,0,.12); }

.aeg-gc-copy-lines { display: flex; flex-direction: column; gap: 5px; }
.aeg-gc-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,.18); }
.aeg-line-dark { background: rgba(0,0,0,.12); }
.w90 { width: 90%; }
.w85 { width: 85%; }
.w80 { width: 80%; }
.w75 { width: 75%; }
.w70 { width: 70%; }
.w65 { width: 65%; }
.w60 { width: 60%; }
.w55 { width: 55%; }
.w50 { width: 50%; }

.aeg-gc-cta-pill { display: inline-block; border-radius: 4px; padding: 5px 10px; font-size: 8.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-body); align-self: flex-start; margin-top: auto; }
.aeg-gc-cta-pill.dark { background: #fff; color: #111827; }
.aeg-gc-cta-pill.yellow { background: #111827; color: #fef3c7; }
.aeg-gc-cta-pill.white { background: var(--purple); color: #fff; }
.aeg-gc-cta-pill.red { background: #dc2626; color: #fff; }
.aeg-gc-cta-pill.orange { background: #111827; color: #fde68a; }

/* Card meta (below thumb) */
.aeg-gc-meta { padding: 10px 14px 12px; }
.aeg-gc-title { font-size: 12px; font-weight: 600; color: var(--text); font-family: var(--font-body); line-height: 1.4; margin-bottom: 4px; }
.aeg-gc-tag { font-size: 10px; color: var(--text-muted); font-family: var(--font-body); }

/* Hover overlay */
.aeg-gc-hover { position: absolute; inset: 0; background: rgba(13,10,30,.72); border-radius: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: opacity .2s; backdrop-filter: blur(2px); }
.aeg-gallery-card:hover .aeg-gc-hover { opacity: 1; }
.aeg-gc-use-btn { background: #fff; color: var(--purple); border: none; border-radius: 8px; padding: 9px 16px; font-size: 12px; font-weight: 700; font-family: var(--font-body); cursor: pointer; transition: background .15s; white-space: nowrap; }
.aeg-gc-use-btn:hover { background: var(--purple-light); }
.aeg-gc-preview-btn { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background .15s; }
.aeg-gc-preview-btn:hover { background: rgba(255,255,255,.25); }

.aeg-gallery-cta { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--g200); }
.aeg-gallery-cta span { font-size: 13px; color: var(--text-muted); font-family: var(--font-body); }

@media (max-width: 1024px) { .aeg-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .aeg-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .aeg-gallery-cta { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) { .aeg-gallery-grid { grid-template-columns: 1fr; } }

/* How it works track */
.aeg-how-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 48px; }
.aeg-how-track::before { content: ''; position: absolute; top: 24px; left: calc(12.5% + 24px); right: calc(12.5% + 24px); height: 1px; background: repeating-linear-gradient(90deg, var(--g300) 0, var(--g300) 5px, transparent 5px, transparent 12px); pointer-events: none; }
.aeg-how-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.aeg-how-icon { width: 48px; height: 48px; border-radius: 14px; background: #fff; border: 1px solid var(--g200); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; z-index: 1; box-shadow: var(--shadow-sm); }
.aeg-how-step h4 { font-size: 14px; margin-bottom: 6px; color: var(--text); }
.aeg-how-step p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* Split layout (audience + quality sections) */
.aeg-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.aeg-split-reverse { direction: rtl; }
.aeg-split-reverse > * { direction: ltr; }
.aeg-split-text h2 { margin-bottom: 14px; }
.aeg-split-text p { color: var(--text-muted); line-height: 1.72; margin-bottom: 18px; }
.aeg-split-text p:last-of-type { margin-bottom: 24px; }

/* Audience panel */
.aeg-audience-panel { background: #fff; border: 1px solid var(--g200); border-radius: 20px; padding: 22px; box-shadow: var(--shadow); }
.aeg-panel-title { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; font-family: var(--font-body); }
.aeg-seg-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--g100); gap: 10px; }
.aeg-seg-row:last-of-type { border-bottom: none; }
.aeg-seg-include { display: flex; align-items: center; gap: 7px; flex: 1; min-width: 0; flex-wrap: wrap; }
.aeg-seg-badge-lbl { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); background: var(--green-bg); border: 1px solid var(--green-b); border-radius: 4px; padding: 2px 6px; font-family: var(--font-body); flex-shrink: 0; }
.aeg-badge-exclude { color: #dc2626; background: #fef2f2; border-color: #fecaca; }
.aeg-seg-tag { display: inline-flex; align-items: center; background: var(--purple-faint); border: 1px solid rgba(124,58,237,.15); border-radius: 6px; padding: 4px 9px; font-size: 11px; font-weight: 500; color: var(--purple); font-family: var(--font-body); }
.aeg-seg-tag-exclude { background: #fef2f2; border-color: rgba(220,38,38,.15); color: #dc2626; }
.aeg-seg-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.aeg-seg-count { font-size: 10.5px; color: var(--text-muted); font-family: var(--font-body); }
.aeg-seg-x { width: 16px; height: 16px; border-radius: 4px; background: var(--g100); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 10px; color: var(--text-muted); font-family: var(--font-body); }
.aeg-add-seg { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--purple); font-family: var(--font-body); padding: 10px 0 4px; cursor: pointer; }
.aeg-reach-bar { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--g200); display: flex; align-items: center; justify-content: space-between; }
.aeg-reach-label { font-size: 11.5px; color: var(--text-muted); font-family: var(--font-body); }
.aeg-reach-num { font-family: var(--font-disp); font-size: 15px; font-weight: 800; color: var(--purple); font-variant-numeric: tabular-nums; }

/* Quality check card (full section) */
.aeg-quality-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 26px; box-shadow: var(--shadow); }
.aeg-quality-top { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.07); }
.aeg-big-score-wrap { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
.aeg-big-score-svg { width: 88px; height: 88px; }
.aeg-big-score-fill { stroke: var(--purple); stroke-dasharray: 226; stroke-dashoffset: 226; transition: stroke-dashoffset 1.4s ease; }
.aeg-big-score-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.aeg-big-score-num span { font-size: 10px; color: rgba(255,255,255,.4); font-weight: 500; }
.aeg-score-meta { flex: 1; }
.aeg-score-meta h4 { color: #fff; margin-bottom: 8px; font-size: 14px; }
.aeg-score-bars { display: flex; flex-direction: column; gap: 4px; }
.aeg-score-bar-row { display: flex; align-items: center; gap: 7px; font-size: 11px; font-family: var(--font-body); }
.aeg-score-bar-row.pass { color: #10b981; }
.aeg-score-bar-row.warn { color: #f59e0b; }
.aeg-score-bar-row.fail { color: #ef4444; }
.aeg-check-section { margin-bottom: 10px; }
.aeg-check-section-lbl { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 4px; font-family: var(--font-body); }
.aeg-quality-check-item { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-size: 11.5px; font-family: var(--font-body); border-bottom: 1px solid rgba(255,255,255,.04); color: rgba(255,255,255,.7); }
.aeg-quality-check-item:last-child { border-bottom: none; }
.aeg-quality-check-item svg { flex-shrink: 0; margin-top: 1px; }
.aeg-quality-check-item.pass svg { color: #10b981; }
.aeg-quality-check-item.warn svg { color: #f59e0b; }
.aeg-quality-check-item.fail svg { color: #ef4444; }
.aeg-check-detail { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 2px; }

/* Preflight grid */
.aeg-preflight-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 48px; }
.aeg-preflight-card { background: #fff; border: 1px solid var(--g200); border-radius: 16px; padding: 20px 14px; text-align: center; transition: all .22s; }
.aeg-preflight-card:hover { border-color: var(--g300); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.aeg-preflight-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--purple-faint); border: 1px solid rgba(124,58,237,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.aeg-preflight-name { font-size: 12px; font-weight: 600; color: var(--text); font-family: var(--font-body); margin-bottom: 4px; }
.aeg-preflight-count { font-size: 10.5px; color: var(--text-muted); font-family: var(--font-body); margin-bottom: 8px; }
.aeg-preflight-status { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; font-family: var(--font-body); padding: 3px 8px; border-radius: 100px; }
.aeg-preflight-status.pass { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-b); }
.aeg-preflight-status.warn { background: var(--amber-bg); color: var(--amber); border: 1px solid var(--amber-b); }

/* chip-on-dark (if not already defined) */
.chip-on-dark { display:inline-flex; align-items:center; gap:7px; font-family:var(--font-body); font-size:11px; font-weight:600; letter-spacing:.07em; text-transform:uppercase; color:#a78bfa; background:rgba(167,139,250,.12); border:1px solid rgba(167,139,250,.22); padding:5px 13px; border-radius:100px; margin-bottom:16px; }

/* Responsive */
@media (max-width: 1024px) {
  .aeg-ui-inner { grid-template-columns: 190px 1fr 170px; }
}
@media (max-width: 860px) {
  .aeg-ui-inner { grid-template-columns: 170px 1fr; }
  .aeg-edit-panel { display: none; }
  .aeg-split { grid-template-columns: 1fr; gap: 40px; }
  .aeg-split-reverse { direction: ltr; }
  .aeg-preflight-grid { grid-template-columns: repeat(3,1fr); }
  .aeg-how-track::before { display: none; }
}
@media (max-width: 640px) {
  .aeg-ui-inner { grid-template-columns: 1fr; }
  .aeg-sidebar { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); max-height: 220px; }
  .aeg-how-track { grid-template-columns: 1fr 1fr; gap: 24px; }
  .aeg-preflight-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .aeg-how-track { grid-template-columns: 1fr; }
  .aeg-preflight-grid { grid-template-columns: 1fr; }
}

/* ─── CHANNEL PAGES ─── */

@keyframes chpBubbleIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes chpPushDrop {
  to { transform: translateY(0); }
}

/* ── Channel pages — dark hero text overrides ── */
.page-ch-whatsapp .hero h1,
.page-ch-email .hero h1,
.page-ch-sms .hero h1,
.page-ch-web .hero h1,
.page-ch-mobile .hero h1 { color: #fff; }

.page-ch-whatsapp .hero .hero-sub,
.page-ch-email .hero .hero-sub,
.page-ch-sms .hero .hero-sub,
.page-ch-web .hero .hero-sub,
.page-ch-mobile .hero .hero-sub { color: rgba(255,255,255,.72); }

.page-ch-whatsapp .hero .hero-eyebrow,
.page-ch-email .hero .hero-eyebrow,
.page-ch-sms .hero .hero-eyebrow,
.page-ch-web .hero .hero-eyebrow,
.page-ch-mobile .hero .hero-eyebrow { background: rgba(124,58,237,.18); border-color: rgba(124,58,237,.3); color: #a78bfa; }

/* ── WhatsApp Page ── */
.page-ch-whatsapp .hero { background: var(--dark); }
.chp-wa-demo-wrap { display: flex; justify-content: center; padding: 0 5% 60px; background: var(--dark); }
.chp-wa-chat-demo { background: #0f1a13; border: 1px solid rgba(37,211,102,.2); border-radius: 20px; max-width: 520px; width: 100%; overflow: hidden; box-shadow: 0 0 60px rgba(37,211,102,.06); }
.chp-wa-chat-header { background: #152a1b; padding: 14px 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(37,211,102,.12); }
.chp-wa-dot { width: 10px; height: 10px; border-radius: 50%; background: #25d366; box-shadow: 0 0 8px #25d366; flex-shrink: 0; }
.chp-wa-chat-name { font-family: var(--font-body); font-weight: 600; color: #fff; font-size: 14px; }
.chp-wa-chat-status { font-family: var(--font-body); font-size: 11px; color: #25d366; margin-left: auto; }
.chp-wa-messages { padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; }
.chp-wa-bubble { max-width: 78%; padding: 10px 14px; border-radius: 14px; font-family: var(--font-body); font-size: 13px; line-height: 1.5; opacity: 0; transition: opacity .45s ease, transform .45s cubic-bezier(0.34, 1.56, 0.64, 1); }
.chp-wa-bubble.brand { background: #1a3a22; color: #e8f5e9; border-bottom-left-radius: 4px; align-self: flex-start; transform: translateX(-24px); }
.chp-wa-bubble.user { background: #2a2a3a; color: rgba(255,255,255,.85); border-bottom-right-radius: 4px; align-self: flex-end; transform: translateX(24px); }
.chp-wa-time { font-size: 10px; color: rgba(255,255,255,.3); margin-top: 4px; text-align: right; }
.chp-wa-carousel   { opacity: 0; transform: translateY(16px) scale(0.97); transition: opacity .4s ease, transform .4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.chp-wa-time-sep   { opacity: 0; transform: translateY(10px); transition: opacity .35s ease, transform .35s ease; }
.chp-wa-bubble.chp-wa-show { opacity: 1; transform: translate(0, 0); }
.chp-wa-carousel.chp-wa-show { opacity: 1; transform: translateY(0) scale(1); }
.chp-wa-time-sep.chp-wa-show { opacity: 1; transform: translateY(0); }
/* WA chat time separator */
.chp-wa-time-sep { text-align: center; font-family: var(--font-body); font-size: 10px; font-weight: 600; color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); border-radius: 100px; padding: 3px 12px; align-self: center; letter-spacing: .04em; }

/* WA product carousel */
.chp-wa-carousel { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 6px; scrollbar-width: none; align-self: flex-start; max-width: 92%; }
.chp-wa-carousel::-webkit-scrollbar { display: none; }.chp-wa-carousel-item { flex: 0 0 160px; background: #1a3a22; border: 1px solid rgba(37,211,102,.18); border-radius: 12px; overflow: hidden; }
.chp-wa-carousel-img { height: 90px; background: rgba(37,211,102,.08); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }.chp-carousel-lumora { background: linear-gradient(160deg, #f7c5a0 0%, #e8935a 40%, #c9663a 100%); }
.chp-carousel-lumora::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 22px; height: 52px; background: linear-gradient(180deg, #b5834a 0%, #7a4a20 60%, #5c3010 100%); border-radius: 4px 4px 6px 6px; box-shadow: inset -2px 0 4px rgba(0,0,0,.2); }
.chp-carousel-lumora::after { content: ''; position: absolute; left: 50%; top: calc(50% - 30px); transform: translateX(-50%); width: 10px; height: 20px; background: #d4d4d4; border-radius: 3px 3px 0 0; box-shadow: inset -1px 0 2px rgba(0,0,0,.15); }
.chp-carousel-img-2 { background: linear-gradient(135deg, #1e2a38 0%, #0d1a2a 100%); position: relative; }
.chp-carousel-img-2::after { content: '✨'; position: absolute; font-size: 28px; }
.chp-wa-carousel-body { padding: 10px 12px; }
.chp-wa-carousel-name { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: #e8f5e9; margin-bottom: 3px; line-height: 1.3; }
.chp-wa-carousel-price { font-family: var(--font-body); font-size: 11px; color: rgba(232,245,233,.6); margin-bottom: 8px; }
.chp-wa-carousel-price s { opacity: .5; }
.chp-wa-carousel-btn { font-family: var(--font-body); font-size: 10px; font-weight: 700; text-align: center; padding: 5px 0; border-radius: 6px; background: rgba(37,211,102,.15); color: #25d366; border: 1px solid rgba(37,211,102,.25); cursor: default; }
.chp-btn-green { background: #25d366; color: #0d1a0f; border-color: #25d366; }

.chp-wa-msg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.chp-wa-msg-card { background: var(--bg-white); border: 1px solid var(--g200); border-left: 4px solid #25d366; border-radius: 18px; padding: 28px; transition: box-shadow .22s, transform .22s; }
.chp-wa-msg-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.chp-wa-msg-card h4 { font-family: var(--font-disp); color: var(--text); margin-bottom: 8px; }
.chp-wa-msg-card p { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.chp-wa-ico { width: 40px; height: 40px; border-radius: 10px; background: #dcfce7; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #166534; }
.chp-wa-flow-card { background: var(--dark-3); border: 1px solid rgba(37,211,102,.12); border-radius: 18px; padding: 28px; }
.chp-wa-flow-step { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.chp-wa-flow-step:last-child { border-bottom: none; }
.chp-wa-flow-num { width: 32px; height: 32px; border-radius: 50%; background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 13px; font-weight: 700; color: #25d366; flex-shrink: 0; }
.chp-wa-flow-text { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.75); }
.chp-wa-compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.chp-wa-compliance-card { background: var(--bg-white); border: 1px solid var(--g200); border-radius: 18px; padding: 28px; text-align: center; }
.chp-wa-compliance-card h4 { font-family: var(--font-disp); margin: 12px 0 8px; }
.chp-wa-compliance-card p { font-size: 14px; color: var(--text-muted); }
.chp-wa-compliance-ico { width: 48px; height: 48px; border-radius: 12px; background: #dcfce7; display: flex; align-items: center; justify-content: center; margin: 0 auto; color: #166534; }

/* ── Email Page ── */
.page-ch-email .hero { background: var(--dark); }
.page-ch-email .hero h1, .page-ch-email .hero .hero-eyebrow, .page-ch-email .hero .hero-sub { color: #fff; }

/* Email interactive demo card */
.chp-em-demo-wrap { display: flex; flex-direction: column; align-items: center; padding: 0 5% 60px; background: var(--dark); }
.chp-em-rotate-wrap { display: grid; }
.chp-em-rotate-card { grid-area: 1 / 1; opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; pointer-events: none; display: flex; justify-content: center; }
.chp-em-rotate-card.chp-rc-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.chp-rc-dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
.chp-rc-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.2); transition: background .35s ease, transform .35s ease; }
.chp-rc-dot.chp-rc-dot-active { background: #25d366; transform: scale(1.35); }

.chp-em-client { background: #0f1a13; border: 1px solid rgba(37,211,102,.2); border-radius: 16px; max-width: 540px; width: 100%; overflow: hidden; box-shadow: 0 0 60px rgba(37,211,102,.06); }
.chp-em-client-hdr { background: #152a1b; padding: 12px 18px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(37,211,102,.12); }
.chp-em-client-dots { display: flex; gap: 6px; }
.chp-em-client-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.chp-em-client-dots span:nth-child(1) { background: #ff5f57; }
.chp-em-client-dots span:nth-child(2) { background: #febc2e; }
.chp-em-client-dots span:nth-child(3) { background: #28c840; }
.chp-em-client-title { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,.4); margin: 0 auto; }
.chp-em-preview { padding: 20px; }
.chp-em-field { display: flex; gap: 8px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-family: var(--font-body); font-size: 12px; opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s cubic-bezier(0.34,1.56,0.64,1); }
.chp-em-field-label { color: rgba(255,255,255,.3); min-width: 75px; flex-shrink: 0; }
.chp-em-field-val { color: rgba(255,255,255,.82); }
.chp-em-email-body { padding: 16px 0; display: flex; flex-direction: column; gap: 12px; }
.chp-em-body-line { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.6; opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s cubic-bezier(0.34,1.56,0.64,1); }
.chp-em-product-row { display: flex; gap: 12px; align-items: center; background: rgba(37,211,102,.06); border: 1px solid rgba(37,211,102,.18); border-radius: 10px; padding: 12px; opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s cubic-bezier(0.34,1.56,0.64,1); }
.chp-em-product-thumb { width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0; position: relative; overflow: hidden; }
.chp-lumora-thumb { background: linear-gradient(160deg, #f7c5a0 0%, #e8935a 40%, #c9663a 100%); }
.chp-lumora-thumb::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 10px; height: 24px; background: linear-gradient(180deg, #b5834a 0%, #7a4a20 100%); border-radius: 2px 2px 4px 4px; }
.chp-lumora-thumb::after { content: ''; position: absolute; left: 50%; top: calc(50% - 14px); transform: translateX(-50%); width: 5px; height: 10px; background: #d4d4d4; border-radius: 2px 2px 0 0; }
.chp-em-product-name { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.chp-em-product-tag { font-family: var(--font-body); font-size: 10px; color: rgba(255,255,255,.4); }
.chp-em-cta-row { opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s cubic-bezier(0.34,1.56,0.64,1); }
.chp-em-cta-btn { background: var(--purple); color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 700; padding: 10px 24px; border-radius: 8px; display: inline-block; }
.chp-em-agent-tag { display: flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: 11px; color: #25d366; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(37,211,102,.12); opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease; }
.chp-em-field.chp-em-show, .chp-em-body-line.chp-em-show, .chp-em-product-row.chp-em-show, .chp-em-cta-row.chp-em-show, .chp-em-agent-tag.chp-em-show { opacity: 1; transform: translate(0,0); }

/* Email Skills grid */
.chp-em-skills-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.chp-em-skill-card { background: var(--bg-white); border: 1px solid var(--g200); border-radius: 20px; padding: 28px; transition: box-shadow .22s, transform .22s; }
.chp-em-skill-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.chp-em-skill-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--purple-faint); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--purple); }
.chp-em-skill-badge { display: inline-block; font-family: var(--font-body); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--purple); background: var(--purple-faint); border: 1px solid var(--g300); border-radius: 100px; padding: 3px 10px; margin-bottom: 12px; }
.chp-em-skill-card h4 { font-family: var(--font-disp); color: var(--text); margin-bottom: 8px; }
.chp-em-skill-card p { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* (old stack card — kept for reference, not rendered) */
.chp-em-stack-wrap { display: flex; justify-content: center; padding: 0 5% 60px; background: var(--dark); }.chp-em-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.chp-em-step-card { background: var(--bg-white); border: 1px solid var(--g200); border-left: 4px solid var(--purple); border-radius: 18px; padding: 28px; }
.chp-em-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--purple-faint); border: 1px solid var(--g300); display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 14px; font-weight: 700; color: var(--purple); margin-bottom: 14px; }
.chp-em-step-card h4 { font-family: var(--font-disp); margin-bottom: 8px; }
.chp-em-step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.chp-em-score-panel { background: #0f1a13; border: 1px solid rgba(37,211,102,.2); border-radius: 18px; padding: 28px; box-shadow: 0 0 40px rgba(37,211,102,.05); }
.chp-em-score-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(37,211,102,.08); font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.8); }
.chp-em-score-row:last-child { border-bottom: none; }
.chp-em-check-pass { color: #4ade80; font-size: 16px; font-weight: 700; }
.chp-em-check-warn { color: #fbbf24; font-size: 16px; }.chp-em-audience-label { font-family: var(--font-body); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: rgba(37,211,102,.6); margin-bottom: 4px; }
.chp-em-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.chp-em-pill { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.35); border-radius: 100px; padding: 6px 14px; font-family: var(--font-body); font-size: 12px; color: #4ade80; display: flex; align-items: center; gap: 6px; }
.chp-em-pill-x { cursor: pointer; color: rgba(37,211,102,.5); font-size: 14px; line-height: 1; }
.chp-em-add-seg { background: transparent; border: 1.5px dashed rgba(37,211,102,.35); border-radius: 100px; padding: 6px 14px; font-family: var(--font-body); font-size: 12px; color: rgba(37,211,102,.6); cursor: pointer; }
.chp-em-estreach { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.45); margin-top: 18px; }
.chp-em-estreach-strong { color: #4ade80; font-weight: 700; }

/* ── SMS Page ── */
.page-ch-sms .hero { background: var(--dark); }
.chp-sms-phone-wrap { display: flex; justify-content: center; padding: 0 5% 60px; background: var(--dark); }
.chp-sms-phone { width: 240px; background: #111; border: 2px solid rgba(251,191,36,.2); border-radius: 36px; padding: 44px 12px 28px; position: relative; box-shadow: 0 0 60px rgba(251,191,36,.08); }
.chp-sms-notch { width: 72px; height: 18px; background: #1a1a1a; border-radius: 0 0 10px 10px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
.chp-sms-screen { background: #1a1a1a; border-radius: 10px; padding: 14px 10px; display: flex; flex-direction: column; gap: 8px; }
.chp-sms-msg { background: #1a3a22; color: #e8f5e9; font-family: var(--font-body); font-size: 11px; line-height: 1.5; padding: 8px 12px; border-radius: 12px; border-bottom-left-radius: 3px; max-width: 92%; opacity: 0; transform: translateY(6px); animation: chpBubbleIn .35s ease forwards; }
.chp-sms-msg:nth-child(1) { animation-delay: .3s; }
.chp-sms-msg:nth-child(2) { animation-delay: 1.1s; }
.chp-sms-msg:nth-child(3) { animation-delay: 1.9s; }
.chp-sms-delivered { font-family: var(--font-body); font-size: 9px; color: rgba(251,191,36,.6); text-align: right; margin-top: 4px; }
.chp-sms-roi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.chp-sms-roi-card { background: var(--bg-white); border: 1px solid var(--g200); border-radius: 18px; padding: 28px 24px; text-align: center; position: relative; overflow: hidden; }
.chp-sms-roi-card::after { content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 3px; background: #fbbf24; border-radius: 0 0 4px 4px; }
.chp-sms-roi-num { font-family: var(--font-disp); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; line-height: 1; margin-bottom: 8px; }
.chp-sms-roi-label { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }
.chp-sms-timeline-wrap { background: var(--dark-3); border: 1px solid rgba(251,191,36,.12); border-radius: 18px; padding: 28px 32px; }
.chp-sms-tl-label { font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,.4); display: flex; justify-content: space-between; margin-bottom: 8px; }
.chp-sms-tl-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,.08); position: relative; margin-bottom: 10px; }
.chp-sms-tl-zone { position: absolute; top: 0; height: 100%; width: 24%; left: 62%; background: #fbbf24; border-radius: 4px; box-shadow: 0 0 12px rgba(251,191,36,.4); }
.chp-sms-peak-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.25); border-radius: 8px; padding: 6px 12px; font-family: var(--font-body); font-size: 12px; color: #fbbf24; margin-top: 10px; }
.chp-sms-comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.chp-sms-comp-card { background: var(--bg-white); border: 1px solid var(--g200); border-top: 4px solid #fbbf24; border-radius: 18px; padding: 28px; text-align: center; }
.chp-sms-comp-card h4 { font-family: var(--font-disp); margin: 12px 0 8px; }
.chp-sms-comp-card p { font-size: 14px; color: var(--text-muted); }
.chp-sms-comp-ico { width: 44px; height: 44px; border-radius: 12px; background: #fef3c7; display: flex; align-items: center; justify-content: center; margin: 0 auto; color: #92400e; }

/* ── Web Assistant Page ── */
.page-ch-web .hero { background: var(--dark); }
.chp-web-widget-wrap { display: flex; justify-content: center; padding: 0 5% 60px; background: var(--dark); }
.chp-web-widget { background: #0f1624; border: 1px solid rgba(59,130,246,.25); border-radius: 20px; overflow: hidden; max-width: 360px; width: 100%; box-shadow: 0 0 60px rgba(59,130,246,.1); }
.chp-web-widget-header { background: linear-gradient(135deg, #1e3a8a, #2563eb); padding: 14px 18px; display: flex; align-items: center; gap: 10px; }
.chp-web-widget-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.chp-web-widget-name { font-family: var(--font-body); font-weight: 600; color: #fff; font-size: 14px; }
.chp-web-widget-status { font-family: var(--font-body); font-size: 10px; color: rgba(255,255,255,.65); margin-left: auto; }
.chp-web-messages { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chp-web-bubble { max-width: 84%; padding: 9px 13px; border-radius: 12px; font-family: var(--font-body); font-size: 12px; line-height: 1.5; opacity: 0; transition: opacity .35s ease, transform .38s cubic-bezier(0.34, 1.56, 0.64, 1); }
.chp-web-bubble.ai { background: #1a2d4a; color: rgba(255,255,255,.85); border-bottom-left-radius: 3px; align-self: flex-start; transform: translateX(-16px); }
.chp-web-bubble.user { background: #1d4ed8; color: #fff; border-bottom-right-radius: 3px; align-self: flex-end; transform: translateX(16px); }
.chp-web-bubble.chp-web-show { opacity: 1; transform: translate(0,0); }
/* Web widget carousel */
.chp-web-carousel { opacity: 0; transform: translateY(12px) scale(0.97); transition: opacity .4s ease, transform .4s cubic-bezier(0.34, 1.56, 0.64, 1); display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 6px; scrollbar-width: none; align-self: flex-start; max-width: 96%; }
.chp-web-carousel::-webkit-scrollbar { display: none; }
.chp-web-carousel.chp-web-show { opacity: 1; transform: translateY(0) scale(1); }
.chp-web-carousel-item { flex: 0 0 155px; background: #101c2e; border: 1px solid rgba(59,130,246,.2); border-radius: 12px; overflow: hidden; }
.chp-web-carousel-img { height: 86px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.chp-web-carousel-body { padding: 9px 11px; }
.chp-web-carousel-name { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: #dbeafe; margin-bottom: 3px; line-height: 1.3; }
.chp-web-carousel-price { font-family: var(--font-body); font-size: 11px; color: rgba(219,234,254,.55); margin-bottom: 7px; }
.chp-web-carousel-btn { font-family: var(--font-body); font-size: 10px; font-weight: 700; text-align: center; padding: 5px 0; border-radius: 6px; background: rgba(59,130,246,.15); color: #60a5fa; border: 1px solid rgba(59,130,246,.3); cursor: default; }
/* Web time separator */
.chp-web-time-sep { opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease; text-align: center; font-family: var(--font-body); font-size: 10px; font-weight: 600; color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); border-radius: 100px; padding: 3px 12px; align-self: center; letter-spacing: .04em; }
.chp-web-time-sep.chp-web-show { opacity: 1; transform: translateY(0); }
/* Web carousel product thumbs */
.chp-carousel-web-1 { background: linear-gradient(135deg, #0d2a3a 0%, #0a1a2a 100%); width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.chp-carousel-web-1::before { content: ''; position: absolute; width: 20px; height: 52px; background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%); border-radius: 4px 4px 6px 6px; top: 50%; left: 50%; transform: translate(-50%, -54%); }
.chp-carousel-web-1::after { content: ''; position: absolute; width: 10px; height: 14px; background: #7dd3fc; border-radius: 2px 2px 0 0; top: 50%; left: 50%; transform: translate(-50%, -220%); }
.chp-carousel-web-2 { background: linear-gradient(135deg, #1e1a3a 0%, #0d0a2a 100%); width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.chp-carousel-web-2::before { content: ''; position: absolute; width: 28px; height: 44px; background: linear-gradient(180deg, #c4b5fd 0%, #7c3aed 100%); border-radius: 6px; top: 50%; left: 50%; transform: translate(-50%, -48%); }
.chp-carousel-web-2::after { content: ''; position: absolute; width: 14px; height: 8px; background: #a78bfa; border-radius: 3px; top: 50%; left: 50%; transform: translate(-50%, -280%); }
.page-ch-web .winner-strip { grid-template-columns: repeat(3, 1fr); max-width: 860px; margin-left: auto; margin-right: auto; }
.chp-web-input-bar { padding: 10px 14px; border-top: 1px solid rgba(255,255,255,.06); }
.chp-web-input-mock { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 8px 16px; font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,.3); }
.chp-web-use-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.chp-web-use-card { background: var(--bg-white); border: 1px solid var(--g200); border-left: 4px solid #3b82f6; border-radius: 18px; padding: 28px; transition: box-shadow .22s, transform .22s; }
.chp-web-use-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.chp-web-use-card h4 { font-family: var(--font-disp); margin-bottom: 8px; }
.chp-web-use-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.chp-web-use-ico { width: 40px; height: 40px; border-radius: 10px; background: #dbeafe; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #1d4ed8; }
.chp-web-signal-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.chp-web-signal-item { display: flex; align-items: center; gap: 12px; padding: 10px 16px; background: rgba(59,130,246,.06); border: 1px solid rgba(59,130,246,.15); border-radius: 10px; font-family: var(--font-body); font-size: 13px; color: var(--text); }
.chp-web-signal-dot { width: 8px; height: 8px; border-radius: 50%; background: #3b82f6; flex-shrink: 0; }
.chp-web-int-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.chp-web-int-card { background: var(--bg-white); border: 1px solid var(--g200); border-radius: 18px; padding: 28px; text-align: center; }
.chp-web-int-num { width: 36px; height: 36px; border-radius: 50%; background: #dbeafe; display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 15px; font-weight: 700; color: #1d4ed8; margin: 0 auto 16px; }
.chp-web-int-card h4 { font-family: var(--font-disp); margin-bottom: 8px; }
.chp-web-int-card p { font-size: 14px; color: var(--text-muted); }

/* ── Mobile App Page ── */
.page-ch-mobile .hero { background: var(--dark); }
.chp-mob-phone-wrap { display: flex; justify-content: center; padding: 0 5% 60px; background: var(--dark); }
.chp-mob-phone { width: 228px; background: #0d0a1e; border: 2px solid rgba(244,114,182,.2); border-radius: 40px; padding: 52px 10px 30px; position: relative; box-shadow: 0 0 60px rgba(244,114,182,.08); min-height: 360px; }
.chp-mob-notch { width: 64px; height: 18px; background: #160e2d; border-radius: 0 0 10px 10px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
.chp-mob-screen { background: #12102a; border-radius: 10px; height: 240px; overflow: hidden; position: relative; }
.chp-mob-app-header { padding: 14px 12px; font-family: var(--font-disp); font-size: 12px; font-weight: 700; color: #fff; }
.chp-mob-push { position: absolute; top: 0; left: 0; right: 0; background: rgba(30,20,55,.96); border-radius: 10px 10px 12px 12px; padding: 10px 12px; border: 1px solid rgba(244,114,182,.2); transform: translateY(-100%); animation: chpPushDrop .5s ease 1s forwards; }
.chp-mob-push-header { font-family: var(--font-body); font-size: 9px; color: rgba(244,114,182,.7); margin-bottom: 3px; font-weight: 600; }
.chp-mob-push-body { font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,.85); line-height: 1.4; }
.chp-mob-push-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.chp-mob-push-card { background: var(--bg-white); border: 1px solid var(--g200); border-left: 4px solid #f472b6; border-radius: 18px; padding: 24px; transition: box-shadow .22s, transform .22s; }
.chp-mob-push-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.chp-mob-push-preview { background: #1e0a2e; border: 1px solid rgba(244,114,182,.15); border-radius: 10px; padding: 10px 12px; margin-bottom: 14px; }
.chp-mob-push-preview-hdr { font-family: var(--font-body); font-size: 9px; color: rgba(244,114,182,.6); margin-bottom: 4px; font-weight: 600; }
.chp-mob-push-preview-txt { font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,.7); line-height: 1.4; }
.chp-mob-push-card h4 { font-family: var(--font-disp); font-size: 14px; color: var(--text); margin-bottom: 4px; }
.chp-mob-push-card p { font-size: 12px; color: var(--text-muted); }
.chp-mob-dl-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.chp-mob-dl-card { background: var(--bg-soft); border: 1px solid var(--g200); border-radius: 18px; padding: 28px; text-align: center; }
.chp-mob-dl-num { width: 36px; height: 36px; border-radius: 50%; background: rgba(244,114,182,.12); border: 1px solid rgba(244,114,182,.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 15px; font-weight: 700; color: #f472b6; margin: 0 auto 14px; }
.chp-mob-dl-card h4 { font-family: var(--font-disp); margin-bottom: 8px; }
.chp-mob-dl-card p { font-size: 14px; color: var(--text-muted); }
.chp-mob-inapp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.chp-mob-inapp-card { background: var(--bg-white); border: 1px solid var(--g200); border-radius: 18px; padding: 28px; }
.chp-mob-inapp-mock { background: #0d0a1e; border-radius: 12px; padding: 16px; margin-bottom: 16px; min-height: 80px; display: flex; align-items: center; justify-content: center; }
.chp-mob-inapp-card h4 { font-family: var(--font-disp); margin-bottom: 8px; }
.chp-mob-inapp-card p { font-size: 14px; color: var(--text-muted); }

/* ── Shared split layout ── */
.chp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.chp-split-text h2 { margin-bottom: 16px; }
.chp-split-text p { color: var(--text-muted); line-height: 1.72; margin-bottom: 20px; }
.chp-stat-highlight { font-family: var(--font-disp); font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--purple); font-variant-numeric: tabular-nums; line-height: 1; margin-bottom: 6px; }
.chp-stat-label { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .chp-split { grid-template-columns: 1fr; gap: 40px; }
  .chp-wa-msg-grid, .chp-web-use-grid { grid-template-columns: 1fr; }
  .chp-em-steps, .chp-em-skills-grid, .chp-sms-comp-grid, .chp-web-int-steps, .chp-mob-dl-steps, .chp-mob-inapp-grid { grid-template-columns: 1fr; }
  .chp-mob-push-grid { grid-template-columns: repeat(2, 1fr); }
  .chp-sms-roi-grid { grid-template-columns: repeat(2, 1fr); }
  .chp-wa-compliance-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .chp-sms-roi-grid, .chp-mob-push-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .chp-sms-roi-grid, .chp-mob-push-grid { grid-template-columns: 1fr; }
}


/* ── Mobile in-app mock visuals ── */
.chp-mob-banner-mock { width: 100%; background: rgba(244,114,182,.15); border: 1px solid rgba(244,114,182,.3); border-radius: 8px; padding: 10px 14px; }
.chp-mob-banner-line { height: 8px; background: rgba(244,114,182,.5); border-radius: 4px; width: 65%; }
.chp-mob-modal-mock { background: rgba(244,114,182,.1); border: 1px solid rgba(244,114,182,.25); border-radius: 12px; padding: 16px; width: 80%; margin: 0 auto; }
.chp-mob-modal-line-1 { height: 9px; background: rgba(244,114,182,.5); border-radius: 4px; margin-bottom: 10px; }
.chp-mob-modal-line-2 { height: 7px; background: rgba(255,255,255,.15); border-radius: 4px; width: 75%; }
.chp-mob-tooltip-mock { display: flex; align-items: center; justify-content: flex-end; width: 100%; }
.chp-mob-tooltip-pill { background: rgba(244,114,182,.15); border: 1px solid rgba(244,114,182,.3); border-radius: 8px; padding: 7px 12px; font-family: var(--font-body); font-size: 12px; color: #f472b6; font-weight: 500; }
