/* ================================================
   nuvra.css
   All styles for the Nuvra landing page
   Part of: Nuvra Chat v2
   Last cleaned: 2026-05-24
================================================ */
:root {
  --ink: #0c0c0c;
  --muted: rgba(255,255,255,0.45);
  --muted-2: rgba(255,255,255,0.18);
  --muted-3: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.1);
  --border-bright: rgba(255,255,255,0.22);
  --accent-a: #7b6ef6;
  --accent-b: #4fd8c4;
  --accent-d: #f9a04b;
  --white: #ffffff;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  /* ── Easing hierarchy (Locomotive-level) ── */
  --ease-quick: cubic-bezier(0.22, 1, 0.32, 1);
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-panel: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Native scroll drives the lerp system — keyboard, scrollbar and
   anchor links all work; the container transform adds the glide. */
html { overflow-x: hidden; } /* the lerp itself glides anchor jumps — no scroll-behavior needed */
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: auto;
}

/* ── Lerp scroll container ── */
#scroll-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  will-change: transform;
}

/* ── Particles ── */
#particle-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }


/* ── Navbar ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 0 3rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}
nav.scrolled {
  background: rgba(10,10,15,0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  letter-spacing: -0.5px; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 16px; height: 16px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--muted); text-decoration: none; transition: color 0.2s var(--ease-quick); position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 1px; background: var(--white);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-quick);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn { font-family: var(--font-body); font-size: 14px; font-weight: 500; padding: 9px 22px; border-radius: 8px; text-decoration: none; cursor: pointer; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 7px; border: none; outline: none; }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--border-bright); color: var(--white); background: var(--muted-3); }
.btn-primary { background: var(--accent-a); color: var(--white); position: relative; overflow: hidden; transition: background 0.2s ease, transform 0.4s var(--ease-panel); }
.btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%); transform: translateX(-100%); transition: transform 0.5s ease; }
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { background: #8f82f8; }


/* ── Feature strip ── */
.feature-strip { position:relative; z-index:2; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:rgba(255,255,255,0.025); overflow:hidden; }
.feature-strip-inner { display:flex; animation: marquee 28s linear infinite; width:max-content; }
.feature-strip-item { display:flex; align-items:center; gap:10px; padding:18px 48px; white-space:nowrap; font-size:13px; letter-spacing:0.06em; text-transform:uppercase; color:var(--muted); font-weight:500; }
.feature-strip-item .dot { width:5px; height:5px; border-radius:50%; background:var(--accent-a); flex-shrink:0; }
@keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

@keyframes fadeUp { to { opacity:1; transform:translateY(0) scale(1); } }

/* ── Scroll reveal ── */
.reveal-target {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: opacity 0.9s var(--ease-reveal), transform 0.9s var(--ease-reveal);
}
.reveal-target.revealed { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
.reveal-target:nth-child(2) { transition-delay: 0.1s; }
.col-title { font-size: 9px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }

/* live dot */
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.55); display: inline-block; margin-right: 4px; animation: livePulse 1.8s ease infinite; }
@keyframes livePulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.7);} }

/* ── Responsive ── */
@media (max-width: 1000px) {

  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
}

