/*
Theme Name: LedgerLeads
Theme URI: https://ledgerleads.co.uk
Author: Deborah Jepkemoi
Author URI: https://deborahjepkemoi.webflow.io
Description: LedgerLeads — AI Growth Team for Accounting Firms. Converted from HTML/CSS/JS to WordPress.
Version: 1.0
License: GNU General Public License v2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ledgerleads
*/

/* ═══════════════════════════════════════════
   LEDGERLEADS — styles.css (merged)
   Futura / Josefin Sans fallback
═══════════════════════════════════════════ */

:root {
  --f: "Futura", "Futura PT", "Century Gothic", "Josefin Sans", sans-serif;
  --navy:  #14213D;
  --navy2: #0d1829;
  --gold:  #FCA311;
  --gold2: #e8940f;
  --grey:  #E5E5E5;
  --white: #FFFFFF;
  --off:   #F6F5F2;
  --off2:  #EDECEA;
  --text:  #14213D;
  --muted: rgba(20,33,61,.5);
  --soft:  rgba(20,33,61,.72);
  --cont:  1200px;
  --ease:  cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; }

.container {
  width: min(var(--cont), calc(100% - 48px));
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CURSOR GLOW
═══════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,163,17,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: opacity .3s;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(20,33,61,.08), 0 8px 32px rgba(0,0,0,.06);
}
.nav-shell {
  min-height: 84px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.logo-img { height: 36px; width: auto; }

.desktop-nav { display: flex; gap: 32px; align-items: center; }
.desktop-nav a {
  color: var(--navy);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  position: relative; padding-bottom: 3px;
  transition: color .2s;
}
.desktop-nav a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.desktop-nav a:hover { color: var(--gold); }
.desktop-nav a:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--f);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  transition: all .22s var(--ease);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.13);
  transform: translateX(-110%) skewX(-12deg);
  transition: transform .4s var(--ease);
}
.btn:hover::after { transform: translateX(110%) skewX(-12deg); }

.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 24px rgba(252,163,17,.35);
}
.btn-gold:hover {
  background: var(--gold2);
  box-shadow: 0 8px 32px rgba(252,163,17,.5);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy); background: transparent;
}
.btn-outline:hover {
  background: var(--navy); color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.btn-white:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,.22);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  padding: 140px 0 0;
  background: var(--white);
  display: flex; align-items: stretch;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 72% 20%, rgba(252,163,17,.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(20,33,61,.06) 0%, transparent 60%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse { from { opacity:.6 } to { opacity:1 } }

.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(20,33,61,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,33,61,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: flex-end;
  position: relative; z-index: 2;
}
.hero-copy { padding-bottom: 80px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--gold);
}

.hero h1 {
  font-size: clamp(3.4rem, 6.5vw, 5.8rem);
  line-height: .92; letter-spacing: -.04em;
  color: var(--navy); font-weight: 700;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  margin-top: 28px; max-width: 540px;
  font-size: 1.05rem; line-height: 1.8; color: var(--soft);
}
.hero-actions {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px;
}
.hero-proof {
  margin-top: 44px; display: flex; gap: 0;
  border-top: 1px solid rgba(20,33,61,.1);
  padding-top: 28px;
}
.proof-item {
  display: flex; flex-direction: column; gap: 3px;
  padding-right: 32px;
  border-right: 1px solid rgba(20,33,61,.1);
  margin-right: 32px;
}
.proof-item:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.proof-item strong { font-size: 1.5rem; color: var(--navy); line-height: 1; }
.proof-item span {
  color: var(--muted); font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
}

.hero-visual { position: relative; align-self: flex-end; }
.agents-stage {
  position: relative; min-height: 620px;
  display: flex; align-items: flex-end; justify-content: center;
}
.agents-stage::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 340px; height: 120px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(252,163,17,.18) 0%, transparent 70%);
  filter: blur(20px);
}

.agent-fig {
  position: absolute; bottom: 0;
  display: flex; flex-direction: column; align-items: center;
  transition: filter .3s;
}
.agent-fig:hover { filter: brightness(1.04); }
.agent-fig img { object-fit: contain; object-position: bottom center; display: block; }
.fig-lucy    { left: 0;    z-index: 2; } .fig-lucy    img { width: 230px; }
.fig-hannah  { left: 50%;  transform: translateX(-50%); z-index: 4; } .fig-hannah  img { width: 260px; }
.fig-michelle{ right: 0;   z-index: 3; } .fig-michelle img { width: 235px; }

