:root {
  --p:    #7c3aed;
  --p2:   #a855f7;
  --p3:   #22d3ee;
  --dark:  #0b0814;
  --dark2: #130f23;
  --dark3: #1a1333;
  --bg:    #f9f8fe;
  --bg2:   #f0eafb;
  --text:  #0f0a1e;
  --muted: #7c6fa0;
  --border:#e4dff5;
}
html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; background: #fff; color: var(--text); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #c4b5fd; border-radius: 2px; }

/* ---- utils ---- */
.g   { background: linear-gradient(135deg,var(--p2),var(--p3)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.g2  { background: linear-gradient(135deg,#e879f9,var(--p3),#e879f9);   -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:inline; padding-right:.3em; background-size: 200% 100%; }
.hero .g2 { animation: gradientShift 4s ease-in-out infinite; }
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.section-py { padding-top: 96px; padding-bottom: 96px; }

/* ---- NAV ---- */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: rgba(11,8,20,.55);
  backdrop-filter: blur(0px);
  border-bottom: none;
  transition: none;
}
#mainNav.scrolled { background: transparent; }
.nav-outer {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 24px;
  pointer-events: none;
}
.nav-island {
  pointer-events: all;
  display: flex; align-items: center;
  height: 62px;
  padding: 0 10px 0 16px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(13,10,22,.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(124,58,237,.15), 0 8px 32px rgba(0,0,0,.45);
  transition: box-shadow .3s;
}
.nav-island:hover {
  box-shadow: 0 0 0 1px rgba(124,58,237,.3), 0 12px 40px rgba(0,0,0,.55);
}
.nav-logo-img {
  height: 56px; width: auto; display: block; flex-shrink: 0;
  mix-blend-mode: screen;
  filter: brightness(1.15);
}
.nav-center {
  display: flex; align-items: center; gap: 2px;
  margin-left: 36px;
  flex: 1;
}
.nav-link-item {
  color: rgba(255,255,255,.52) !important;
  font-size: .83rem; font-weight: 500;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 10px;
  transition: color .15s, background .15s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}
.nav-link-item .nli { font-size: .85rem; opacity: .75; }
.nav-link-item:hover { color: #fff !important; background: rgba(255,255,255,.07); }
.nav-link-item:hover .nli { opacity: 1; }
.nav-link-item.active-nav { color: #fff !important; background: rgba(124,58,237,.22); }
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; padding-right: 4px; }
.nav-right .btn-brand { font-size: .8rem; padding: 8px 18px; border-radius: 12px; }
.navbar-toggler {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 6px 10px;
  background: rgba(255,255,255,.04);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: invert(1); width: 18px; height: 18px; }
.nav-mobile-actions { display: none; }
@media (max-width: 991px) {
  .nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
}
@media (max-width: 991px) {
  .nav-outer { padding: 12px 16px; }
  .nav-island { padding: 0 10px 0 14px; height: 56px; }
  .nav-center, .nav-right { display: none; }
  #navMenuMobile {
    background: rgba(11,8,20,.97);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 20px 20px;
    border-radius: 0 0 20px 20px;
    margin: 0 16px;
  }
  .nav-mobile-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
  .nav-mobile-links a {
    color: rgba(255,255,255,.65);
    font-size: .9rem; font-weight: 500;
    text-decoration: none; padding: 10px 14px;
    border-radius: 9px; transition: background .15s, color .15s;
  }
  .nav-mobile-links a:hover { background: rgba(255,255,255,.07); color: #fff; }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,.42) 0%, transparent 58%),
    radial-gradient(ellipse 50% 60% at 95% 85%, rgba(34,211,238,.14) 0%, transparent 52%),
    radial-gradient(ellipse 45% 55% at 2% 70%, rgba(168,85,247,.13) 0%, transparent 52%);
  animation: glowBreathe 6s ease-in-out infinite;
}
@keyframes glowBreathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.04); }
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 20%, transparent 85%);
}
.hero-inner { position: relative; z-index: 1; max-width: 960px; }
.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.055em;
  color: #fff;
  margin: 20px 0 22px;
}
.hero-sub { font-size: clamp(.95rem,2vw,1.1rem); color: rgba(255,255,255,.52); line-height: 1.72; max-width: 500px; margin: 0 auto 36px; }
.hero-previews {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
}
.hero-prev-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 700;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
  backdrop-filter: blur(8px);
}
.hero-prev-chip:hover { background: rgba(124,58,237,.18); border-color: rgba(168,85,247,.45); color: #fff; transform: translateY(-2px); }
.hero-prev-chip .hpc-icon { font-size: 1.1rem; }
.hero-prev-chip .hpc-arrow { font-size: .7rem; opacity: .45; transition: opacity .2s, transform .2s; }
.hero-prev-chip:hover .hpc-arrow { opacity: 1; transform: translateX(3px); }
.hero-prev-chip:nth-child(1) { animation: chipFloat 3.5s ease-in-out .0s infinite; }
.hero-prev-chip:nth-child(2) { animation: chipFloat 3.5s ease-in-out .4s infinite; }
.hero-prev-chip:nth-child(3) { animation: chipFloat 3.5s ease-in-out .8s infinite; }
.hero-prev-chip:nth-child(4) { animation: chipFloat 3.5s ease-in-out 1.2s infinite; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.25); font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.scroll-arrow {
  width: 22px; height: 22px; border-right: 2px solid rgba(255,255,255,.25);
  border-bottom: 2px solid rgba(255,255,255,.25);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .3; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: .8; }
}