/* ════════════════════════════════════════════════════
   PHASE 3 — 3D AI AVATAR
════════════════════════════════════════════════════ */
#avatar-root {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}
#avatar-canvas-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  pointer-events: all;
  cursor: pointer;
}
#avatar-canvas-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #7b6ef6, #4fd8c4, #f06aac, #7b6ef6);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: ringHue 4s linear infinite;
}
#avatar-canvas-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #7b6ef6, #4fd8c4, #f06aac, #7b6ef6);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: ringHue 4s linear infinite;
  -webkit-mask: radial-gradient(circle at center, transparent 86px, black 90px);
  mask: radial-gradient(circle at center, transparent 86px, black 90px);
}
#avatar-canvas-wrap:hover::before,
#avatar-canvas-wrap.speaking::before { opacity: 0.75; }
#avatar-canvas-wrap:hover::after,
#avatar-canvas-wrap.speaking::after  { opacity: 1; }
@keyframes ringHue {
  from { filter: blur(10px) hue-rotate(0deg); }
  to   { filter: blur(10px) hue-rotate(360deg); }
}
#avatar-bubble {
  position: absolute;
  bottom: 218px;
  right: 0;
  background: rgba(12,12,22,0.93);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(123,110,246,0.35);
  border-radius: 16px 16px 4px 16px;
  padding: 13px 16px;
  max-width: 230px;
  min-width: 150px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition: opacity 0.35s cubic-bezier(0.22,1,0.36,1), transform 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 8px 40px rgba(123,110,246,0.22);
}
#avatar-bubble.visible { opacity: 1; transform: translateY(0) scale(1); }
#avatar-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px; right: 20px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-top: 8px solid rgba(12,12,22,0.93);
}
#bubble-text {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  font-family: var(--font-body);
}
#bubble-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  height: 14px;
}
.bdot {
  width: 5px; height: 5px; border-radius: 50%;
  animation: bdotBounce 1.1s ease infinite;
}
.bdot:nth-child(1) { background: #7b6ef6; animation-delay: 0s; }
.bdot:nth-child(2) { background: #4fd8c4; animation-delay: 0.18s; }
.bdot:nth-child(3) { background: #f06aac; animation-delay: 0.36s; }
@keyframes bdotBounce {
  0%,60%,100% { transform: translateY(0); opacity:0.5; }
  30%          { transform: translateY(-5px); opacity:1; }
}
#avatar-label {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: center;
  pointer-events: none;
  transition: color 0.3s;
  font-family: var(--font-body);
}
#avatar-canvas-wrap:hover ~ #avatar-label { color: rgba(255,255,255,0.6); }
#avatar-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 16px;
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  justify-content: center;
}
#avatar-wave.active { opacity: 1; }
.wbar {
  width: 3px; border-radius: 3px;
  background: linear-gradient(to top, #7b6ef6, #4fd8c4);
  height: 4px;
  animation: wbPulse 0.8s ease infinite;
}
.wbar:nth-child(1){animation-delay:0s}
.wbar:nth-child(2){animation-delay:0.12s}
.wbar:nth-child(3){animation-delay:0.24s}
.wbar:nth-child(4){animation-delay:0.12s}
.wbar:nth-child(5){animation-delay:0s}
@keyframes wbPulse {
  0%,100%{height:4px} 50%{height:14px}
}
@keyframes avatarEntrance {
  0%  { opacity:0; transform:scale(0.4) translateY(40px); }
  70% { transform:scale(1.06) translateY(-4px); }
  100%{ opacity:1; transform:scale(1) translateY(0); }
}
#avatar-root.ready { animation: avatarEntrance 1s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes miniBreath {
  0%,100% { box-shadow: 0 0 0 0 rgba(123,110,246,0); }
  50%      { box-shadow: 0 0 0 6px rgba(123,110,246,0.22); }
}

/* ════════════════════════════════════════════════════
   PHASE 5 — FEATURES / LOGOS / TESTIMONIALS / PRICING / CTA / FOOTER
════════════════════════════════════════════════════ */

/* ── Cursor glow follower ── */
#cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
    rgba(123,110,246,0.07) 0%,
    rgba(79,216,196,0.03)  40%,
    transparent 70%);
  transition: opacity 0.4s ease;
  will-change: transform;
}

/* ── Shared section chrome ── */
.p5-section {
  position: relative;
  z-index: 2;
  padding: 120px 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.p5-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 1.4rem;
}
.p5-eye-purple { color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }
.p5-eye-teal   { color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }
.p5-eye-pink   { color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }
.p5-eye-amber  { color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }

.p5-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.p5-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.p5-lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

/* ════ FEATURE GRID ════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 4rem;
}
.feat-card {
  background: rgba(21,21,21,0.93);
  border: 1px solid rgba(200,200,200,0.1);
  border-radius: 16px;
  padding: 28px 26px;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feat-card:hover { border-color: rgba(200,210,220,0.25); background: rgba(30,33,37,0.95); transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }
.feat-card.fc-purple::before { background: linear-gradient(90deg,rgba(255,255,255,0.14),transparent); }
.feat-card.fc-teal::before   { background: linear-gradient(90deg,rgba(255,255,255,0.12),transparent); }
.feat-card.fc-pink::before   { background: linear-gradient(90deg,rgba(255,255,255,0.12),transparent); }
.feat-card.fc-amber::before  { background: linear-gradient(90deg,rgba(255,255,255,0.12),transparent); }
.feat-card.fc-blue::before   { background: linear-gradient(90deg,rgba(255,255,255,0.12),transparent); }
.feat-card.fc-green::before  { background: linear-gradient(90deg,rgba(255,255,255,0.12),transparent); }
.feat-card.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease, background 0.3s ease; }

.feat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.fi-purple { background: rgba(255,255,255,0.07); }
.fi-teal   { background: rgba(255,255,255,0.07); }
.fi-pink   { background: rgba(255,255,255,0.07); }
.fi-amber  { background: rgba(255,255,255,0.07); }
.fi-blue   { background: rgba(255,255,255,0.07); }
.fi-green  { background: rgba(255,255,255,0.07); }

.feat-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -0.02em; }
.feat-desc  { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; }
@keyframes tickerMove  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes tickerMoveR { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

/* ════ TESTIMONIALS ════ */
.testi-wrapper {
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.testi-card {
  background: rgba(21,21,21,0.93);
  border: 1px solid rgba(200,200,200,0.1);
  border-radius: 18px;
  padding: 32px 30px;
  min-width: calc(33.333% - 14px);
  width: calc(33.333% - 14px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(123,110,246,0.12);
  pointer-events: none;
}
.testi-card.active-card { border-color: rgba(123,110,246,0.35); }
.testi-stars { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.82); line-height: 1.72; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--white); }
.testi-role { font-size: 11px; color: var(--muted); margin-top: 2px; }
.testi-company { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 1px; }