.agent-chip {
  position: absolute;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(20,33,61,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 10px 16px;
  display: flex; flex-direction: column; gap: 2px;
  backdrop-filter: blur(8px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.agent-chip:hover { box-shadow: 0 16px 40px rgba(0,0,0,.16); }
.chip-name {
  color: var(--navy); font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.chip-role {
  color: var(--gold); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.chip-dot {
  display: flex; align-items: center; gap: 5px;
  margin-top: 5px; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #2D9E5F;
}
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #2D9E5F; animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:.2 } }

.chip-lucy    { top: 120px; left: 16px; }
.chip-hannah  { top: 60px; left: 50%; transform: translateX(-50%); }
.chip-michelle{ top: 100px; right: 8px; }

.status-badge {
  position: absolute; top: 20px; right: 16px; z-index: 10;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(20,33,61,.1);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  padding: 16px 20px; min-width: 180px;
  backdrop-filter: blur(12px);
}
.status-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.status-row + .status-row { margin-top: 10px; }
.status-row strong { color: var(--navy); font-size: .95rem; }
.status-row span   { color: var(--muted); font-size: .8rem; }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--navy); padding: 28px 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(252,163,17,.06), transparent);
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { from { transform:translateX(-100%) } to { transform:translateX(100%) } }

.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; z-index: 1;
}
.stat-card {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 12px 16px;
  transition: background .25s;
}
.stat-card:hover { background: rgba(252,163,17,.06); }
.stat-card:last-child { border-right: 0; }
.stat-val {
  display: block; font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label {
  display: block; margin-top: 8px; font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SECTIONS — SHARED
═══════════════════════════════════════════ */
.section { padding: 112px 0; }

.section-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
}
.section-kicker::before { content: ''; width: 28px; height: 2px; background: var(--gold); }

.section-heading { margin-bottom: 56px; }
.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02; letter-spacing: -.03em; color: var(--navy);
}
.section-heading h2 em { font-style: normal; color: var(--gold); }

/* ═══════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════ */
.problem-section { background: var(--off); }
.two-col {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: 64px; align-items: start;
}
.section-copy h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02; letter-spacing: -.03em; color: var(--navy);
}
.section-copy p {
  margin-top: 18px; font-size: 1rem;
  line-height: 1.85; color: var(--soft);
}
.problem-list { display: grid; gap: 12px; }
.problem-item {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 16px; align-items: start;
  background: var(--white);
  border: 1px solid rgba(20,33,61,.06);
  padding: 18px 20px;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.problem-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--gold);
  transition: width .3s var(--ease);
}
.problem-item:hover {
  border-color: rgba(252,163,17,.4);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.problem-item:hover::before { width: 3px; }
.problem-item span {
  color: var(--gold); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding-top: 2px;
}
.problem-item p { color: var(--navy); font-size: .95rem; line-height: 1.6; }

/* ═══════════════════════════════════════════
   AGENTS
═══════════════════════════════════════════ */
.agents-section { background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(20,33,61,.08);
  overflow: hidden; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.team-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(252,163,17,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,.12);
  border-color: rgba(252,163,17,.3);
}
.team-card:hover::after { opacity: 1; }

.team-card-highlight { border-color: rgba(252,163,17,.35); }
.team-card-highlight::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); z-index: 1;
}

.team-portrait {
  background: linear-gradient(to bottom, rgba(229,229,229,.3), rgba(255,255,255,1));
  min-height: 300px; padding: 24px 20px 0;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
}
.team-portrait::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(252,163,17,.12) 0%, transparent 60%);
}
.team-portrait img {
  max-height: 300px; width: auto;
  position: relative; z-index: 1;
  transition: transform .4s var(--ease);
}
.team-card:hover .team-portrait img { transform: scale(1.04) translateY(-4px); }

