/* Theme tokens */
:root{
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --text: #0b1b33;
  --muted: #60708a;
  --accent: #0070f3;
  --accent-600: #0057bf;
  --outline: #e6ebf2;
  --shadow: 0 10px 30px rgba(11,27,51,0.08), 0 2px 10px rgba(11,27,51,0.05);
  --radius: 12px;
  --radius-sm: 10px;
  --radius-lg: 16px;
  --header-h: 68px;
}

/* Reset & base */
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol";
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

/* Typography */
.h1{
  font-family:Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight:800;
  letter-spacing:-0.02em;
  font-size: clamp(28px, 5vw, 48px);
  line-height:1.1;
  margin:0 0 16px;
}
.h2{
  font-family:Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight:700;
  letter-spacing:-0.01em;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height:1.15;
  margin:0 0 12px;
}
.h5{
  font-weight:700;
  margin: 0 0 4px;
}
.lead{font-size: clamp(16px, 1.9vw, 20px); color:var(--text)}
.muted{color:var(--muted)}
.subheadline{font-size: clamp(17px, 2.2vw, 22px); color:var(--text); margin:0 0 8px}
.support{color:var(--muted); margin:0 0 16px}
.ta-center{text-align:center}
.tagline{
  margin-top: 20px;
  font-size: 18px;
  color:var(--text);
}
.eyebrow{font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px}