.testi-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
}
.testi-dot.active { background: var(--accent-a); width: 24px; border-radius: 4px; }
.testi-arrow {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--muted);
  transition: all 0.2s ease;
}
.testi-arrow:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: rgba(20,20,20,0.94);
  border: 1px solid rgba(200,200,200,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.price-card.revealed { opacity: 1; transform: translateY(0); }
.price-card.featured {
  border: 2px solid rgba(220,220,220,0.28);
  background: rgba(32,32,32,0.95);
}
.price-card.featured::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  filter: blur(40px);
  pointer-events: none;
}
.price-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #7b6ef6, #4fd8c4);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 10px 10px;
}
.price-tier { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.price-tier.pt-starter { color: rgba(255,255,255,0.4); }
.price-tier.pt-pro     { color: #a89cf9; }
.price-tier.pt-ent     { color: #4fd8c4; }

.price-amount-wrap { display: flex; align-items: flex-end; gap: 3px; overflow: hidden; min-width: 0; width: 100%; }
.price-currency { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 5px; flex-shrink: 0; }
.price-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 44px); font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  min-width: 0;
  flex: 1 1 auto;
  transition: opacity 0.2s, transform 0.2s;
}
.price-num.switching { opacity: 0; transform: translateY(-6px); }
.price-period { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.price-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.pf-check {
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; flex-shrink: 0; margin-top: 1px;
}
.pf-check.ok  { background: rgba(79,216,196,0.18); color: #4fd8c4; }
.pf-check.no  { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.25); }
.price-feature.dimmed { color: rgba(255,255,255,0.3); }

.price-cta {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  padding: 13px 20px; border-radius: 10px;
  text-align: center; text-decoration: none;
  cursor: pointer; transition: all 0.22s ease;
  display: block; border: none; outline: none;
}
.price-cta.ghost  { background: transparent; color: var(--muted); border: 1px solid rgba(255,255,255,0.14); }
.price-cta.ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.price-cta.primary { background: var(--accent-a); color: var(--white); position: relative; overflow: hidden; }
.price-cta.primary::after { content:''; position:absolute; inset:0; background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,0.13) 50%,transparent 60%); transform:translateX(-100%); transition:transform 0.5s ease; }
.price-cta.primary:hover::after { transform:translateX(100%); }
.price-cta.primary:hover { background: #8f82f8; }
.price-cta.outline { background: transparent; color: #4fd8c4; border: 1px solid rgba(79,216,196,0.4); }
.price-cta.outline:hover { background: rgba(79,216,196,0.1); border-color: rgba(79,216,196,0.7); }

/* ════ CTA BANNER ════ */
.cta-banner {
  position: relative;
  z-index: 2;
  margin: 0 4rem;
  border-radius: 24px;
  padding: 80px 60px;
  overflow: hidden;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  border-radius: 50%;
  background: rgba(123,110,246,0.1);
  filter: blur(80px);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(79,216,196,0.07);
  filter: blur(60px);
  pointer-events: none;
}
.cta-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-b); margin-bottom: 1.5rem;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px,4.5vw,60px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.02;
  color: var(--white); max-width: 680px; margin: 0 auto 1.2rem;
}
.cta-banner-sub {
  font-size: 18px; font-weight: 300; color: var(--muted);
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.cta-email-row {
  display: flex; align-items: center; gap: 10px;
  max-width: 440px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 6px 6px 6px 18px;
  transition: border-color 0.2s;
}
.cta-email-row:focus-within { border-color: rgba(123,110,246,0.6); }
.cta-email-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--font-body); font-size: 14px;
  color: var(--white); placeholder-color: var(--muted);
  min-width: 0;
}
.cta-email-input::placeholder { color: rgba(255,255,255,0.3); }
.cta-submit {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 11px 22px; border-radius: 8px;
  background: var(--accent-a); color: var(--white);
  border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  position: relative; overflow: hidden;
}
.cta-submit:hover { background: #8f82f8; transform: translateY(-1px); }
.cta-banner-note { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 14px; }

/* ════ FOOTER ════ */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 64px 5rem 40px;
  margin-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--muted); cursor: pointer;
  transition: all 0.2s ease; text-decoration: none;
}
.social-btn:hover { background: rgba(123,110,246,0.18); border-color: rgba(123,110,246,0.4); color: #a89cf9; }

.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }
.footer-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #4fd8c4;
  background: rgba(79,216,196,0.08);
  border: 1px solid rgba(79,216,196,0.2);
  border-radius: 99px; padding: 4px 12px;
}
.footer-status-dot { width: 5px; height: 5px; border-radius: 50%; background: #4fd8c4; animation: livePulse 2s ease infinite; }

/* ── Responsive P5 ── */
@media (max-width: 1100px) {
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-banner { margin: 0 2rem; padding: 56px 32px; }
}
@media (max-width: 768px) {
  .p5-section { padding: 72px 1.5rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: calc(100% - 0px); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-legal { flex-wrap: wrap; }
  .cta-banner { margin: 0 1rem; padding: 48px 24px; }
  .cta-email-row { flex-direction: column; align-items: stretch; padding: 12px; }
}

/* ════════════════════════════════════════════════════
   NUVRA CHAT — CLEAN MINIMAL UI
════════════════════════════════════════════════════ */
#nv-chat {
  position: absolute;
  bottom: 226px;
  right: 0;
  z-index: 10;
  width: 300px;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#nv-chat.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header */
#nv-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
#nv-chat-avatar-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b6ef6, #4fd8c4);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
#nv-chat-title-block { flex: 1; }
#nv-chat-name {
  font-size: 13px; font-weight: 600; color: var(--white);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
#nv-chat-status {
  font-size: 10px; color: #4fd8c4;
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
#nv-chat-close {
  width: 24px; height: 24px; border-radius: 6px;
  background: transparent; border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4); font-size: 11px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; line-height: 1;
}
#nv-chat-close:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }

/* Messages */
#nv-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100px;
  max-height: 260px;
  scrollbar-width: none;
}
#nv-chat-messages::-webkit-scrollbar { display: none; }

.nv-msg {
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  animation: nvMsgIn 0.3s ease forwards;
}
@keyframes nvMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nv-msg.nuvra { align-items: flex-start; }
.nv-msg.user  { align-items: flex-end; }

.nv-msg-name {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding: 0 3px;
}

.nv-bubble {
  padding: 9px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.58;
  max-width: 220px;
}
.nv-msg.nuvra .nv-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-radius: 3px 12px 12px 12px;
}
.nv-msg.user .nv-bubble {
  background: rgba(123,110,246,0.18);
  border: 1px solid rgba(123,110,246,0.3);
  color: rgba(255,255,255,0.9);
  border-radius: 12px 3px 12px 12px;
}

/* Typing dots */
.nv-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px 12px 12px 12px;
  width: fit-content;
}
.nv-tdot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: nvTdot 1.1s ease infinite;
}
.nv-tdot:nth-child(2) { animation-delay: 0.16s; }
.nv-tdot:nth-child(3) { animation-delay: 0.32s; }
@keyframes nvTdot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-4px); opacity: 1; }
}

/* Choices */
#nv-chat-options {
  padding: 8px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.nv-opt {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  padding: 9px 13px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  opacity: 0;
  animation: nvMsgIn 0.3s ease forwards;
  line-height: 1.4;
}
.nv-opt:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
}

/* Final CTA buttons */
.nv-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.18s ease;
  opacity: 0;
  animation: nvMsgIn 0.3s ease forwards;
}
.nv-cta.primary {
  background: #7b6ef6;
  color: var(--white);
  border: 1px solid #7b6ef6;
  transition: background 0.2s ease, transform 0.4s var(--ease-panel);
}
.nv-cta.primary:hover { background: #8f82f8; }
.nv-cta.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}
.nv-cta.ghost:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .feat-card, .price-card { opacity: 1 !important; transform: none !important; }
  #cursor-glow { display: none; }
}