/* ---- HERO PARTICLES ---- */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift linear infinite;
}
.p1 { width: 3px; height: 3px; background: #a855f7; top: 20%; left: 15%; animation-duration: 8s; animation-delay: 0s; }
.p2 { width: 2px; height: 2px; background: #22d3ee; top: 60%; left: 80%; animation-duration: 10s; animation-delay: 1s; }
.p3 { width: 4px; height: 4px; background: #e879f9; top: 40%; left: 50%; animation-duration: 12s; animation-delay: 2s; }
.p4 { width: 2px; height: 2px; background: #7c3aed; top: 75%; left: 25%; animation-duration: 9s; animation-delay: 3s; }
.p5 { width: 3px; height: 3px; background: #22d3ee; top: 15%; left: 70%; animation-duration: 11s; animation-delay: .5s; }
.p6 { width: 2px; height: 2px; background: #a855f7; top: 85%; left: 60%; animation-duration: 7s; animation-delay: 1.5s; }
.p7 { width: 3px; height: 3px; background: #e879f9; top: 30%; left: 90%; animation-duration: 13s; animation-delay: 4s; }
.p8 { width: 2px; height: 2px; background: #7c3aed; top: 50%; left: 10%; animation-duration: 10s; animation-delay: 2.5s; }
@keyframes particleDrift {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(.5); }
  15%  { opacity: .7; }
  50%  { opacity: .4; transform: translateY(-40px) translateX(20px) scale(1); }
  85%  { opacity: .6; }
  100% { opacity: 0; transform: translateY(-80px) translateX(-15px) scale(.5); }
}

/* ---- HERO BADGE SPARKLE ---- */
.hero-badge {
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: badgeSparkle 4s ease-in-out 1s infinite;
}
@keyframes badgeSparkle {
  0%, 100% { left: -100%; }
  50% { left: 160%; }
}

/* ---- FREE BANNER ---- */
.free-banner {
  background: var(--dark2);
  padding: 56px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.free-banner h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; letter-spacing: -.04em; color: #fff; margin-bottom: 12px; }
.free-banner p { color: rgba(255,255,255,.5); font-size: .94rem; max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }
.free-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.free-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75); font-size: .78rem; font-weight: 600;
}
.free-chip.hi { background: rgba(124,58,237,.2); border-color: rgba(168,85,247,.3); color: #e9d5ff; }

/* ---- DUAL USE SECTION ---- */
.dual-section { background: #fff; }
.dual-section .section-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.dual-section .section-label::before { content:''; width: 20px; height: 2px; background: var(--p); border-radius: 1px; }
.use-card {
  border-radius: 24px;
  padding: 40px 36px;
  height: 100%;
  position: relative; overflow: hidden;
}
.use-card.pos-card  { background: linear-gradient(145deg,#1e1432,#130f23); border: 1px solid rgba(168,85,247,.22); }
.use-card.b2b-card  { background: linear-gradient(145deg,#0d1f2d,#0a1929);  border: 1px solid rgba(34,211,238,.18); }
.use-card.may-card  { background: linear-gradient(145deg,#15091f,#0f0618);  border: 1px solid rgba(232,121,249,.2); }
.use-card-glow { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.pos-card  .use-card-glow { background: rgba(168,85,247,.28); }
.b2b-card  .use-card-glow { background: rgba(34,211,238,.18); }
.may-card  .use-card-glow { background: rgba(232,121,249,.18); }
.use-tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.pos-card .use-tag { background: rgba(168,85,247,.15); color: #e879f9; border: 1px solid rgba(168,85,247,.25); }
.b2b-card .use-tag { background: rgba(34,211,238,.1);  color: var(--p3);  border: 1px solid rgba(34,211,238,.2); }
.may-card .use-tag { background: rgba(232,121,249,.1);  color: #e879f9;    border: 1px solid rgba(232,121,249,.25); }
.use-card h3 { font-size: 1.4rem; font-weight: 900; letter-spacing: -.04em; color: #fff; margin-bottom: 10px; line-height: 1.15; }
.use-card .sub { font-size: .85rem; color: rgba(255,255,255,.48); line-height: 1.68; margin-bottom: 24px; }
.use-points { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 8px; }
.use-points li { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.73); display: flex; align-items: center; gap: 9px; }
.use-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pos-card .use-dot { background: #e879f9; }
.b2b-card .use-dot  { background: var(--p3); }
.may-card .use-dot  { background: #e879f9; }
.use-connector {
  display: flex; align-items: center; gap: 0;
  max-width: 860px; margin: 0 auto;
}
.uc-line { flex: 1; height: 2px; }
.uc-line.l { background: linear-gradient(90deg, transparent, var(--p)); }
.uc-line.r { background: linear-gradient(90deg, var(--p3), transparent); }
.uc-badge {
  padding: 14px 32px; border-radius: 999px;
  background: linear-gradient(135deg, var(--p), var(--p3));
  border: none;
  color: #fff; font-size: .9rem; font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 0 0 6px rgba(124,58,237,.15), 0 8px 32px rgba(124,58,237,.45);
  letter-spacing: -.01em;
}

/* ---- PRODUCT SECTIONS ---- */
.product-section { background: #fff; }
.product-section.alt { background: var(--bg); }
.pd-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pd-eyebrow::before { content:''; width: 20px; height: 2px; background: var(--p); border-radius: 1px; }
.pd-h2 { font-size: clamp(1.9rem,3.5vw,2.7rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.1; margin-bottom: 14px; }
.pd-sub { color: var(--muted); font-size: .9rem; line-height: 1.72; margin-bottom: 26px; max-width: 400px; }
.check-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 9px; }
.check-list li { font-size: .86rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 10px; }
.check-list li::before { content:''; min-width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg,var(--p),var(--p2)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* ---- SCREEN SHOTS ---- */
.screen-wrap { position: relative; }
.screen-img {
  width: 100%; display: block;
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.07);
}
/* ---- SCREEN SLIDER ---- */
.screen-slider { display: flex; flex-direction: column; }
.ssl-track { order: 1; }
.ssl-arrow {
  order: 2;
  align-self: flex-end;
  margin-top: 10px;
  width: 36px; height: 36px;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.4);
  border-radius: 50%;
  color: #fff; font-size: 1.15rem;
  cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(124,58,237,.2);
  line-height: 1; padding: 0;
}
.ssl-arrow:hover {
  background: var(--p);
  box-shadow: 0 4px 18px rgba(124,58,237,.55);
  transform: scale(1.1);
}
.ssl-track { position: relative; }
.ssl-slide { display: none; }
.ssl-slide.active { display: block; animation: sslFade .3s ease; }
@keyframes sslFade { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.screen-wrap .sc-badge {
  position: absolute; top: -13px; left: 18px; z-index: 2;
  background: linear-gradient(135deg,var(--p),var(--p2));
  color: #fff; font-size: .65rem; font-weight: 800;
  padding: 5px 14px; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(124,58,237,.45);
  white-space: nowrap;
}
.screen-wrap .sc-badge.cyan {
  background: linear-gradient(135deg,#0891b2,#22d3ee);
  box-shadow: 0 4px 16px rgba(34,211,238,.35);
}
.screen-wrap .sc-badge.green {
  background: linear-gradient(135deg,#059669,#34d399);
  box-shadow: 0 4px 16px rgba(52,211,153,.35);
}
/* metrics section */
.metrics-section { background: var(--dark2); position: relative; overflow: hidden; }
.metrics-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(124,58,237,.15) 0%, transparent 60%);
}
.metrics-section .pd-eyebrow { color: var(--p3); }
.metrics-section .pd-h2 { color: #fff; }
.metrics-section .pd-sub { color: rgba(255,255,255,.6); }
.metrics-section .check-list li { color: rgba(255,255,255,.8); }
.metrics-section .check-list li::before { color: var(--p3); }

/* ---- FEATURE CARDS ---- */
.feat-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 26px;
  box-shadow: 0 4px 24px rgba(124,58,237,.06);
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}
.feat-card:hover { box-shadow: 0 12px 40px rgba(124,58,237,.13); transform: translateY(-3px); }

/* highlight variant for new features */
.feat-card--highlight {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #ede9fe 100%);
  border-color: rgba(168,85,247,.25);
  position: relative;
  overflow: hidden;
}
.feat-card--highlight::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(168,85,247,.15), transparent 70%);
  border-radius: 0 18px 0 0;
}
.feat-card--highlight:hover {
  box-shadow: 0 12px 40px rgba(124,58,237,.2);
  border-color: rgba(168,85,247,.4);
}
.feat-card--highlight .feat-icon {
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(168,85,247,.12));
}
.feat-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.feat-mini-tags span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(124,58,237,.08);
  color: var(--p);
  border: 1px solid rgba(124,58,237,.15);
  text-transform: uppercase;
}
.feat-icon {
  font-size: 1.8rem; flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg,rgba(124,58,237,.1),rgba(168,85,247,.08));
  display: flex; align-items: center; justify-content: center;
}
.feat-title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 7px; line-height: 1.25; }
.feat-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---- ICON LIST (2-col) ---- */
.icon-list { list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px 14px; }
.icon-list li { font-size: .82rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 8px; line-height: 1.3; }
.icon-list .ic { font-size: 1.05rem; flex-shrink: 0; width: 26px; text-align: center; }
@media (max-width: 576px) { .icon-list { grid-template-columns: 1fr; } }

/* ---- FEATURE STRIP ---- */
.fstrip {
  background: var(--dark3);
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
}
.fstrip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(124,58,237,.1) 0%, transparent 60%);
  pointer-events: none;
}
.fstrip-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.fstrip-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 18px;
  border-radius: 999px;
}
.fstrip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px,1fr)); gap: 1px; }
.fstrip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 18px;
  text-align: center;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  transition: background .3s, border-color .3s, transform .3s;
  backdrop-filter: blur(4px);
}
.fstrip-item:hover {
  background: rgba(124,58,237,.12);
  border-color: rgba(168,85,247,.25);
  transform: translateY(-2px);
}
.fstr-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 8px rgba(124,58,237,.3));
  transition: transform .3s;
}
.fstrip-item:hover .fstr-icon {
  transform: scale(1.15);
}
.fstr-lbl {
  font-size: .74rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: -.01em;
  transition: color .3s;
}
.fstrip-item:hover .fstr-lbl {
  color: rgba(255,255,255,.85);
}
.fstrip-dot {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 4px;
}
.fstrip-dot::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(168,85,247,.3);
}

/* ---- BONDI ---- */
.bondi-section { background: var(--dark); position: relative; overflow: hidden; }
.bondi-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(168,85,247,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 50%, rgba(34,211,238,.07) 0%, transparent 55%);
}
.bondi-title { font-size: clamp(1.9rem,3.5vw,2.7rem); font-weight: 900; letter-spacing: -.045em; color: #fff; margin-top: 14px; margin-bottom: 14px; line-height: 1.1; }
.bondi-sub { color: rgba(255,255,255,.45); font-size: .9rem; line-height: 1.72; margin-bottom: 26px; max-width: 400px; }

/* BONDI Robot animation */
.bondi-robot-center {
  position: absolute;
  top: 22%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}
.bondi-robot {
  display: inline-block;
  animation: robotFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(168,85,247,.55)) drop-shadow(0 0 60px rgba(124,58,237,.3));
}
.bondi-robot img {
  display: block;
}
@keyframes robotFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-10px) rotate(3deg); }
  75%      { transform: translateY(5px) rotate(-3deg); }
}
@media (max-width: 991px) {
  .bondi-robot-center {
    position: relative;
    top: auto; left: auto;
    transform: none;
    text-align: center;
    margin-bottom: 20px;
  }
}
.bondi-perk { display: flex; align-items: center; gap: 11px; padding: 12px 15px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.73); margin-bottom: 8px; }
.bondi-chat { background: #0f0c1e; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 24px 64px rgba(0,0,0,.45); }
.chat-hdr { background: linear-gradient(135deg,#1e1432,#130f23); padding: 13px 16px; display: flex; align-items: center; gap: 11px; border-bottom: 1px solid rgba(255,255,255,.06); }
.chat-av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,var(--p),var(--p2)); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.chat-name { color: #fff; font-size: .85rem; font-weight: 700; }
.chat-status { color: rgba(255,255,255,.4); font-size: .63rem; display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.sdot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; }
.chat-msgs { padding: 14px; display: flex; flex-direction: column; gap: 9px; background: #0a0718; }
.msg { max-width: 84%; padding: 9px 12px; border-radius: 11px; font-size: .77rem; line-height: 1.55; }
.msg.u { align-self: flex-end; background: linear-gradient(135deg,var(--p),var(--p2)); color: #fff; border-bottom-right-radius: 3px; }
.msg.b { align-self: flex-start; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.8); border-bottom-left-radius: 3px; }
.msg.b .hi { color: #c084fc; font-weight: 700; }
.chat-input-row { padding: 11px 13px; border-top: 1px solid rgba(255,255,255,.06); display: flex; gap: 7px; background: #0f0c1e; }
.chat-input-row input { flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 7px; padding: 7px 11px; color: rgba(255,255,255,.4); font-size: .72rem; outline: none; font-family: 'Inter',sans-serif; }
.chat-send { width: 30px; height: 30px; border-radius: 7px; border: none; cursor: pointer; background: linear-gradient(135deg,var(--p),var(--p2)); color: #fff; font-size: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---- STEPS ---- */
.steps-section { background: var(--bg); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,var(--dark),var(--dark2)); color: #fff; font-size: 1.05rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border: 1px solid rgba(124,58,237,.3); box-shadow: 0 0 0 6px rgba(124,58,237,.06); }
.step-card h3 { font-size: .98rem; font-weight: 800; margin-bottom: 6px; }
.step-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; max-width: 190px; margin: 0 auto; }

/* ---- TESTI ---- */
.testi-section { background: #fff; }
.testi-card {
  background: linear-gradient(145deg,var(--dark),var(--dark2));
  border-radius: 28px; padding: 50px 44px;
  border: 1px solid rgba(168,85,247,.2);
  box-shadow: 0 28px 72px rgba(0,0,0,.22);
  position: relative; overflow: hidden;
  max-width: 680px; margin: 0 auto;
  text-align: center;
}
@media (max-width: 576px) { .testi-card { padding: 32px 24px; } }
.testi-glow { position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(168,85,247,.12); filter: blur(56px); pointer-events: none; }
.testi-stars { color: #fbbf24; font-size: .88rem; letter-spacing: 3px; margin-bottom: 22px; }
.testi-quote { font-size: clamp(.95rem,2vw,1.15rem); font-weight: 600; color: rgba(255,255,255,.84); line-height: 1.68; margin-bottom: 26px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--p),var(--p2)); display: flex; align-items: center; justify-content: center; font-size: 1rem; border: 2px solid rgba(168,85,247,.4); flex-shrink: 0; }
.testi-name { font-size: .82rem; font-weight: 700; color: #fff; }
.testi-role { font-size: .7rem; color: rgba(255,255,255,.4); }

/* ---- FOUNDER ---- */
.founder-section { background: var(--bg2); }
.founder-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(124,58,237,.07);
  display: flex; align-items: flex-start;
  gap: 28px;
  max-width: 780px; margin: 0 auto;
}
@media (max-width: 576px) { .founder-card { flex-direction: column; padding: 28px 22px; } }
.founder-av { width: 72px; height: 72px; border-radius: 18px; background: linear-gradient(135deg,var(--dark),var(--dark2)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 10px; border: 1px solid rgba(124,58,237,.25); box-shadow: 0 4px 20px rgba(124,58,237,.2); }
.founder-av img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: screen; filter: brightness(1.1); }
.founder-card h3 { font-size: 1.2rem; font-weight: 900; letter-spacing: -.03em; margin-bottom: 6px; }
.founder-card p { font-size: .88rem; color: var(--muted); line-height: 1.75; margin: 0; }
.founder-card p strong { color: var(--text); }

/* ---- PRICING ---- */
.pricing-section { background: var(--bg); }
.pc {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px; padding: 34px 30px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pc:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(124,58,237,.16); }
.pc-selectable { cursor: pointer; }
.pc.pop { border-color: rgba(124,58,237,.35); box-shadow: 0 0 0 4px rgba(124,58,237,.06), 0 12px 40px rgba(124,58,237,.12); transform: translateY(-6px); }
.pc-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--p),var(--p2)); color: #fff; font-size: .6rem; font-weight: 800; padding: 4px 14px; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.pc-name { font-size: .68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 9px; }
.pc-price { font-size: 2.4rem; font-weight: 900; letter-spacing: -.05em; color: var(--text); margin-bottom: 4px; }
.pc-price .mo { font-size: .8rem; font-weight: 400; color: var(--muted); }
.pc-desc { font-size: .8rem; color: var(--muted); line-height: 1.55; margin-bottom: 22px; }
.pc-feats { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 8px; }
.pc-feats li { font-size: .81rem; color: var(--text); display: flex; align-items: flex-start; gap: 7px; }
.pc-feats li::before { content:'✓'; color: var(--p); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.pc-feats li.off { color: var(--muted); }
.pc-feats li.off::before { content:'–'; color: #cbd5e1; }
.pc-note { font-size: .68rem; color: var(--muted); text-align: center; margin-top: 10px; }
.pc-limit-note { font-size: .72rem; color: var(--muted); background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 8px 14px; text-align: center; margin-top: auto; }
.pc-addons-section { background: linear-gradient(135deg, rgba(124,58,237,.04) 0%, rgba(34,211,238,.04) 50%, rgba(124,58,237,.04) 100%); border: 1.5px solid rgba(124,58,237,.18); position: relative; overflow: hidden; }
.pc-addons-section::before { content: ''; position: absolute; top: -60%; right: -20%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 70%); pointer-events: none; }
.pc-addons-badge { display: inline-block; font-size: .65rem; font-weight: 800; letter-spacing: .12em; color: var(--p); background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.18); border-radius: 20px; padding: 4px 14px; margin-bottom: 12px; }
.pc-addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0 22px; }
.pc-addon { display: flex; align-items: flex-start; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; transition: all .2s ease; }
.pc-addon-highlight { border-color: rgba(124,58,237,.15); background: linear-gradient(135deg, rgba(124,58,237,.03), rgba(255,255,255,.8)); box-shadow: 0 2px 8px rgba(124,58,237,.06); }
.pc-addon-highlight:hover { border-color: rgba(124,58,237,.3); box-shadow: 0 4px 16px rgba(124,58,237,.1); transform: translateY(-1px); }
.pc-addon-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.pc-addon-name { font-size: .8rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.pc-addon-desc { font-size: .7rem; color: var(--muted); line-height: 1.4; margin-top: 2px; }
.pc-custom-box { background: linear-gradient(135deg, rgba(124,58,237,.07) 0%, rgba(34,211,238,.07) 100%); border: 1.5px solid rgba(124,58,237,.2); border-radius: 18px; padding: 22px 22px 20px; margin-top: auto; }
.pc-custom-title { font-size: .88rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.pc-custom-desc { font-size: .77rem; color: var(--muted); line-height: 1.55; }

/* ---- CTA ---- */
.cta-section { background: var(--dark); position: relative; overflow: hidden; }
.cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(124,58,237,.25) 0%, transparent 65%); }
.cta-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 60px 60px; }
.cta-h { font-size: clamp(2.2rem,6vw,3.8rem); font-weight: 900; letter-spacing: -.05em; color: #fff; margin-bottom: 14px; line-height: 1.0; }
.cta-sub { color: rgba(255,255,255,.44); font-size: .95rem; max-width: 370px; margin: 0 auto 36px; line-height: 1.65; }
.cta-note { margin-top: 18px; font-size: .72rem; color: rgba(255,255,255,.3); }

/* ---- FOOTER ---- */
footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,.06); padding: 40px 24px; }
.foot-logo img { height: 96px; width: auto; opacity: .9; mix-blend-mode: screen; filter: brightness(1.1); transition: opacity .2s; }
.foot-logo img:hover { opacity: 1; }
.foot-link { font-size: .75rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.foot-link:hover { color: rgba(255,255,255,.7); }
.foot-copy { font-size: .72rem; color: rgba(255,255,255,.28); }

/* ---- ANIM ---- */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ---- BTN overrides ---- */
.btn-brand { background: linear-gradient(135deg,var(--p),var(--p2)); color: #fff !important; border: none; font-weight: 700; border-radius: 12px; box-shadow: 0 4px 22px rgba(124,58,237,.4); transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden; }
.btn-brand::after { content: ''; position: absolute; top: -50%; left: -75%; width: 50%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transform: skewX(-20deg); animation: btnShimmer 3s ease-in-out infinite; pointer-events: none; }
@keyframes btnShimmer {
  0%, 100% { left: -75%; }
  50% { left: 125%; }
}
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,.55); }
.btn-outline-light2 { background: transparent; color: #fff !important; border: 1.5px solid rgba(255,255,255,.28); font-weight: 700; border-radius: 12px; transition: background .2s, border-color .2s; }
.btn-outline-light2:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
.btn-ghost-brand { background: transparent; color: var(--p) !important; border: 1.5px solid #d4c5f9; font-weight: 700; border-radius: 12px; transition: background .2s; }
.btn-ghost-brand:hover { background: var(--bg2); }
.btn-white-brand { background: #fff; color: var(--dark2) !important; font-weight: 700; border-radius: 12px; box-shadow: 0 4px 18px rgba(0,0,0,.1); transition: transform .2s, box-shadow .2s; }
.btn-white-brand:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.16); }

/* ---- PAGE TRANSITION ---- */
#page-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 35%, #a855f7 65%, #22d3ee 100%);
  clip-path: circle(0% at var(--ox, 50%) var(--oy, 50%));
  pointer-events: none;
  will-change: clip-path;
}
#page-overlay.expanding {
  pointer-events: all;
  transition: clip-path 0.52s cubic-bezier(.65,0,.35,1);
  clip-path: circle(160% at var(--ox, 50%) var(--oy, 50%));
}
body.page-exiting {
  pointer-events: none;
  transition: opacity 0.35s ease 0.04s, transform 0.35s ease 0.04s, filter 0.35s ease 0.04s;
  opacity: 0;
  transform: scale(0.96);
  filter: blur(6px);
}