.team-body { padding: 28px 26px 32px; }
.team-num {
  color: var(--gold); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.team-body h3 {
  margin-top: 10px; font-size: 1.9rem;
  color: var(--navy); letter-spacing: -.02em;
}
.team-role {
  margin-top: 6px; color: var(--gold); font-size: .78rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.team-text {
  margin-top: 16px; color: var(--soft);
  line-height: 1.8; font-size: .95rem;
}
.team-list {
  margin-top: 20px; padding-left: 0; list-style: none;
  display: grid; gap: 8px;
}
.team-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); font-size: .88rem;
}
.team-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   WHY
═══════════════════════════════════════════ */
.why-section { background: var(--off); }
.why-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(20,33,61,.06);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,.09);
  border-color: rgba(252,163,17,.25);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card-num {
  color: var(--gold); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.why-card h3 { margin-top: 14px; font-size: 1.3rem; color: var(--navy); }
.why-card p  { margin-top: 12px; color: var(--soft); line-height: 1.8; font-size: .93rem; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section { background: var(--white); }
.narrow { max-width: 860px; }
.faq-list { margin-top: 40px; border-top: 1px solid rgba(20,33,61,.1); }
.faq-item { border-bottom: 1px solid rgba(20,33,61,.1); }
.faq-trigger {
  width: 100%; background: 0; border: 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 26px 0; text-align: left;
  color: var(--navy); font-size: 1rem; font-weight: 600;
  transition: color .2s;
}
.faq-trigger:hover { color: var(--gold); }
.faq-icon {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(20,33,61,.2); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; font-size: 1.2rem;
  transition: transform .3s var(--ease), background .25s, border-color .25s, color .25s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold); border-color: var(--gold); color: var(--navy);
}
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-body { max-height: 280px; }
.faq-body p { padding: 0 0 24px; color: var(--soft); line-height: 1.85; font-size: .95rem; }

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta-section {
  background: var(--navy2); padding: 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: 'LEDGERLEADS';
  position: absolute; font-family: var(--f);
  font-size: 220px; font-weight: 700;
  color: rgba(255,255,255,.025); letter-spacing: 6px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none;
}
.cta-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(252,163,17,.08), transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(20,33,61,.4), transparent 50%);
}
.cta-box {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  padding: 88px 0; position: relative; z-index: 1;
}
.cta-kicker { color: var(--gold); }
.cta-box h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1; letter-spacing: -.03em; color: var(--white);
}
.cta-box h2 em { font-style: normal; color: var(--gold); }
.cta-box > div:first-child p {
  margin-top: 18px; font-size: 1rem;
  color: rgba(255,255,255,.6); line-height: 1.8; max-width: 640px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-top {
  padding: 52px 0 40px;
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.logo-white { filter: brightness(0) invert(1); }
.footer-tagline {
  margin-top: 14px; max-width: 380px;
  font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.5);
}
.footer-agents { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-agent  { display: flex; flex-direction: column; gap: 5px; }
.footer-agent strong {
  color: var(--white); font-size: .9rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.footer-agent span { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════
   REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════
   ENGAGE — Choice modal + Hannah chat + Michelle orb
═══════════════════════════════════════════ */
.ll-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(10, 18, 35, 0.78);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s cubic-bezier(.25,.46,.45,.94);
}
.ll-overlay.open { opacity: 1; pointer-events: all; }

.ll-modal {
  background: #fff;
  width: 100%;
  display: flex; flex-direction: column;
  position: relative;
  transform: translateY(22px) scale(.97);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  box-shadow: 0 48px 120px rgba(0,0,0,.28), 0 0 0 1px rgba(20,33,61,.06);
  overflow: hidden;
}
.ll-overlay.open .ll-modal { transform: none; }

.ll-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(20,33,61,.07); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--navy);
  transition: background .2s, transform .2s;
}
.ll-close:hover { background: rgba(20,33,61,.14); transform: rotate(90deg); }

#choiceModal .ll-modal { max-width: 540px; padding: 48px 40px 40px; text-align: center; }
.choice-logo { height: 32px; width: auto; margin: 0 auto 24px; display: block; }
.choice-title { font-family: var(--f); font-size: 1.5rem; font-weight: 700; color: var(--navy); letter-spacing: -.03em; margin-bottom: 8px; }
.choice-sub { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 36px; }
.choice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.choice-card {
  border: 1.5px solid rgba(20,33,61,.1); padding: 28px 20px 24px; cursor: pointer; background: #fff;
  transition: all .25s cubic-bezier(.25,.46,.45,.94); position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
}
.choice-card::before { content: ''; position: absolute; inset: 0; background: var(--gold); opacity: 0; transition: opacity .25s; }
.choice-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(252,163,17,.18); }
.choice-card:hover::before { opacity: .05; }
.choice-card-avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex-shrink: 0; position: relative; z-index: 1; border: 2.5px solid rgba(252,163,17,.3); background: var(--off); }
.choice-card-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.choice-card-name { font-family: var(--f); font-size: 1.1rem; font-weight: 700; color: var(--navy); letter-spacing: .02em; position: relative; z-index: 1; }
.choice-card-tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); position: relative; z-index: 1; }
.choice-card-desc { font-size: .82rem; color: var(--soft); line-height: 1.5; position: relative; z-index: 1; }
.choice-card-badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; background: rgba(252,163,17,.1); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); position: relative; z-index: 1; margin-top: 2px; }
.choice-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: #2D9E5F; animation: blink 2s infinite; }
.choice-note { font-size: .76rem; color: rgba(20,33,61,.35); }