/* ════════════════════════════════════════════════════
   L.I.S.A.-STYLE EDITORIAL HERO
════════════════════════════════════════════════════ */

/* Override body bg just for the hero zone */
#hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: #0c0c0c;
}

/* Subtle paper grain texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  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.75' 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 180px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* radial vignette */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 65% 60%, transparent 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 0;
}


/* Floating badge */
.lisa-float-badge {
  position: absolute;
  top: 28%;
  left: -10px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  color: #3a3630;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transform: translateX(-10px);
  animation: lisaFadeUp 0.7s ease forwards 1.5s;
  white-space: nowrap;
}
.lisa-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2a7a5a;
  animation: pulse-dot 2s ease infinite;
}

/* ── Shared keyframes ── */
@keyframes lisaFadeUp { to { opacity: 1; transform: translateY(0) translateX(0); } }

/* ── Responsive ── */
@media (max-width: 960px) {
  .lisa-float-badge { display: none; }
}
/* ════════════════════════════════════════════════════════════════
   LISA-LEVEL UPGRADE — Preloader · Orbs · Grain · Scale · Marquee
   Added: 2026-05-20
════════════════════════════════════════════════════════════════ */

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #070710;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.75s cubic-bezier(0.19,1,0.22,1),
              transform 0.75s cubic-bezier(0.19,1,0.22,1);
}
#preloader.dismiss {
  opacity: 0;
  transform: translateY(-28px);
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.preloader-wordmark {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--white);
  display: flex;
  overflow: hidden;
  line-height: 1;
}
.pl-l {
  display: inline-block;
  transform: translateY(110%);
  animation: plLetterIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes plLetterIn {
  to { transform: translateY(0); }
}
.preloader-bar {
  width: 64px;
  height: 1.5px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: plBarFade 0.3s ease forwards 0.32s;
}
@keyframes plBarFade { to { opacity: 1; } }
.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  border-radius: 2px;
  animation: plBarFill 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.38s;
}
@keyframes plBarFill { to { width: 100%; } }

/* ── Film grain overlay ── */
#page-grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.032;
  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.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 192px 192px;
  mix-blend-mode: screen;
}

/* ── Section headings ── */
.p5-h2 {
  font-size: clamp(28px, 3.2vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}
.cta-banner h2 {
  font-size: clamp(36px, 5.5vw, 76px) !important;
  letter-spacing: -0.04em !important;
}

/* ── Editorial marquee statement ── */
.marquee-statement {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin: 60px 0 0;
  cursor: default;
  user-select: none;
}
.ms-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(72px, 9.5vw, 128px);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: rgba(255,255,255,0.055);
  animation: msScroll 90s linear infinite;
  will-change: transform;
}
.ms-track:hover { animation-play-state: paused; }
.ms-word {
  padding: 0 52px;
  transition: color 0.5s ease;
  display: inline-block;
}
.ms-word:hover { color: rgba(255,255,255,0.2); }
.ms-dot {
  color: var(--accent-a);
  opacity: 0.45;
  font-size: 0.45em;
  display: inline-block;
  padding: 0 8px;
  vertical-align: middle;
}
@keyframes msScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Footer giant wordmark ── */
.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(88px, 18vw, 260px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.85;
  color: rgba(255,255,255,0.04);
  text-align: center;
  padding: 48px 5rem 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
  user-select: none;
  cursor: default;
  transition: color 0.7s ease;
  overflow: hidden;
  position: relative;
}
.footer-wordmark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,15,0.3) 100%);
  pointer-events: none;
}
.footer-wordmark:hover { color: rgba(255,255,255,0.075); }

/* ── Smooth scroll — body background depth ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 140% 60% at 50% -10%, rgba(123,110,246,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 100% 100%, rgba(79,216,196,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Nav logo LISA-style refined ── */
.nav-logo {
  font-size: 21px;
  letter-spacing: -0.04em;
}

/* ── Feature card hover ── */
.feat-card:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 24px 60px rgba(0,0,0,0.5);
}

/* ── Scroll cue refinement ── */
.scroll-cue-lisa span {
  font-size: 9px;
  letter-spacing: 0.18em;
}

/* ── Testimonial cards ── */
.testi-card {
  border-radius: 20px !important;
  background: rgba(255,255,255,0.03) !important;
}

/* ── Price featured card glow ── */
.price-card.featured {
  box-shadow: 0 0 60px rgba(123,110,246,0.12), 0 0 0 1px rgba(123,110,246,0.3);
}