/* ---- FLOATING BUTTONS ---- */
.fab {
  position: fixed; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: transform .2s, box-shadow .2s, opacity .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.fab:hover { transform: scale(1.12); }
.fab-top {
  bottom: 24px; right: 80px;
  background: var(--p);
  color: #fff;
  opacity: 0; pointer-events: none;
}
.fab-top.visible { opacity: 1; pointer-events: auto; }
.fab-wa {
  bottom: 24px; right: 22px;
  background: #0891b2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(8,145,178,.35);
}
.fab-wa:hover { box-shadow: 0 6px 28px rgba(8,145,178,.55); }

/* ---- STAT CARDS (social proof) ---- */
.stat-card {
  background: linear-gradient(145deg,var(--dark),var(--dark2));
  border: 1px solid rgba(168,85,247,.2);
  border-radius: 20px;
  padding: 32px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.stat-num {
  font-size: clamp(2rem,5vw,2.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(135deg,#e879f9,var(--p3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* ---- SUPPORT CHIPS ---- */
.support-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .84rem;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.support-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,.1);
}
.support-chip--live {
  background: linear-gradient(135deg, #f3e8ff, #ede9fe);
  border-color: rgba(168,85,247,.3);
  color: var(--p);
  position: relative;
}
.support-chip--live::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,.6);
  animation: livePulse 2s infinite;
  margin-left: 4px;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

/* ---- USE CARD LINK (subtle CTA) ---- */
.use-card-link {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.use-card-link:hover { color: #fff; }

/* ---- ADDON PRICE ---- */
.pc-addon-price {
  font-size: .7rem;
  color: var(--p);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 2px;
}



/* ---- 1. HERO TYPEWRITER ---- */
.hero-sub .typewriter-text {
  display: inline;
  border-right: 2px solid rgba(255,255,255,.55);
  animation: blink-caret .72s step-end infinite;
}
.hero-sub .typewriter-text.done {
  border-right-color: transparent;
  animation: none;
}
@keyframes blink-caret {
  0%, 100% { border-color: rgba(255,255,255,.55); }
  50% { border-color: transparent; }
}

/* ---- 2. STAT COUNTER ANIM ---- */
.stat-num {
  transition: transform .4s ease;
}
.stat-num.counting {
  transform: scale(1.08);
}

/* ---- 3. BORDER BEAM on role cards ---- */
.use-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1.5px;
  background: conic-gradient(from var(--beam-angle, 0deg), transparent 0%, transparent 70%, var(--beam-color, rgba(168,85,247,.7)) 80%, rgba(255,255,255,.6) 85%, var(--beam-color, rgba(168,85,247,.7)) 90%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderBeam 4s linear infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s ease;
}
.use-card.in-view::before,
.use-card:hover::before {
  opacity: 1;
}
.pos-card  { --beam-color: rgba(168,85,247,.7); }
.b2b-card  { --beam-color: rgba(34,211,238,.7); }
.may-card  { --beam-color: rgba(232,121,249,.7); }
@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes borderBeam {
  to { --beam-angle: 360deg; }
}

/* ---- 4. FEATURE STRIP MARQUEE ---- */
.fstrip-marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.fstrip-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 6px;
  animation: marqueeScroll 32s linear infinite;
}
.fstrip-marquee:hover {
  animation-play-state: paused;
}
.fstrip-marquee-reverse {
  animation-direction: reverse;
}
.fstrip-marquee .fstrip-item {
  flex-shrink: 0;
  width: 150px;
  opacity: 1;
  transform: none;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- 5. STEPS CONNECTING LINE ---- */
.steps-connector-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.steps-connector-svg .connector-line {
  stroke: url(#stepGrad);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.5s ease;
}
.steps-connector-svg.drawn .connector-line {
  stroke-dashoffset: 0;
}
.steps-section .row { position: relative; }

/* ---- 6. CTA BUTTON PULSE ---- */
.cta-section .btn-brand {
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 4px 22px rgba(124,58,237,.4); }
  50%  { box-shadow: 0 4px 40px rgba(124,58,237,.7), 0 0 60px rgba(168,85,247,.3); }
  100% { box-shadow: 0 4px 22px rgba(124,58,237,.4); }
}

/* ---- ROADMAP TEASER ---- */
.roadmap-chip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 38px 26px 22px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  text-align: left;
  max-width: 320px;
  flex: 1 1 280px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.roadmap-chip:hover {
  border-color: rgba(34,211,238,.25);
  transform: translateY(-3px);
}
.roadmap-chip-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.roadmap-chip-body { flex: 1; }
.roadmap-chip-title {
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.roadmap-chip-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.55;
}
.roadmap-chip-tag {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(34,211,238,.1);
  color: var(--p3);
  border: 1px solid rgba(34,211,238,.2);
  white-space: nowrap;
}
.roadmap-chip--live {
  border-color: rgba(34,197,94,.3);
  background: rgba(34,197,94,.05);
}
.roadmap-chip-tag--live {
  background: rgba(34,197,94,.15);
  color: #22c55e;
  border-color: rgba(34,197,94,.3);
}

/* ---- LISTA PÚBLICA SECTION ---- */

/* Highlight grid */
.lp-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.lp-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.lp-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,.1);
}
.lp-highlight-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-highlight-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.25;
}
.lp-highlight-desc {
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 767px) {
  .lp-highlight-grid { grid-template-columns: 1fr; }
}

/* Phone mockup showcase */
.lp-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.lp-showcase-phone {
  width: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #0d0f1a;
  box-shadow:
    0 25px 60px rgba(0,0,0,.3),
    0 0 0 1px rgba(255,255,255,.08),
    0 0 80px rgba(124,58,237,.15);
  position: relative;
  z-index: 2;
}
.lp-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-phone-dots {
  display: flex;
  gap: 5px;
}
.lp-phone-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.lp-phone-dots span:first-child { background: #ef4444; }
.lp-phone-dots span:nth-child(2) { background: #f59e0b; }
.lp-phone-dots span:last-child { background: #22c55e; }
.lp-phone-url {
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  font-family: 'Inter', monospace;
  letter-spacing: .02em;
}
.lp-phone-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mock content inside phone */
.lp-mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-mock-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  flex-shrink: 0;
}
.lp-mock-title {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.lp-mock-search {
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.lp-mock-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-mock-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.lp-mock-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(34,211,238,.15));
  flex-shrink: 0;
}
.lp-mock-info {
  flex: 1;
  min-width: 0;
}
.lp-mock-name {
  height: 10px;
  width: 70%;
  border-radius: 4px;
  background: rgba(255,255,255,.15);
  margin-bottom: 6px;
}
.lp-mock-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-mock-price {
  font-size: .75rem;
  font-weight: 700;
  color: #22d3ee;
}
.lp-mock-price-may {
  font-size: .62rem;
  color: #a855f7;
  background: rgba(168,85,247,.12);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.lp-mock-add {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  cursor: default;
}
.lp-mock-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  margin-top: 4px;
  position: relative;
}
.lp-mock-cart-icon { font-size: 1.1rem; }
.lp-mock-cart-badge {
  position: absolute;
  top: -4px;
  left: 36px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22d3ee;
  color: #0b0814;
  font-size: .65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-mock-cart-text {
  margin-left: auto;
  font-size: .75rem;
  opacity: .9;
}

/* Floating badges */
.lp-showcase-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: .76rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.lp-float-wa {
  bottom: 40px;
  right: -30px;
  background: rgba(37,211,102,.12);
  color: #25d366;
  border: 1px solid rgba(37,211,102,.25);
}
.lp-float-dark {
  top: 30px;
  left: -20px;
  background: rgba(124,58,237,.1);
  color: var(--p2);
  border: 1px solid rgba(124,58,237,.2);
}

/* Animation: subtle float */
.lp-showcase-phone {
  animation: lpPhoneFloat 6s ease-in-out infinite;
}
@keyframes lpPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 991px) {
  .lp-showcase-phone { width: 280px; }
  .lp-showcase-float { font-size: .7rem; padding: 8px 14px; }
  .lp-float-wa { right: 0; bottom: 20px; }
  .lp-float-dark { left: 0; top: 10px; }
}
@media (max-width: 576px) {
  .lp-showcase-phone { width: 260px; }
  .lp-showcase-float { display: none; }
}