#hannahModal .ll-modal { max-width: 440px; max-height: 88vh; }
.chat-hdr { padding: 16px 20px; border-bottom: 1px solid rgba(20,33,61,.07); display: flex; align-items: center; gap: 12px; flex-shrink: 0; background: var(--navy); }
.chat-hdr-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(252,163,17,.5); }
.chat-hdr-avatar img { width:100%; height:100%; object-fit:cover; object-position:top; }
.chat-hdr-name { font-family:var(--f); font-size:.9rem; font-weight:700; color:#fff; }
.chat-hdr-status { display:flex; align-items:center; gap:5px; font-size:.7rem; color:rgba(255,255,255,.6); margin-top:2px; }
.chat-hdr-dot { width:5px; height:5px; border-radius:50%; background:#2D9E5F; animation:blink 2s infinite; }
.chat-hdr-close { margin-left:auto; width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,.1); border:0; cursor:pointer; display:flex; align-items:center; justify-content:center; color:#fff; font-size:.9rem; flex-shrink:0; transition: background .2s, transform .2s; }
.chat-hdr-close:hover { background:rgba(255,255,255,.2); transform:rotate(90deg); }
.chat-messages { flex: 1; overflow-y: auto; padding: 18px 16px 8px; display: flex; flex-direction: column; gap: 12px; min-height: 280px; max-height: 380px; background: #f8f7f5; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(20,33,61,.1); border-radius: 2px; }
.cm { display: flex; gap: 8px; align-items: flex-end; animation: msgPop .22s ease both; }
@keyframes msgPop { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }
.cm.user { flex-direction: row-reverse; }
.cm-avatar { width: 26px; height: 26px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--off); }
.cm-avatar img { width:100%; height:100%; object-fit:cover; object-position:top; }
.cm-bubble { max-width: 78%; padding: 10px 13px; font-size: .86rem; line-height: 1.55; }
.cm.agent .cm-bubble { background: #fff; color: var(--navy); border-radius: 14px 14px 14px 3px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.cm.user .cm-bubble { background: var(--navy); color: #fff; border-radius: 14px 14px 3px 14px; }
.cm-time { font-size: .62rem; color: var(--muted); margin-top: 3px; }
.cm.user .cm-time { text-align: right; color: rgba(255,255,255,.5); }
.cm-read { color: var(--gold); font-size: .68rem; }
.typing-msg { display:flex; gap:8px; align-items:flex-end; }
.typing-dots { background:#fff; padding:12px 14px; border-radius:14px 14px 14px 3px; display:flex; gap:4px; align-items:center; box-shadow:0 2px 8px rgba(0,0,0,.06); }
.typing-dots span { width:6px; height:6px; border-radius:50%; background:rgba(20,33,61,.25); animation:typeDot 1.1s infinite ease-in-out; }
.typing-dots span:nth-child(2){animation-delay:.2s} .typing-dots span:nth-child(3){animation-delay:.4s}
@keyframes typeDot{0%,60%,100%{transform:translateY(0);opacity:.4}30%{transform:translateY(-5px);opacity:1}}
.chat-slot-picker { background: #fff; border: 1px solid rgba(20,33,61,.08); padding: 14px; margin: 4px 0; box-shadow: 0 2px 12px rgba(0,0,0,.07); animation: msgPop .25s ease both; }
.slot-picker-title { font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.slot-date-row { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:12px; }
.slot-day-btn { padding:7px 12px; border:1.5px solid rgba(20,33,61,.1); background:#fff; font-family:var(--f); font-size:.75rem; font-weight:600; color:var(--navy); cursor:pointer; transition:all .18s; }
.slot-day-btn:hover,.slot-day-btn.sel { background:var(--navy); border-color:var(--navy); color:#fff; }
.slot-time-row { display:flex; flex-wrap:wrap; gap:7px; }
.slot-time-btn { padding:7px 12px; border:1.5px solid rgba(20,33,61,.1); background:#fff; font-family:var(--f); font-size:.75rem; font-weight:600; color:var(--navy); cursor:pointer; transition:all .18s; }
.slot-time-btn:hover,.slot-time-btn.sel { background:var(--gold); border-color:var(--gold); color:var(--navy); }
.slot-confirm-btn { margin-top:12px; width:100%; padding:10px; background:var(--gold); border:0; font-family:var(--f); font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--navy); cursor:pointer; transition:background .2s; }
.slot-confirm-btn:hover { background:#e8940f; }
.slot-confirm-btn:disabled { opacity:.4; cursor:not-allowed; }
.chat-confirm-card { background: var(--navy); padding: 16px; border-radius: 14px; color: #fff; animation: msgPop .3s ease both; }
.chat-confirm-card h4 { font-family:var(--f); font-size:1rem; font-weight:700; margin-bottom:10px; }
.chat-confirm-row { display:flex; justify-content:space-between; padding:5px 0; border-bottom:1px solid rgba(255,255,255,.1); font-size:.82rem; }
.chat-confirm-row:last-child { border-bottom:0; }
.chat-confirm-row span:first-child { color:rgba(255,255,255,.5); }
.chat-confirm-row span:last-child { color:#fff; font-weight:600; }
.chat-qrs { display:flex; flex-wrap:wrap; gap:7px; padding:10px 16px 8px; flex-shrink:0; background:#f8f7f5; border-top:1px solid rgba(20,33,61,.05); }
.chat-qr-btn { padding:7px 14px; border:1.5px solid rgba(20,33,61,.12); background:#fff; font-family:var(--f); font-size:.76rem; font-weight:600; color:var(--navy); cursor:pointer; transition:all .18s; white-space:nowrap; }
.chat-qr-btn:hover { border-color:var(--gold); background:rgba(252,163,17,.06); }
.chat-input-bar { display:flex; gap:0; flex-shrink:0; border-top:1px solid rgba(20,33,61,.08); }
.chat-inp { flex:1; padding:13px 16px; border:0; font-family:var(--f); font-size:.88rem; color:var(--navy); background:#fff; outline:none; }
.chat-inp::placeholder { color:rgba(20,33,61,.3); }
.chat-send-btn { width:52px; background:var(--gold); border:0; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--navy); transition:background .2s; }
.chat-send-btn:hover { background:#e8940f; }

#michelleModal .ll-modal { max-width: 420px; background: linear-gradient(160deg, #0d1829 0%, #14213D 50%, #0a1520 100%); }
.orb-hdr { padding: 16px 20px 0; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.orb-logo { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: .7; }
.orb-close { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.1); border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .9rem; transition: background .2s, transform .2s; }
.orb-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
.orb-body { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 20px 28px 28px; gap: 0; }
.orb-wrap { position: relative; width: 160px; height: 160px; margin-bottom: 20px; flex-shrink: 0; }
.orb-ring { position: absolute; inset: -16px; border-radius: 50%; border: 1px solid rgba(130, 200, 255, .15); animation: orbRingPulse 3s ease-in-out infinite; opacity: 0; }
.orb-ring:nth-child(2) { inset: -28px; animation-delay: .8s; }
.orb-ring:nth-child(3) { inset: -42px; animation-delay: 1.6s; }
@keyframes orbRingPulse { 0%{opacity:0;transform:scale(.92);} 50%{opacity:.6;} 100%{opacity:0;transform:scale(1.08);} }
.orb-ring.speaking { border-color: rgba(252,163,17,.4); }
.orb-sphere { position: absolute; inset: 0; border-radius: 50%; background-size: 160%; background-position: center 8%; background-repeat: no-repeat; background-color: #0d1829; box-shadow: 0 0 60px rgba(100,180,255,.35), 0 0 120px rgba(60,120,220,.2), inset 0 0 40px rgba(255,255,255,.1); overflow: hidden; cursor: pointer; transition: transform .3s; }
.orb-sphere::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 40% 30%, rgba(100,180,255,.18) 0%, rgba(20,60,160,.38) 55%, rgba(10,30,100,.62) 100%); pointer-events: none; z-index: 1; }
.orb-sphere:hover { transform: scale(1.04); }
.orb-swirl { position: absolute; inset: -20%; border-radius: 50%; z-index: 2; background: conic-gradient(from 0deg, rgba(255,255,255,.0), rgba(200,240,255,.25), rgba(255,255,255,.0), rgba(130,200,255,.2), rgba(255,255,255,.0)); animation: orbSwirl 6s linear infinite; }
@keyframes orbSwirl { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.orb-swirl2 { position: absolute; inset: -10%; border-radius: 50%; z-index: 2; background: conic-gradient(from 180deg, rgba(252,163,17,.0), rgba(252,163,17,.12), rgba(255,255,255,.0), rgba(252,163,17,.08), rgba(252,163,17,.0)); animation: orbSwirl 9s linear infinite reverse; }
.orb-shine { position: absolute; top: 12%; left: 18%; width: 32%; height: 24%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.55) 0%, transparent 70%); pointer-events: none; z-index: 3; }
.orb-wave { position: absolute; bottom: 22%; left: 50%; transform: translateX(-50%); display: flex; align-items: flex-end; gap: 3px; height: 28px; opacity: 0; transition: opacity .4s; z-index: 4; }
.orb-wave.active { opacity: 1; }
.orb-wave-bar { width: 3px; background: rgba(255,255,255,.7); border-radius: 2px; min-height: 3px; animation: orbWave 1s ease-in-out infinite; }
.orb-wave-bar:nth-child(1){animation-delay:0s;height:8px} .orb-wave-bar:nth-child(2){animation-delay:.1s;height:16px} .orb-wave-bar:nth-child(3){animation-delay:.2s;height:24px} .orb-wave-bar:nth-child(4){animation-delay:.15s;height:18px} .orb-wave-bar:nth-child(5){animation-delay:.05s;height:22px} .orb-wave-bar:nth-child(6){animation-delay:.25s;height:12px} .orb-wave-bar:nth-child(7){animation-delay:.1s;height:20px}
@keyframes orbWave { 0%,100%{transform:scaleY(.35);opacity:.5} 50%{transform:scaleY(1);opacity:1} }
.orb-sphere.listening { animation: orbListen 2.5s ease-in-out infinite; }
@keyframes orbListen { 0%,100%{box-shadow:0 0 60px rgba(100,180,255,.35),0 0 120px rgba(60,120,220,.2),inset 0 0 40px rgba(255,255,255,.1);} 50%{box-shadow:0 0 80px rgba(100,180,255,.5),0 0 160px rgba(60,120,220,.3),inset 0 0 50px rgba(255,255,255,.15);} }
.orb-sphere.speaking { animation: orbSpeak .8s ease-in-out infinite alternate; }
@keyframes orbSpeak { from{box-shadow:0 0 50px rgba(252,163,17,.3),0 0 100px rgba(100,180,255,.2),inset 0 0 30px rgba(255,255,255,.1);} to{box-shadow:0 0 90px rgba(252,163,17,.5),0 0 180px rgba(100,180,255,.3),inset 0 0 60px rgba(255,255,255,.18);} }
.orb-name { font-family: var(--f); font-size: 1.3rem; font-weight: 700; color: #fff; letter-spacing: .02em; margin-bottom: 4px; }
.orb-role { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(252,163,17,.85); margin-bottom: 6px; }
.orb-status { font-size: .8rem; color: rgba(255,255,255,.5); min-height: 20px; margin-bottom: 16px; text-align: center; transition: opacity .3s; }
.orb-timer { font-family: var(--f); font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .08em; margin-bottom: 14px; display: none; }
.orb-timer.visible { display: block; }
.orb-transcript { width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); padding: 12px 14px; min-height: 64px; max-height: 120px; overflow-y: auto; text-align: left; font-size: .82rem; line-height: 1.65; display: none; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.orb-transcript.visible { display: flex; }
.orb-transcript::-webkit-scrollbar { width: 3px; }
.orb-transcript::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); }
.orb-tline.michelle { color: rgba(255,255,255,.85); }
.orb-tline.michelle::before { content: 'Michelle · '; color: rgba(252,163,17,.7); font-size:.72rem; font-weight:700; }
.orb-tline.you { color: rgba(255,255,255,.45); }
.orb-tline.you::before { content: 'You · '; color: rgba(255,255,255,.25); font-size:.72rem; }
.orb-qrs { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; width: 100%; margin-bottom: 16px; min-height: 0; }
.orb-qr { padding: 7px 14px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); font-family: var(--f); font-size: .75rem; font-weight: 600; cursor: pointer; transition: all .18s; white-space: nowrap; }
.orb-qr:hover { border-color: var(--gold); background: rgba(252,163,17,.1); color: #fff; }
.orb-input-row { display: none; width: 100%; gap: 8px; align-items: center; }
.orb-input-row.visible { display: flex; }
.orb-inp { flex: 1; padding: 11px 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #fff; font-family: var(--f); font-size: .86rem; outline: none; transition: border-color .2s; }
.orb-inp::placeholder { color: rgba(255,255,255,.3); }
.orb-inp:focus { border-color: var(--gold); }
.orb-inp-send { padding: 11px 16px; background: var(--gold); border: 0; cursor: pointer; font-family: var(--f); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); transition: background .2s; }
.orb-inp-send:hover { background: #e8940f; }
.orb-end-btn { width: 56px; height: 56px; border-radius: 50%; background: #e05252; border: 0; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; transition: background .2s, transform .2s; box-shadow: 0 4px 20px rgba(224,82,82,.4); }
.orb-end-btn.visible { display: flex; }
.orb-end-btn:hover { background: #c43e3e; transform: scale(1.08); }

.demo-trigger { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 11px 22px; border: 1.5px solid var(--gold); background: transparent; color: var(--navy); font-family: var(--f); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: all .22s; position: relative; overflow: hidden; }
.demo-trigger::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s cubic-bezier(.25,.46,.45,.94); }
.demo-trigger span { position: relative; z-index: 1; }
.demo-trigger:hover::before { transform: scaleX(1); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner, .two-col, .cta-box { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-copy   { padding-bottom: 40px; }
  .agents-stage { min-height: 500px; }
  .fig-lucy    img { width: 190px; }
  .fig-hannah  img { width: 215px; }
  .fig-michelle img { width: 195px; }
}
@media (max-width: 900px) {
  .desktop-nav, .nav-btn { display: none; }
  .section, .hero { padding-top: 96px; }
  .hero { padding-bottom: 0; }
  .stats-grid, .team-grid, .why-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-card:last-child { border-bottom: 0; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(2.8rem, 12vw, 3.8rem); }
  .agents-stage { min-height: 400px; }
  .fig-lucy    img { width: 150px; }
  .fig-hannah  img { width: 170px; }
  .fig-michelle img { width: 155px; }
  .chip-lucy    { left: 4px; top: 90px; }
  .chip-hannah  { top: 40px; }
  .chip-michelle{ right: 2px; top: 76px; }
  .status-badge { min-width: 140px; padding: 12px 14px; }
  .two-col { grid-template-columns: 1fr; }
  .choice-cards { grid-template-columns: 1fr; }
  #choiceModal .ll-modal { padding: 36px 22px 28px; }
  #hannahModal .ll-modal, #michelleModal .ll-modal { max-width: 100%; max-height: 100vh; }
  .chat-messages { max-height: 300px; }
  .orb-transcript { max-height: 90px; }
}