/* ── Skew velocity on ticker ── */
.feature-strip-inner { will-change: transform; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  #preloader     { transition: none; }
  .pl-l          { animation: none; transform: none; }
  .preloader-bar-fill { animation: none; width: 100%; }
  .ms-track      { animation: none; }
  .hero-kpi-badge { animation: none !important; }
}

/* ════════════════════════════════════════
   HERO v2 — AVATAR-FORWARD DARK STAGE
════════════════════════════════════════ */

/* Override old hero layout */
#hero {
  background: #888888 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  min-height: 100vh !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Remove old cream grain + vignette */
#hero::before, #hero::after { display: none !important; }

/* ── Hero stage (contains figure + badges) ── */
.hero-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  padding-top: 100px;
}

/* ── Floating live badge ── */
.lisa-float-badge {
  position: absolute !important;
  top: 140px;
  left: calc(50% - 190px);
  background: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.75) !important;
  animation: lisaFadeUp 0.7s ease forwards 1.6s !important;
}

/* ── Orbiting KPI badges ── */
.hero-kpi-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px 16px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.hkb-1 {
  top: 38%;
  left: calc(50% - 320px);
  animation: kpiFadeIn 0.6s ease forwards 1.8s, kpiFloat 5s ease-in-out infinite 2.4s;
}
.hkb-2 {
  top: 55%;
  right: calc(50% - 320px);
  animation: kpiFadeIn 0.6s ease forwards 2.0s, kpiFloat 6s ease-in-out infinite 2.6s;
  animation-delay: 2s, 2.6s;
}
.hkb-3 {
  top: 32%;
  right: calc(50% - 310px);
  animation: kpiFadeIn 0.6s ease forwards 2.2s, kpiFloat 7s ease-in-out infinite 2.8s;
  animation-delay: 2.2s, 2.8s;
}
@keyframes kpiFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kpiFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-7px); }
}
.hkb-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.hkb-up   { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.hkb-star { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.hkb-bolt { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.hkb-val  { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.hkb-label { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; margin-top: 1px; }


/* ── Scroll cue ── */
.scroll-cue-lisa {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: lisaFadeUp 0.7s ease forwards 2.5s;
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
.scroll-cue-lisa span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
@keyframes scrollLinePulse {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50%      { transform: scaleY(1.15); opacity: 1; }
}


/* ════════════════════════════════════════
   HERO SPLINE — 3D avatar centerpiece
════════════════════════════════════════ */


/* Stage: full width, model sits at bottom, badges float absolute above */
.hero-stage { justify-content: flex-end !important; width: 100% !important; }

/* Spline container: flex item that stretches full width, explicit vh height
   — explicit height gives the iframe a concrete px value to size against */
#hero-spline-wrap {
  align-self: stretch;
  position: relative;
  height: 72vh;
  min-height: 460px;
  flex-shrink: 0;
  overflow: hidden;
  pointer-events: none;
}

/* iframe: bigger than wrap so Spline chrome / watermark is cropped */
#hero-spline {
  position: absolute;
  width: 115%;
  height: 135%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  border: none;
  display: block;
  pointer-events: all;
}

/* Vignette: site bg color at edges, transparent center — hides gray Spline bg */
#hero-spline-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 78% at 50% 44%,
    transparent 38%,
    rgba(136,136,136,0.5) 60%,
    #888888 80%
  );
}

/* Bottom fade: covers "Built with Spline" and Spline bottom UI */
#hero-spline-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 25%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #888888 85%);
}

/* Badges and scroll cue above the Spline layer */
.hero-kpi-badge   { z-index: 3 !important; }
.lisa-float-badge { z-index: 3 !important; }
.scroll-cue-lisa  { z-index: 3 !important; }

@media (max-width: 860px) {
  .hero-kpi-badge { display: none; }
}

/* ── Chat orb (bottom-right widget, replaces Spline iframe) ── */
#chat-orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 40% 35%,
    rgba(123,110,246,0.32) 0%,
    rgba(10,10,20,0.95) 60%);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
#avatar-canvas-wrap:hover #chat-orb,
#avatar-canvas-wrap.speaking #chat-orb {
  background: radial-gradient(circle at 40% 35%,
    rgba(123,110,246,0.48) 0%,
    rgba(10,10,20,0.95) 60%);
}

.chat-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(123,110,246,0.2);
  animation: chatOrbSpin 6s linear infinite;
  pointer-events: none;
}
.chat-orb-ring:nth-child(1) {
  width: 152px; height: 152px;
}
.chat-orb-ring:nth-child(2) {
  width: 110px; height: 110px;
  border-color: rgba(79,216,196,0.18);
  animation-duration: 9s;
  animation-direction: reverse;
}

