/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

  /* 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: 60px; } }

/* ─── 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: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  width: 18px; height: 18px;
  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; }


/* 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; }
.dd-item-title {
  font-size: 13.5px; font-weight: 600; color: var(--text);
  font-family: var(--font-body); transition: color .15s;
  line-height: 1.3;
}
.dd-item-desc {
  font-size: 12px; color: var(--text-muted); margin-top: 2px;
  font-family: var(--font-body); line-height: 1.45;
}


/* 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; }

/* 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 — glass surface */
.hero-card-wrap {
  position: relative; max-width: 720px; margin: 0 auto;
}
.hero-glass-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(124,58,237,.15);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(24px) saturate(180%);
  /* true glassmorphism: inner refraction edge */
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 16px 48px rgba(109,40,217,.12);
}

/* Purple orb icon in card */
.hero-orb {
  width: 48px; height: 48px; border-radius: 14px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--purple) 0%, #9333ea 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(124,58,237,.35);
}
.hero-orb svg { width: 22px; height: 22px; color: #fff; }
.hero-card-label {
  text-align: center; font-size: 11px; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 24px;
}

.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dash-cell {
  background: var(--g100); border: 1px solid var(--g200);
  border-radius: 12px; padding: 16px;
  transition: border-color .2s;
}
.dash-cell:hover { border-color: var(--g300); }
.dash-cell-label { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; font-family: var(--font-body); }
.dash-cell-val {
  font-family: var(--font-disp); font-size: 22px; font-weight: 700;
  color: var(--text); letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}

/* 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: 7px; height: 7px; border-radius: 50%;
  background: #10b981; animation: cdPulse 1.8s infinite;
  margin-right: 8px; display: inline-block;
}
.live-label { font-size: 12.5px; color: var(--text-muted); 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 { text-align: center; max-width: 540px; margin: 0 auto 56px; }
.channels-header h2 { margin-top: 14px; }
.channels-header p { color: var(--text-muted); font-size: 16px; margin-top: 12px; }

.ch-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.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-card {
  background: #fff; border-radius: 16px; padding: 26px;
  border: 1px solid var(--g200); transition: all .22s;
}
.ch-card:hover {
  border-color: var(--g300);
  box-shadow: 0 0 0 3px var(--purple-faint), var(--shadow-sm);
  transform: translateY(-3px);
}
.ch-ico-w {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 15px;
}
.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-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; }
.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 {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
}
.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 {
  position: absolute; width: 160px; height: 160px;
  top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .06;
}
.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-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.8fr 1fr 1fr 1fr; gap: 48px;
  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: 1.5fr 1fr 1fr; }
}

/* ── 960px — Tablet ── */
@media (max-width: 960px) {
  .dash-grid { grid-template-columns: 1fr 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; }
  .ind-panel.active { grid-template-columns: 1fr; }
  .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; }
  .platform { padding: 72px 0; }
  .ai-section { padding: 72px 0; }
}

/* ── 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; }
  .nav-links, .nav-right { display: none; }
  .nav.nav-open {
    height: auto;
    flex-wrap: wrap;
    padding-bottom: 12px;
    align-items: flex-start;
  }
  .nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(124,58,237,.1);
    border-radius: 14px;
    padding: 8px;
    box-shadow: var(--shadow-sm);
    margin-top: 4px;
  }
  .nav.nav-open .nav-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 0 4px;
    margin-top: 4px;
  }
  .nav.nav-open .nav-right .btn,
  .nav.nav-open .nav-right .btn-ghost-light,
  .nav.nav-open .nav-right a { width: 100%; text-align: center; justify-content: center; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a.nav-flat,
  .nav-dd-trigger { width: 100%; justify-content: space-between; }
  .nav-dd-panel {
    position: static;
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: none;
    box-shadow: none;
    padding-top: 4px;
    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-grid { grid-template-columns: 1fr; }
  .btn-demo-tip { display: none; }

  /* Hero */
  .hero { min-height: unset; padding-top: 60px; }
  .hero-inner { padding: 40px 5% 48px; }
  .hero-aura { width: 100%; height: 300px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions a, .hero-actions button { width: 100%; max-width: 320px; justify-content: center; }

  /* 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; }


  /* 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-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: center; }
  .cta-btns a { width: 100%; max-width: 300px; 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-wrap {
  overflow-x: auto; border-radius: 20px;
  border: 1.5px solid var(--g200); background: #fff;
  box-shadow: 0 8px 32px rgba(109,40,217,.1);
}
.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 */
.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); }
.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); }

/* Compare page responsive */
@media(max-width:768px) {
  .matrix-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .winner-strip { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .matrix-wrap { border-radius: 14px; }
  .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%;
}

.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; }
.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 {
  text-align: center; max-width: 600px; margin: 0 auto; padding: 0 5%;
}
.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-box{background:var(--g100);border:1px solid var(--g200);border-radius:10px;padding:14px}
.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,
.nav-flat:focus-visible,
.nav-dd-trigger:focus-visible,
.ind-tab:focus-visible,
.tab-btn: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(28px, 8vw, 36px); }
  h2 { font-size: clamp(22px, 6vw, 30px); }
  .hero-inner { padding: 24px 4% 32px; }
  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%; }
}

/* ─────────────────────────────────────────────
   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 {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto; padding: 0 5%;
}
.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-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;}
@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: 100px 5% 40px; }
  .page-ai-assistant .hero .hero-aura { width: 100%; height: 300px; }
  .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: center; }
  .page-ai-assistant .hero-actions a { width: 100%; max-width: 320px; 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: 100px 5% 40px; }
  .page-agentic-skills .hero .hero-aura { width: 100%; height: 300px; }
  .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: center; }
  .page-agentic-skills .hero-actions a { width: 100%; max-width: 320px; justify-content: center; }
  .page-agentic-skills section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .page-agentic-skills .hero h1 { font-size: clamp(26px, 8vw, 40px); }
}

/* ── 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 {
  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: 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: 80px 5% 36px; }
}