/* Layout */
.container{
  width:100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
.narrow{max-width: 840px}
.section{position:relative}
.section-pad{padding: 56px 0}
.section-pad-lg{padding: 84px 0}
.section-pad-sm{padding: 32px 0}
.section-divided{background:var(--bg-soft); border-top:1px solid var(--outline); border-bottom:1px solid var(--outline)}

.grid-2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.grid-3{
  display:grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.grid-4{
  display:grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
#solution .grid-2{align-items:center}
@media (min-width: 768px){
  .grid-2{grid-template-columns: 1.1fr 0.9fr; gap: 36px}
  .grid-3{grid-template-columns: repeat(3, 1fr); gap: 24px}
  .grid-4{grid-template-columns: repeat(4, 1fr); gap: 24px}
}

/* Sticky Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display:flex;
  align-items:center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(230,235,242,0.8);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}
.logo-text{
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight:600; /* Semi-bold */
  font-size: 28px;
  letter-spacing: 0.2px;
  text-transform: lowercase;
}
.logo-legal{
  font-weight:400;
  color: var(--muted);
}
.brand-mark{
  display:inline-grid;
  place-items:center;
  width: 36px; height: 36px;
  font-weight:800;
  color:#fff;
  background: linear-gradient(135deg, var(--text), #14284b);
  border-radius: 8px;
}
.brand-text{letter-spacing:0.4px}
.main-nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav-link{
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight:600;
}

.nav-link.active{color:#fff; background: var(--text)}
.cta-inline{background: var(--accent); color:#fff; border-radius: 10px; padding: 8px 12px}
.cta-inline:hover{background: var(--accent-600)}

/* Mobile nav */
.menu-toggle{
  display:none;
  background:#fff;
  border:1px solid var(--outline);
  border-radius:10px;
  width:38px; height:38px;
  align-items:center; justify-content:center;
  position:relative;
}
.menu-toggle::before, .menu-toggle::after{
  content:"";
  position:absolute; left:9px; right:9px;
  height:2px; background:var(--text); border-radius:2px;
}
.menu-toggle::before{top:12px; box-shadow:0 6px 0 0 var(--text)}
.menu-toggle::after{top:24px}

@media (max-width: 768px){
  .menu-toggle{display:inline-flex}
  .nav{position:relative}
  .main-nav{
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display:block;
    flex-direction:column;
    gap:8px;
    padding:12px 20px;
    background:#fff;
    border-bottom:1px solid var(--outline);
    box-shadow: 0 8px 24px rgba(11,27,51,0.08);
    z-index: 80;
    /* slide-down animation + collapse */
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease, opacity .2s ease, transform .32s ease;
  }
  .main-nav.open{
    display:block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    max-height: 320px; /* enough for a few links */
  }
  .main-nav .nav-link{display:block; width:100%; padding:12px; border-radius:10px}
  .main-nav .cta-inline{width:100%; text-align:center}
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight:700;
  cursor:pointer;
  transition: transform .04s ease, background .2s ease, box-shadow .2s ease;
  will-change: transform;
}
.btn:active{transform: translateY(1px)}
.btn-primary{background: var(--accent); color:#fff; box-shadow: var(--shadow)}
.btn-primary:hover{background: var(--accent-600)}
.btn-ghost{background: transparent; color: var(--text); border-color: var(--outline)}
.btn-ghost:hover{background: #f3f6fb}
.btn-block{width:100%}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin: 6px 0 4px}
.cta-row.center{justify-content:center}

/* Utility cards/elevation */
.elevate{
  background:#fff;
  border:1px solid var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
#how .elevate{box-shadow:none}
.card{
  background:#fff; border:1px solid var(--outline); border-radius: var(--radius); padding:16px;
}
.badge{
  display:inline-block; padding:6px 10px; border-radius:999px; background:#eef4ff; color:#2b4fb7; font-weight:700; font-size:12px; margin-bottom:10px
}

/* Hero */
.hero{
  overflow:hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-copy .statbar{
  margin-top: 14px;
  display:flex; align-items:center; gap:12px; flex-wrap:wrap;
  font-weight:700;
}
.hero-copy .stat .label{display:block; font-size:12px; color:var(--muted); font-weight:600}
.hero-copy .stat .value{font-size:22px}
.hero-copy .stat.emphasis .value{font-size:26px; color:var(--text)}
.hero-copy .stat .dim{color:#9aa8be}
.hero-copy .arrow{opacity:0.5}
.hero-art{display:flex; align-items:center; justify-content:center}
.device{
  position:relative;
  width: min(100%, 420px);
  border-radius: 22px;
  background: radial-gradient(120% 120% at 80% 0%, rgba(0,112,243,0.12) 0%, rgba(255,255,255,0) 45%), #ffffff;
  border:1px solid var(--outline);
  box-shadow: 0 20px 40px rgba(11,27,51,0.10), 0 6px 16px rgba(11,27,51,0.08);
  overflow:hidden;
}
.status-bar{
  height: 44px;
  display:flex; align-items:flex-end; justify-content:flex-start; gap:10px;
  padding: 0 14px;
  border-bottom:1px solid var(--outline);
  background: linear-gradient(180deg, #fbfdff 0%, #f5f8ff 100%);
  overflow: visible; /* allow tab 'shoulders' to render */
}
.status-bar .tab{
  display:inline-flex; align-items:center; justify-content:center;
  padding:3px 12px;
  border:1px solid var(--outline);
  border-bottom: none;
  border-top-left-radius:12px; border-top-right-radius:12px;
  border-bottom-left-radius:0px; border-bottom-right-radius:0px; /* rounded, tab-like */
  background:#fff; color:var(--text); font-weight:800;
  margin-bottom:-1px; /* sit on the bar like a tab */
  font-size: 12px;
  margin-left: 6px;
  
  position: relative;
  z-index: 2;
}
.status-bar .tab .lead-pulse{ margin-right:8px; width:8px; height:8px; background:#0b73f3; border-radius:999px; display:inline-block }

.status-bar .dot{
  width:8px; height:8px; border-radius:999px; background:#c9d4e7; display:inline-block;
}
.status-bar .dots{
  display:flex; align-items:center; gap:6px;
  transform: translateY(-4px); /* raise dots to align with the tab */
  padding-bottom: 10px;
}
.screen{position:relative; padding: 16px}
.kpi{
  display:flex; align-items:baseline; gap:8px;
  padding: 12px 14px;
  border:1px solid var(--outline); border-radius:14px;
  background: #ffffff;
  width:max-content;
  box-shadow: var(--shadow);
}
.kpi-label{font-size:12px; color:var(--muted); font-weight:700}
.kpi-value{font-weight:900; font-size:22px}
.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px}
.chip.soft{
  background:#f2f7ff; color:#23498b; border-color: transparent;
  font-weight:700;
}
.glow.orb{
  position:absolute; border-radius:50%; filter: blur(16px); opacity:.6; animation: float 6s ease-in-out infinite alternate;
}
.glow.o1{width:140px; height:140px;  right:-20px; top:20px}
.glow.o2{width:100px; height:100px;  left:-20px; bottom:-10px; animation-duration:7.2s}
.bg-accent{
  position:absolute; inset:auto -10% -20% -10%; height: 46%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,112,243,0.15) 0%, rgba(255,255,255,0) 60%);
  pointer-events:none;
}
/* hero background animation removed */
#hero{position:relative; overflow:hidden}
#hero > .container{position:relative; z-index:1}
#hero .hero-bg{
  position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.20;
}
#hero .hero-bg dotlottie-player{
  position:absolute; left:50%; top:50%; transform: translate(-50%, -50%);
  width:180%; height:180%; min-width:100%; min-height:100%; display:block;
}

/* About animation (simple blobs) */
.about-anim{
  position:relative;
  min-height: 260px;
}
.blob{
  position:absolute; border-radius:50%;
  filter: blur(12px); opacity:.85;
  animation: float 6s ease-in-out infinite alternate;
}
.blob.b1{width:160px; height:160px; background: rgba(0,112,243,.18); top:12%; left:10%}
.blob.b2{width:220px; height:220px; background: rgba(11,27,51,.10); top:28%; right:8%; animation-duration:7.5s}
.blob.b3{width:120px; height:120px; background: rgba(0,112,243,.14); bottom:6%; left:40%; animation-duration:5.5s}
@keyframes float{
  from{transform: translateY(0) translateX(0)}
  to{transform: translateY(-12px) translateX(8px)}
}

/* Extra separation after How It Works */
#how{padding-bottom: 96px}

/* Lists */
.list{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.list.large{gap:14px}
.list.checked li, .list.xed li{display:flex; align-items:flex-start; gap:10px}
.icon-check, .icon-x{
  display:inline-grid; place-items:center; width:24px; height:24px; border-radius:999px; margin-top:2px; flex: 0 0 24px;
}
.icon-check{background:#eaf6ff; color:#0670f3}
.icon-check::before{content:'✓'; font-weight:900}
.icon-x{background:#ffeeef; color:#d12a3c}
.icon-x::before{content:'✕'; font-weight:900}

/* Problem cards */
.item{font-weight:600; color:var(--text)}

/* Form illustration */
.form-illustration{display:flex; align-items:center; justify-content:center}
.mock-form{
  padding: 16px;
  border-radius: var(--radius);
}
.qualify-card{
  width:100%;
  max-width: 420px;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
  border:1px solid rgba(230,235,242,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow:hidden;
}
.q-head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fbfdff 0%, rgba(255,255,255,0) 100%);
  border-bottom:1px solid var(--outline);
}
.q-title{font-weight:800; letter-spacing:.2px}
.q-steps{display:flex; align-items:center; gap:6px}
.q-steps .dot{width:8px; height:8px; border-radius:999px; background:#e1e8f2}
.q-steps .dot.active{background:#0b73f3}
.q-body{display:grid; gap:14px; padding: 14px 16px}
.q-block{display:grid; gap:8px}
.q-label{font-weight:700; color:#1f2d4a}
.q-buttons{display:flex; gap:8px}
.q-buttons.wrap{flex-wrap:wrap}
.btn-opt{
  padding:8px 12px; border-radius:10px; border:1px solid var(--outline); background:#fff; font-weight:700; color:#233b63;
}
.btn-opt.is-primary{background:#eef5ff; border-color:#d8e7ff; color:#1d3f77}
.btn-chip{
  padding:8px 12px; border-radius:999px; border:1px solid #dfe7f2; background:#fff; font-weight:700; color:#1e3861
}
.btn-chip.is-primary{
  background:#eef5ff;
  border-color:#d8e7ff;
  color:#1d3f77;
}
.q-inline{display:grid; gap:12px}
@media (min-width: 520px){
  .q-inline{grid-template-columns: 1fr 1fr}
}
.q-mini{display:grid; gap:8px; background:#fff; border:1px solid var(--outline); border-radius:12px; padding:10px}
.mini-label{font-weight:700; color:#57708f; font-size:12px}
.q-footer{padding: 0 16px 16px 16px}

/* Bubble cloud (replaces faux-form to avoid implying an exact UX) */
.q-bubbles{
  max-width: 520px;
  display:flex; flex-wrap:wrap; gap:10px 12px; justify-content:center;
  padding: 10px;
}
.q-bubbles .bubble{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border:1px solid #dfe7f2;
  background: #ffffffcc;
  color:#1e3861;
  border-radius: 999px;
  font-weight:800;
  box-shadow: 0 8px 18px rgba(30,56,97,0.06);
}
.q-bubbles .bubble.lg{font-size:18px; padding:12px 18px}
.q-bubbles .bubble.accent{
  background:#eef5ff; border-color:#d8e7ff; color:#1d3f77;
}

/* Image art frame (ani.png) */
.art-frame{
  width:100%;
  max-width:480px;
  border-radius:0;
  overflow:visible;
  background:transparent;
  border:none;
  box-shadow:none;
}
.art-frame img{display:block; width:100%; height:auto}
.art-frame dotlottie-player,
.art-frame lottie-player{
  display:block;
  width:100%;
  height:320px; /* keep section height similar to previous design */
}
@media (max-width: 520px){
  .art-frame dotlottie-player,
  .art-frame lottie-player{
    height:260px;
  }
}
.mock-h{font-weight:800; margin-bottom:10px}
.mock-q{font-weight:700; margin: 8px 0 6px}
.mock-a{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px}
.chip, .pill{
  display:inline-flex; align-items:center; justify-content:center; padding:8px 12px; border-radius:999px; border:1px solid var(--outline); background:#fff; font-weight:600
}
.pill{border-radius:10px}
.pill-group{display:flex; flex-wrap:wrap; gap:16px 18px; justify-content:center}
.pill-group.center{justify-content:center}
.pill.iconed{display:inline-flex; align-items:center; gap:10px; font-weight:700}
.pill.iconed .icon-check{
  width:18px; height:18px; flex:0 0 18px;
  display:inline-flex; align-items:center; justify-content:center;
  margin-top:0; vertical-align:middle; transform: translateY(1px);
}
#leads .h2{margin-bottom: 24px}
.pill.iconed{display:inline-flex; align-items:center; gap:8px; font-weight:700}
.pill.iconed .icon-check{width:18px; height:18px; flex:0 0 18px}

/* Steps */
.steps{margin-top: 16px}
.step-card{
  padding: 18px;
  text-align:left;
}
.step-icon{
  width:36px; height:36px; border-radius:10px;
  display:inline-grid; place-items:center;
  background:#eef4ff; color:#2b4fb7; font-weight:800; margin-bottom:8px
}

/* Team */
.team-grid{align-items:stretch}
.team-card{
  padding: 16px;
  position:relative;
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover{transform: translateY(-2px)}
.avatar{
  width:56px; height:56px; border-radius:999px;
  display:grid; place-items:center; font-weight:800; color:#fff;
  background: linear-gradient(135deg, #0b1b33, #21406d);
  margin-bottom:10px;
}
.team-info{margin-bottom:8px}
.team-bio{
  color:var(--muted);
  line-height:1.5;
}
.team-card:hover .team-bio{color:var(--text)}

/* Team tiles (About page) */
.team-tiles{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.tile{
  background:#fff; border:1px solid var(--outline); border-radius: var(--radius); padding: 18px; text-align:center
}
.tile-avatar{
  width:140px; height:140px; margin: 4px auto 12px;
  border-radius:999px;
  background: linear-gradient(135deg, #dfe8ff, #f5f7fb);
  border:1px solid var(--outline);
  overflow:hidden;
  display:grid; place-items:center;
}
.tile-avatar img{width:100%; height:100%; object-fit:cover; display:block}
.tile-title{font-weight:500; color: var(--muted)}
.tile-name{
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight:400;
  margin-top:4px;
  font-size:18px;
  line-height:1.2;
}
@media (min-width: 768px){
  .team-tiles{grid-template-columns: repeat(3, 1fr)}
}

/* Next steps list */
.steps-list{
  counter-reset: stepcounter;
  list-style:none; padding:0; margin: 12px 0 16px;
  display:grid; gap:8px;
}
.steps-list li{
  padding: 12px 14px; border:1px solid var(--outline); border-radius: var(--radius-sm); background:#fff;
}

/* Features */
.feature-card{
  padding: 18px;
}

/* Blog list */
.blog-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}
.post-card{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 10px;
  text-decoration:none; color:inherit;
}
.post-card .thumb{
  width:140px; height:100px; border-radius:12px; overflow:hidden; border:1px solid var(--outline); background:#fff
}
.post-card .thumb img{width:100%; height:100%; object-fit:cover; display:block}
.post-meta{display:grid; gap:6px; align-content:center}
.post-title{font-weight:800}
.post-excerpt{font-size:14px}
.post-date{font-size:12px}
.post-card.elevate{box-shadow:none}
@media (min-width: 768px){
  .blog-grid{grid-template-columns: repeat(3, 1fr)}
  .post-card{grid-template-columns: 1fr; gap:10px}
  .post-card .thumb{width:100%; height:160px}
}
/* Contact form */
.contact-form{
  padding: 18px;
}
.contact-layout{
  display:grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 960px){
  .contact-layout{
    grid-template-columns: minmax(280px, 420px) minmax(560px, 1fr);
  }
}
.calendly-card{
  border:1px solid var(--outline);
  border-radius: var(--radius-lg);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
  padding:0;
  width:100%;
  max-width: 1120px;
  justify-self:center;
}
.calendly-card .calendly-inline-widget{
  width:100% !important;
  min-width:0 !important;
  height: 1000px;
}

/* Full-width Calendly when no card wrapper is used */
.calendly-inline-widget{
  width:100% !important; /* equals .calendly-wrap width */
  min-width:0 !important;
  height: 820px;
  display:block;
  background-color: #ffffff !important;
}

.calendly-inline-widget > iframe {
    color-scheme: light;
  }

/* Ensure Calendly section background is white */
#book{background:#fff}

/* Calendly wrapper - exactly matches widget size and centers it */
.calendly-wrap{
  width: min(100%, 1120px);
  margin: 0 auto;
  /* no padding so wrapper equals widget size */
}

/* Trust (logos strip) */
.trust-tag{font-weight:700; text-transform:uppercase; font-size:12px; letter-spacing:.08em}
.trust-logos{
  display:flex; flex-wrap:wrap; gap:16px 18px;
  align-items:center; justify-content:center; margin-top:10px
}
.trust-logo{
  padding:10px 14px;
  border:1px solid var(--outline);
  border-radius:10px;
  background:#fff;
  font-weight:700;
  color:var(--text);
  filter: grayscale(1) contrast(.9);
  opacity:.85;
}

/* Marquee logos */
#marquee{background:#fff}
.marquee-wrap{
  position:relative; overflow:hidden;
  max-width: 1120px; margin: 0 auto; /* center the marquee band */
}
.marquee-wrap::before, .marquee-wrap::after{
  content:""; position:absolute; top:0; bottom:0; width:60px; pointer-events:none; z-index:1;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}
.marquee-wrap::before{left:0}
.marquee-wrap::after{right:0; transform: scaleX(-1)}
.marquee-track{
  display:flex; align-items:center; gap:48px; width:max-content;
  animation: marquee-slide 22s linear infinite;
  will-change: transform;
  padding: 4px 20px;
}
.marquee-track img{
  height:34px; filter: grayscale(1) contrast(.9); opacity:.9
}
@keyframes marquee-slide{
  from{ transform: translateX(0) }
  to{ transform: translateX(-50%) }
}
.field{display:grid; gap:6px; margin-bottom:12px}
label{font-weight:700; font-size:14px}
input, textarea{
  border:1px solid var(--outline);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color:var(--text);
  background:#fff;
}
input::placeholder, textarea::placeholder{color:#9aa8be}
.form-note{font-size:12px; margin-top:8px}

/* Footer */
.site-footer{
  padding: 24px 0;
  border-top:1px solid var(--outline);
  background:#fff;
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer-brand{display:flex; align-items:center; gap:10px; font-weight:800}
.footer-info{font-size:12px}
.separator{opacity:0.5; margin:0 8px}

/* Reveal on scroll */
[class*="in-view-"]{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.in-view{opacity:1; transform: none}

/* Section anchor offset for sticky header */
section{scroll-margin-top: calc(var(--header-h) + 12px);}

/* Tailwind widget pulse helper (if CDN loaded) */
@keyframes iwPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, .45) }
  70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0) }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0) }
}
.iw-pulse { animation: iwPulse 1.6s ease-out infinite }

/* New Lead chip (non-Tailwind version) */
.lead-chip{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px;
  border-radius: 12px;
  border:1px solid rgba(15, 23, 42, 0.12); /* slate-900/12 */
  background: rgba(248,250,255,0.9); /* soft slate/blue */
  color:#1f2d4a; /* navy-ish */
  font-size: 13px; font-weight:600;
  box-shadow: 0 0 24px rgba(0,112,243,0.10);
}
.lead-chip .lead-pulse{
  width:8px; height:8px; border-radius:999px; background:#0b73f3; display:inline-block;
}
.lead-chip .lead-text{font-weight:700}

.lead-bars{
  margin-top: 8px;
  display: grid;
  gap: 6px;
  max-width: 280px;
  user-select: none;
  pointer-events: none;
}
.lead-bars .bar{
  height: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(203,213,225,0.35) 0%, rgba(203,213,225,0.55) 100%); /* slate-300ish */
  box-shadow: 0 6px 18px rgba(11,27,51,0.06);
  transform-origin: left;
  transform: scaleX(0);
}
.lead-bars .bar-1{ width: 72% }
.lead-bars .bar-2{ width: 58% }
.lead-bars .bar-3{ width: 64% }

@keyframes barSweep {
  from { transform: scaleX(0) }
  to { transform: scaleX(1) }
}
.device.in-view .lead-bars .bar{
  animation: barSweep 900ms ease forwards;
}
.device.in-view .lead-bars .bar-2{ animation-delay: .18s }
.device.in-view .lead-bars .bar-3{ animation-delay: .36s }

.lead-lines{
  margin-top: 8px;
  display: grid;
  gap: 4px;
  max-width: 280px;
}
.lead-lines .redacted{
  font-size: 12px;
  color: #1f2d4a;
  padding: 4px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,23,42,0.10);
  filter: blur(3px);
}

/* Responsive */
@media (min-width: 1024px){
  .section-pad{padding: 72px 0}
  .section-pad-lg{padding: 112px 0}
  .section-pad-sm{padding: 40px 0}
}

@media (min-width: 768px){
  .pill-group{grid-template-columns: repeat(3, max-content)}
}
/* Small tweaks for very narrow screens */
@media (max-width: 380px){
  .brand-text{display:none}
  .main-nav{gap:8px}
  .nav-link{padding:8px}
}