.chat-orb-symbol {
  font-size: 36px;
  color: var(--accent-a);
  text-shadow: 0 0 28px rgba(123,110,246,0.9), 0 0 60px rgba(123,110,246,0.4);
  animation: chatOrbPulse 2.8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

@keyframes chatOrbSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes chatOrbPulse {
  0%,100% { transform: scale(1);    opacity: 0.8; }
  50%     { transform: scale(1.12); opacity: 1; }
}

/* ════════════════════════════════════════════════════
   RETHEME — Gray · White · Black · Carbon Fiber
   Hero / Spline avatar untouched.
════════════════════════════════════════════════════ */

/* ── Palette ── */
:root {
  --accent-a: #e2e2e2;
  --accent-b: #8a8a8a;
  --accent-d: #b8b8b8;
  --ink:      #888888;
  --border:           rgba(255,255,255,0.10);
  --border-bright:    rgba(255,255,255,0.24);
}

/* ── Body background ── */
body {
  background-color: #888888;
}


/* ── Navbar ── */
nav.scrolled {
  background: rgba(21,21,30,0.88) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #c8c8c8 100%) !important;
  color: #0b0b0b !important;
  box-shadow: 0 0 30px rgba(255,255,255,0.12), inset 0 1px 0 rgba(255,255,255,0.4) !important;
}
.btn-primary:hover { box-shadow: 0 0 50px rgba(255,255,255,0.2) !important; }
.btn-ghost {
  color:        rgba(255,255,255,0.65) !important;
  border-color: rgba(255,255,255,0.18) !important;
}

/* ── Feature strip ── */
.feature-strip {
  background: rgba(7,7,15,0.9) !important;
  border-top:    1px solid rgba(255,255,255,0.07) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}

/* Live dot: light gray pulse */
.live-dot {
  background: #aaaaaa !important;
  box-shadow: 0 0 0 0 rgba(200,200,200,0.4) !important;
}

/* ── Chat widget ── */
#nv-chat {
  background: #131313 !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.92) !important;
}
#nv-chat-header {
  background: #1a1a1a !important;
  border-bottom: 1px solid rgba(255,255,255,0.09) !important;
}
#nv-chat-avatar-dot { background: linear-gradient(135deg, #666666, #c0c0c0) !important; }

/* ── Avatar root (chat trigger orb) ── */
#avatar-root  { filter: grayscale(0); }
#avatar-label { color: rgba(255,255,255,0.3) !important; }
.bdot:nth-child(1) { background: #c0c0c0 !important; }
.bdot:nth-child(2) { background: #888888 !important; }
.bdot:nth-child(3) { background: #a0a0a0 !important; }
.wbar { background: linear-gradient(to top, #666666, #c0c0c0) !important; }
#avatar-bubble {
  background: rgba(16,16,16,0.95) !important;
  border-color: rgba(255,255,255,0.18) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6) !important;
}

/* ── Marquee statement ── */
.ms-word { color: rgba(255,255,255,0.06) !important; }
.ms-dot  { color: rgba(255,255,255,0.04) !important; }

#features-section {
  background: transparent;
}

.p5-eyebrow.p5-eye-purple,
.p5-eyebrow.p5-eye-teal,
.p5-eyebrow.p5-eye-amber { color: #909090 !important; }

.feat-card {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
}
.feat-card:hover {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.22) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.22), 0 20px 60px rgba(0,0,0,0.5) !important;
}
.feat-icon {
  background: rgba(255,255,255,0.08) !important;
  color: #c8c8c8 !important;
}

/* ── Testimonials ── */
#testimonials-section {
  background: transparent;
}
.testi-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
}
.testi-stars { color: #c8c8c8 !important; }

/* ── Pricing ── */
#pricing-section {
  background: transparent;
}

.price-card {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
}
.price-card.featured {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  box-shadow: 0 0 60px rgba(255,255,255,0.05), 0 0 0 1px rgba(255,255,255,0.28) !important;
}
.price-badge { background: rgba(255,255,255,0.1) !important; color: #d0d0d0 !important; }

/* ── CTA banner ── */
.cta-banner {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 0 80px rgba(0,0,0,0.6) !important;
}
.cta-banner-eyebrow { color: #888888 !important; }
.cta-email-input {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
}
.cta-email-input::placeholder { color: rgba(255,255,255,0.3) !important; }
.cta-submit {
  background: #ffffff !important;
  color: #0b0b0b !important;
  box-shadow: 0 0 30px rgba(255,255,255,0.12) !important;
}
.cta-submit:hover { box-shadow: 0 0 50px rgba(255,255,255,0.2) !important; }

/* ── Footer ── */
#site-footer {
  background-color: #080808 !important;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.012) 0, rgba(255,255,255,0.012) 1px,
      transparent 1px, transparent 5px),
    repeating-linear-gradient(-45deg,
      rgba(255,255,255,0.012) 0, rgba(255,255,255,0.012) 1px,
      transparent 1px, transparent 5px) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}
.footer-wordmark {
  color: rgba(255,255,255,0.025) !important;
  -webkit-text-stroke-color: rgba(255,255,255,0.03) !important;
}
.social-btn {
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.4) !important;
}
.social-btn:hover { background: rgba(255,255,255,0.08) !important; color: #ffffff !important; }
.footer-col-title { color: rgba(255,255,255,0.5) !important; }
.footer-links a { color: rgba(255,255,255,0.3) !important; }
.footer-links a:hover { color: #ffffff !important; }
.footer-status-dot { background: #888888 !important; box-shadow: 0 0 6px rgba(160,160,160,0.4) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07) !important; }

/* ── Scroll container background ── */
#scroll-container { background: transparent; }

/* ═══════════════════════════════════════════════════
   FLOATING CARD SYSTEM
═══════════════════════════════════════════════════ */
.section-outer {
  display: flex;
  justify-content: center;
  padding: 22px 0;
  position: relative;
  z-index: 2;
}

/* Float-card entrance animation */
.float-card {
  width: 82%;
  max-width: 1160px;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.88s cubic-bezier(0.16,1,0.3,1), transform 0.88s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.float-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Carbon fibre texture */
.card-carbon {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.055) 0px, rgba(255,255,255,0.055) 2px,
      transparent 2px, transparent 10px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.055) 0px, rgba(255,255,255,0.055) 2px,
      transparent 2px, transparent 10px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.12) 0px, rgba(0,0,0,0.12) 5px,
      transparent 5px, transparent 10px
    ),
    linear-gradient(158deg, #121212 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow:
    0 6px 80px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.4);
}

/* Shiny metallic diagonal stripe overlay */
.card-carbon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.04) 40%,
    rgba(255,255,255,0.06) 44%,
    rgba(255,255,255,0.025) 48%,
    transparent 53%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* Metallic dark grey */
.card-metal {
  background: linear-gradient(148deg,
    #1e1e1e 0%,
    #252525 28%,
    #1a1a1a 58%,
    #222222 100%);
  border: 1px solid rgba(200,210,215,0.15);
  box-shadow:
    0 6px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.28);
}

/* Sheen stripe on metallic cards */
.card-metal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.42) 50%, transparent 95%);
  pointer-events: none;
}

/* Diagonal metallic bands on metal cards */
.card-metal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 0%,
    transparent 30%,
    rgba(255,255,255,0.05) 38%,
    rgba(255,255,255,0.09) 42%,
    rgba(255,255,255,0.04) 46%,
    transparent 52%,
    transparent 72%,
    rgba(255,255,255,0.03) 76%,
    rgba(255,255,255,0.05) 79%,
    rgba(255,255,255,0.02) 82%,
    transparent 87%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: inherit;
}
.float-card .p5-section    { max-width: 100%; margin: 0; padding: 64px 52px; background: transparent !important; background-image: none !important; }
.float-card .cta-banner    { margin: 0 !important; border-radius: 0 !important; border: none !important; box-shadow: none !important; background: transparent !important; }

/* ── Problem section ── */
#problem-section { padding: 60px 56px; }
.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
}
.problem-pill {
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.25s, color 0.25s;
}
.problem-pill:hover { border-color: rgba(240,106,172,0.5); color: #f06aac; }
.problem-lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
  margin: 1.2rem 0 0;
}

/* ── Audience / use-case section ── */
#audience-section { padding: 60px 56px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 3rem;
}
.audience-card {
  background: rgba(21,21,21,0.93);
  border: 1px solid rgba(200,200,200,0.1);
  border-radius: 16px;
  padding: 24px 22px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.audience-card:hover { border-color: rgba(200,210,220,0.25); background: rgba(30,33,37,0.95); }
.audience-role {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.audience-pain {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.audience-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.at-purple { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.12); }
.at-teal   { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.12); }
.at-amber  { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.12); }
.at-pink   { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.12); }

@media (max-width: 900px) {
  .float-card { width: 94%; }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
  #problem-section, #audience-section { padding: 40px 28px; }
}
