/*
  File: bsbcss.css
  Premium Bootstrap theme layer for Business Support Buddy
  Global platform stylesheet
*/

/* -----------------------------
   Theme tokens
------------------------------ */
:root{
  --yb-bg:#0b1220;
  --yb-ink:#e9eef9;
  --yb-muted:#c3cde2;
  --yb-card:#121a2c;
  --yb-grad:linear-gradient(135deg,#4f83ff,#00d4ff);
  --yb-accent:#7fcfff;
  --container-max:1280px;
  --safe:env(safe-area-inset-bottom,0px);

  --bsb-surface:rgba(255,255,255,.06);
  --bsb-surface-2:rgba(255,255,255,.09);
  --bsb-border:rgba(255,255,255,.12);
  --bsb-border-2:rgba(255,255,255,.18);
  --bsb-shadow:0 18px 55px rgba(0,0,0,.45);
  --bsb-shadow-soft:0 10px 30px rgba(0,0,0,.28);
  --bsb-radius:14px;
  --bsb-radius-sm:10px;

  --bsb-primary:#dc3545;
  --bsb-primary-2:#ff4d6d;

  --scroll-offset:84px;
  --menu-mega-top:calc(env(safe-area-inset-top,0px) + 82px);
}

html{
  scroll-padding-top:var(--scroll-offset);
  scroll-behavior:smooth;
  max-width:100%;
}

:where([id]):not(html):not(body){
  scroll-margin-top:var(--scroll-offset);
}

/* -----------------------------
   Base
------------------------------ */
html,
body{
  overflow-x:hidden;
}

body{
  background:var(--yb-bg);
  color:#f2f6ff;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  padding-top:72px;
  -webkit-text-size-adjust:100%;
  min-height:100vh;
}

@media (min-width:992px){
  body{
    padding-top:80px;
  }
}

img,
svg,
video{
  max-width:100%;
  height:auto;
}

.container{
  max-width:var(--container-max);
}

.min-w-0{
  min-width:0 !important;
}

.max-w-100{
  max-width:100% !important;
}

.text-secondary,
.text-muted,
.section-sub,
.aw-sub,
p.text-secondary{
  color:#d7e3f9 !important;
}

.text-break,
.break-anywhere,
.overflow-anywhere,
.admin-break-anywhere,
.team-break-anywhere{
  overflow-wrap:anywhere !important;
  word-break:break-word !important;
}

pre,
code,
kbd,
samp{
  white-space:pre-wrap;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.card,
.card-body,
.card-header,
.modal-body,
.modal-footer,
.dropdown-item,
.alert,
.badge,
.btn,
.nav-link,
.site-footer,
.site-footer a,
.snapshot-meta-copy,
.snapshot-note,
.team-inline-muted,
.audit-meta{
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* -----------------------------
   Top bar and nav compatibility
------------------------------ */
.appbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1080;
  backdrop-filter:blur(14px);
  background:rgba(11,18,32,.78);
  border-bottom:1px solid rgba(255,255,255,.08);
  overflow:visible;
}

.appbar-inner{
  width:100%;
  max-width:none;
  margin:0;
  padding:.54rem clamp(.85rem, 1.25vw, 1.25rem);
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:.75rem;
  min-width:0;
  overflow:visible;
}

.brand-link{
  display:inline-flex;
  align-items:center;
  gap:.72rem;
  min-width:0;
  justify-self:start;
  flex:0 0 auto;
  max-width:min(360px, 32vw);
  text-decoration:none;
  color:#f8fafc;
}

.brand-link:hover,
.brand-link:focus{
  color:#fff;
}

.brand-mark{
  width:40px;
  height:40px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(96,165,250,.30), rgba(59,130,246,.12));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 26px rgba(0,0,0,.22);
  flex:0 0 auto;
}

.brand-mark i{
  font-size:1.05rem;
  line-height:1;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.brand-title{
  color:#fff;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.05;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.brand-subtitle{
  color:rgba(226,232,240,.64);
  font-size:.76rem;
  line-height:1.2;
  margin-top:.1rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:220px;
}

.desktop-nav,
.nav-desktop{
  display:none;
  align-items:center;
  justify-content:center;
  justify-self:center;
  gap:.24rem;
  min-width:0;
  max-width:100%;
  flex-wrap:nowrap;
  overflow:visible;
}

@media (min-width:992px){
  .desktop-nav,
  .nav-desktop{
    display:flex;
  }
}

.nav-pill,
.nav-desktop .nav-link,
.nav-desktop .nav-dropdown-toggle{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  min-height:40px;
  padding:.54rem .62rem;
  border-radius:999px;
  color:rgba(238,244,255,.88);
  text-decoration:none;
  font-weight:780;
  font-size:.86rem;
  line-height:1.2;
  white-space:nowrap;
  border:1px solid transparent;
  background:transparent;
  transition:background .16s ease,border-color .16s ease,color .16s ease,transform .16s ease;
  flex:0 0 auto;
}

.nav-pill:hover,
.nav-pill:focus,
.nav-desktop .nav-link:hover,
.nav-desktop .nav-link:focus,
.nav-desktop .nav-dropdown-toggle:hover,
.nav-desktop .nav-dropdown-toggle:focus{
  color:#fff;
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.10);
  transform:translateY(-1px);
}

.nav-pill.is-active,
.nav-desktop .nav-link.is-active,
.nav-desktop .nav-dropdown-toggle.is-active{
  color:#041027;
  background:linear-gradient(135deg,#7fcfff,#4f83ff);
  border-color:rgba(255,255,255,.24);
  box-shadow:0 10px 24px rgba(79,131,255,.18);
}

.nav-pill i,
.nav-desktop .nav-link i,
.nav-desktop .nav-dropdown-toggle i{
  line-height:1;
}

.nav-dropdown{
  position:relative;
}

.nav-dropdown-center .dropdown-menu{
  left:50% !important;
  right:auto !important;
  transform:translateX(-50%) !important;
}

.nav-dropdown .dropdown-menu{
  min-width:860px;
  width:min(1040px, calc(100vw - 2rem));
  max-width:calc(100vw - 2rem);
}

@media (min-width:992px){
  .nav-dropdown-center .dropdown-menu{
    position:fixed !important;
    top:var(--menu-mega-top) !important;
    margin-top:0 !important;
    z-index:1090;
  }
}

.navbar-toggler{
  border:0;
  outline:none;
  padding:.45rem .6rem;
  border-radius:12px;
  background:rgba(255,255,255,.10);
  transition:background .15s ease;
}

.navbar-toggler:hover{
  background:rgba(255,255,255,.16);
}

.navbar-toggler:focus,
.navbar-toggler:active{
  outline:none !important;
  box-shadow:none !important;
}

.navbar-toggler .icon{
  width:26px;
  height:26px;
  stroke:#fff;
  display:inline-flex;
}

.navbar .nav-link,
.navbar .dropdown-toggle{
  white-space:nowrap;
}

.navbar .nav-link{
  color:#eef3ff !important;
  opacity:.95;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus{
  color:#fff !important;
  opacity:1;
}

.dropdown-menu-dark .dropdown-item{
  color:#f0f4ff;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus{
  color:#fff;
  background:rgba(255,255,255,.06);
}

.offcanvas .nav-link{
  color:#eef3ff;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus{
  color:#fff;
}

/* -----------------------------
   Solutions mega menu
------------------------------ */
.solutions-dropdown{
  border-radius:24px;
  padding:.9rem;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.10), transparent 34%),
    radial-gradient(circle at top right, rgba(59,130,246,.10), transparent 28%),
    #0f172a;
  box-shadow:0 24px 60px rgba(0,0,0,.36);
}

.solutions-dropdown-header{
  padding:.78rem .95rem 1rem .95rem;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:.65rem;
}

.solutions-dropdown-kicker,
.account-mega-kicker{
  font-size:.72rem;
  line-height:1.1;
  color:rgba(255,255,255,.56);
  text-transform:uppercase;
  letter-spacing:.05em;
  font-weight:800;
  margin:0 0 .25rem 0;
}

.solutions-dropdown-title,
.account-mega-title{
  margin:0;
  color:#fff;
  font-size:1.03rem;
  line-height:1.2;
  font-weight:800;
}

.solutions-dropdown-subtitle,
.account-mega-subtitle{
  margin:.28rem 0 0 0;
  color:rgba(255,255,255,.60);
  font-size:.84rem;
  line-height:1.45;
  font-weight:600;
}

.solutions-dropdown-grid{
  display:grid;
  gap:.55rem;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  align-items:stretch;
}

.solutions-link{
  display:flex;
  align-items:flex-start;
  gap:.9rem;
  min-height:100%;
  border-radius:16px;
  color:#f8fafc;
  text-decoration:none;
  padding:1rem;
  transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
}

.solutions-link:hover,
.solutions-link:focus{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.solutions-link-icon-wrap{
  width:42px;
  height:42px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(96,165,250,.14);
  border:1px solid rgba(255,255,255,.10);
  color:#dbeafe;
  flex:0 0 auto;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}

.solutions-link-icon-wrap i{
  font-size:1rem;
  line-height:1;
}

.solutions-link-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.24rem;
  flex:1 1 auto;
}

.solutions-link-title{
  color:#fff;
  font-size:.94rem;
  line-height:1.3;
  font-weight:800;
}

.solutions-link-desc{
  color:rgba(255,255,255,.58);
  font-size:.8rem;
  line-height:1.45;
  font-weight:600;
}

.solutions-link-arrow{
  color:rgba(255,255,255,.42);
  font-size:.84rem;
  line-height:1;
  padding-top:.15rem;
  flex:0 0 auto;
}

/* -----------------------------
   Menu account and scoped access
------------------------------ */
.menu-actions,
.appbar-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  justify-self:end;
  gap:.5rem;
  min-width:0;
  flex:0 0 auto;
  flex-wrap:nowrap;
  overflow:visible;
}

.menu-auth-actions{
  display:none;
  align-items:center;
  gap:.55rem;
}

@media (min-width:768px){
  .menu-auth-actions{
    display:flex;
  }
}

.workspace-pill{
  display:inline-flex;
  align-items:center;
  gap:.42rem;
  max-width:190px;
  min-width:0;
  min-height:42px;
  padding:.52rem .68rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#f8fafc;
  text-decoration:none;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.14);
}

.workspace-pill:hover,
.workspace-pill:focus{
  color:#fff;
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.07);
}

.workspace-pill.is-support-active{
  border-color:rgba(255,193,7,.32);
  background:rgba(255,193,7,.12);
  color:#fff3cd;
  box-shadow:0 0 0 1px rgba(255,193,7,.08) inset;
}

.workspace-avatar{
  width:30px;
  height:30px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:linear-gradient(135deg, rgba(96,165,250,.34), rgba(59,130,246,.16));
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:900;
  font-size:.86rem;
}

.workspace-pill-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.workspace-pill-label{
  font-size:.68rem;
  color:rgba(226,232,240,.58);
  line-height:1.12;
  text-transform:uppercase;
  letter-spacing:.04em;
  white-space:nowrap;
}

.workspace-pill.is-support-active .workspace-pill-label{
  color:rgba(255,243,205,.78);
}

.workspace-pill-title,
.workspace-pill-value{
  color:#fff;
  font-weight:850;
  font-size:.8rem;
  line-height:1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.workspace-chevron{
  color:rgba(226,232,240,.62);
  font-size:.75rem;
  margin-left:.12rem;
}

.menu-support-end-pill{
  display:none;
  align-items:center;
  justify-content:center;
  gap:.38rem;
  min-height:42px;
  padding:.58rem .72rem;
  border-radius:999px;
  border:1px solid rgba(255,193,7,.36);
  background:rgba(255,193,7,.12);
  color:#fff3cd;
  text-decoration:none;
  font-size:.8rem;
  line-height:1.1;
  font-weight:850;
  white-space:nowrap;
  flex:0 0 auto;
}

.menu-support-end-pill:hover,
.menu-support-end-pill:focus{
  color:#fff;
  background:rgba(255,193,7,.18);
  border-color:rgba(255,193,7,.48);
}

.menu-account{
  display:none;
  align-items:center;
  gap:.55rem;
  flex:0 0 auto;
}

.account-trigger{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  min-width:0;
  max-width:225px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  padding:.5rem .68rem;
}

.account-trigger:hover,
.account-trigger:focus{
  color:#fff;
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.14);
}

.account-avatar{
  width:36px;
  height:36px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(96,165,250,.18);
  border:1px solid rgba(255,255,255,.10);
  font-weight:800;
  flex:0 0 auto;
}

.account-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.account-name{
  color:#fff;
  font-size:.86rem;
  line-height:1.18;
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.account-role{
  color:rgba(255,255,255,.58);
  font-size:.74rem;
  line-height:1.15;
  text-transform:capitalize;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

@media (min-width:992px){
  .menu-account .account-mega-dropdown{
    position:fixed !important;
    top:var(--menu-mega-top) !important;
    right:clamp(.75rem, 2vw, 2rem) !important;
    left:auto !important;
    transform:none !important;
    margin-top:0 !important;
    z-index:1095;
  }
}

.account-mega-dropdown{
  width:min(940px, calc(100vw - 2rem));
  max-width:calc(100vw - 2rem);
  max-height:calc(100vh - 112px);
  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;
  border-radius:26px;
  padding:1rem;
  border:1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 0% 0%, rgba(96,165,250,.12), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(255,193,7,.11), transparent 30%),
    linear-gradient(180deg, rgba(15,23,42,.985), rgba(9,15,28,.985));
  box-shadow:
    0 28px 80px rgba(0,0,0,.48),
    0 0 0 1px rgba(255,255,255,.025) inset;
  scrollbar-color:rgba(255,255,255,.22) transparent;
}

.account-mega-dropdown::-webkit-scrollbar{
  width:10px;
}

.account-mega-dropdown::-webkit-scrollbar-track{
  background:transparent;
}

.account-mega-dropdown::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.20);
  border-radius:999px;
  border:3px solid transparent;
  background-clip:padding-box;
}

.account-mega-header{
  display:grid;
  gap:1rem;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:start;
  padding:.9rem .95rem 1.05rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:21px;
  background:rgba(255,255,255,.025);
  margin-bottom:.8rem;
}

.account-mega-profile{
  display:flex;
  align-items:center;
  gap:.85rem;
  min-width:0;
}

.account-mega-avatar{
  width:50px;
  height:50px;
  border-radius:17px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(96,165,250,.18);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-weight:900;
  font-size:1.08rem;
  flex:0 0 auto;
}

.account-mega-name{
  margin:0;
  color:#fff;
  font-size:1.05rem;
  line-height:1.22;
  font-weight:900;
  overflow-wrap:anywhere;
}

.account-mega-meta{
  margin:.18rem 0 0;
  color:rgba(255,255,255,.62);
  font-size:.83rem;
  line-height:1.4;
  font-weight:650;
  overflow-wrap:anywhere;
}

.account-mega-header-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  justify-content:flex-end;
  align-items:center;
}

.account-support-card{
  border:1px solid rgba(255,193,7,.28);
  background:
    radial-gradient(circle at top left, rgba(255,193,7,.14), transparent 36%),
    rgba(255,193,7,.085);
  border-radius:21px;
  padding:.95rem;
  margin-bottom:.8rem;
  color:#fff3cd;
}

.account-support-card-top{
  display:grid;
  gap:.9rem;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:center;
}

.account-support-title{
  margin:0;
  color:#fff;
  font-size:.98rem;
  line-height:1.25;
  font-weight:900;
}

.account-support-copy{
  margin:.25rem 0 0;
  color:#fff3cd;
  font-size:.83rem;
  line-height:1.48;
  overflow-wrap:anywhere;
}

.account-mega-grid{
  display:grid;
  gap:.8rem;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  align-items:start;
}

.account-mega-section{
  min-width:0;
  border:1px solid rgba(255,255,255,.075);
  border-radius:20px;
  background:rgba(255,255,255,.026);
  padding:.8rem;
}

.account-mega-section-title{
  display:flex;
  align-items:center;
  gap:.42rem;
  margin:0 0 .6rem;
  color:rgba(255,255,255,.76);
  font-size:.74rem;
  line-height:1.2;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.045em;
}

.account-mega-link-list{
  display:grid;
  gap:.5rem;
}

.account-mega-link{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  min-width:0;
  border-radius:15px;
  color:#fff;
  text-decoration:none;
  padding:.72rem;
  border:1px solid rgba(255,255,255,.055);
  background:rgba(255,255,255,.022);
  transition:background .18s ease,border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}

.account-mega-link:hover,
.account-mega-link:focus{
  color:#fff;
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}

.account-mega-link.is-active{
  background:rgba(13,110,253,.15);
  border-color:rgba(13,110,253,.35);
}

.account-mega-link.is-warning{
  color:#fff3cd;
  border-color:rgba(255,193,7,.24);
  background:rgba(255,193,7,.08);
}

.account-mega-link-icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(96,165,250,.13);
  border:1px solid rgba(255,255,255,.08);
  color:#dbeafe;
  flex:0 0 auto;
}

.account-mega-link.is-warning .account-mega-link-icon{
  background:rgba(255,193,7,.13);
  color:#fff3cd;
}

.account-mega-link-copy{
  min-width:0;
  flex:1 1 auto;
}

.account-mega-link-title{
  display:block;
  color:inherit;
  font-size:.88rem;
  line-height:1.25;
  font-weight:900;
  overflow-wrap:anywhere;
}

.account-mega-link-desc{
  display:block;
  margin-top:.16rem;
  color:rgba(255,255,255,.56);
  font-size:.75rem;
  line-height:1.38;
  font-weight:650;
  overflow-wrap:anywhere;
}

.account-mega-link.is-warning .account-mega-link-desc{
  color:rgba(255,243,205,.72);
}

.menu-account-dropdown{
  min-width:310px;
  max-width:min(360px, calc(100vw - 1.5rem));
  padding:.65rem;
  border-radius:1.1rem;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(15,23,42,.98);
  box-shadow:0 24px 70px rgba(0,0,0,.46);
  backdrop-filter:blur(16px);
  z-index:3000;
}

.dropdown-account-card{
  border:1px solid rgba(255,255,255,.10);
  border-radius:.95rem;
  padding:.82rem;
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.12), transparent 34%),
    rgba(255,255,255,.04);
  margin-bottom:.55rem;
}

.dropdown-section-label{
  color:rgba(226,232,240,.55);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.5rem .55rem .25rem;
}

.menu-dropdown-link{
  display:flex;
  align-items:center;
  gap:.6rem;
  border-radius:.78rem;
  padding:.62rem .65rem;
  color:rgba(248,250,252,.90);
  text-decoration:none;
  line-height:1.25;
  font-weight:720;
}

.menu-dropdown-link:hover,
.menu-dropdown-link:focus{
  color:#fff;
  background:rgba(255,255,255,.075);
}

.menu-dropdown-link.is-danger{
  color:#fecdd3;
}

.menu-dropdown-link.is-danger:hover,
.menu-dropdown-link.is-danger:focus{
  color:#fff;
  background:rgba(220,53,69,.16);
}

.support-access-mini,
.mobile-support-access{
  border:1px solid rgba(255,193,7,.22);
  border-radius:1rem;
  background:rgba(255,193,7,.10);
  color:#fff3cd;
  padding:.82rem .9rem;
  line-height:1.5;
  font-size:.9rem;
  margin-bottom:1rem;
}

.support-access-mini{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
  margin-bottom:.55rem;
}

.support-access-mini strong,
.mobile-support-access strong{
  color:#fff;
}

.menu-icon-btn{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  transition:background .16s ease,border-color .16s ease,transform .16s ease;
}

.menu-icon-btn:hover,
.menu-icon-btn:focus{
  color:#fff;
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
  transform:translateY(-1px);
}

.menu-icon-btn i{
  font-size:1.25rem;
  line-height:1;
}

.menu-mobile-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  flex:0 0 auto;
}

.menu-mobile-toggle:hover,
.menu-mobile-toggle:focus{
  background:rgba(255,255,255,.09);
  color:#fff;
}

/* -----------------------------
   Mobile navigation
------------------------------ */
.mobile-nav-shell{
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.16), transparent 34%),
    linear-gradient(180deg, rgba(15,23,42,.99), rgba(7,17,31,.99));
  color:#f8fafc;
  border-left:1px solid rgba(255,255,255,.10);
}

.mobile-nav-header{
  padding:1rem;
  border-bottom:1px solid rgba(255,255,255,.09);
}

.mobile-nav-title{
  color:#fff;
  font-weight:900;
  line-height:1.1;
}

.mobile-nav-subtitle{
  color:rgba(226,232,240,.66);
  font-size:.9rem;
  line-height:1.45;
  margin-top:.2rem;
}

.mobile-nav-body{
  padding:1rem;
  overflow-y:auto;
}

.mobile-account-card{
  border:1px solid rgba(255,255,255,.10);
  border-radius:1rem;
  padding:.95rem;
  background:rgba(255,255,255,.04);
  margin-bottom:1rem;
}

.mobile-account-card.is-support-active{
  border-color:rgba(255,193,7,.28);
  background:
    radial-gradient(circle at top left, rgba(255,193,7,.12), transparent 34%),
    rgba(255,255,255,.035);
}

.mobile-account-top{
  display:flex;
  align-items:center;
  gap:.8rem;
  margin-bottom:.9rem;
}

.mobile-account-avatar{
  width:44px;
  height:44px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(96,165,250,.18);
  border:1px solid rgba(255,255,255,.10);
  font-weight:800;
  flex:0 0 auto;
}

.mobile-account-title,
.mobile-account-name{
  font-weight:900;
  color:#fff;
  line-height:1.2;
  overflow-wrap:anywhere;
  margin:0;
}

.mobile-account-name{
  font-size:.98rem;
}

.mobile-account-meta{
  color:rgba(226,232,240,.66);
  font-size:.88rem;
  margin-top:.3rem;
  line-height:1.45;
  overflow-wrap:anywhere;
  text-transform:capitalize;
}

.mobile-nav-group{
  display:grid;
  gap:.55rem;
  margin-bottom:1rem;
}

.mobile-nav-group-label{
  color:rgba(226,232,240,.56);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:.3rem 0 .1rem;
}

.mobile-nav-list{
  display:grid;
  gap:.5rem;
}

.mobile-nav-link{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:.8rem;
  border-radius:1rem;
  padding:.82rem .9rem;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  color:#f8fafc;
  text-decoration:none;
  font-weight:700;
  line-height:1.2;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus{
  color:#fff;
  background:rgba(255,255,255,.075);
  border-color:rgba(255,255,255,.14);
}

.mobile-nav-link.is-active{
  background:rgba(96,165,250,.15);
  border-color:rgba(96,165,250,.30);
  box-shadow:0 0 0 1px rgba(96,165,250,.10) inset;
}

.mobile-nav-link.is-danger{
  color:#fecdd3;
  border-color:rgba(220,53,69,.18);
  background:rgba(220,53,69,.08);
}

.mobile-nav-link i{
  margin-top:.1rem;
  flex:0 0 auto;
}

.mobile-nav-link-title{
  color:inherit;
  font-size:.95rem;
  font-weight:850;
  line-height:1.25;
}

.mobile-nav-link-desc,
.mobile-nav-link .meta{
  color:rgba(226,232,240,.62);
  font-size:.84rem;
  line-height:1.35;
  margin-top:.18rem;
}

.mobile-nav-link-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.15rem;
}

.mobile-workspace-pill{
  display:inline-flex;
  align-items:center;
  gap:.42rem;
  border-radius:999px;
  padding:.36rem .58rem;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(226,232,240,.80);
  font-size:.78rem;
  font-weight:760;
  margin-top:.55rem;
  max-width:100%;
}

.mobile-support-card{
  display:grid;
  gap:.65rem;
  margin-top:.85rem;
  border:1px solid rgba(255,193,7,.24);
  border-radius:16px;
  background:rgba(255,193,7,.10);
  padding:.85rem;
  color:#fff3cd;
}

.mobile-support-card strong{
  color:#fff;
}

.mobile-support-card p{
  margin:0;
  font-size:.86rem;
  line-height:1.45;
}

.mobile-nav-actions{
  display:grid;
  gap:.6rem;
  margin-top:1rem;
}

/* -----------------------------
   Links and buttons
------------------------------ */
a{
  color:#fff;
  text-decoration:none;
}

a:hover{
  color:#cfe0ff;
  text-decoration:none;
}

a:focus-visible{
  outline:2px solid var(--yb-accent);
  outline-offset:2px;
  border-radius:6px;
}

.btn{
  min-height:38px;
  align-items:center;
  justify-content:center;
}

.btn-primary{
  background-image:var(--yb-grad);
  border:0;
  color:#041027;
  font-weight:800;
}

.btn-primary:hover,
.btn-primary:focus{
  color:#041027;
  filter:brightness(1.03);
}

.btn-outline-light{
  border-color:rgba(255,255,255,.25);
}

.btn-outline-light.btn-dashboard-active{
  background-color:#fff;
  color:#041027;
  border-color:#fff;
}

.btn-outline-light.btn-dashboard-active:hover,
.btn-outline-light.btn-dashboard-active:focus{
  filter:brightness(.96);
  color:#041027;
  border-color:#fff;
}

.btn-ghost,
.btn-menu-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#eef3ff;
  border-radius:12px;
  padding:.55rem .85rem;
  font-weight:700;
  text-decoration:none;
}

.btn-ghost:hover,
.btn-menu-ghost:hover,
.btn-menu-ghost:focus{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.16);
  color:#fff;
}

.btn-ghost:focus,
.btn-menu-ghost:focus{
  box-shadow:0 0 0 .25rem rgba(127,207,255,.18);
}

.btn-menu-ghost.is-warning{
  border-color:rgba(255,193,7,.36);
  background:rgba(255,193,7,.12);
  color:#fff3cd;
}

.btn-menu-ghost.is-warning:hover,
.btn-menu-ghost.is-warning:focus{
  color:#fff;
  background:rgba(255,193,7,.18);
}

.btn-menu-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  padding:.72rem 1rem;
  border-radius:12px;
  border:1px solid rgba(96,165,250,.42);
  background:linear-gradient(135deg, rgba(96,165,250,.92), rgba(59,130,246,.78));
  color:#04111f;
  text-decoration:none;
  font-weight:800;
  line-height:1.1;
  box-shadow:0 12px 26px rgba(37,99,235,.24);
}

.btn-menu-primary:hover,
.btn-menu-primary:focus{
  color:#04111f;
  filter:brightness(1.03);
}

/* -----------------------------
   Reusable blocks
------------------------------ */
.card.yb{
  background:var(--yb-card);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 24px rgba(0,0,0,.25);
  border-radius:1rem;
}

.app-widget{
  background:#0f1a31;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:16px;
  transition:transform .12s ease,border-color .12s ease;
}

.app-widget:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.16);
}

.aw-inner{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.aw-copy{
  min-width:0;
  flex:1 1 auto;
}

.aw-title{
  font-weight:800;
  font-size:1.05rem;
  line-height:1.3;
}

.aw-sub{
  font-size:.95rem;
  line-height:1.25;
}

.icon{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.icon svg,
.icon [data-lucide],
.icon i{
  width:1em;
  height:1em;
  line-height:1;
}

.icon-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  background:#0f1a31;
  border:1px solid rgba(255,255,255,.1);
}

.icon-pill .icon{
  width:1.5rem;
  height:1.5rem;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.35rem .6rem;
  border-radius:999px;
  background:#0f1a31;
  border:1px solid rgba(255,255,255,.06);
  font-weight:700;
  font-size:.8rem;
  color:#dce8ff;
  white-space:normal;
}

.chip .icon{
  width:1.125rem;
  height:1.125rem;
  flex:0 0 1.125rem;
}

.chip-deck{
  border:1px dashed rgba(255,255,255,.12);
  border-radius:.75rem;
  padding:.5rem;
}

.chips-grid{
  display:grid;
  gap:.5rem;
  grid-template-columns:repeat(2, 1fr);
}

@media (min-width:576px){
  .chips-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (min-width:768px){
  .chips-grid{
    grid-template-columns:repeat(4, 1fr);
  }
}

@media (min-width:1200px){
  .chips-grid{
    grid-template-columns:repeat(5, 1fr);
  }
}

.chips-grid .chip{
  width:100%;
  min-height:2.4rem;
  justify-content:center;
  text-align:center;
}

.badge-soft{
  background:#0f1a31;
  border:1px solid rgba(255,255,255,.08);
  color:#eaf2ff;
  border-radius:999px;
  padding:6px 10px;
  font-weight:700;
  font-size:.8rem;
}

ul,
ol{
  margin:0 0 1rem;
  padding-left:1.25rem;
}

ul li,
ol li{
  position:relative;
  line-height:1.5;
  margin-bottom:.4rem;
  word-wrap:break-word;
  color:#e8efff;
}

ul li::marker,
ol li::marker{
  color:var(--yb-accent);
}

ul li > *{
  vertical-align:top;
}

.list-check{
  list-style:none;
  padding-left:0;
}

.list-check li{
  display:block;
  min-width:0;
  padding-left:1.65rem;
}

.list-check li > .icon:first-child,
.list-check li > svg:first-child{
  position:absolute;
  top:.2em;
  left:0;
  width:1.05rem;
  height:1.05rem;
}

.list-check .list-check-copy{
  min-width:0;
}

.list-check svg{
  color:var(--yb-accent);
}

header,
section,
footer{
  padding-top:0;
  padding-bottom:3rem;
}

.section-heading{
  margin-bottom:1rem;
}

.section-sub{
  margin-bottom:1.25rem;
  line-height:1.65;
}

.app-hero{
  border-radius:.75rem;
  border:1px dashed rgba(255,255,255,.12);
  padding:18px;
  width:100%;
  box-sizing:border-box;
}

.app-hero .app-widget{
  display:flex;
}

.app-hero .aw-inner{
  margin:auto 0;
  align-items:center;
}

.kpi-card{
  background:#0f1a31;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:16px;
  height:100%;
}

.kpi-value{
  font-weight:800;
  font-size:1.7rem;
  line-height:1.1;
  font-variant-numeric:tabular-nums;
  display:inline-block;
  min-height:1.2em;
}

.kpi-note{
  font-size:.9rem;
  color:var(--yb-muted);
}

.faq-card{
  background:rgba(255,255,255,.015);
  border:1px solid rgba(255,255,255,.03);
  cursor:pointer;
  border-radius:.85rem;
}

.faq-card:hover{
  border-color:rgba(255,255,255,.07);
}

/* -----------------------------
   Legacy footer compatibility
------------------------------ */
.site-footer{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.site-footer h6{
  font-weight:800;
  color:#cfe0ff;
}

.site-footer a{
  color:#e9eef9;
}

.site-footer a:hover{
  color:#cfe0ff;
}

.site-footer .text-secondary,
.site-footer .small.text-secondary{
  color:#cfd9ee !important;
}

@media (max-width:575.98px){
  .app-hero{
    padding:14px;
  }

  .app-hero .row{
    --bs-gutter-x:.5rem;
    --bs-gutter-y:.5rem;
  }

  .app-widget{
    padding:12px;
    border-radius:12px;
  }

  .aw-inner{
    gap:10px;
  }

  .icon-pill{
    width:36px;
    height:36px;
  }

  .icon{
    width:22px;
    height:22px;
  }

  .aw-title{
    font-size:.98rem;
    line-height:1.2;
  }

  .aw-sub{
    font-size:.85rem;
    line-height:1.25;
  }

  .chip{
    gap:.4rem;
  }

  .chip .icon{
    width:1rem;
    height:1rem;
    flex-basis:1rem;
  }
}

.xl-strip{
  display:none;
}

@media (min-width:1200px){
  .xl-strip{
    display:block;
  }

  .xl-strip .item{
    padding:.75rem 1rem;
    border:1px solid rgba(255,255,255,.08);
    border-radius:.75rem;
    background:#0f1a31;
    height:100%;
  }
}

/* -----------------------------
   Dashboard specific
------------------------------ */
.layout{
  padding-top:1.25rem;
  padding-bottom:2.5rem;
}

.subtitle{
  color:rgba(255,255,255,.65);
  margin:.25rem 0 1rem;
}

.sticky-util{
  position:sticky;
  top:calc(var(--scroll-offset) - 8px);
  z-index:1030;
  background:linear-gradient(to bottom, rgba(11,18,32,.90), rgba(11,18,32,.72));
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:.75rem;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  align-items:center;
  justify-content:flex-end;
  margin:.75rem 0 1rem;
}

@media (max-width:575.98px){
  .actions{
    justify-content:stretch;
  }

  .actions .btn{
    flex:1 1 auto;
  }
}

.filter-shell{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:16px;
  padding:1rem;
  box-shadow:0 12px 35px rgba(0,0,0,.28);
}

.advanced-details{
  margin-top:.25rem;
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:.75rem;
}

.advanced-summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  color:#eaf2ff;
  user-select:none;
}

.advanced-summary::-webkit-details-marker{
  display:none;
}

.advanced-summary i{
  margin-right:.35rem;
  opacity:.9;
}

.form-control,
.form-select{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:#eef3ff;
  border-radius:12px;
}

.form-control::placeholder{
  color:rgba(255,255,255,.55);
}

.form-control:focus,
.form-select:focus{
  box-shadow:0 0 0 .25rem rgba(127,207,255,.18);
  border-color:rgba(127,207,255,.35);
}

.input-group-text{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#eef3ff;
  border-radius:12px 0 0 12px;
}

.job-card{
  transform:translateY(6px);
  opacity:0;
  transition:transform .18s ease, opacity .18s ease;
}

.job-card.visible{
  transform:translateY(0);
  opacity:1;
}

.glass{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  box-shadow:var(--bsb-shadow-soft);
  overflow:hidden;
}

.glass:hover{
  border-color:rgba(255,255,255,.14);
  box-shadow:var(--bsb-shadow);
  transform:translateY(-2px);
}

.card-head-grad{
  background:linear-gradient(135deg, rgba(220,53,69,.95), rgba(255,77,109,.75)) !important;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.modal-glass{
  background:linear-gradient(180deg, rgba(18,26,44,.98), rgba(11,18,32,.98));
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  box-shadow:0 20px 65px rgba(0,0,0,.55);
}

.bg-gradient-primary{
  background:linear-gradient(135deg, rgba(220,53,69,.95), rgba(255,77,109,.75)) !important;
}

.transcript-turn{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.10) !important;
}

.white-space-prewrap{
  white-space:pre-wrap;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.badge.inbound{
  background:rgba(79,131,255,.20);
  border:1px solid rgba(79,131,255,.35);
  color:#dce8ff;
}

.badge.outbound{
  background:rgba(32,201,151,.18);
  border:1px solid rgba(32,201,151,.35);
  color:#dbfff1;
}

.badge.pass{
  background:rgba(32,201,151,.20);
  border:1px solid rgba(32,201,151,.35);
  color:#dbfff1;
}

.badge.fail{
  background:rgba(220,53,69,.22);
  border:1px solid rgba(220,53,69,.38);
  color:#ffe2e8;
}

.badge.tw-unmatched{
  background:rgba(255,193,7,.18);
  border:1px solid rgba(255,193,7,.32);
  color:#fff3cd;
}

.btn-copy{
  padding:0;
  border:0;
  text-decoration:none;
  font-weight:800;
  color:#eaf2ff;
}

.btn-copy:hover{
  color:#cfe0ff;
  text-decoration:underline;
}

.btn-copy.copied{
  filter:brightness(1.15);
}

.skeleton{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
}

.skeleton-card{
  min-height:220px;
}

.shimmer{
  background:linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.10), rgba(255,255,255,.05));
  background-size:200% 100%;
  animation:bsb-shimmer 1.25s infinite;
  border-radius:10px;
}

@keyframes bsb-shimmer{
  0%{background-position:200% 0;}
  100%{background-position:-200% 0;}
}

.h16{height:16px;}
.h12{height:12px;}
.h32{height:32px;}
.w50{width:50%;}
.w60{width:60%;}
.w70{width:70%;}
.w80{width:80%;}
.w100{width:100%;}

.alert{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.alert-danger{
  border-color:rgba(220,53,69,.35);
  background:rgba(220,53,69,.12);
}

.alert-warning{
  border-color:rgba(255,193,7,.30);
  background:rgba(255,193,7,.10);
}

.alert-success{
  border-color:rgba(32,201,151,.30);
  background:rgba(32,201,151,.10);
}

.home-contact-feedback{
  scroll-margin-top:calc(var(--scroll-offset,84px) + 1rem);
}

.home-contact-feedback:focus{
  outline:2px solid rgba(111,226,191,.75);
  outline-offset:3px;
}

#load-more-btn{
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}

/* -----------------------------------------
   Command bar and filter UI
------------------------------------------ */
:root{
  color-scheme:dark;
}

.form-select,
.form-control,
.input-group-text{
  color-scheme:dark;
}

select,
select.form-select{
  color:#eef3ff;
}

select option,
select optgroup{
  color:#0b1220 !important;
  background-color:#ffffff !important;
}

select option:checked{
  background-color:#cfe0ff !important;
  color:#0b1220 !important;
}

.commandbar{
  padding:.9rem;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.07);
}

.commandbar-top{
  display:grid;
  grid-template-columns:1fr;
  gap:.75rem;
}

.commandbar-search .form-control{
  border-radius:0;
  border-left:0;
}

.commandbar-search .input-group-text{
  border-radius:12px 0 0 12px;
}

.commandbar-search .btn{
  border-radius:0 12px 12px 0;
}

.commandbar-quick{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:.5rem;
}

.commandbar-hint{
  margin-top:.65rem;
  opacity:.85;
}

@media (min-width:768px){
  .commandbar-top{
    grid-template-columns:1fr auto;
    align-items:center;
  }

  .commandbar-quick{
    grid-template-columns:auto auto auto;
  }
}

.filter-shell-wow{
  padding:1rem;
}

.filter-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:.75rem;
  align-items:end;
}

.filter-item{
  min-width:0;
}

.filter-label{
  display:block;
  font-size:.78rem;
  letter-spacing:.02em;
  text-transform:uppercase;
  font-weight:800;
  color:rgba(255,255,255,.70);
  margin:0 0 .35rem;
}

.filter-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.5rem;
}

@media (min-width:576px){
  .filter-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (min-width:992px){
  .filter-grid{
    grid-template-columns:1.1fr 1.1fr 1fr 1fr auto;
  }

  .filter-actions{
    grid-template-columns:auto auto;
  }
}

.advanced-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:.75rem;
  margin-top:.75rem;
}

@media (min-width:576px){
  .advanced-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (min-width:992px){
  .advanced-grid{
    grid-template-columns:repeat(4, 1fr);
  }
}

.advanced-summary{
  padding:.65rem .75rem;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
}

.advanced-details[open] .advanced-summary{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.10);
}

.filter-shell-wow .form-control:focus,
.filter-shell-wow .form-select:focus,
.commandbar .form-control:focus{
  outline:none;
  border-color:rgba(127,207,255,.35);
  box-shadow:0 0 0 .25rem rgba(127,207,255,.18);
}

@media (max-width:575.98px){
  .commandbar-search .form-control,
  .filter-shell-wow .form-control,
  .filter-shell-wow .form-select{
    min-height:46px;
  }

  .commandbar-quick{
    grid-template-columns:1fr;
  }
}

.filter-actions-rail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.5rem;
}

@media (min-width:992px){
  .filter-actions-rail{
    grid-template-columns:auto auto auto;
    align-items:center;
    white-space:nowrap;
  }

  .filter-actions-rail .btn{
    min-width:132px;
  }
}

/* -----------------------------------------
   Global wrapping and consistency fixes
------------------------------------------ */
.pill,
.profile-pill,
.verify-badge,
.login-badge,
.snapshot-filter-chip,
.badge,
.btn,
.nav-link,
.dropdown-item,
.table,
.card,
.card-header,
.card-body,
.modal-title,
.modal-body,
.modal-footer,
.pending-email-banner,
.pending-meta-copy,
.role-option-title,
.role-help-description,
.info-panel-copy,
.section-banner,
.team-summary-line,
.team-modal-card-muted,
.audit-kv-row .v,
.profile-kv .v,
.reset-links a,
.login-links a,
.verify-links a,
.verify-links button.link-btn{
  overflow-wrap:anywhere;
  word-break:break-word;
}

.card-header-premium,
.card-badges,
.meta-row,
.team-chip-group,
.follow-up-quick-bar,
.snapshot-filter-bar,
.filter-actions,
.filter-actions-rail,
.export-tools{
  overflow:visible;
}

.card-badges .badge,
.team-chip-group .badge,
.follow-up-quick-bar .btn,
.snapshot-filter-bar .snapshot-filter-chip{
  max-width:100%;
}

.form-control.is-invalid,
.form-select.is-invalid{
  border-color:rgba(220,53,69,.95);
  box-shadow:0 0 0 .18rem rgba(220,53,69,.18);
  background-image:none;
}

.input-group-text i,
.btn i,
.badge i,
.pill i{
  line-height:1;
}

.border-light-subtle{
  border-color:rgba(255,255,255,.12) !important;
}

.rounded-4{
  border-radius:1rem !important;
}

/* -----------------------------------------
   Premium global layout helpers
------------------------------------------ */
.bsb-page-shell{
  max-width:1280px;
  margin:0 auto;
}

.bsb-hero-panel{
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.35rem;
  padding:1.15rem;
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(59,130,246,.08), transparent 30%),
    rgba(255,255,255,.03);
  box-shadow:0 18px 40px rgba(0,0,0,.20);
}

.bsb-kicker{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.74);
  font-size:.82rem;
  font-weight:700;
  padding:.38rem .72rem;
}

.bsb-title{
  font-weight:900;
  letter-spacing:.01em;
  line-height:1.06;
  margin:0 0 .45rem 0;
}

.bsb-sub{
  color:rgba(255,255,255,.72);
  margin:0;
  line-height:1.68;
  font-size:1rem;
  max-width:58rem;
}

.bsb-stat-grid{
  display:grid;
  gap:.9rem;
  grid-template-columns:1fr;
  margin-top:1.15rem;
}

@media (min-width:768px){
  .bsb-stat-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1200px){
  .bsb-stat-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

.bsb-stat-card{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:1.15rem;
  padding:1rem;
  box-shadow:0 16px 36px rgba(0,0,0,.18);
  min-height:100%;
}

.bsb-stat-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:.8rem;
}

.bsb-stat-icon{
  width:44px;
  height:44px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(96,165,250,.14);
  border:1px solid rgba(255,255,255,.10);
  color:#dbeafe;
  flex:0 0 auto;
}

.bsb-stat-label{
  color:rgba(255,255,255,.64);
  font-size:.86rem;
  font-weight:800;
  margin:0;
}

.bsb-stat-value{
  color:#fff;
  font-size:1.7rem;
  line-height:1.05;
  font-weight:900;
  margin:.25rem 0 0;
  overflow-wrap:anywhere;
}

.bsb-stat-meta{
  color:rgba(255,255,255,.60);
  font-size:.86rem;
  line-height:1.45;
  margin:.5rem 0 0;
}

/* -----------------------------------------
   Scoped access and global banners
------------------------------------------ */
.admin-account-access-banner,
.admin-support-access-banner,
.support-access-banner,
.scoped-access-banner,
.bsb-support-scope-banner,
.bsb-scoped-access-banner,
.bsb-account-access-banner{
  display:grid;
  grid-template-columns:1fr;
  gap:.85rem;
  align-items:center;
  border:1px solid rgba(255,193,7,.28);
  border-radius:1.2rem;
  background:
    radial-gradient(circle at top left, rgba(255,193,7,.15), transparent 32%),
    rgba(255,193,7,.10);
  color:#fff3cd;
  padding:1rem;
  box-shadow:0 18px 45px rgba(0,0,0,.22);
  overflow:hidden;
}

.admin-account-access-banner strong,
.admin-support-access-banner strong,
.support-access-banner strong,
.scoped-access-banner strong,
.bsb-support-scope-banner strong,
.bsb-scoped-access-banner strong,
.bsb-account-access-banner strong{
  color:#fff;
}

.admin-account-access-banner a,
.admin-support-access-banner a,
.support-access-banner a,
.scoped-access-banner a,
.bsb-support-scope-banner a,
.bsb-scoped-access-banner a,
.bsb-account-access-banner a{
  color:#fff;
  font-weight:850;
}

.admin-account-access-banner .btn,
.admin-support-access-banner .btn,
.support-access-banner .btn,
.scoped-access-banner .btn,
.bsb-support-scope-banner .btn,
.bsb-scoped-access-banner .btn,
.bsb-account-access-banner .btn{
  width:100%;
  border-color:rgba(255,193,7,.38);
  background:rgba(255,193,7,.12);
  color:#fff3cd;
}

@media (min-width:576px){
  .admin-account-access-banner,
  .admin-support-access-banner,
  .support-access-banner,
  .scoped-access-banner,
  .bsb-support-scope-banner,
  .bsb-scoped-access-banner,
  .bsb-account-access-banner{
    grid-template-columns:minmax(0, 1fr) auto;
  }

  .admin-account-access-banner .btn,
  .admin-support-access-banner .btn,
  .support-access-banner .btn,
  .scoped-access-banner .btn,
  .bsb-support-scope-banner .btn,
  .bsb-scoped-access-banner .btn,
  .bsb-account-access-banner .btn{
    width:auto;
  }
}

/* -----------------------------------------
   Inline feedback and validation
------------------------------------------ */
.inline-alert,
.bsb-inline-alert{
  border-radius:1rem;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:.85rem .95rem;
  color:#f8fafc;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.inline-alert.is-success,
.bsb-inline-alert.is-success{
  border-color:rgba(32,201,151,.30);
  background:rgba(32,201,151,.10);
}

.inline-alert.is-warning,
.bsb-inline-alert.is-warning{
  border-color:rgba(255,193,7,.30);
  background:rgba(255,193,7,.10);
}

.inline-alert.is-danger,
.bsb-inline-alert.is-danger{
  border-color:rgba(220,53,69,.35);
  background:rgba(220,53,69,.12);
}

.inline-field-error,
.bsb-field-error{
  margin-top:.45rem;
  color:#fecdd3;
  font-size:.88rem;
  line-height:1.45;
  font-weight:700;
}

.inline-field-hint,
.bsb-field-hint{
  margin-top:.45rem;
  color:rgba(255,255,255,.62);
  font-size:.88rem;
  line-height:1.5;
}

/* -----------------------------------------
   Table scroll affordance
------------------------------------------ */
.billing-table-wrap,
.admin-table-wrap,
.team-table-wrap,
.table-scroll-wrap{
  position:relative;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

.billing-table-wrap.is-scrollable::after,
.admin-table-wrap.is-scrollable::after,
.team-table-wrap.is-scrollable::after,
.table-scroll-wrap.is-scrollable::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  width:34px;
  pointer-events:none;
  background:linear-gradient(90deg, transparent, rgba(11,18,32,.82));
  opacity:.9;
  transition:opacity .15s ease;
}

.billing-table-wrap.is-scrolled-right::after,
.admin-table-wrap.is-scrolled-right::after,
.team-table-wrap.is-scrolled-right::after,
.table-scroll-wrap.is-scrolled-right::after{
  opacity:.9;
}

.billing-table-wrap:not(.is-scrolled-right)::after,
.admin-table-wrap:not(.is-scrolled-right)::after,
.team-table-wrap:not(.is-scrolled-right)::after,
.table-scroll-wrap:not(.is-scrolled-right)::after{
  opacity:0;
}

/* -----------------------------------------
   Modal and overlay polish
------------------------------------------ */
.modal{
  z-index:2060;
}

.modal-backdrop{
  z-index:2050;
}

.modal-dialog{
  max-width:min(100% - 1rem, var(--bs-modal-width, 500px));
}

.modal-content{
  overflow:hidden;
}

.modal-body{
  max-height:calc(100vh - 9rem);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}

@media (max-width:575.98px){
  .modal-dialog{
    margin:.75rem;
  }

  .modal-body{
    max-height:calc(100vh - 8rem);
  }

  .modal-footer{
    display:grid;
    grid-template-columns:1fr;
    gap:.6rem;
  }

  .modal-footer .btn{
    width:100%;
  }
}

/* -----------------------------------------
   Premium footer compatibility
------------------------------------------ */
.bsb-best-footer{
  position:relative;
  margin-top:clamp(2.25rem, 5vw, 4.5rem);
  border-top:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.085), transparent 32%),
    radial-gradient(circle at top right, rgba(59,130,246,.07), transparent 30%),
    rgba(11,18,32,.82);
  color:rgba(255,255,255,.76);
}

.bsb-best-footer-wrap{
  width:min(1220px, calc(100% - 2rem));
  margin:0 auto;
  padding:clamp(1.15rem, 3vw, 2rem) 0;
  display:grid;
  gap:1rem;
}

.bsb-best-footer-top{
  display:grid;
  gap:1rem;
  grid-template-columns:minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items:stretch;
}

.bsb-best-footer-brand,
.bsb-best-footer-context,
.bsb-best-footer-solutions{
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.35rem;
  background:rgba(255,255,255,.032);
  padding:1rem;
  box-shadow:0 14px 34px rgba(0,0,0,.14);
  min-width:0;
}

.bsb-best-footer-brand{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
}

.bsb-best-footer-brand-main{
  display:flex;
  align-items:flex-start;
  gap:.85rem;
  min-width:0;
}

.bsb-best-footer-mark{
  width:46px;
  height:46px;
  border-radius:1rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(96,165,250,.15);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  text-decoration:none;
  flex:0 0 auto;
}

.bsb-best-footer-kicker{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  color:rgba(191,219,254,.92);
  font-size:.78rem;
  line-height:1.2;
  font-weight:850;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:.35rem;
}

.bsb-best-footer-title{
  color:#fff;
  font-size:clamp(1.05rem, 2.2vw, 1.35rem);
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.02em;
  margin:0;
  overflow-wrap:anywhere;
}

.bsb-best-footer-copy{
  color:rgba(255,255,255,.64);
  margin:.45rem 0 0;
  max-width:46rem;
  font-size:.92rem;
  line-height:1.62;
  overflow-wrap:anywhere;
}

.bsb-best-footer-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  min-height:42px;
  padding:.68rem .92rem;
  border-radius:999px;
  border:1px solid rgba(96,165,250,.38);
  background:rgba(96,165,250,.13);
  color:#fff;
  text-decoration:none;
  font-weight:850;
  font-size:.86rem;
  line-height:1.1;
  white-space:nowrap;
  flex:0 0 auto;
}

.bsb-best-footer-action:hover,
.bsb-best-footer-action:focus{
  color:#fff;
  background:rgba(96,165,250,.20);
  border-color:rgba(96,165,250,.50);
}

.bsb-best-footer-action.is-warning{
  border-color:rgba(255,193,7,.38);
  background:rgba(255,193,7,.13);
  color:#fff3cd;
}

.bsb-best-footer-action.is-warning:hover,
.bsb-best-footer-action.is-warning:focus{
  color:#fff;
  background:rgba(255,193,7,.20);
}

.bsb-best-footer-section-label{
  color:rgba(255,255,255,.52);
  font-size:.73rem;
  line-height:1.2;
  font-weight:850;
  letter-spacing:.05em;
  text-transform:uppercase;
  margin:0 0 .25rem;
}

.bsb-best-footer-context-title,
.bsb-best-footer-solutions-title{
  color:#fff;
  font-size:.98rem;
  line-height:1.25;
  font-weight:900;
  margin:0;
  overflow-wrap:anywhere;
}

.bsb-best-footer-context-copy,
.bsb-best-footer-solutions-copy{
  color:rgba(255,255,255,.62);
  font-size:.84rem;
  line-height:1.5;
  margin:.35rem 0 .85rem;
  overflow-wrap:anywhere;
}

.bsb-best-footer-context-links{
  display:grid;
  gap:.48rem;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.bsb-best-footer-mini-link{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
  min-width:0;
  padding:.62rem;
  border-radius:.95rem;
  border:1px solid rgba(255,255,255,.065);
  background:rgba(255,255,255,.026);
  color:#fff;
  text-decoration:none;
}

.bsb-best-footer-mini-link:hover,
.bsb-best-footer-mini-link:focus{
  color:#fff;
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
}

.bsb-best-footer-mini-link i{
  color:#bfdbfe;
  margin-top:.12rem;
  flex:0 0 auto;
}

.bsb-best-footer-mini-link span{
  display:block;
  min-width:0;
}

.bsb-best-footer-mini-link strong{
  display:block;
  color:#fff;
  font-size:.82rem;
  line-height:1.25;
  font-weight:850;
  overflow-wrap:anywhere;
}

.bsb-best-footer-mini-link small{
  display:block;
  color:rgba(255,255,255,.52);
  font-size:.72rem;
  line-height:1.32;
  margin-top:.12rem;
  overflow-wrap:anywhere;
}

.bsb-best-footer-solutions-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:.85rem;
}

.bsb-best-footer-solutions-grid{
  display:grid;
  gap:.58rem;
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.bsb-best-footer-solution{
  display:flex;
  align-items:flex-start;
  gap:.62rem;
  min-width:0;
  min-height:100%;
  padding:.76rem;
  border-radius:1rem;
  border:1px solid rgba(255,255,255,.065);
  background:rgba(255,255,255,.024);
  color:#fff;
  text-decoration:none;
  transition:background .18s ease,border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}

.bsb-best-footer-solution:hover,
.bsb-best-footer-solution:focus{
  color:#fff;
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.14);
}

.bsb-best-footer-solution-icon{
  width:36px;
  height:36px;
  border-radius:.85rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(96,165,250,.13);
  border:1px solid rgba(255,255,255,.08);
  color:#bfdbfe;
  flex:0 0 auto;
}

.bsb-best-footer-solution-copy{
  min-width:0;
}

.bsb-best-footer-solution-title{
  display:block;
  color:#fff;
  font-size:.82rem;
  line-height:1.25;
  font-weight:900;
  overflow-wrap:anywhere;
}

.bsb-best-footer-solution-desc{
  display:block;
  margin-top:.18rem;
  color:rgba(255,255,255,.52);
  font-size:.72rem;
  line-height:1.35;
  font-weight:650;
  overflow-wrap:anywhere;
}

.bsb-best-footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding-top:.85rem;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.50);
  font-size:.82rem;
  line-height:1.4;
}

.bsb-best-footer-bottom-links{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:.4rem .8rem;
}

.bsb-best-footer-bottom a{
  color:rgba(255,255,255,.66);
  text-decoration:none;
  font-weight:750;
}

.bsb-best-footer-bottom a:hover,
.bsb-best-footer-bottom a:focus{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:.22rem;
}

/* Legacy premium footer still supported */
.bsb-premium-footer{
  position:relative;
  isolation:isolate;
  margin-top:clamp(3.5rem, 7vw, 6rem);
  color:#e5e7eb;
  background:
    radial-gradient(circle at 8% 0%, rgba(96,165,250,.28), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(34,211,238,.16), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(59,130,246,.12), transparent 36%),
    linear-gradient(180deg, rgba(15,23,42,.98), #06101e 68%, #040b16);
  border-top:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}

.bsb-premium-footer::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.78), transparent 86%);
  opacity:.42;
  z-index:-2;
}

.bsb-premium-footer::after{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:min(1100px, 94vw);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg, transparent, rgba(125,211,252,.92), rgba(96,165,250,.95), transparent);
  z-index:-1;
}

.bsb-footer-orb{
  position:absolute;
  border-radius:999px;
  pointer-events:none;
  filter:blur(2px);
  opacity:.8;
  z-index:-1;
}

.bsb-footer-orb.is-left{
  left:-120px;
  top:12%;
  width:260px;
  height:260px;
  background:radial-gradient(circle, rgba(96,165,250,.18), transparent 68%);
}

.bsb-footer-orb.is-right{
  right:-150px;
  bottom:8%;
  width:310px;
  height:310px;
  background:radial-gradient(circle, rgba(34,211,238,.13), transparent 70%);
}

.bsb-footer-wrap{
  max-width:1280px;
  margin:0 auto;
  padding:clamp(2.8rem, 5.5vw, 5rem) 1rem 1.25rem;
  position:relative;
  z-index:1;
}

.bsb-footer-hero{
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
  align-items:stretch;
  margin-bottom:1.15rem;
}

@media (min-width:992px){
  .bsb-footer-hero{
    grid-template-columns:minmax(0, 1.08fr) minmax(340px, .92fr);
    gap:1.1rem;
  }
}

.bsb-footer-hero-card,
.bsb-footer-action-card{
  position:relative;
  min-width:0;
  border:1px solid rgba(255,255,255,.11);
  border-radius:1.45rem;
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.15), transparent 36%),
    radial-gradient(circle at bottom right, rgba(34,211,238,.08), transparent 32%),
    rgba(255,255,255,.045);
  box-shadow:0 24px 70px rgba(0,0,0,.24);
  overflow:hidden;
}

.bsb-footer-hero-card{
  padding:clamp(1.2rem, 2.7vw, 2rem);
}

.bsb-footer-action-card{
  padding:clamp(1rem, 2.2vw, 1.45rem);
}

.bsb-footer-hero-card::before,
.bsb-footer-action-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.07), transparent 42%, rgba(255,255,255,.025));
  opacity:.85;
}

.bsb-footer-hero-content,
.bsb-footer-action-content{
  position:relative;
  z-index:1;
}

.bsb-footer-brand-row{
  display:flex;
  align-items:flex-start;
  gap:1rem;
  min-width:0;
}

.bsb-footer-brand-mark{
  width:54px;
  height:54px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.26), transparent 26%),
    linear-gradient(135deg, rgba(96,165,250,.48), rgba(34,211,238,.20));
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 18px 38px rgba(0,0,0,.28), 0 0 0 6px rgba(96,165,250,.06);
  color:#fff;
}

.bsb-footer-brand-mark i{
  line-height:1;
  font-size:1.35rem;
}

.bsb-footer-kicker{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  border-radius:999px;
  border:1px solid rgba(125,211,252,.22);
  background:rgba(125,211,252,.08);
  color:#dff7ff;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  line-height:1.25;
  padding:.38rem .66rem;
  max-width:100%;
  overflow-wrap:anywhere;
}

.bsb-footer-brand-title{
  color:#fff;
  font-weight:950;
  letter-spacing:-.045em;
  line-height:1.02;
  font-size:clamp(1.75rem, 3vw, 2.65rem);
  margin:.72rem 0 0;
  overflow-wrap:anywhere;
}

.bsb-footer-brand-copy{
  color:rgba(226,232,240,.74);
  line-height:1.75;
  max-width:58rem;
  margin:.8rem 0 0;
  overflow-wrap:anywhere;
  font-size:1rem;
}

.bsb-footer-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  margin-top:1.15rem;
}

.bsb-footer-hero-actions .btn{
  border-radius:999px;
  min-height:44px;
  padding:.65rem 1rem;
  font-weight:900;
}

.bsb-footer-micro-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:.7rem;
  margin-top:1.15rem;
}

@media (min-width:640px){
  .bsb-footer-micro-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

.bsb-footer-micro-card{
  min-width:0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:1rem;
  padding:.82rem;
  background:rgba(255,255,255,.035);
}

.bsb-footer-micro-label{
  color:rgba(226,232,240,.58);
  font-size:.72rem;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.25;
}

.bsb-footer-micro-value{
  display:flex;
  align-items:flex-start;
  gap:.42rem;
  color:#fff;
  font-weight:900;
  line-height:1.3;
  margin-top:.28rem;
  overflow-wrap:anywhere;
}

.bsb-footer-micro-value i{
  color:#93c5fd;
  line-height:1;
  margin-top:.14rem;
  flex:0 0 auto;
}

.bsb-footer-action-top{
  display:flex;
  align-items:flex-start;
  gap:.85rem;
  margin-bottom:1rem;
}

.bsb-footer-action-icon{
  width:46px;
  height:46px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.06);
  color:#dbeafe;
  box-shadow:0 14px 32px rgba(0,0,0,.18);
}

.bsb-footer-heading{
  color:#fff;
  font-weight:950;
  line-height:1.12;
  letter-spacing:-.025em;
  margin:0;
  overflow-wrap:anywhere;
}

.bsb-footer-text{
  color:rgba(226,232,240,.72);
  line-height:1.66;
  margin:.45rem 0 0;
  font-size:.96rem;
  overflow-wrap:anywhere;
}

.bsb-footer-action-buttons{
  display:grid;
  grid-template-columns:1fr;
  gap:.6rem;
  margin-top:1rem;
}

@media (min-width:576px){
  .bsb-footer-action-buttons{
    grid-template-columns:1fr 1fr;
  }
}

@media (min-width:992px){
  .bsb-footer-action-buttons{
    grid-template-columns:1fr;
  }
}

.bsb-footer-action-buttons .btn{
  border-radius:1rem;
  min-height:46px;
  font-weight:900;
}

.bsb-footer-status-strip{
  display:grid;
  grid-template-columns:1fr;
  gap:.75rem;
  margin:1rem 0 1.1rem;
}

@media (min-width:768px){
  .bsb-footer-status-strip{
    grid-template-columns:1fr 1fr 1fr;
  }
}

.bsb-footer-status-card{
  min-width:0;
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  border:1px solid rgba(255,255,255,.10);
  border-radius:1.1rem;
  padding:.92rem;
  background:rgba(255,255,255,.035);
  box-shadow:0 14px 34px rgba(0,0,0,.12);
}

.bsb-footer-status-icon{
  width:38px;
  height:38px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  color:#dbeafe;
  border:1px solid rgba(147,197,253,.18);
  background:rgba(147,197,253,.10);
}

.bsb-footer-status-title{
  color:#fff;
  font-weight:950;
  line-height:1.25;
  margin:0;
}

.bsb-footer-status-copy{
  color:rgba(226,232,240,.63);
  font-size:.86rem;
  line-height:1.48;
  margin:.22rem 0 0;
  overflow-wrap:anywhere;
}

.bsb-footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:.9rem;
  margin-top:1rem;
}

@media (min-width:680px){
  .bsb-footer-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1160px){
  .bsb-footer-grid{
    grid-template-columns:1.05fr .95fr .95fr 1.05fr;
  }
}

.bsb-footer-panel{
  min-width:0;
  position:relative;
  border:1px solid rgba(255,255,255,.09);
  border-radius:1.2rem;
  padding:1rem;
  background:linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.026));
  box-shadow:0 18px 42px rgba(0,0,0,.14);
  height:100%;
  overflow:hidden;
}

.bsb-footer-panel::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(147,197,253,.42), transparent);
  opacity:.9;
}

.bsb-footer-panel-head{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  margin-bottom:.82rem;
}

.bsb-footer-panel-icon{
  width:40px;
  height:40px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(96,165,250,.10);
  color:#bfdbfe;
}

.bsb-footer-panel-kicker{
  color:rgba(226,232,240,.55);
  font-size:.72rem;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.25;
}

.bsb-footer-panel-title{
  color:#fff;
  font-weight:950;
  line-height:1.18;
  margin:.15rem 0 0;
  letter-spacing:-.01em;
}

.bsb-footer-link-list{
  display:grid;
  gap:.48rem;
}

.bsb-footer-link-card{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:.7rem;
  padding:.72rem .76rem;
  border-radius:1rem;
  color:rgba(248,250,252,.90);
  text-decoration:none;
  line-height:1.35;
  font-weight:760;
  border:1px solid rgba(255,255,255,.055);
  background:rgba(255,255,255,.022);
  transition:background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
  min-width:0;
}

.bsb-footer-link-card:hover,
.bsb-footer-link-card:focus{
  color:#fff;
  background:rgba(255,255,255,.065);
  border-color:rgba(255,255,255,.12);
  transform:translateY(-1px);
  box-shadow:0 12px 28px rgba(0,0,0,.16);
}

.bsb-footer-link-card i{
  margin-top:.15rem;
  line-height:1;
  color:#93c5fd;
  flex:0 0 auto;
}

.bsb-footer-link-card span{
  min-width:0;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.bsb-footer-link-title{
  display:block;
  color:#fff;
  font-weight:900;
  line-height:1.25;
}

.bsb-footer-link-desc{
  display:block;
  margin-top:.18rem;
  color:rgba(226,232,240,.60);
  font-size:.82rem;
  line-height:1.45;
  font-weight:650;
}

.bsb-footer-support-stack{
  display:grid;
  gap:.7rem;
  margin-top:1rem;
}

.bsb-footer-support-row{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  color:rgba(226,232,240,.74);
  line-height:1.45;
  font-size:.93rem;
}

.bsb-footer-support-row i{
  color:#93c5fd;
  line-height:1;
  margin-top:.14rem;
  flex:0 0 auto;
}

.bsb-footer-support-row a{
  color:#fff;
  font-weight:900;
  text-decoration:none;
  overflow-wrap:anywhere;
}

.bsb-footer-support-row a:hover,
.bsb-footer-support-row a:focus{
  text-decoration:underline;
}

.bsb-footer-bottom{
  margin-top:1.15rem;
  padding:1rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.15rem;
  background:rgba(255,255,255,.025);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:.9rem;
  color:rgba(226,232,240,.64);
  font-size:.88rem;
  line-height:1.45;
}

.bsb-footer-bottom p{
  margin:0;
  max-width:760px;
  overflow-wrap:anywhere;
}

.bsb-footer-bottom-links{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  align-items:center;
}

.bsb-footer-bottom-links a{
  color:rgba(226,232,240,.76);
  text-decoration:none;
  font-weight:800;
  padding:.26rem .38rem;
  border-radius:.55rem;
}

.bsb-footer-bottom-links a:hover,
.bsb-footer-bottom-links a:focus{
  color:#fff;
  background:rgba(255,255,255,.06);
}

.bsb-footer-status-pill{
  display:inline-flex;
  align-items:center;
  gap:.42rem;
  max-width:100%;
  border-radius:999px;
  padding:.42rem .7rem;
  border:1px solid rgba(34,197,94,.28);
  background:rgba(34,197,94,.12);
  color:#d1fae5;
  font-weight:900;
  font-size:.82rem;
  line-height:1.25;
  overflow-wrap:anywhere;
}

.bsb-footer-status-dot{
  width:.52rem;
  height:.52rem;
  border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 .18rem rgba(34,197,94,.16);
  flex:0 0 auto;
}

/* -----------------------------
   Idle timeout modal
------------------------------ */
#idleTimeoutModal{
  --idle-surface:rgba(15,23,42,.96);
  --idle-border:rgba(255,255,255,.12);
  --idle-muted:rgba(226,232,240,.72);
  --idle-soft:rgba(255,255,255,.055);
  --idle-accent:#93c5fd;
  --idle-danger:#fb7185;
}

#idleTimeoutModal .modal-dialog{
  max-width:580px;
}

#idleTimeoutModal .modal-content{
  position:relative;
  overflow:hidden;
  border:1px solid var(--idle-border);
  border-radius:1.5rem;
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.18), transparent 38%),
    radial-gradient(circle at top right, rgba(251,113,133,.16), transparent 32%),
    var(--idle-surface);
  color:#f8fafc;
  box-shadow:0 28px 90px rgba(0,0,0,.56);
  backdrop-filter:blur(18px);
}

#idleTimeoutModal .modal-content::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:36px 36px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.70), transparent 86%);
  opacity:.5;
}

#idleTimeoutModal .modal-header,
#idleTimeoutModal .modal-body,
#idleTimeoutModal .modal-footer{
  position:relative;
  z-index:1;
}

#idleTimeoutModal .modal-header{
  padding:1.15rem 1.25rem;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.035);
}

#idleTimeoutModal .modal-title{
  display:flex;
  align-items:center;
  gap:.65rem;
  min-width:0;
  color:#fff;
  font-weight:900;
  line-height:1.2;
  overflow-wrap:anywhere;
  word-break:break-word;
}

#idleTimeoutModal .idle-title-icon{
  width:40px;
  height:40px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:rgba(251,113,133,.15);
  border:1px solid rgba(251,113,133,.26);
  color:#fecdd3;
}

#idleTimeoutModal .btn-close{
  filter:invert(1) grayscale(100%);
  opacity:.75;
}

#idleTimeoutModal .btn-close:hover,
#idleTimeoutModal .btn-close:focus{
  opacity:1;
}

#idleTimeoutModal .modal-body{
  padding:1.25rem;
}

.idle-timeout-kicker{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  max-width:100%;
  border-radius:999px;
  border:1px solid rgba(251,113,133,.26);
  background:rgba(251,113,133,.12);
  color:#ffe4e6;
  padding:.38rem .7rem;
  font-size:.82rem;
  line-height:1.25;
  font-weight:800;
  overflow-wrap:anywhere;
}

.idle-timeout-copy{
  color:var(--idle-muted);
  line-height:1.68;
  margin:.9rem 0 0;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.idle-timeout-timer{
  margin-top:1rem;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:1.1rem;
  padding:1rem;
}

.idle-timeout-timer-top{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:.75rem;
}

.idle-timeout-label{
  color:rgba(226,232,240,.68);
  font-size:.82rem;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.06em;
  line-height:1.3;
}

.idle-timeout-count{
  color:#fff;
  font-size:clamp(2rem, 8vw, 3.25rem);
  line-height:1;
  font-weight:950;
  letter-spacing:-.05em;
  font-variant-numeric:tabular-nums;
  text-shadow:0 10px 30px rgba(0,0,0,.30);
}

.idle-timeout-count small{
  color:rgba(226,232,240,.66);
  font-size:.92rem;
  font-weight:800;
  letter-spacing:0;
  margin-left:.22rem;
}

.idle-timeout-bar{
  position:relative;
  overflow:hidden;
  height:10px;
  margin-top:1rem;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}

.idle-timeout-bar span{
  display:block;
  height:100%;
  width:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, #fb7185, #fbbf24, #93c5fd);
  transition:width .25s linear;
}

.idle-timeout-meta{
  display:grid;
  gap:.65rem;
  grid-template-columns:1fr;
  margin-top:1rem;
}

@media (min-width:576px){
  .idle-timeout-meta{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

.idle-timeout-meta-card{
  min-width:0;
  border:1px solid rgba(255,255,255,.085);
  background:rgba(255,255,255,.03);
  border-radius:.95rem;
  padding:.85rem;
}

.idle-timeout-meta-label{
  color:rgba(226,232,240,.58);
  font-size:.78rem;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.05em;
  line-height:1.3;
}

.idle-timeout-meta-value{
  color:#fff;
  font-weight:840;
  line-height:1.45;
  margin-top:.28rem;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.idle-timeout-inline-status{
  display:none;
  margin-top:.9rem;
  border-radius:1rem;
  padding:.85rem .95rem;
  line-height:1.55;
  font-weight:750;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.idle-timeout-inline-status.is-success{
  display:block;
  border:1px solid rgba(32,201,151,.30);
  background:rgba(32,201,151,.10);
  color:#d1fae5;
}

.idle-timeout-inline-status.is-warning{
  display:block;
  border:1px solid rgba(255,193,7,.30);
  background:rgba(255,193,7,.10);
  color:#fff3cd;
}

.idle-timeout-inline-status.is-danger{
  display:block;
  border:1px solid rgba(220,53,69,.36);
  background:rgba(220,53,69,.13);
  color:#fecdd3;
}

#idleTimeoutModal .modal-footer{
  gap:.65rem;
  padding:1rem 1.25rem 1.25rem;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.025);
}

#idleTimeoutModal .btn{
  min-height:44px;
  border-radius:.95rem;
  font-weight:850;
  white-space:normal;
}

#idleTimeoutModal .btn-primary{
  box-shadow:0 14px 30px rgba(13,110,253,.20);
}

#idleTimeoutModal .idle-spinner{
  display:none;
}

#idleTimeoutModal .is-loading .idle-spinner{
  display:inline-block;
}

#idleTimeoutModal .is-loading .idle-btn-icon{
  display:none;
}

/* -----------------------------
   Responsive refinements
------------------------------ */
@media (max-width:1439.98px) and (min-width:992px){
  .appbar-inner{
    max-width:100%;
    padding-left:.7rem;
    padding-right:.7rem;
    gap:.45rem;
  }

  .brand-link{
    flex-basis:255px;
    max-width:255px;
    gap:.55rem;
  }

  .brand-title{
    font-size:.9rem;
  }

  .brand-subtitle{
    font-size:.72rem;
    max-width:170px;
  }

  .nav-pill,
  .nav-desktop .nav-link,
  .nav-desktop .nav-dropdown-toggle{
    padding:.54rem .54rem;
    font-size:.82rem;
  }

  .workspace-pill{
    max-width:145px;
    padding:.48rem .56rem;
  }

  .menu-support-end-pill{
    font-size:.76rem;
    padding:.54rem .58rem;
  }

  .account-trigger{
    max-width:178px;
    padding:.46rem .55rem;
    gap:.48rem;
  }

  .account-avatar{
    width:34px;
    height:34px;
    border-radius:11px;
  }

  .account-name{
    font-size:.8rem;
  }

  .account-role{
    font-size:.7rem;
  }
}

@media (max-width:1249.98px) and (min-width:992px){
  .workspace-pill{
    display:none;
  }

  .menu-support-end-pill span{
    display:none;
  }

  .menu-support-end-pill{
    width:42px;
    padding:.54rem 0;
  }
}

@media (max-width:1199.98px){
  .nav-pill{
    padding:.48rem .62rem;
    font-size:.88rem;
  }

  .workspace-pill{
    max-width:220px;
  }

  .bsb-best-footer-solutions-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:1099.98px) and (min-width:992px){
  .brand-link{
    flex-basis:215px;
    max-width:215px;
  }

  .brand-subtitle{
    max-width:135px;
  }

  .nav-pill,
  .nav-desktop .nav-link,
  .nav-desktop .nav-dropdown-toggle{
    padding:.5rem .42rem;
    font-size:.78rem;
  }

  .account-trigger{
    max-width:150px;
  }

  .account-mega-dropdown{
    width:calc(100vw - 1.25rem);
    right:.625rem !important;
  }
}

@media (max-width:991.98px){
  .desktop-nav,
  .workspace-pill-wrap,
  .nav-desktop,
  .workspace-pill,
  .menu-support-end-pill,
  .menu-account,
  .menu-cta{
    display:none !important;
  }

  .nav-dropdown-center .dropdown-menu{
    position:static !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    transform:none !important;
    width:auto !important;
    max-width:none !important;
    min-width:0 !important;
    margin-top:.5rem !important;
  }

  .solutions-dropdown-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .menu-mobile-toggle{
    display:inline-flex !important;
  }

  .appbar-inner{
    padding:.68rem .9rem;
  }

  .brand-mark{
    width:38px;
    height:38px;
    border-radius:13px;
  }

  .brand-subtitle{
    max-width:190px;
  }

  .bsb-best-footer-top{
    grid-template-columns:1fr;
  }

  .bsb-best-footer-solutions-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:900px){
  .account-mega-dropdown{
    width:calc(100vw - 1.25rem);
  }

  .account-mega-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:767.98px){
  .bsb-best-footer-wrap{
    width:min(100% - 1.35rem, 1220px);
  }

  .bsb-best-footer-brand{
    flex-direction:column;
    align-items:flex-start;
  }

  .bsb-best-footer-action{
    width:100%;
  }

  .bsb-best-footer-context-links{
    grid-template-columns:1fr;
  }

  .bsb-best-footer-solutions-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .bsb-best-footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .bsb-best-footer-bottom-links{
    justify-content:flex-start;
  }
}

@media (max-width:575.98px){
  .appbar-inner{
    gap:.65rem;
    padding:.62rem .75rem;
  }

  .brand-link{
    gap:.62rem;
    flex:1 1 auto;
    max-width:min(260px, calc(100vw - 90px));
  }

  .brand-mark{
    width:36px;
    height:36px;
    border-radius:12px;
  }

  .brand-title{
    font-size:.96rem;
  }

  .brand-subtitle{
    max-width:145px;
    font-size:.72rem;
    white-space:normal;
  }

  .menu-auth-actions{
    display:none !important;
  }

  .menu-icon-btn{
    width:42px;
    height:42px;
    border-radius:13px;
  }

  .modal-dialog{
    margin:.75rem;
  }

  .modal-body{
    max-height:calc(100vh - 8rem);
  }

  .modal-footer{
    display:grid;
    grid-template-columns:1fr;
    gap:.6rem;
  }

  .modal-footer .btn{
    width:100%;
  }

  .account-mega-grid{
    grid-template-columns:1fr;
  }

  .account-mega-header,
  .account-support-card-top{
    grid-template-columns:1fr;
  }

  .account-mega-header-actions{
    justify-content:flex-start;
  }

  .bsb-best-footer-solutions-grid{
    grid-template-columns:1fr;
  }

  .bsb-best-footer-brand,
  .bsb-best-footer-context,
  .bsb-best-footer-solutions{
    border-radius:1.1rem;
    padding:.9rem;
  }

  .bsb-best-footer-solution-desc{
    font-size:.74rem;
  }

  #idleTimeoutModal .modal-dialog{
    margin:.75rem;
  }

  #idleTimeoutModal .modal-content{
    border-radius:1.15rem;
  }

  #idleTimeoutModal .modal-header,
  #idleTimeoutModal .modal-body,
  #idleTimeoutModal .modal-footer{
    padding-left:1rem;
    padding-right:1rem;
  }

  #idleTimeoutModal .modal-footer{
    display:grid;
    grid-template-columns:1fr;
  }

  #idleTimeoutModal .modal-footer .btn{
    width:100%;
  }

  .idle-timeout-timer{
    padding:.9rem;
  }

  .btn,
  .form-control,
  .form-select{
    min-height:44px;
  }

  .badge{
    white-space:normal;
  }
}

@media (max-width:420px){
  .account-mega-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:370px){
  .brand-subtitle{
    display:none;
  }

  .brand-title{
    max-width:160px;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}

@media (max-height:720px) and (min-width:992px){
  .account-mega-dropdown{
    max-height:calc(100vh - 92px);
    padding:.75rem;
    border-radius:22px;
  }

  .account-mega-header{
    padding:.72rem;
    margin-bottom:.6rem;
  }

  .account-support-card{
    padding:.72rem;
    margin-bottom:.6rem;
  }

  .account-mega-grid{
    gap:.6rem;
  }

  .account-mega-section{
    padding:.65rem;
  }

  .account-mega-link{
    padding:.62rem;
  }

  .account-mega-link-desc{
    display:none;
  }
}

/* -----------------------------
   Utility fixes
------------------------------------------ */
.no-horizontal-overflow{
  max-width:100%;
  overflow-x:hidden;
}

.tap-target{
  min-height:44px;
  min-width:44px;
}

/* -----------------------------
   Motion safety
------------------------------ */
@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }

  .solutions-link:hover,
  .solutions-link:focus,
  .account-mega-link:hover,
  .account-mega-link:focus,
  .bsb-best-footer-solution:hover,
  .bsb-best-footer-solution:focus,
  .app-widget:hover,
  .glass:hover{
    transform:none !important;
  }
}
/* -----------------------------
   Platform-wide responsive layout refinement
------------------------------------------ */
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

img,
svg,
video,
canvas,
iframe{
  max-width:100%;
  height:auto;
}

.layout,
main,
section{
  min-width:0;
}

.bsb-fluid-page{
  width:100%;
  max-width:100%;
}

.bsb-page-container,
.dashboard-page .layout > .container,
.dashboard-page .layout > .container-fluid,
.connected-email-page .container,
.leadgen-page .container,
.billing-page .container,
.credit-history-page .container,
.team-page .container,
.profile-page .container,
.call-logs-page .container,
.public-page .container,
.public-page .container-xl,
.public-page .container-xxl{
  width:min(100% - clamp(1rem, 3vw, 3rem), 1760px);
  max-width:1760px;
}

.public-page .container-narrow,
.bsb-readable-container{
  width:min(100% - clamp(1rem, 3vw, 3rem), 1120px);
  max-width:1120px;
  margin-inline:auto;
}

.bsb-responsive-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap:clamp(.9rem, 2vw, 1.35rem);
}

.bsb-responsive-grid.is-compact{
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.bsb-responsive-grid.is-wide{
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

@media (min-width:1400px){
  .bsb-page-container,
  .dashboard-page .layout > .container,
  .dashboard-page .layout > .container-fluid,
  .connected-email-page .container,
  .leadgen-page .container,
  .billing-page .container,
  .credit-history-page .container,
  .team-page .container,
  .profile-page .container,
  .call-logs-page .container,
  .public-page .container,
  .public-page .container-xl,
  .public-page .container-xxl{
    width:min(100% - 3rem, 1840px);
    max-width:1840px;
  }
}

@media (max-width:575.98px){
  .bsb-page-container,
  .dashboard-page .layout > .container,
  .dashboard-page .layout > .container-fluid,
  .connected-email-page .container,
  .leadgen-page .container,
  .billing-page .container,
  .credit-history-page .container,
  .team-page .container,
  .profile-page .container,
  .call-logs-page .container,
  .public-page .container,
  .public-page .container-xl,
  .public-page .container-xxl{
    width:min(100% - 1rem, 100%);
    padding-left:.5rem;
    padding-right:.5rem;
  }

  .card,
  .glass,
  .dash-card,
  .leadgen-card,
  .connected-option-card,
  .connected-sender-card{
    border-radius:18px;
  }
}

/* Master responsive navigation reliability pass */
.appbar{overflow:visible!important}.appbar-inner{overflow:visible!important;max-width:min(100%,1760px);width:100%;}.nav-desktop{overflow:visible!important;min-width:0}.nav-desktop .nav-link,.nav-desktop .nav-dropdown-toggle{margin-top:2px;margin-bottom:2px}.nav-desktop .dropdown-menu,.account-mega-dropdown,.solutions-dropdown{z-index:4000!important}.dropdown-menu{overflow:visible}.offcanvas.mobile-nav-shell{z-index:4050}.offcanvas-backdrop{z-index:4040}.menu-mobile-toggle[aria-expanded=true] i::before{content:"\f659"}.bsb-page-container,.container{width:min(100% - 1.25rem,var(--container-max,1520px));max-width:var(--container-max,1520px)}@media(min-width:1440px){:root{--container-max:1520px}.appbar-inner{padding-left:clamp(1rem,2.2vw,2rem);padding-right:clamp(1rem,2.2vw,2rem)}.brand-link{flex:0 1 320px;max-width:360px}.nav-desktop{gap:.32rem}.appbar-actions{min-width:260px}}@media(max-width:1199.98px){.nav-desktop .nav-link,.nav-desktop .nav-dropdown-toggle{font-size:.8rem;padding:.5rem .48rem}.workspace-pill{max-width:145px}.account-trigger{max-width:190px}}@media(max-width:991.98px){.appbar-inner{padding:.65rem .75rem}.brand-link{max-width:min(72vw,320px)}.menu-mobile-toggle{display:inline-flex}.nav-desktop,.menu-account,.workspace-pill:not(.mobile-workspace-pill),.menu-support-end-pill{display:none!important}.mobile-nav-shell .btn-close, .mobile-nav-shell [data-bs-dismiss=offcanvas]{min-width:44px;min-height:44px;border-radius:14px;background-color:rgba(255,255,255,.10);opacity:1}.mobile-nav-list a{min-height:48px}}


/* Header alignment patch: keep original menu styling while anchoring brand left, actions right, and preventing hover clipping. */
.appbar{overflow:visible!important;}
.appbar-inner{max-width:none!important;margin:0!important;width:100%!important;padding:.54rem clamp(.85rem,1.25vw,1.25rem)!important;display:grid!important;grid-template-columns:auto minmax(0,1fr) auto!important;align-items:center!important;gap:.75rem!important;overflow:visible!important;}
.brand-link{justify-self:start!important;flex:0 0 auto!important;max-width:min(360px,32vw)!important;}
.nav-desktop{justify-self:center!important;overflow:visible!important;max-width:100%!important;}
.appbar-actions{justify-self:end!important;overflow:visible!important;}
@media (min-width:1440px){.appbar-inner{padding-left:clamp(.85rem,1.25vw,1.25rem)!important;padding-right:clamp(.85rem,1.25vw,1.25rem)!important;}.appbar-actions{min-width:0!important;}}
/* -----------------------------------------
   Responsive text wrapping patch
   Keeps the existing layout, but stops normal words from breaking letter-by-letter.
   Use .break-anywhere, .overflow-anywhere, or .text-break only for long tokens such as URLs and emails.
------------------------------------------ */
:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .display-1,
  .display-2,
  .display-3,
  .display-4,
  .display-5,
  .display-6,
  .hero-title,
  .bsb-hero-title,
  .bsb-title,
  .section-title,
  .section-heading,
  .card-title,
  .modal-title,
  .brand-title,
  .brand-subtitle,
  .btn,
  .badge,
  .chip,
  .nav-link,
  .nav-pill,
  .nav-desktop .nav-link,
  .nav-desktop .nav-dropdown-toggle,
  .mobile-nav-link,
  .mobile-nav-link-title,
  .solutions-link-title,
  .account-mega-link-title,
  .workspace-pill-label,
  .workspace-pill-title,
  .workspace-pill-value
){
  overflow-wrap:normal !important;
  word-break:normal !important;
  hyphens:manual;
}

:where(
  p,
  li,
  .lead,
  .section-sub,
  .bsb-sub,
  .card-text,
  .aw-sub,
  .solutions-link-desc,
  .account-mega-link-desc,
  .mobile-nav-link-desc,
  .bsb-best-footer-copy,
  .bsb-best-footer-solution-desc,
  .bsb-footer-text,
  .bsb-footer-link-desc
){
  overflow-wrap:break-word !important;
  word-break:normal !important;
  hyphens:auto;
}

:where(
  .text-break,
  .break-anywhere,
  .overflow-anywhere,
  .admin-break-anywhere,
  .team-break-anywhere,
  .white-space-prewrap,
  pre,
  code,
  kbd,
  samp,
  .email,
  .url,
  .token,
  .hash,
  .api-key,
  .snapshot-meta-copy,
  .audit-meta,
  .audit-kv-row .v,
  .profile-kv .v
){
  overflow-wrap:anywhere !important;
  word-break:break-word !important;
}

:where(h1, h2, h3, .display-1, .display-2, .display-3, .display-4, .hero-title, .bsb-hero-title, .bsb-title){
  text-wrap:balance;
}

:where(p, .lead, .section-sub, .bsb-sub, .card-text){
  text-wrap:pretty;
}

@media (max-width:575.98px){
  h1,
  .display-1,
  .display-2,
  .display-3,
  .hero-title,
  .bsb-hero-title,
  .bsb-title{
    max-width:100%;
    font-size:clamp(2.1rem, 10vw, 3.2rem) !important;
    line-height:1.08 !important;
    letter-spacing:-.045em;
  }

  h2,
  .display-4,
  .display-5,
  .section-title,
  .section-heading{
    max-width:100%;
    font-size:clamp(1.65rem, 7vw, 2.35rem) !important;
    line-height:1.12 !important;
    letter-spacing:-.03em;
  }

  .lead,
  .section-sub,
  .bsb-sub{
    font-size:clamp(1rem, 4.35vw, 1.22rem) !important;
    line-height:1.55 !important;
  }

  .brand-link{
    max-width:calc(100vw - 86px) !important;
    min-width:0 !important;
  }

  .brand-copy{
    min-width:0 !important;
    max-width:100% !important;
  }

  .brand-title,
  .brand-subtitle{
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .brand-title{
    font-size:.92rem !important;
    line-height:1.08 !important;
  }

  .brand-subtitle{
    max-width:clamp(135px, 52vw, 210px) !important;
    font-size:.7rem !important;
    line-height:1.18 !important;
  }

  .btn,
  .btn-menu-ghost,
  .btn-menu-primary{
    min-width:0;
    max-width:100%;
    white-space:normal;
    line-height:1.18;
  }

  .chip,
  .badge,
  .mobile-nav-link{
    min-width:0;
    max-width:100%;
  }
}

@media (max-width:420px){
  h1,
  .display-1,
  .display-2,
  .display-3,
  .hero-title,
  .bsb-hero-title,
  .bsb-title{
    font-size:clamp(1.95rem, 9.2vw, 2.72rem) !important;
    line-height:1.1 !important;
  }

  .chips-grid,
  .feature-chips-grid,
  .feature-pill-grid,
  .hero-feature-grid{
    grid-template-columns:1fr !important;
  }

  .chips-grid .chip,
  .feature-chips-grid .chip,
  .feature-pill-grid .chip,
  .hero-feature-grid .chip{
    justify-content:flex-start;
    text-align:left;
  }
}

@media (max-width:370px){
  .brand-subtitle{
    display:none !important;
  }

  .brand-title{
    max-width:calc(100vw - 118px) !important;
  }
}

/* -----------------------------
   Homepage body experience
   Mobile-first spacing, uniform grids, and progressive content
------------------------------ */
.home-main{
  --home-section-space:clamp(2rem, 4vw, 3.75rem);
  --home-section-gap:clamp(1rem, 2.2vw, 1.5rem);
  --home-card-radius:clamp(1rem, 2vw, 1.35rem);
  --home-card-padding:clamp(1rem, 2vw, 1.35rem);
  --home-reading-width:880px;
  --home-accent:#7fcfff;
  --home-accent-strong:#48ddff;
  --home-surface:rgba(10,18,33,.82);
  position:relative;
  isolation:isolate;
  width:100%;
  min-width:0;
  overflow:clip;
}

html.home-page-root,
body.home-page{
  overflow-x:clip;
}

.home-page{
  padding-top:calc(var(--bsb-menu-height, 64px) + var(--bsb-menu-safe-top, 0px)) !important;
}

body.home-page .appbar,
body.home-page .bsb-menu{
  position:fixed !important;
  top:0;
}

.home-page .home-main{
  margin-top:0;
}

.home-main > .home-section{
  position:relative;
  margin:0;
  padding-block:var(--home-section-space);
  border:0;
}

.home-main > .home-section + .home-section::before{
  position:absolute;
  inset:0 max(1rem, calc((100vw - 1440px) / 2)) auto;
  height:1px;
  content:"";
  background:linear-gradient(90deg, transparent, rgba(127,207,255,.2) 18%, rgba(255,255,255,.12) 50%, rgba(127,207,255,.2) 82%, transparent);
}

.home-main > .home-section:nth-of-type(even){
  background:
    radial-gradient(circle at 8% 15%, rgba(79,131,255,.07), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,.025));
}

.home-main > .home-section:nth-of-type(odd){
  background:
    radial-gradient(circle at 92% 22%, rgba(0,212,255,.055), transparent 30rem),
    transparent;
}

.home-main .container,
.home-main .container-fluid > .container{
  width:min(calc(100% - clamp(1rem, 4vw, 4rem)), 1440px);
  max-width:1440px;
  margin-inline:auto;
}

.home-main .home-subsection{
  margin:var(--home-section-gap) 0 0;
  padding:0;
}

.home-main .section-heading{
  width:100%;
  max-width:none;
  margin-bottom:clamp(.75rem, 1.8vw, 1.15rem);
  line-height:1.12;
  letter-spacing:-.02em;
  text-wrap:balance;
}

.home-main .section-sub{
  width:100%;
  max-width:none;
  margin-bottom:clamp(1.25rem, 2.5vw, 2rem);
  line-height:1.65;
  text-wrap:pretty;
}

.home-main p,
.home-main li{
  text-wrap:pretty;
}

.home-main .text-center .section-heading,
.home-main .text-center .section-sub{
  margin-inline:auto;
}

.home-main .row{
  min-width:0;
}

.home-main .row > *{
  min-width:0;
}

.home-main .card.yb,
.home-main .app-widget,
.home-main .kpi-card{
  border-color:rgba(255,255,255,.1);
  border-radius:var(--home-card-radius);
  box-shadow:0 14px 34px rgba(0,0,0,.16);
}

.home-main .card.yb{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 42%),
    var(--yb-card);
}

.home-main .card.yb::before{
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:1px;
  content:"";
  background:linear-gradient(90deg, transparent, rgba(127,207,255,.42), transparent);
  opacity:.55;
  pointer-events:none;
}

.home-main .card.yb,
.home-main .app-widget{
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.home-main .card.yb:hover,
.home-main .card.yb:focus-within,
.home-main .app-widget:hover,
.home-main .app-widget:focus-within{
  border-color:rgba(127,207,255,.32);
  box-shadow:0 18px 42px rgba(0,0,0,.24);
}

.home-main .icon-pill{
  border-color:rgba(127,207,255,.18);
  background:linear-gradient(145deg, rgba(79,131,255,.16), rgba(15,26,49,.92));
}

.home-main .chip-deck{
  padding:clamp(.65rem, 1.5vw, 1rem);
  border-color:rgba(127,207,255,.2);
  border-radius:var(--home-card-radius);
  background:rgba(8,15,28,.46);
}

.home-main .chip{
  min-width:0;
  min-height:3rem;
  padding:.6rem .72rem;
  border-color:rgba(255,255,255,.1);
  border-radius:.85rem;
  background:rgba(15,26,49,.88);
  line-height:1.25;
  text-wrap:balance;
}

.home-main .home-capability-grid--balanced{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

.home-main .home-capability-grid--balanced > .chip{
  flex:0 0 calc(50% - .25rem);
}

.home-hero{
  padding-top:clamp(1.5rem, 4vw, 3.75rem) !important;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(79,131,255,.2), transparent 34rem),
    radial-gradient(circle at 86% 18%, rgba(0,212,255,.12), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 78%) !important;
}

.home-hero-eyebrow{
  display:inline-flex;
  min-height:2rem;
  align-items:center;
  gap:.55rem;
  padding:.38rem .7rem;
  border:1px solid rgba(127,207,255,.22);
  border-radius:999px;
  background:rgba(10,18,33,.64);
  color:#cdeeff;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.06em;
  line-height:1.2;
  text-transform:uppercase;
  box-shadow:0 10px 30px rgba(0,0,0,.16);
}

.home-live-dot{
  width:.5rem;
  height:.5rem;
  flex:0 0 .5rem;
  border-radius:50%;
  background:#62f6c7;
  box-shadow:0 0 0 .22rem rgba(98,246,199,.12), 0 0 1rem rgba(98,246,199,.65);
  animation:home-live-pulse 2.4s ease-in-out infinite;
}

@keyframes home-live-pulse{
  0%,
  100%{
    opacity:.72;
    transform:scale(.9);
  }
  50%{
    opacity:1;
    transform:scale(1.08);
  }
}

.home-hero::after{
  position:absolute;
  z-index:-1;
  top:8%;
  right:-8rem;
  width:24rem;
  height:24rem;
  border:1px solid rgba(127,207,255,.12);
  border-radius:50%;
  content:"";
  box-shadow:
    0 0 0 4rem rgba(79,131,255,.025),
    0 0 0 8rem rgba(0,212,255,.018);
  animation:home-orbit-drift 12s ease-in-out infinite;
  pointer-events:none;
}

@keyframes home-orbit-drift{
  0%,
  100%{
    opacity:.72;
    transform:translate3d(0, 0, 0) scale(1);
  }
  50%{
    opacity:1;
    transform:translate3d(-1.5rem, 1rem, 0) scale(1.04);
  }
}

.home-hero #homeHeroTitle{
  max-width:850px;
  font-size:clamp(2.15rem, 5vw, 4.8rem);
  line-height:1.02;
  letter-spacing:-.045em;
  text-wrap:balance;
}

.home-hero .lead{
  max-width:760px;
}

.home-hero-workflow{
  min-width:0;
  padding-top:clamp(.35rem, 2vw, .75rem);
}

.home-hero-workflow > .section-heading{
  margin-bottom:clamp(.6rem, 1.2vw, .85rem);
}

.home-hero-workflow > .section-sub{
  margin-bottom:clamp(1.25rem, 2.2vw, 1.75rem);
}

.home-hero-actions .btn{
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  padding:.72rem 1rem;
}

.home-hero .app-hero{
  padding:clamp(.75rem, 2vw, 1.15rem);
  border-color:rgba(127,207,255,.2);
  border-radius:var(--home-card-radius);
  background:
    linear-gradient(145deg, rgba(127,207,255,.08), transparent 38%),
    rgba(8,15,28,.72);
  box-shadow:0 22px 55px rgba(0,0,0,.22);
  backdrop-filter:blur(16px);
}

.home-hero .app-widget{
  position:relative;
  min-height:100%;
  overflow:hidden;
  background:linear-gradient(145deg, rgba(79,131,255,.11), rgba(15,26,49,.9));
}

.home-ai-workflow-grid{
  counter-reset:home-workflow-step;
}

.home-ai-workflow-grid > *{
  counter-increment:home-workflow-step;
}

.home-ai-workflow-grid .app-widget::before{
  position:absolute;
  z-index:1;
  top:.55rem;
  right:.65rem;
  content:counter(home-workflow-step, decimal-leading-zero);
  color:rgba(157,230,255,.55);
  font-size:.62rem;
  font-weight:850;
  letter-spacing:.06em;
}

.home-hero .app-widget::after{
  position:absolute;
  inset:auto 12% 0;
  height:2px;
  border-radius:999px;
  content:"";
  background:linear-gradient(90deg, transparent, var(--home-accent-strong), transparent);
  opacity:0;
  transform:scaleX(.25);
  transition:opacity .25s ease, transform .25s ease;
}

.home-hero .app-widget.is-active{
  border-color:rgba(72,221,255,.58);
  background:linear-gradient(145deg, rgba(72,221,255,.17), rgba(15,26,49,.96));
  box-shadow:0 16px 36px rgba(0,0,0,.24), 0 0 0 1px rgba(72,221,255,.08), 0 0 28px rgba(72,221,255,.08);
}

.home-hero .app-widget.is-active::after{
  opacity:1;
  transform:scaleX(1);
}

.home-ai-console-bar,
.home-ai-console-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
}

.home-ai-console-bar{
  margin-bottom:.75rem;
  padding-bottom:.75rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.home-ai-console-title{
  display:flex;
  align-items:center;
  gap:.55rem;
  flex:0 0 auto;
  color:#f4f8ff;
  font-size:.82rem;
  font-weight:850;
  letter-spacing:.025em;
}

.home-ai-console-status{
  max-width:52%;
  min-width:0;
  overflow:hidden;
  color:#9de6ff;
  font-size:.72rem;
  font-weight:750;
  text-align:right;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.home-ai-workflow-grid .app-widget[role="button"]{
  cursor:pointer;
  touch-action:manipulation;
}

.home-ai-workflow-grid .app-widget[role="button"]:focus-visible{
  border-color:rgba(72,221,255,.68);
  outline:2px solid rgba(127,207,255,.82);
  outline-offset:2px;
}

.home-ai-console-footer{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin-top:.75rem;
  padding-top:.75rem;
  border-top:1px solid rgba(255,255,255,.08);
  color:#aebbd0;
  font-size:.68rem;
  font-weight:700;
}

.home-ai-console-footer > span{
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  min-width:0;
}

.home-ai-console-footer .icon{
  width:.85rem;
  height:.85rem;
  color:var(--home-accent);
}

.home-hero .app-widget .aw-sub{
  display:-webkit-box;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}

.home-section--contact{
  background:
    radial-gradient(circle at 50% 0, rgba(79,131,255,.13), transparent 38rem),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.045)) !important;
}

.home-contact-verification{
  min-width:0;
}

.home-contact-verification__feedback[hidden]{
  display:none !important;
}

.home-contact-verification[data-state="challenge"] .home-contact-turnstile{
  margin-bottom:.75rem;
}

.home-contact-turnstile{
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.home-contact-turnstile iframe{
  max-width:100%;
}

@media (min-width:576px){
  .home-ai-console-footer{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .home-main .chips-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:640px) and (max-width:991.98px){
  .home-main .home-section .row > .col-md-6{
    flex:0 0 auto;
    width:50%;
  }
}

@media (min-width:576px) and (max-width:991.98px){
  .home-main .home-section .row > .col-md-4{
    flex:0 0 auto;
    width:50%;
  }
}

@media (min-width:768px){
  .home-main{
    --home-section-gap:clamp(1.15rem, 2vw, 1.75rem);
  }

  .home-main .home-capability-grid--balanced > .chip{
    flex-basis:calc(25% - .375rem);
  }

  .home-main .chips-grid{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
}

@media (min-width:992px){
  .home-hero-layout{
    --bs-gutter-x:clamp(2rem, 5vw, 5rem);
  }

  .home-hero-workflow{
    align-self:flex-start;
    padding-top:clamp(2.5rem, 4vw, 3.75rem);
  }

  .home-hero .app-hero{
    position:sticky;
    top:calc(var(--scroll-offset) + 1.25rem);
  }

  .home-main .home-section .row > .col-lg-3{
    flex:0 0 auto;
    width:25%;
  }

  .home-main .home-section .row > .col-lg-4{
    flex:0 0 auto;
    width:33.333333%;
  }
}

@media (min-width:1200px){
  .home-main .home-capability-grid--balanced > .chip{
    flex-basis:calc(20% - .4rem);
  }

  .home-main .chips-grid{
    grid-template-columns:repeat(6, minmax(0, 1fr));
  }

  .home-main .home-section .row > .col-xl-4{
    flex:0 0 auto;
    width:33.333333%;
  }
}

@media (max-width:767.98px){
  .home-main{
    --home-section-space:clamp(2.1rem, 8vw, 3rem);
    --home-section-gap:1rem;
  }

  .home-main .section-heading{
    margin-bottom:.75rem;
  }

  .home-main .section-sub{
    margin-bottom:1.25rem;
    font-size:1rem !important;
    line-height:1.58 !important;
  }

  .home-main .card.p-4{
    padding:1rem !important;
  }

  .home-main .card.p-3{
    padding:.9rem !important;
  }

  .home-main .card.yb p:last-child,
  .home-main .app-widget p:last-child{
    margin-bottom:0;
  }

  .home-hero{
    padding-top:1.4rem !important;
  }

  .home-hero #homeHeroTitle{
    font-size:clamp(1.9rem, 9vw, 2.85rem) !important;
    line-height:1.06 !important;
    letter-spacing:-.035em;
  }

  .home-hero h2.section-heading{
    font-size:1.05rem !important;
    line-height:1.25 !important;
    letter-spacing:0;
  }

  .home-hero-actions{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    width:100%;
  }

  .home-hero-actions .btn{
    width:100%;
    padding-inline:.65rem;
    font-size:.9rem;
  }

  .home-hero .app-widget{
    padding:.8rem;
  }

  .home-ai-workflow-grid .app-widget::before{
    top:.45rem;
    right:.5rem;
    font-size:.56rem;
  }

  .home-hero .aw-title{
    font-size:.92rem;
  }

  .home-hero .aw-sub{
    font-size:.8rem;
    line-height:1.35;
  }

  .home-main .chip{
    min-height:3rem;
    font-size:clamp(.76rem, 2.7vw, .84rem);
    line-height:1.25;
  }

  .home-main .faq-card{
    min-height:100%;
  }

  .home-main .faq-card > .d-flex{
    gap:.75rem;
  }

  .home-main .form-control,
  .home-main .form-select,
  .home-main textarea{
    min-height:48px;
    font-size:1rem;
  }

  .home-main textarea{
    min-height:110px;
  }
}

@media (max-width:575.98px){
  .home-page{
    padding-bottom:calc(4.75rem + var(--safe));
  }

  .home-main .chips-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }

  .home-main .chips-grid .chip{
    justify-content:center;
    text-align:center;
  }

  .home-impact-grid{
    --bs-gutter-x:.75rem;
    --bs-gutter-y:.75rem;
  }

  .home-impact-grid .kpi-card{
    min-height:100%;
    padding:.85rem !important;
  }

  .home-impact-grid .kpi-value{
    font-size:clamp(1.3rem, 7vw, 1.75rem);
  }

  .home-impact-grid .kpi-note{
    font-size:.72rem !important;
    line-height:1.35;
  }

}

@media (max-width:420px){
  .home-main > .home-section + .home-section::before{
    inset-inline:1rem;
  }

  .home-main .row.g-4{
    --bs-gutter-y:1rem;
  }

  .home-main .row.g-5{
    --bs-gutter-y:1.25rem;
  }
}

@media (max-width:369.98px){
  .home-hero-actions{
    grid-template-columns:1fr;
  }

  .home-main .chips-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:.4rem;
  }

  .home-main .chip-deck{
    padding:.5rem;
  }

  .home-main .chip{
    min-height:2.8rem;
    padding:.5rem .4rem;
    font-size:.7rem;
  }
}

@media (prefers-reduced-motion:reduce){
  .home-live-dot,
  .home-hero::after{
    animation:none !important;
  }

  .home-main .card.yb,
  .home-main .app-widget,
  .home-hero .app-widget::after{
    transition:none !important;
  }
}

.research-intelligence-home-grid{
  display:grid;
  gap:clamp(1.25rem, 5vw, 4.5rem);
  align-items:center;
}

.research-intelligence-home-copy,.research-intelligence-home-preview{min-width:0}

.research-intelligence-home-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-bottom:1rem;
  padding:.46rem .72rem;
  border:1px solid rgba(30,92,170,.18);
  border-radius:999px;
  background:rgba(255,255,255,.66);
  color:#1558a8;
  font-size:.74rem;
  font-weight:850;
  letter-spacing:.055em;
  text-transform:uppercase;
}

.research-intelligence-home-kicker .icon{width:1rem;height:1rem}

.research-intelligence-home-copy .section-heading{
  max-width:850px;
  font-size:clamp(2rem, 7.5vw, 4.4rem);
  line-height:1.03;
  letter-spacing:-.05em;
}

.research-intelligence-home-intro{
  max-width:760px;
  font-size:clamp(1rem, 2.3vw, 1.2rem);
  line-height:1.65;
}

.research-intelligence-home-actions{display:grid;gap:.65rem;margin-top:1.25rem}
.research-intelligence-home-actions .btn{min-height:48px;display:inline-flex;align-items:center;justify-content:center}

.research-intelligence-home-proof{
  margin:1.25rem 0 0;
  padding:0;
  display:grid;
  gap:.65rem;
  list-style:none;
}

.research-intelligence-home-proof li{display:flex;align-items:center;gap:.55rem;color:#344d70 !important;font-weight:750}
.research-intelligence-home-proof .icon{width:1.1rem;height:1.1rem;color:#1769c2}

.research-intelligence-home-preview{
  position:relative;
  overflow:hidden;
  padding:clamp(1rem, 4vw, 1.6rem);
  border:1px solid rgba(30,92,170,.18);
  border-radius:clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 90% 0, rgba(93,224,168,.18), transparent 17rem),
    linear-gradient(155deg, #0a1628, #102640 58%, #0d1b30);
  box-shadow:0 32px 80px rgba(13,40,78,.25);
  color:#f5f9ff;
}

.research-intelligence-home-preview::before{
  position:absolute;
  inset:0;
  content:"";
  background-image:linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:34px 34px;
  pointer-events:none;
}

.research-intelligence-home-preview__top,.research-intelligence-home-preview article,.research-intelligence-home-steps,.research-intelligence-home-next{position:relative;z-index:1}

.research-intelligence-home-preview__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  color:#bdcbe0;
  font-size:.72rem;
  font-weight:750;
}

.research-intelligence-home-preview__top span{display:inline-flex;align-items:center;gap:.45rem}
.research-intelligence-home-preview__top i{width:.5rem;height:.5rem;border-radius:50%;background:#5fe0a8;box-shadow:0 0 0 .25rem rgba(95,224,168,.12)}
.research-intelligence-home-preview__top strong{color:#8bdfff}

.research-intelligence-home-preview article{
  margin-top:1rem;
  padding:1rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.9rem;
  border:1px solid rgba(255,255,255,.1);
  border-radius:1rem;
  background:rgba(255,255,255,.055);
}

.research-intelligence-home-preview article small,.research-intelligence-home-next small{display:block;color:#9fb0c8 !important;font-size:.68rem;font-weight:750;letter-spacing:.06em;text-transform:uppercase}
.research-intelligence-home-preview article h3{margin:.22rem 0 .3rem;color:#fff;font-size:1rem}
.research-intelligence-home-preview article p{margin:0;color:#bdcbe0 !important;font-size:.82rem;line-height:1.5}

.research-intelligence-home-score{
  width:3.25rem;
  height:3.25rem;
  display:grid;
  place-items:center;
  border:1px solid rgba(129,220,255,.28);
  border-radius:50%;
  background:rgba(101,151,255,.12);
  color:#8bdfff;
  font-size:.82rem;
  font-weight:900;
}

.research-intelligence-home-steps{margin-top:.75rem;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.5rem}
.research-intelligence-home-steps span{padding:.7rem;border:1px solid rgba(255,255,255,.08);border-radius:.8rem;background:rgba(255,255,255,.035);color:#c6d3e5;font-size:.74rem;font-weight:750}
.research-intelligence-home-steps b{display:block;margin-bottom:.18rem;color:#6fdab1;font-size:.63rem;letter-spacing:.08em}

.research-intelligence-home-next{margin-top:.75rem;padding:.85rem;display:flex;align-items:center;gap:.7rem;border-radius:.9rem;background:linear-gradient(135deg,rgba(101,151,255,.2),rgba(25,212,243,.1))}
.research-intelligence-home-next .icon{width:1.1rem;height:1.1rem;color:#81dcff}
.research-intelligence-home-next strong{display:block;margin-top:.15rem;color:#fff;font-size:.78rem}

@media (min-width:576px){
  .research-intelligence-home-actions{display:flex;flex-wrap:wrap}
  .research-intelligence-home-proof{grid-template-columns:repeat(3,minmax(0,1fr))}
  .research-intelligence-home-steps{grid-template-columns:repeat(4,minmax(0,1fr))}
}

@media (min-width:992px){
  .research-intelligence-home-grid{grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr)}
}

@media (min-width:1800px){
  .home-main .container,
  .home-main .container-fluid > .container{
    width:min(calc(100% - 7rem), 1680px);
    max-width:1680px;
  }
}

/* Homepage light sections use the same design system as AI Business Research Intelligence. */
.home-main > .home-section.home-section--light{
  --home-light-ink:#102944;
  --home-light-ink-soft:#25435f;
  --home-light-muted:#5a7086;
  --home-light-blue:#3978ee;
  --home-light-blue-deep:#1554ba;
  --home-light-cyan:#64e8ed;
  --home-light-mint:#78e6bd;
  --home-light-violet:#9c87ff;
  --home-light-line:rgba(32,78,126,.14);
  --home-light-shadow:0 18px 48px rgba(21,62,105,.08);
  --bs-body-color:var(--home-light-ink);
  --bs-secondary-color:var(--home-light-muted);
  --bs-border-color:var(--home-light-line);
  position:relative;
  isolation:isolate;
  padding-block:clamp(68px,10vw,122px);
  border-block:1px solid var(--home-light-line);
  color:var(--home-light-ink);
  color-scheme:light;
  background:
    radial-gradient(circle at 92% 10%,rgba(126,108,239,.085),transparent 27rem),
    linear-gradient(180deg,#f5f9fd 0%,#fff 100%)!important;
  box-shadow:none;
}

.home-main > .home-section.home-section--light::before{
  position:absolute;
  z-index:0;
  inset:0 0 auto;
  height:1px;
  content:"";
  pointer-events:none;
  background:linear-gradient(90deg,transparent,rgba(91,177,219,.24),transparent);
}

.home-main > .home-section.home-section--light-blue{
  background:
    radial-gradient(circle at 7% 18%,rgba(57,178,218,.1),transparent 25rem),
    radial-gradient(circle at 92% 82%,rgba(141,113,239,.07),transparent 29rem),
    linear-gradient(145deg,#edf6fd,#f4f1ff 78%,#eff9f6)!important;
}

.home-main > .home-section.home-section--light-mist{
  background:
    radial-gradient(circle at 8% 14%,rgba(83,200,216,.1),transparent 27rem),
    radial-gradient(circle at 92% 82%,rgba(141,113,239,.09),transparent 29rem),
    linear-gradient(180deg,#fff 0%,#f2f7fc 100%)!important;
}

.home-main > .home-section.home-section--light-aqua{
  background:
    radial-gradient(circle at 10% 16%,rgba(83,200,216,.11),transparent 27rem),
    radial-gradient(circle at 90% 84%,rgba(120,230,189,.1),transparent 28rem),
    linear-gradient(145deg,#f0fbf9,#f4f1ff 78%,#f5f9fd)!important;
}

.home-main > .home-section.home-section--light-pearl{
  background:
    radial-gradient(circle at 88% 12%,rgba(156,135,255,.075),transparent 27rem),
    linear-gradient(180deg,#fff 0%,#f2f7fc 100%)!important;
}

.home-main > .home-section.home-section--light-warm{
  background:
    radial-gradient(circle at 10% 10%,rgba(255,196,120,.1),transparent 26rem),
    radial-gradient(circle at 92% 84%,rgba(83,200,216,.075),transparent 29rem),
    linear-gradient(180deg,#fffaf3 0%,#f2f7fc 100%)!important;
}

.home-main > .home-section.home-section--light-lilac{
  background:
    radial-gradient(circle at 88% 12%,rgba(156,135,255,.1),transparent 28rem),
    radial-gradient(circle at 8% 86%,rgba(83,200,216,.08),transparent 29rem),
    linear-gradient(145deg,#f5f3ff,#eff9f6 78%,#f5f9fd)!important;
}

.home-main > .home-section.home-section--light > .container{
  position:relative;
  z-index:1;
  width:min(calc(100% - 28px),1380px);
  max-width:1380px;
}

.home-section--light .card.yb,
.home-section--light .app-widget,
.home-section--light .kpi-card{
  box-shadow:0 18px 46px rgba(32,67,113,.1),inset 0 1px rgba(255,255,255,.92);
}

.home-section--light .border.rounded:not(.btn),
.home-section--light .border.rounded-3:not(.btn),
.home-section--light .border.rounded-4:not(.btn){
  border-color:rgba(45,84,135,.13)!important;
  background:rgba(255,255,255,.7);
  box-shadow:0 12px 30px rgba(35,68,111,.065);
}

.home-section--light .icon-pill{
  border:1px solid rgba(62,111,184,.13);
  background:linear-gradient(145deg,#edf5ff,#e7f1ff);
  color:#2667b8;
  box-shadow:0 8px 20px rgba(53,103,177,.1);
}

.home-section--light .btn-outline-light{
  border-color:rgba(25,59,103,.32)!important;
  background:rgba(255,255,255,.68)!important;
  color:#18395f!important;
  box-shadow:0 10px 24px rgba(35,67,110,.07);
}

.home-section--light .btn-outline-light:hover,
.home-section--light .btn-outline-light:focus-visible{
  border-color:#245fae!important;
  background:#163e6d!important;
  color:#fff!important;
}

@media (hover:hover) and (pointer:fine){
  .home-section--light .card.yb:hover{
    border-color:rgba(66,117,190,.25);
    box-shadow:0 25px 58px rgba(34,71,121,.14),inset 0 1px #fff;
    transform:translateY(-3px);
  }
}

@media (prefers-reduced-motion:reduce){
  .home-section--light .card.yb{transition:none!important}
}

/* Premium type and surface hierarchy, shared with the Intelligence landing page. */
.home-main > .home-section.home-section--light .section-heading{
  max-width:880px;
  margin-top:.7rem;
  color:var(--home-light-ink)!important;
  font-size:clamp(2rem,8.2vw,4.35rem);
  font-weight:920;
  letter-spacing:-.055em;
  line-height:1.02;
  text-shadow:none!important;
  text-wrap:balance;
}

.home-main > .home-section.home-section--light .text-center .section-heading{
  margin-inline:auto;
}

.home-main > .home-section.home-section--light .section-sub{
  max-width:760px;
  margin-top:1rem;
  margin-bottom:clamp(1.9rem,5vw,3.25rem);
  color:var(--home-light-muted)!important;
  font-size:clamp(1rem,2.2vw,1.12rem)!important;
  line-height:1.72!important;
  text-wrap:pretty;
}

.home-main > .home-section.home-section--light .text-center .section-sub{
  margin-inline:auto;
}

.home-main > .home-section.home-section--light :where(h1,h2,h3,h4,h5,h6){
  color:var(--home-light-ink)!important;
  text-shadow:none!important;
}

.home-main > .home-section.home-section--light :where(p,li,.text-secondary,.text-muted,small){
  color:var(--home-light-muted)!important;
}

.home-main > .home-section.home-section--light :where(p,li) strong{
  color:var(--home-light-ink-soft);
}

.home-main > .home-section.home-section--light .text-info{
  color:var(--home-light-blue-deep)!important;
}

.home-main > .home-section.home-section--light .text-uppercase.fw-bold.text-info{
  display:inline-flex;
  align-items:center;
  min-height:0;
  margin-bottom:.75rem!important;
  padding:0;
  border:0;
  border-radius:0;
  background:none;
  color:#2b69c9!important;
  font-size:.69rem!important;
  font-weight:900!important;
  letter-spacing:.135em;
  line-height:1.4;
  box-shadow:none;
}

.home-main > .home-section.home-section--light .mission-note{
  position:relative;
  max-width:880px;
  margin:1rem 0 2rem;
  padding:1rem 1.05rem;
  overflow:hidden;
  border:1px solid rgba(47,104,167,.12);
  border-radius:18px;
  background:rgba(255,255,255,.64);
  color:var(--home-light-muted);
  box-shadow:0 12px 32px rgba(21,62,105,.06);
}

.home-main > .home-section.home-section--light .mission-note .icon{
  width:1.15rem;
  height:1.15rem;
  color:var(--home-light-blue-deep);
}

.home-main > .home-section.home-section--light .row{
  --bs-gutter-x:.85rem;
  --bs-gutter-y:.85rem;
}

.home-main > .home-section.home-section--light .card.yb,
.home-main > .home-section.home-section--light .app-widget,
.home-main > .home-section.home-section--light .kpi-card{
  border:1px solid var(--home-light-line)!important;
  border-radius:23px;
  background:rgba(255,255,255,.9)!important;
  color:var(--home-light-ink-soft);
  box-shadow:var(--home-light-shadow)!important;
  -webkit-backdrop-filter:none!important;
  backdrop-filter:none!important;
}

.home-main > .home-section.home-section--light .card.yb{
  padding:clamp(1.25rem,4vw,1.75rem)!important;
}

.home-main > .home-section.home-section--light .card.yb::before{
  display:none!important;
}

.home-main > .home-section.home-section--light .card.yb :where(h2,h3,h4,h5,h6),
.home-main > .home-section.home-section--light .app-widget :where(h2,h3,h4,h5,h6){
  color:var(--home-light-ink)!important;
  text-shadow:none!important;
}

.home-main > .home-section.home-section--light .card.yb :where(p,li,.text-secondary,.text-muted,small),
.home-main > .home-section.home-section--light .app-widget :where(p,li,.text-secondary,.text-muted,small){
  color:var(--home-light-muted)!important;
}

.home-main > .home-section.home-section--light .icon-pill{
  position:relative;
  width:48px!important;
  height:48px!important;
  flex:0 0 48px;
  overflow:hidden;
  border:0;
  border-radius:15px!important;
  background:linear-gradient(145deg,#e4f8fb,#eeeaff)!important;
  color:#2863bd!important;
  box-shadow:inset 0 1px rgba(255,255,255,.94);
}

.home-main > .home-section.home-section--light .icon-pill::after{
  display:none!important;
}

.home-main > .home-section.home-section--light .icon-pill .icon,
.home-main > .home-section.home-section--light .icon-pill svg{
  position:relative;
  z-index:1;
  color:#2863bd!important;
  stroke-width:2.2;
}

.home-main > .home-section.home-section--light .list-check svg{
  color:#08725f;
  filter:drop-shadow(0 2px 5px rgba(8,114,95,.14));
}

.home-main > .home-section.home-section--light .chip,
.home-main > .home-section.home-section--light .badge-block{
  border-color:var(--home-light-line);
  background:rgba(255,255,255,.82);
  color:var(--home-light-ink-soft);
  box-shadow:0 10px 28px rgba(21,62,105,.055);
}

/* Keep deliberately dark product previews dark inside the lighter showcase. */
.home-main > #ai-business-research-intelligence.home-section--light .research-intelligence-home-preview{
  color:#f5f9ff;
}

.home-main > #ai-business-research-intelligence.home-section--light .research-intelligence-home-preview article h3{
  color:#fff!important;
  text-shadow:none;
}

.home-main > #ai-business-research-intelligence.home-section--light .research-intelligence-home-preview article p{
  color:#bdcbe0!important;
}

.home-main > #ai-business-research-intelligence.home-section--light .research-intelligence-home-preview :where(article,.research-intelligence-home-next) small{
  color:#9fb0c8!important;
}

.home-main > #ai-business-research-intelligence.home-section--light .research-intelligence-home-preview :where(.research-intelligence-home-preview__top,.research-intelligence-home-next) strong{
  color:#fff!important;
}

.home-main > #ai-talking-websites.home-section--light .talking-websites-experience :where(h2,h3,h4,h5,h6,strong){
  color:#f6fbff!important;
  text-shadow:none!important;
}

.home-main > #ai-talking-websites.home-section--light .talking-websites-experience :where(p,li,small,.text-secondary,.text-muted){
  color:#b7c9dc!important;
  opacity:1!important;
  text-shadow:none!important;
}

.home-main > #ai-talking-websites.home-section--light .talking-websites-listening small,
.home-main > #ai-talking-websites.home-section--light .talking-websites-experience__top span{
  color:#86e6eb!important;
}

.home-main > #ai-talking-websites.home-section--light .talking-websites-control strong{
  color:#ddf8ec!important;
}

@media (hover:hover) and (pointer:fine){
  .home-main > .home-section.home-section--light .card.yb:hover{
    border-color:rgba(43,105,185,.26)!important;
    background:rgba(255,255,255,.98)!important;
    box-shadow:0 25px 58px rgba(21,62,105,.13)!important;
    transform:translateY(-4px);
  }
}

@media (max-width:575.98px){
  .home-main > .home-section.home-section--light .mission-note{
    padding:.9rem;
  }
}

@media (min-width:520px){
  .home-main > .home-section.home-section--light > .container{
    width:min(calc(100% - 42px),1380px);
  }
}


@media (min-width:760px){
  .home-main > .home-section.home-section--light > .container{
    width:min(calc(100% - 64px),1380px);
  }

  .home-main > .home-section.home-section--light .row{
    --bs-gutter-x:1rem;
    --bs-gutter-y:1rem;
  }
}

@media (min-width:2200px){
  .home-main > .home-section.home-section--light > .container{
    width:min(calc(100% - 96px),1680px);
    max-width:1680px;
  }
}

/* The FAQ uses the same calm, high-contrast disclosure treatment as the
   Intelligence page instead of a wall of dark Bootstrap cards. */
#faq.home-section--light .faq-card{
  cursor:pointer;
  border-color:var(--home-light-line)!important;
  background:rgba(255,255,255,.82)!important;
  box-shadow:0 14px 38px rgba(21,62,105,.065)!important;
}

#faq.home-section--light .faq-card[aria-expanded="true"]{
  border-color:rgba(43,105,185,.28)!important;
  background:#fff!important;
  box-shadow:0 20px 50px rgba(21,62,105,.11)!important;
}

#faq.home-section--light .faq-card [data-lucide="chevron-down"]{
  color:var(--home-light-blue-deep)!important;
  transition:transform .2s ease;
}

#faq.home-section--light .faq-card[aria-expanded="true"] [data-lucide="chevron-down"]{
  transform:rotate(180deg);
}

/* Customer testimonials.
   Mobile-first cards keep every customer voice visible without a carousel. */
body.home-page #voices.home-testimonials{
  --testimonial-blue:#2b69b9;
  --testimonial-blue-deep:#163f79;
  --testimonial-aqua:#0f9197;
  --testimonial-mint:#39a87e;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 7%,rgba(74,196,225,.13),transparent 24rem),
    radial-gradient(circle at 94% 18%,rgba(117,104,225,.11),transparent 27rem),
    linear-gradient(180deg,#f8fbff 0%,#eef6fc 52%,#f7fbff 100%)!important;
}

body.home-page #voices.home-testimonials::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  pointer-events:none;
  opacity:.48;
  background-image:
    linear-gradient(rgba(43,105,185,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(43,105,185,.035) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:linear-gradient(to bottom,#000,transparent 78%);
}

body.home-page #voices .home-testimonials__intro{
  display:grid;
  gap:1.15rem;
  margin-bottom:1.15rem;
}

body.home-page #voices .home-testimonials__intro-copy{
  min-width:0;
}

body.home-page #voices .home-testimonials__kicker{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  margin:0 0 .75rem;
  color:var(--testimonial-blue)!important;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.085em;
  line-height:1.3;
  text-transform:uppercase;
}

body.home-page #voices .home-testimonials__kicker .icon{
  width:1rem;
  height:1rem;
}

body.home-page #voices .home-testimonials__intro .section-heading{
  max-width:900px;
  margin:0;
  color:var(--home-light-ink)!important;
  font-size:clamp(2rem,9vw,3.7rem);
  line-height:1.02;
  letter-spacing:-.04em;
  text-wrap:balance;
}

body.home-page #voices .home-testimonials__intro .section-sub{
  max-width:790px;
  margin:.9rem 0 0;
  color:var(--home-light-muted)!important;
  font-size:clamp(1rem,3vw,1.1rem);
  line-height:1.72;
}

body.home-page #voices .home-testimonials__signals{
  position:relative;
  overflow:hidden;
  padding:1rem;
  border:1px solid rgba(255,255,255,.11);
  border-radius:22px;
  background:
    radial-gradient(circle at 100% 0,rgba(100,232,237,.16),transparent 50%),
    linear-gradient(145deg,#0a2440,#102f52 62%,#183665);
  color:#fff;
  box-shadow:0 22px 52px rgba(17,49,84,.18);
}

body.home-page #voices .home-testimonials__signals::after{
  content:"";
  position:absolute;
  right:-2.5rem;
  bottom:-3.5rem;
  width:9rem;
  height:9rem;
  border:1px solid rgba(124,231,234,.18);
  border-radius:50%;
}

body.home-page #voices .home-testimonials__signals-heading{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.7rem;
  padding-bottom:.85rem;
  border-bottom:1px solid rgba(255,255,255,.12);
}

body.home-page #voices .home-testimonials__signals-icon{
  width:2.6rem;
  height:2.6rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:13px;
  background:rgba(255,255,255,.08);
  color:#79ece3;
}

body.home-page #voices .home-testimonials__signals-icon .icon{
  width:1.25rem;
  height:1.25rem;
}

body.home-page #voices .home-testimonials__signals-heading small,
body.home-page #voices .home-testimonials__signals-heading strong{
  display:block;
}

body.home-page #voices .home-testimonials__signals-heading small{
  color:#7fe8dd!important;
  font-size:.63rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body.home-page #voices .home-testimonials__signals-heading strong{
  margin-top:.1rem;
  color:#fff!important;
  font-size:1rem;
  line-height:1.3;
}

body.home-page #voices .home-testimonials__signals ul{
  position:relative;
  z-index:1;
  display:grid;
  gap:.3rem;
  margin:.75rem 0 0;
  padding:0;
  list-style:none;
}

body.home-page #voices .home-testimonials__signals li{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:start;
  gap:.65rem;
  min-width:0;
  padding:.65rem;
  border-radius:14px;
  background:rgba(255,255,255,.055);
}

body.home-page #voices .home-testimonials__signals li > .icon{
  width:1.1rem;
  height:1.1rem;
  margin-top:.08rem;
  color:#71e3d3;
}

body.home-page #voices .home-testimonials__signals li strong,
body.home-page #voices .home-testimonials__signals li small{
  display:block;
}

body.home-page #voices .home-testimonials__signals li strong{
  color:#fff!important;
  font-size:.8rem;
  line-height:1.35;
}

body.home-page #voices .home-testimonials__signals li small{
  margin-top:.1rem;
  color:#c5d8e8!important;
  font-size:.7rem;
  line-height:1.45;
}

body.home-page #voices .home-testimonials__trust-line{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:start;
  gap:.75rem;
  margin:0 0 clamp(1.8rem,5vw,3rem);
  padding:.9rem 1rem;
  border:1px solid rgba(43,105,185,.14);
  border-radius:16px;
  background:rgba(255,255,255,.72);
  box-shadow:0 12px 32px rgba(21,62,105,.055);
}

body.home-page #voices .home-testimonials__trust-line > span{
  height:1.2rem;
  display:flex;
  align-items:center;
  gap:3px;
}

body.home-page #voices .home-testimonials__trust-line i{
  width:4px;
  display:block;
  border-radius:999px;
  background:linear-gradient(180deg,#4f8be7,#52c9d6);
}

body.home-page #voices .home-testimonials__trust-line i:nth-child(1){height:8px}
body.home-page #voices .home-testimonials__trust-line i:nth-child(2){height:16px}
body.home-page #voices .home-testimonials__trust-line i:nth-child(3){height:11px}

body.home-page #voices .home-testimonials__trust-line p{
  margin:0;
  color:var(--home-light-muted)!important;
  font-size:.82rem;
  line-height:1.58;
}

body.home-page #voices .home-testimonials__trust-line strong{
  color:var(--home-light-ink)!important;
}

body.home-page #voices .home-testimonials__groups{
  display:grid;
  gap:clamp(2.2rem,7vw,4.75rem);
}

body.home-page #voices .home-testimonial-group{
  min-width:0;
}

body.home-page #voices .home-testimonial-group__header{
  display:grid;
  gap:.65rem;
  margin-bottom:1rem;
  padding-bottom:1rem;
  border-bottom:1px solid rgba(32,78,126,.13);
}

body.home-page #voices .home-testimonial-group__header > div > p{
  margin:0 0 .35rem;
  color:var(--testimonial-blue)!important;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.075em;
  line-height:1.35;
  text-transform:uppercase;
}

body.home-page #voices .home-testimonial-group__header h3{
  max-width:760px;
  margin:0;
  color:var(--home-light-ink)!important;
  font-size:clamp(1.35rem,5.6vw,2.1rem);
  line-height:1.12;
  letter-spacing:-.025em;
  text-wrap:balance;
}

body.home-page #voices .home-testimonial-group__header > p{
  max-width:680px;
  margin:0;
  color:var(--home-light-muted)!important;
  font-size:.88rem;
  line-height:1.62;
}

body.home-page #voices .home-testimonial-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:1rem;
}

body.home-page #voices .home-testimonial-card{
  --card-accent:var(--testimonial-blue);
  --card-tint:rgba(43,105,185,.075);
  position:relative;
  isolation:isolate;
  min-width:0;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  padding:1rem;
  border:1px solid rgba(34,79,127,.14);
  border-radius:22px;
  background:rgba(255,255,255,.94);
  color:var(--home-light-ink);
  box-shadow:0 18px 44px rgba(21,62,105,.075);
}

body.home-page #voices .home-testimonial-card::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:0 0 auto;
  height:4px;
  background:linear-gradient(90deg,var(--card-accent),#6ddad5 58%,rgba(111,113,225,.55));
  transform-origin:left;
}

body.home-page #voices .home-testimonial-card:nth-child(3n+2){
  --card-accent:var(--testimonial-aqua);
  --card-tint:rgba(15,145,151,.075);
}

body.home-page #voices .home-testimonial-card:nth-child(3n){
  --card-accent:#715bd0;
  --card-tint:rgba(113,91,208,.075);
}

body.home-page #voices .home-testimonial-card.is-featured{
  --card-accent:#70e4d5;
  --card-tint:rgba(112,228,213,.11);
  border-color:rgba(129,218,226,.19);
  background:
    radial-gradient(circle at 100% 0,rgba(107,226,213,.12),transparent 45%),
    linear-gradient(145deg,#0a223d,#113054 62%,#183763);
  color:#fff;
  box-shadow:0 24px 58px rgba(10,40,72,.2);
}

body.home-page #voices .home-testimonial-card__header{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.7rem;
}

body.home-page #voices .home-testimonial-card__icon{
  width:2.7rem;
  height:2.7rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:var(--card-tint);
  color:var(--card-accent);
  box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--card-accent) 12%,transparent);
}

body.home-page #voices .home-testimonial-card.is-featured .home-testimonial-card__icon{
  background:rgba(255,255,255,.08);
}

body.home-page #voices .home-testimonial-card__icon .icon{
  width:1.25rem;
  height:1.25rem;
}

body.home-page #voices .home-testimonial-card__identity{
  min-width:0;
}

body.home-page #voices .home-testimonial-card__identity strong,
body.home-page #voices .home-testimonial-card__identity small{
  display:block;
}

body.home-page #voices .home-testimonial-card__identity strong{
  color:var(--home-light-ink)!important;
  font-size:.9rem;
  line-height:1.3;
}

body.home-page #voices .home-testimonial-card.is-featured .home-testimonial-card__identity strong{
  color:#fff!important;
}

body.home-page #voices .home-testimonial-card__identity small{
  margin-top:.08rem;
  color:var(--home-light-muted)!important;
  font-size:.7rem;
  line-height:1.35;
}

body.home-page #voices .home-testimonial-card.is-featured .home-testimonial-card__identity small{
  color:#bdd3e5!important;
}

body.home-page #voices .home-testimonial-card__voice{
  grid-column:1 / -1;
  justify-self:start;
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  margin-top:.1rem;
  padding:.3rem .5rem;
  border-radius:999px;
  background:var(--card-tint);
  color:var(--card-accent);
  font-size:.6rem;
  font-weight:850;
  letter-spacing:.05em;
  line-height:1;
  text-transform:uppercase;
}

body.home-page #voices .home-testimonial-card.is-featured .home-testimonial-card__voice{
  background:rgba(255,255,255,.08);
}

body.home-page #voices .home-testimonial-card__voice .icon{
  width:.8rem;
  height:.8rem;
}

body.home-page #voices .home-testimonial-card__quote{
  position:relative;
  flex:1;
  margin:.9rem 0 0;
  padding:.9rem 0;
  border-top:1px solid rgba(32,78,126,.1);
  border-bottom:1px solid rgba(32,78,126,.1);
}

body.home-page #voices .home-testimonial-card.is-featured .home-testimonial-card__quote{
  border-color:rgba(255,255,255,.11);
}

body.home-page #voices .home-testimonial-card__quote p{
  margin:0;
  color:#203f63!important;
  font-size:clamp(1rem,4.4vw,1.1rem);
  font-weight:680;
  line-height:1.56;
  letter-spacing:-.012em;
}

body.home-page #voices .home-testimonial-card.is-featured .home-testimonial-card__quote p{
  color:#f5fbff!important;
}

body.home-page #voices .home-testimonial-card__outcomes{
  display:grid;
  gap:.48rem;
  margin:.85rem 0 0;
  padding:0;
  list-style:none;
}

body.home-page #voices .home-testimonial-card__outcomes li{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:start;
  gap:.48rem;
  color:var(--home-light-muted)!important;
  font-size:.76rem;
  line-height:1.45;
}

body.home-page #voices .home-testimonial-card.is-featured .home-testimonial-card__outcomes li{
  color:#c7d9e8!important;
}

body.home-page #voices .home-testimonial-card__outcomes .icon{
  width:.9rem;
  height:.9rem;
  margin-top:.08rem;
  color:var(--card-accent);
  stroke-width:2.7;
}

body.home-page #voices .home-testimonials__next{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:start;
  gap:.85rem;
  margin-top:clamp(2.2rem,7vw,4.5rem);
  padding:clamp(1rem,4vw,1.6rem);
  border:1px solid rgba(100,232,237,.17);
  border-radius:24px;
  background:
    radial-gradient(circle at 95% 0,rgba(100,232,237,.17),transparent 35%),
    linear-gradient(135deg,#0d2949,#102343 66%,#15234b);
  color:#fff;
  box-shadow:0 24px 60px rgba(8,30,53,.2);
}

body.home-page #voices .home-testimonials__next-icon{
  width:2.8rem;
  height:2.8rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.13);
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:#79e8dd;
}

body.home-page #voices .home-testimonials__next-icon .icon{
  width:1.3rem;
  height:1.3rem;
}

body.home-page #voices .home-testimonials__next > div > p:first-child{
  margin:0 0 .25rem;
  color:#7fe7dc!important;
  font-size:.65rem;
  font-weight:850;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page #voices .home-testimonials__next h3{
  margin:0;
  color:#fff!important;
  font-size:clamp(1.15rem,4.8vw,1.6rem);
  line-height:1.25;
  text-wrap:balance;
}

body.home-page #voices .home-testimonials__next > div > p:last-child{
  margin:.45rem 0 0;
  color:#bed1e1!important;
  font-size:.82rem;
  line-height:1.58;
}

body.home-page #voices .home-testimonials__next-actions{
  grid-column:1 / -1;
  display:grid;
  gap:.75rem;
}

body.home-page #voices .home-testimonials__next-actions .btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
}

body.home-page #voices .home-testimonials__next-actions .icon{
  width:1rem;
  height:1rem;
}

body.home-page #voices .home-testimonials__next-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.35rem;
  color:#bde8ed;
  font-size:.76rem;
  font-weight:820;
  text-decoration:none;
}

@media (min-width:30rem){
  body.home-page #voices .home-testimonial-card__header{
    grid-template-columns:auto minmax(0,1fr) auto;
  }

  body.home-page #voices .home-testimonial-card__voice{
    grid-column:auto;
    margin-top:0;
  }
}

@media (min-width:45rem){
  body.home-page #voices .home-testimonials__intro{
    grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);
    align-items:end;
    gap:clamp(1.5rem,4vw,3rem);
    margin-bottom:1.35rem;
  }

  body.home-page #voices .home-testimonial-group__header{
    grid-template-columns:minmax(0,1.15fr) minmax(260px,.85fr);
    align-items:end;
    gap:2rem;
  }

  body.home-page #voices .home-testimonial-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.home-page #voices .home-testimonial-grid > .home-testimonial-card:first-child.is-featured{
    grid-column:1 / -1;
  }

  body.home-page #voices .home-testimonial-grid > .home-testimonial-card:first-child.is-featured .home-testimonial-card__quote p{
    max-width:920px;
    font-size:clamp(1.15rem,2.5vw,1.45rem);
  }

  body.home-page #voices .home-testimonials__next{
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:1rem 1.2rem;
  }

  body.home-page #voices .home-testimonials__next-actions{
    grid-column:auto;
    min-width:210px;
  }
}

@media (min-width:68.75rem){
  body.home-page #voices .home-testimonial-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page #voices .home-testimonial-grid > .home-testimonial-card:first-child.is-featured{
    grid-column:auto;
  }
}

@media (min-width:87.5rem){
  body.home-page #voices .home-testimonial-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  body.home-page #voices .home-testimonial-grid > .home-testimonial-card:first-child.is-featured{
    grid-column:span 2;
  }
}

@media (prefers-reduced-motion:no-preference){
  body.home-page.home-enhanced #voices .home-testimonial-card.home-reveal{
    transition-delay:calc(var(--testimonial-order,0) * 55ms);
  }

  body.home-page.home-enhanced #voices .home-testimonial-card.is-home-visible::before{
    animation:home-testimonial-accent .72s cubic-bezier(.2,.75,.25,1) both;
  }

  body.home-page #voices.is-home-motion-active .home-testimonials__signals-icon{
    animation:home-testimonial-signal 1.35s ease-in-out 2;
  }

  body.home-page #voices.is-home-motion-active .home-testimonials__trust-line i{
    animation:home-testimonial-wave 1.1s ease-in-out 3 both;
  }

  body.home-page #voices.is-home-motion-active .home-testimonials__trust-line i:nth-child(2){animation-delay:.12s}
  body.home-page #voices.is-home-motion-active .home-testimonials__trust-line i:nth-child(3){animation-delay:.24s}
}

@keyframes home-testimonial-accent{
  from{opacity:.25;transform:scaleX(.18)}
  to{opacity:1;transform:scaleX(1)}
}

@keyframes home-testimonial-signal{
  50%{color:#fff;box-shadow:0 0 0 8px rgba(121,232,221,.09)}
}

@keyframes home-testimonial-wave{
  0%,100%{transform:scaleY(.62)}
  50%{transform:scaleY(1.08)}
}

@media (hover:hover) and (pointer:fine){
  body.home-page #voices .home-testimonial-card{
    transition:border-color .22s ease,box-shadow .22s ease,transform .22s ease;
  }

  body.home-page #voices .home-testimonial-card:hover{
    border-color:color-mix(in srgb,var(--card-accent) 26%,transparent);
    box-shadow:0 26px 62px rgba(21,62,105,.13);
    transform:translateY(-4px);
  }

  body.home-page #voices .home-testimonial-card.is-featured:hover{
    box-shadow:0 30px 68px rgba(10,40,72,.27);
  }

  body.home-page #voices .home-testimonials__next-link:hover{
    color:#fff;
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page #voices :is(.home-testimonial-card,.home-testimonials__signals-icon,.home-testimonials__trust-line i){
    animation:none!important;
    transition:none!important;
  }

  body.home-page #voices .home-testimonial-card:hover{
    transform:none;
  }
}

@media (forced-colors:active){
  body.home-page #voices :is(.home-testimonials__signals,.home-testimonials__trust-line,.home-testimonial-card,.home-testimonials__next){
    border:1px solid CanvasText;
    background:Canvas;
    color:CanvasText;
    box-shadow:none;
  }

  body.home-page #voices :is(.home-testimonials__signals-icon,.home-testimonial-card__icon,.home-testimonials__next-icon){
    border:1px solid CanvasText;
    background:Canvas;
    color:CanvasText;
  }
}

/* Premium managed demonstration dossier. */
body.home-page #demonstration.home-demo-section{
  position:relative;
  overflow:hidden;
  color:#eef7ff;
  background:
    radial-gradient(circle at 12% 12%,rgba(79,225,206,.13),transparent 30rem),
    radial-gradient(circle at 90% 22%,rgba(127,125,255,.18),transparent 34rem),
    linear-gradient(145deg,#071727 0%,#0b1e35 52%,#111d3b 100%);
}

body.home-page #demonstration.home-demo-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(rgba(139,215,255,.1) 1px,transparent 1px),
    linear-gradient(90deg,rgba(139,215,255,.1) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,black,transparent 78%);
}

body.home-page #demonstration.home-demo-section > .container{
  position:relative;
  z-index:1;
}

body.home-page #demonstration .home-demo-intro{
  display:grid;
  gap:1.25rem;
  margin-bottom:1.25rem;
}

body.home-page #demonstration .home-demo-intro__copy{
  max-width:58rem;
}

body.home-page #demonstration .home-demo-kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  margin:0 0 .75rem;
  color:#8ef1dc;
  font-size:.75rem;
  font-weight:850;
  letter-spacing:.13em;
  text-transform:uppercase;
}

body.home-page #demonstration .home-demo-kicker .icon{
  width:1.05rem;
  height:1.05rem;
}

body.home-page #demonstration #demoHeading{
  max-width:20ch;
  margin:0 0 .9rem;
  color:#f7fbff;
  text-wrap:balance;
}

body.home-page #demonstration .section-sub{
  max-width:68ch;
  margin:0;
  color:#bed0e4;
}

body.home-page #demonstration .home-demo-disclosure{
  display:flex;
  align-items:flex-start;
  gap:.8rem;
  padding:1rem;
  border:1px solid rgba(130,214,255,.24);
  border-radius:1rem;
  background:linear-gradient(135deg,rgba(14,43,65,.82),rgba(31,37,76,.78));
  box-shadow:0 18px 44px rgba(1,10,25,.18);
}

body.home-page #demonstration .home-demo-disclosure__icon{
  display:grid;
  flex:0 0 2.55rem;
  width:2.55rem;
  height:2.55rem;
  place-items:center;
  border:1px solid rgba(133,242,221,.36);
  border-radius:.85rem;
  color:#91f3df;
  background:rgba(81,221,202,.11);
}

body.home-page #demonstration .home-demo-disclosure__icon .icon{
  width:1.25rem;
  height:1.25rem;
}

body.home-page #demonstration .home-demo-disclosure > span:last-child{
  display:grid;
  gap:.2rem;
  color:#b9cce0;
  font-size:.86rem;
  line-height:1.55;
}

body.home-page #demonstration .home-demo-disclosure strong{
  color:#f6fbff;
  font-size:.95rem;
}

body.home-page #demonstration .home-demo-expectations{
  display:grid;
  gap:.7rem;
  padding:0;
  margin:0 0 1.2rem;
  list-style:none;
}

body.home-page #demonstration .home-demo-expectations li{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.8rem;
  align-items:start;
  padding:.9rem;
  border:1px solid rgba(126,193,231,.18);
  border-radius:1rem;
  background:rgba(10,29,49,.62);
}

body.home-page #demonstration .home-demo-expectations li > span:first-child{
  display:grid;
  width:2.2rem;
  height:2.2rem;
  place-items:center;
  border-radius:.75rem;
  color:#071b2c;
  background:linear-gradient(135deg,#8ef1dc,#81c9ff);
  font-size:.73rem;
  font-weight:900;
}

body.home-page #demonstration .home-demo-expectations li > span:last-child{
  display:grid;
  gap:.2rem;
}

body.home-page #demonstration .home-demo-expectations strong{
  color:#f6fbff;
  font-size:.96rem;
}

body.home-page #demonstration .home-demo-expectations small{
  color:#abc0d6;
  font-size:.79rem;
  line-height:1.48;
}

body.home-page #demonstration .home-demo-dossier{
  overflow:hidden;
  border:1px solid rgba(132,206,246,.3);
  border-radius:clamp(1.25rem,3vw,2rem);
  background:
    linear-gradient(135deg,rgba(7,24,41,.96),rgba(16,28,59,.96)),
    #08192b;
  box-shadow:0 30px 80px rgba(0,7,20,.38);
}

body.home-page #demonstration .home-demo-dossier__bar{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.7rem;
  align-items:center;
  padding:.9rem;
  border-bottom:1px solid rgba(133,203,241,.18);
  background:rgba(6,21,38,.64);
}

body.home-page #demonstration .home-demo-dossier__mark{
  display:grid;
  width:2.55rem;
  height:2.55rem;
  place-items:center;
  border:1px solid rgba(137,241,220,.34);
  border-radius:.85rem;
  color:#8ef1dc;
  background:rgba(85,222,203,.1);
}

body.home-page #demonstration .home-demo-dossier__mark .icon{
  width:1.25rem;
  height:1.25rem;
}

body.home-page #demonstration .home-demo-dossier__bar > span:nth-child(2){
  display:grid;
  gap:.08rem;
}

body.home-page #demonstration .home-demo-dossier__bar small{
  color:#8daac3;
  font-size:.65rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

body.home-page #demonstration .home-demo-dossier__bar strong{
  color:#f7fbff;
  font-size:1rem;
}

body.home-page #demonstration .home-demo-dossier__bar em{
  grid-column:1/-1;
  justify-self:start;
  padding:.35rem .65rem;
  border:1px solid rgba(141,243,222,.28);
  border-radius:999px;
  color:#a6f4e5;
  background:rgba(80,219,200,.08);
  font-size:.68rem;
  font-style:normal;
  font-weight:850;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page #demonstration .home-demo-artifact-tabs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.55rem;
  padding:.8rem;
  border-bottom:1px solid rgba(133,203,241,.14);
  background:rgba(9,24,42,.5);
}

body.home-page #demonstration .home-demo-artifact-tabs[hidden],
body.home-page #demonstration .home-demo-artifact-panel[hidden]{
  display:none!important;
}

body.home-page #demonstration .home-demo-artifact-tab{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.55rem;
  align-items:center;
  min-width:0;
  padding:.75rem;
  border:1px solid rgba(139,200,236,.18);
  border-radius:.9rem;
  color:#b7cce0;
  background:rgba(18,38,62,.72);
  text-align:left;
  transition:border-color .2s ease,background-color .2s ease,transform .2s ease;
}

body.home-page #demonstration .home-demo-artifact-tab:hover{
  border-color:rgba(142,241,220,.52);
  background:rgba(24,53,75,.86);
}

body.home-page #demonstration .home-demo-artifact-tab:focus-visible{
  outline:3px solid #91f3df;
  outline-offset:3px;
}

body.home-page #demonstration .home-demo-artifact-tab.is-active{
  border-color:rgba(142,241,220,.62);
  color:#f7fbff;
  background:linear-gradient(135deg,rgba(57,151,155,.28),rgba(73,86,170,.28));
  box-shadow:inset 0 0 0 1px rgba(142,241,220,.08);
}

body.home-page #demonstration .home-demo-artifact-tab > .icon{
  width:1.15rem;
  height:1.15rem;
  color:#8eddf5;
}

body.home-page #demonstration .home-demo-artifact-tab > span:last-child{
  display:grid;
  min-width:0;
  gap:.05rem;
}

body.home-page #demonstration .home-demo-artifact-tab small{
  color:#7897b2;
  font-size:.58rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body.home-page #demonstration .home-demo-artifact-tab strong{
  overflow:hidden;
  color:inherit;
  font-size:.78rem;
  line-height:1.25;
  text-overflow:ellipsis;
}

body.home-page #demonstration .home-demo-artifacts{
  padding:.8rem;
}

body.home-page #demonstration .home-demo-artifact-panel{
  position:relative;
  padding:clamp(1rem,3vw,1.5rem);
  border:1px solid rgba(131,203,240,.22);
  border-radius:1.15rem;
  color:#d9e6f2;
  background:
    radial-gradient(circle at 100% 0,rgba(117,111,255,.12),transparent 19rem),
    linear-gradient(145deg,rgba(17,44,67,.9),rgba(23,35,67,.9));
}

body.home-page #demonstration .home-demo-artifact-panel + .home-demo-artifact-panel{
  margin-top:.8rem;
}

body.home-page #demonstration .is-demo-dossier-enhanced .home-demo-artifact-panel + .home-demo-artifact-panel{
  margin-top:0;
}

body.home-page #demonstration .home-demo-artifact-panel__header{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.7rem;
  align-items:center;
}

body.home-page #demonstration .home-demo-artifact-panel__number{
  display:grid;
  width:2.7rem;
  height:2.7rem;
  place-items:center;
  border:1px solid rgba(142,241,220,.34);
  border-radius:.9rem;
  color:#8ef1dc;
  background:rgba(79,219,199,.08);
  font-size:.75rem;
  font-weight:900;
}

body.home-page #demonstration .home-demo-artifact-panel__header > span:nth-child(2){
  min-width:0;
}

body.home-page #demonstration .home-demo-artifact-panel__header small{
  display:block;
  margin-bottom:.15rem;
  color:#83ddec;
  font-size:.65rem;
  font-weight:850;
  letter-spacing:.1em;
  text-transform:uppercase;
}

body.home-page #demonstration .home-demo-artifact-panel__header h3{
  margin:0;
  color:#f8fbff;
  font-size:clamp(1.12rem,4vw,1.55rem);
  text-wrap:balance;
}

body.home-page #demonstration .home-demo-artifact-panel__status{
  grid-column:1/-1;
  justify-self:start;
  padding:.38rem .65rem;
  border:1px solid rgba(139,215,255,.22);
  border-radius:999px;
  color:#9ecbe3;
  background:rgba(7,25,43,.52);
  font-size:.68rem;
  font-weight:800;
}

body.home-page #demonstration .home-demo-artifact-panel__lead{
  max-width:66ch;
  margin:.9rem 0 1rem;
  color:#b8cbe0;
  font-size:.88rem;
  line-height:1.58;
}

body.home-page #demonstration .home-demo-brief-sheet{
  display:grid;
  gap:.55rem;
  margin:0;
}

body.home-page #demonstration .home-demo-brief-sheet > div{
  padding:.8rem;
  border:1px solid rgba(135,202,238,.16);
  border-radius:.85rem;
  background:rgba(5,21,37,.48);
}

body.home-page #demonstration .home-demo-brief-sheet dt,
body.home-page #demonstration .home-demo-summary-sheet dt{
  margin-bottom:.24rem;
  color:#7fabc5;
  font-size:.63rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body.home-page #demonstration .home-demo-brief-sheet dd,
body.home-page #demonstration .home-demo-summary-sheet dd{
  margin:0;
  color:#e8f0f8;
  font-size:.83rem;
  line-height:1.45;
}

body.home-page #demonstration .home-demo-flow-sheet{
  display:grid;
  gap:.65rem;
  padding:0;
  margin:0;
  list-style:none;
}

body.home-page #demonstration .home-demo-flow-sheet li{
  position:relative;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.7rem;
  align-items:center;
  padding:.75rem;
  border:1px solid rgba(135,202,238,.16);
  border-radius:.9rem;
  background:rgba(5,21,37,.48);
}

body.home-page #demonstration .home-demo-flow-sheet__icon,
body.home-page #demonstration .home-demo-outcome-sheet__icon{
  display:grid;
  width:2.35rem;
  height:2.35rem;
  place-items:center;
  border-radius:.75rem;
  color:#91e4f5;
  background:rgba(83,174,211,.12);
}

body.home-page #demonstration .home-demo-flow-sheet__icon .icon,
body.home-page #demonstration .home-demo-outcome-sheet__icon .icon{
  width:1.1rem;
  height:1.1rem;
}

body.home-page #demonstration .home-demo-flow-sheet li > span:last-child{
  display:grid;
  gap:.08rem;
}

body.home-page #demonstration .home-demo-flow-sheet small,
body.home-page #demonstration .home-demo-outcome-sheet small{
  color:#78a8c3;
  font-size:.6rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body.home-page #demonstration .home-demo-flow-sheet strong{
  color:#edf6ff;
  font-size:.8rem;
  line-height:1.38;
}

body.home-page #demonstration .home-demo-summary-sheet{
  overflow:hidden;
  border:1px solid rgba(135,202,238,.19);
  border-radius:1rem;
  background:rgba(5,21,37,.52);
}

body.home-page #demonstration .home-demo-summary-sheet__top{
  display:grid;
  gap:.55rem;
  padding:.85rem;
  border-bottom:1px solid rgba(135,202,238,.14);
}

body.home-page #demonstration .home-demo-summary-sheet__top > span:first-child{
  display:grid;
  gap:.1rem;
}

body.home-page #demonstration .home-demo-summary-sheet__top small{
  color:#78a8c3;
  font-size:.6rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body.home-page #demonstration .home-demo-summary-sheet__top strong{
  color:#f3f8fd;
  font-size:.9rem;
}

body.home-page #demonstration .home-demo-summary-sheet__priority{
  justify-self:start;
  padding:.35rem .58rem;
  border-radius:999px;
  color:#91f2df;
  background:rgba(77,218,197,.1);
  font-size:.67rem;
  font-weight:850;
}

body.home-page #demonstration .home-demo-summary-sheet dl{
  display:grid;
  gap:0;
  margin:0;
}

body.home-page #demonstration .home-demo-summary-sheet dl > div{
  padding:.78rem .85rem;
}

body.home-page #demonstration .home-demo-summary-sheet dl > div + div{
  border-top:1px solid rgba(135,202,238,.11);
}

body.home-page #demonstration .home-demo-summary-sheet > p{
  display:flex;
  gap:.5rem;
  align-items:flex-start;
  margin:0;
  padding:.72rem .85rem;
  border-top:1px solid rgba(135,202,238,.14);
  color:#91a9c0;
  background:rgba(50,79,112,.14);
  font-size:.72rem;
  line-height:1.45;
}

body.home-page #demonstration .home-demo-summary-sheet > p .icon{
  flex:0 0 1rem;
  width:1rem;
  height:1rem;
  margin-top:.08rem;
  color:#8de8db;
}

body.home-page #demonstration .home-demo-outcome-sheet{
  display:grid;
  gap:.65rem;
}

body.home-page #demonstration .home-demo-outcome-sheet > section{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.75rem;
  align-items:start;
  padding:.9rem;
  border:1px solid rgba(135,202,238,.16);
  border-radius:.95rem;
  background:rgba(5,21,37,.48);
}

body.home-page #demonstration .home-demo-outcome-sheet h4{
  margin:.12rem 0 .24rem;
  color:#f3f8fd;
  font-size:.95rem;
}

body.home-page #demonstration .home-demo-outcome-sheet p{
  margin:0;
  color:#adbed0;
  font-size:.78rem;
  line-height:1.5;
}

body.home-page #demonstration .home-demo-dossier__notice{
  display:flex;
  gap:.7rem;
  align-items:flex-start;
  margin:0 .8rem .8rem;
  padding:.8rem;
  border:1px solid rgba(132,203,240,.16);
  border-radius:.9rem;
  color:#9db4ca;
  background:rgba(8,24,42,.58);
}

body.home-page #demonstration .home-demo-dossier__notice .icon{
  flex:0 0 1.15rem;
  width:1.15rem;
  height:1.15rem;
  margin-top:.12rem;
  color:#8ef1dc;
}

body.home-page #demonstration .home-demo-dossier__notice p{
  margin:0;
  font-size:.73rem;
  line-height:1.5;
}

body.home-page #demonstration .home-demo-dossier__notice strong{
  color:#eaf5ff;
}

body.home-page #demonstration .home-demo-cta{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.8rem;
  align-items:start;
  padding:1rem;
  border-top:1px solid rgba(131,204,241,.18);
  background:linear-gradient(115deg,rgba(16,47,68,.85),rgba(45,42,91,.74));
}

body.home-page #demonstration .home-demo-cta__icon{
  display:grid;
  width:2.55rem;
  height:2.55rem;
  place-items:center;
  border-radius:.85rem;
  color:#071a2b;
  background:linear-gradient(135deg,#91f3df,#84cbff);
}

body.home-page #demonstration .home-demo-cta__icon .icon{
  width:1.2rem;
  height:1.2rem;
}

body.home-page #demonstration .home-demo-cta > span:nth-child(2){
  display:grid;
  gap:.2rem;
}

body.home-page #demonstration .home-demo-cta small{
  color:#8fe7db;
  font-size:.65rem;
  font-weight:850;
  letter-spacing:.09em;
  text-transform:uppercase;
}

body.home-page #demonstration .home-demo-cta strong{
  color:#f7fbff;
  font-size:clamp(1rem,4vw,1.3rem);
  line-height:1.25;
  text-wrap:balance;
}

body.home-page #demonstration .home-demo-cta p{
  margin:0;
  color:#b7c9dc;
  font-size:.78rem;
  line-height:1.5;
}

body.home-page #demonstration .home-demo-cta__actions{
  grid-column:1/-1;
  display:grid;
  gap:.65rem;
}

body.home-page #demonstration .home-demo-cta__actions .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  min-height:3rem;
  border-radius:.85rem;
  font-weight:850;
}

body.home-page #demonstration .home-demo-cta__actions .btn .icon{
  width:1.05rem;
  height:1.05rem;
}

body.home-page #demonstration .home-demo-cta__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  min-height:2.65rem;
  color:#bfe9ff;
  font-size:.8rem;
  font-weight:800;
  text-decoration:none;
}

body.home-page #demonstration .home-demo-cta__link:hover,
body.home-page #demonstration .home-demo-cta__link:focus-visible{
  color:#fff;
  text-decoration:underline;
}

body.home-page #demonstration .home-demo-cta__link .icon{
  width:.95rem;
  height:.95rem;
}

@media (min-width:36rem){
  body.home-page #demonstration .home-demo-dossier__bar{
    grid-template-columns:auto minmax(0,1fr) auto;
  }

  body.home-page #demonstration .home-demo-dossier__bar em{
    grid-column:auto;
    justify-self:end;
  }

  body.home-page #demonstration .home-demo-artifact-panel__header{
    grid-template-columns:auto minmax(0,1fr) auto;
  }

  body.home-page #demonstration .home-demo-artifact-panel__status{
    grid-column:auto;
    justify-self:end;
  }

  body.home-page #demonstration .home-demo-brief-sheet,
  body.home-page #demonstration .home-demo-outcome-sheet{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.home-page #demonstration .home-demo-summary-sheet__top{
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
  }

  body.home-page #demonstration .home-demo-summary-sheet__priority{
    justify-self:end;
  }

  body.home-page #demonstration .home-demo-cta__actions{
    grid-template-columns:auto minmax(0,1fr);
    align-items:center;
  }

  body.home-page #demonstration .home-demo-cta__link{
    justify-content:flex-start;
  }
}

@media (min-width:48rem){
  body.home-page #demonstration .home-demo-expectations{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page #demonstration .home-demo-artifact-tabs{
    grid-template-columns:repeat(4,minmax(0,1fr));
    padding:1rem;
  }

  body.home-page #demonstration .home-demo-artifacts{
    padding:1rem;
  }

  body.home-page #demonstration .home-demo-flow-sheet{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  body.home-page #demonstration .home-demo-flow-sheet li{
    grid-template-columns:1fr;
    align-content:start;
  }

  body.home-page #demonstration .home-demo-flow-sheet li:not(:last-child)::after{
    content:"";
    position:absolute;
    top:1.9rem;
    left:calc(100% - .15rem);
    z-index:2;
    width:.95rem;
    height:1px;
    background:linear-gradient(90deg,#80d9ee,#8f86ff);
  }

  body.home-page #demonstration .home-demo-dossier__notice{
    margin:0 1rem 1rem;
  }

  body.home-page #demonstration .home-demo-cta{
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    padding:1.2rem;
  }

  body.home-page #demonstration .home-demo-cta__actions{
    grid-column:auto;
    grid-template-columns:1fr;
    justify-items:stretch;
  }

  body.home-page #demonstration .home-demo-cta__link{
    justify-content:center;
  }
}

@media (min-width:62rem){
  body.home-page #demonstration .home-demo-intro{
    grid-template-columns:minmax(0,1.45fr) minmax(18rem,.55fr);
    gap:clamp(1.5rem,4vw,3.5rem);
    align-items:end;
  }

  body.home-page #demonstration .home-demo-disclosure{
    margin-bottom:.2rem;
  }

  body.home-page #demonstration .home-demo-dossier__bar,
  body.home-page #demonstration .home-demo-artifact-tabs,
  body.home-page #demonstration .home-demo-artifacts{
    padding-right:1.25rem;
    padding-left:1.25rem;
  }

  body.home-page #demonstration .home-demo-dossier__notice{
    margin-right:1.25rem;
    margin-left:1.25rem;
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page #demonstration .home-demo-artifact-tab,
  body.home-page #demonstration .home-demo-cta__link{
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

@media (prefers-contrast:more){
  body.home-page #demonstration .home-demo-disclosure,
  body.home-page #demonstration .home-demo-expectations li,
  body.home-page #demonstration .home-demo-dossier,
  body.home-page #demonstration .home-demo-artifact-tab,
  body.home-page #demonstration .home-demo-artifact-panel,
  body.home-page #demonstration .home-demo-brief-sheet > div,
  body.home-page #demonstration .home-demo-flow-sheet li,
  body.home-page #demonstration .home-demo-summary-sheet,
  body.home-page #demonstration .home-demo-outcome-sheet > section,
  body.home-page #demonstration .home-demo-dossier__notice{
    border-color:currentColor!important;
  }
}

@media (forced-colors:active){
  body.home-page #demonstration.home-demo-section,
  body.home-page #demonstration .home-demo-disclosure,
  body.home-page #demonstration .home-demo-expectations li,
  body.home-page #demonstration .home-demo-dossier,
  body.home-page #demonstration .home-demo-dossier__bar,
  body.home-page #demonstration .home-demo-artifact-tabs,
  body.home-page #demonstration .home-demo-artifact-tab,
  body.home-page #demonstration .home-demo-artifact-panel,
  body.home-page #demonstration .home-demo-brief-sheet > div,
  body.home-page #demonstration .home-demo-flow-sheet li,
  body.home-page #demonstration .home-demo-summary-sheet,
  body.home-page #demonstration .home-demo-outcome-sheet > section,
  body.home-page #demonstration .home-demo-dossier__notice,
  body.home-page #demonstration .home-demo-cta{
    border:1px solid CanvasText!important;
    color:CanvasText!important;
    background:Canvas!important;
    box-shadow:none!important;
  }

  body.home-page #demonstration .home-demo-artifact-tab.is-active,
  body.home-page #demonstration .home-demo-artifact-tab:focus-visible{
    outline:3px solid Highlight!important;
    outline-offset:2px;
  }

  body.home-page #demonstration .home-demo-disclosure__icon,
  body.home-page #demonstration .home-demo-expectations li > span:first-child,
  body.home-page #demonstration .home-demo-dossier__mark,
  body.home-page #demonstration .home-demo-artifact-panel__number,
  body.home-page #demonstration .home-demo-flow-sheet__icon,
  body.home-page #demonstration .home-demo-outcome-sheet__icon,
  body.home-page #demonstration .home-demo-cta__icon{
    border:2px solid Highlight!important;
    color:CanvasText!important;
    background:Canvas!important;
  }
}

/* AI Talking Websites
   Mobile-first, voice-led service presentation for the homepage. */
.talking-websites-showcase{
  position:relative;
  isolation:isolate;
  overflow:hidden;
}

.talking-websites-showcase::after{
  position:absolute;
  z-index:-1;
  right:-13rem;
  bottom:-15rem;
  width:32rem;
  height:32rem;
  border:1px solid rgba(71,135,210,.1);
  border-radius:50%;
  content:"";
  box-shadow:0 0 0 5rem rgba(100,232,237,.025),0 0 0 10rem rgba(156,135,255,.02);
  pointer-events:none;
}

.talking-websites-grid{
  display:grid;
  align-items:center;
  gap:clamp(1.5rem,6vw,4.5rem);
}

.talking-websites-copy{
  min-width:0;
  max-width:760px;
}

.talking-websites-kicker{
  display:inline-flex;
  align-items:center;
  gap:.48rem;
  color:#1769b7;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.12em;
  line-height:1.4;
  text-transform:uppercase;
}

.talking-websites-kicker .icon{
  width:1rem;
  height:1rem;
  color:#087c85;
}

.talking-websites-copy .section-heading{
  max-width:760px;
  margin:.8rem 0 0;
  color:#071b32!important;
  font-size:clamp(2.05rem,8vw,3.55rem);
  font-weight:920;
  letter-spacing:-.052em;
  line-height:1.02;
  text-wrap:balance;
}

.talking-websites-intro{
  max-width:700px;
  margin:1rem 0 0;
  color:#3c5872!important;
  font-size:clamp(.98rem,2.5vw,1.12rem);
  line-height:1.72;
}

.talking-websites-proof{
  margin:1.2rem 0 0;
  padding:0;
  display:grid;
  gap:.55rem;
  list-style:none;
}

.talking-websites-proof li{
  min-width:0;
  padding:.72rem .78rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.7rem;
  border:1px solid rgba(39,91,151,.14);
  border-radius:15px;
  background:rgba(255,255,255,.7);
  color:#173552!important;
  box-shadow:0 10px 28px rgba(33,74,120,.07),inset 0 1px rgba(255,255,255,.96);
}

.talking-websites-proof li > .icon{
  width:36px;
  height:36px;
  padding:.55rem;
  border-radius:11px;
  background:linear-gradient(145deg,#dcf7f8,#e8edff);
  color:#1767b5;
}

.talking-websites-proof strong,
.talking-websites-proof small{
  display:block;
}

.talking-websites-proof strong{
  color:#102b49;
  font-size:.78rem;
  font-weight:900;
}

.talking-websites-proof small{
  margin-top:.12rem;
  color:#5b7087;
  font-size:.67rem;
  line-height:1.45;
}

.talking-websites-actions{
  margin-top:1.2rem;
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}

.talking-websites-actions .btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
}

.talking-websites-experience{
  position:relative;
  isolation:isolate;
  min-width:0;
  padding:clamp(1rem,4vw,1.65rem);
  overflow:hidden;
  border:1px solid rgba(152,219,239,.18);
  border-radius:clamp(1.45rem,5vw,2rem);
  background:
    radial-gradient(circle at 96% 0,rgba(156,135,255,.2),transparent 17rem),
    radial-gradient(circle at 0 100%,rgba(100,232,237,.13),transparent 16rem),
    linear-gradient(145deg,#06172b,#0a2c4b 62%,#153a5e);
  color:#f5faff;
  box-shadow:0 30px 76px rgba(3,21,43,.25),inset 0 1px rgba(255,255,255,.1);
}

.talking-websites-experience::before{
  position:absolute;
  z-index:-1;
  inset:0;
  content:"";
  opacity:.32;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:34px 34px;
  -webkit-mask-image:linear-gradient(to bottom,#000,transparent 86%);
  mask-image:linear-gradient(to bottom,#000,transparent 86%);
}

.talking-websites-experience__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  color:#b7c9dc;
  font-size:.61rem;
  font-weight:800;
  letter-spacing:.04em;
}

.talking-websites-experience__top span{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  color:#c8f5e3;
}

.talking-websites-experience__top i{
  width:.48rem;
  height:.48rem;
  border-radius:50%;
  background:#65e2b0;
  box-shadow:0 0 0 .3rem rgba(101,226,176,.1),0 0 1.1rem rgba(101,226,176,.4);
  animation:talking-website-presence 2.5s ease-in-out infinite;
}

.talking-websites-listening{
  margin-top:1rem;
  padding:.85rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.8rem;
  border:1px solid rgba(168,225,241,.13);
  border-radius:18px;
  background:rgba(255,255,255,.055);
  box-shadow:inset 0 1px rgba(255,255,255,.07);
}

.talking-websites-orb{
  width:54px;
  height:54px;
  padding:13px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:3px;
  border-radius:18px;
  background:linear-gradient(135deg,#7edcff,#5f83ff);
  box-shadow:0 12px 28px rgba(70,126,247,.28),inset 0 1px rgba(255,255,255,.46);
}

.talking-websites-orb i{
  width:4px;
  border-radius:4px;
  background:#071b32;
  transform-origin:center bottom;
  animation:talking-website-wave 1.15s cubic-bezier(.45,.05,.55,.95) infinite;
}

.talking-websites-orb i:nth-child(1){height:10px;animation-delay:-.72s}
.talking-websites-orb i:nth-child(2){height:21px;animation-delay:-.38s}
.talking-websites-orb i:nth-child(3){height:14px;animation-delay:-.08s}

.talking-websites-listening small,
.talking-websites-listening strong{
  display:block;
}

.talking-websites-listening small{
  color:#86e6eb;
  font-size:.58rem;
  font-weight:850;
  letter-spacing:.075em;
  text-transform:uppercase;
}

.talking-websites-listening strong{
  margin-top:.22rem;
  color:#fff;
  font-size:.82rem;
  line-height:1.42;
}

.talking-websites-journey{
  margin:1rem 0 0;
  padding:0;
  display:grid;
  gap:.5rem;
  list-style:none;
}

.talking-websites-journey li{
  min-width:0;
  padding:.68rem .72rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.65rem;
  border:1px solid rgba(168,225,241,.11);
  border-radius:14px;
  background:linear-gradient(135deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
}

.talking-websites-journey li > b{
  width:31px;
  height:31px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(100,232,237,.1);
  color:#80e7eb;
  font-size:.58rem;
  letter-spacing:.04em;
}

.talking-websites-journey strong,
.talking-websites-journey small{
  display:block;
}

.talking-websites-journey strong{
  color:#f6fbff;
  font-size:.72rem;
  font-weight:850;
}

.talking-websites-journey small{
  margin-top:.1rem;
  color:#a7bbce;
  font-size:.62rem;
  line-height:1.42;
}

.talking-websites-control{
  margin:.85rem 0 0!important;
  padding:.72rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.55rem;
  border:1px solid rgba(101,226,176,.14);
  border-radius:14px;
  background:rgba(101,226,176,.06);
  color:#b9cada!important;
  font-size:.64rem;
  line-height:1.52;
}

.talking-websites-control > .icon{
  width:1rem;
  height:1rem;
  margin-top:.12rem;
  color:#75dfb5;
}

.talking-websites-control strong{
  color:#ddf8ec;
}

.talking-websites-capabilities{
  margin-top:clamp(1.25rem,4vw,2rem);
  display:grid;
  gap:.75rem;
}

.talking-websites-capabilities article{
  min-width:0;
  padding:1rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:start;
  gap:.75rem;
  border:1px solid rgba(35,82,139,.16);
  border-radius:18px;
  background:linear-gradient(145deg,rgba(255,255,255,.95),rgba(237,247,253,.9));
  box-shadow:0 16px 40px rgba(31,70,116,.09),inset 0 1px #fff;
}

.talking-websites-capabilities article > .icon{
  width:40px;
  height:40px;
  padding:.65rem;
  border-radius:12px;
  background:linear-gradient(145deg,#ddf7f8,#e8ecff);
  color:#155faf;
}

.talking-websites-capabilities h3{
  margin:0;
  color:#102944!important;
  font-size:.86rem;
  font-weight:900;
}

.talking-websites-capabilities p{
  margin:.28rem 0 0;
  color:#526a82!important;
  font-size:.72rem;
  line-height:1.55;
}

.talking-websites-concept{
  margin-top:.75rem;
  padding:1rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.8rem;
  border:1px solid rgba(55,111,184,.17);
  border-radius:20px;
  background:linear-gradient(125deg,rgba(223,247,248,.95),rgba(235,240,255,.94) 60%,rgba(249,245,255,.95));
  box-shadow:0 18px 45px rgba(32,75,126,.1),inset 0 1px #fff;
}

.talking-websites-concept__icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:#fff;
  color:#4a67c4;
  box-shadow:0 10px 24px rgba(45,83,145,.12);
}

.talking-websites-concept > div > span{
  color:#216a79;
  font-size:.6rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.talking-websites-concept h3{
  margin:.22rem 0 0;
  color:#102944!important;
  font-size:clamp(1rem,3vw,1.28rem);
  font-weight:900;
  line-height:1.25;
}

.talking-websites-concept p{
  margin:.35rem 0 0;
  color:#506981!important;
  font-size:.74rem;
  line-height:1.58;
}

.talking-websites-concept > a{
  grid-column:1/-1;
  min-height:46px;
  padding:.65rem .8rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  border:1px solid rgba(34,91,166,.22);
  border-radius:13px;
  background:#fff;
  color:#1759a4;
  font-size:.73rem;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(31,72,124,.08);
}

.talking-websites-concept > a .icon{
  width:1rem;
  height:1rem;
}

@keyframes talking-website-presence{
  0%,100%{opacity:.72;transform:scale(.9)}
  50%{opacity:1;transform:scale(1.08)}
}

@keyframes talking-website-wave{
  0%,100%{opacity:.72;transform:scaleY(.52)}
  45%{opacity:1;transform:scaleY(1.16)}
  70%{opacity:.86;transform:scaleY(.76)}
}

@media (min-width:640px){
  .talking-websites-proof{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .talking-websites-proof li{
    align-items:start;
  }

  .talking-websites-capabilities{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .talking-websites-concept{
    padding:1.2rem;
  }
}

@media (min-width:992px){
  .talking-websites-grid{
    grid-template-columns:minmax(0,1.08fr) minmax(410px,.92fr);
  }

  .talking-websites-experience{
    max-width:580px;
    justify-self:end;
  }

  .talking-websites-capabilities{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .talking-websites-concept{
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:1rem;
  }

  .talking-websites-concept > a{
    grid-column:auto;
    min-width:150px;
  }
}

@media (max-width:419.98px){
  .talking-websites-actions .btn{
    width:100%;
  }

  .talking-websites-experience{
    padding:.9rem;
  }

  .talking-websites-experience__top small{
    display:none;
  }
}

@media (prefers-reduced-motion:reduce){
  .talking-websites-experience__top i,
  .talking-websites-orb i{
    animation:none!important;
  }
}

@media (forced-colors:active){
  .talking-websites-experience,
  .talking-websites-proof li,
  .talking-websites-capabilities article,
  .talking-websites-concept{
    border:1px solid CanvasText!important;
  }
}

/* Business Support Buddy homepage
   Mobile-first presentation layer loaded after the global stylesheet. */

body.home-page{
  --hp-ink:#102944;
  --hp-ink-soft:#294760;
  --hp-copy:#4b647c;
  --hp-blue:#3978ee;
  --hp-blue-deep:#1554ba;
  --hp-cyan:#64e8ed;
  --hp-mint:#78e6bd;
  --hp-violet:#9c87ff;
  --hp-pearl:#f5f8fc;
  --hp-line:rgba(32,78,126,.14);
  --hp-shadow:0 18px 48px rgba(21,62,105,.085);
  --hp-shadow-hover:0 26px 64px rgba(21,62,105,.14);
  --hp-dark:#071424;
  --hp-dark-soft:#0b223a;
  --hp-dark-copy:#b8c9da;
  --hp-shell:1380px;
  padding-bottom:0;
  background:var(--hp-dark);
}

body.home-page .home-main{
  width:100%;
  min-width:0;
  overflow:clip;
  background:var(--hp-dark);
}

body.home-page .home-main > .home-section{
  position:relative;
  isolation:isolate;
  margin:0;
  padding-block:clamp(4.25rem,10vw,7.625rem);
  scroll-margin-top:6rem;
}

body.home-page .home-main > .home-section + .home-section::before{
  display:none;
}

body.home-page .home-main .container,
body.home-page .home-main .container-fluid > .container{
  position:relative;
  z-index:1;
  width:min(calc(100% - 28px),var(--hp-shell));
  max-width:var(--hp-shell);
  margin-inline:auto;
  padding-inline:0;
}

body.home-page .home-main .section-heading{
  max-width:880px;
  margin:.7rem 0 0;
  color:#f7fbff!important;
  font-size:clamp(2rem,8.2vw,4.35rem);
  font-weight:920;
  letter-spacing:-.055em;
  line-height:1.02;
  text-shadow:none!important;
  text-wrap:balance;
}

body.home-page .home-main .section-sub{
  max-width:760px;
  margin:1rem 0 clamp(1.9rem,5vw,3.25rem);
  color:var(--hp-dark-copy)!important;
  font-size:clamp(1rem,2.4vw,1.12rem)!important;
  line-height:1.72!important;
  opacity:1!important;
  text-wrap:pretty;
}

body.home-page .home-main .text-center .section-heading,
body.home-page .home-main .text-center .section-sub{
  margin-inline:auto;
}

body.home-page .home-main > .home-section:not(.home-section--light){
  overflow:hidden;
  color:#f7fbff;
  background:
    radial-gradient(circle at 8% 12%,rgba(100,232,237,.085),transparent 28rem),
    radial-gradient(circle at 92% 88%,rgba(156,135,255,.105),transparent 31rem),
    linear-gradient(145deg,#071424 0%,#0b2139 62%,#0b182c 100%)!important;
}

body.home-page .home-main > .home-section:not(.home-section--light)::after{
  position:absolute;
  z-index:-1;
  inset:0;
  content:"";
  opacity:.18;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:42px 42px;
  -webkit-mask-image:linear-gradient(to bottom,#000,transparent 88%);
  mask-image:linear-gradient(to bottom,#000,transparent 88%);
  pointer-events:none;
}

body.home-page .home-main > .home-section.home-section--light{
  --bs-body-color:var(--hp-ink);
  --bs-body-color-rgb:16,41,68;
  --bs-secondary-color:var(--hp-copy);
  --bs-secondary-color-rgb:75,100,124;
  --bs-tertiary-color:#60778e;
  --bs-tertiary-color-rgb:96,119,142;
  --bs-border-color:var(--hp-line);
  border:0;
  color:var(--hp-ink);
  color-scheme:light;
  background:
    radial-gradient(circle at 8% 14%,rgba(83,200,216,.085),transparent 27rem),
    radial-gradient(circle at 92% 82%,rgba(141,113,239,.075),transparent 29rem),
    linear-gradient(180deg,#fbfdff 0%,#f3f7fc 100%)!important;
}

body.home-page .home-main > .home-section.home-section--light-blue,
body.home-page .home-main > .home-section.home-section--light-lilac{
  background:
    radial-gradient(circle at 9% 12%,rgba(100,232,237,.11),transparent 27rem),
    radial-gradient(circle at 92% 86%,rgba(156,135,255,.105),transparent 30rem),
    linear-gradient(145deg,#f3f9fd 0%,#f4f2fd 100%)!important;
}

body.home-page .home-main > .home-section.home-section--light-aqua{
  background:
    radial-gradient(circle at 10% 16%,rgba(83,200,216,.12),transparent 27rem),
    radial-gradient(circle at 90% 84%,rgba(120,230,189,.1),transparent 28rem),
    linear-gradient(145deg,#f0faf9,#f5f7fd 72%,#f5f3fc)!important;
}

body.home-page .home-main > .home-section.home-section--light-warm{
  background:
    radial-gradient(circle at 12% 12%,rgba(255,196,120,.11),transparent 26rem),
    radial-gradient(circle at 91% 86%,rgba(83,200,216,.08),transparent 29rem),
    linear-gradient(180deg,#fffaf4 0%,#f3f7fc 100%)!important;
}

body.home-page .home-main > .home-section.home-section--light :is(h1,h2,h3,h4,h5,h6,.section-heading){
  color:var(--hp-ink)!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-main > .home-section.home-section--light :is(p,li,small,.section-sub,.text-secondary,.text-muted,.aw-sub,.kpi-note){
  color:var(--hp-copy)!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-main > .home-section.home-section--light :is(p,li) strong{
  color:var(--hp-ink-soft)!important;
}

body.home-page .home-main > .home-section.home-section--light .text-info{
  color:var(--hp-blue-deep)!important;
  opacity:1!important;
}

body.home-page .home-main .text-uppercase.fw-bold.text-info{
  display:inline-flex;
  align-items:center;
  min-height:0;
  margin-bottom:.75rem!important;
  padding:0;
  border:0;
  border-radius:0;
  background:none;
  color:#3972cc!important;
  font-size:.69rem!important;
  font-weight:900!important;
  letter-spacing:.135em;
  line-height:1.4;
  box-shadow:none;
}

body.home-page .home-main > .home-section:not(.home-section--light) .text-uppercase.fw-bold.text-info{
  color:#79e7e8!important;
}

/* Focused first viewport. The legacy feature catalogue remains indexed lower
   on the page instead of occupying the hero. */
body.home-page .home-hero{
  min-height:auto;
  padding-top:clamp(3.75rem,7vw,5.5rem)!important;
  padding-bottom:clamp(2.75rem,5.5vw,4.5rem)!important;
  background:
    radial-gradient(circle at 14% 12%,rgba(100,232,237,.16),transparent 31rem),
    radial-gradient(circle at 88% 24%,rgba(156,135,255,.19),transparent 30rem),
    linear-gradient(145deg,#061425 0%,#0a2845 58%,#101d3e 100%)!important;
}

body.home-page .home-hero::before{
  position:absolute;
  z-index:-1;
  inset:0;
  content:"";
  opacity:.32;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.032) 1px,transparent 1px);
  background-size:38px 38px;
  -webkit-mask-image:linear-gradient(to bottom,#000,transparent 88%);
  mask-image:linear-gradient(to bottom,#000,transparent 88%);
  pointer-events:none;
}

body.home-page .home-hero::after{
  top:7%;
  right:-11rem;
  width:28rem;
  height:28rem;
  border-color:rgba(121,231,232,.12);
  box-shadow:0 0 0 5rem rgba(80,125,255,.03),0 0 0 10rem rgba(100,232,237,.02);
}

body.home-page .home-hero > .container > .home-capability-grid,
body.home-page .home-hero > .container-fluid{
  display:none!important;
}

body.home-page .home-hero-eyebrow{
  min-height:0;
  padding:0;
  border:0;
  border-radius:0;
  background:none;
  color:#8eecef;
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.14em;
  line-height:1.4;
  box-shadow:none;
}

body.home-page .home-hero #homeHeroTitle{
  max-width:780px;
  min-height:3.92em;
  margin-top:1rem!important;
  color:#f8fbff;
  font-size:clamp(2.45rem,12vw,4.9rem)!important;
  font-weight:930;
  letter-spacing:-.065em;
  line-height:.98!important;
  text-shadow:none;
  text-wrap:balance;
}

body.home-page .home-hero .lead{
  max-width:700px;
  margin-top:1.25rem;
  color:#bdccdc!important;
  font-size:clamp(1rem,3vw,1.18rem);
  line-height:1.72;
  opacity:1!important;
}

body.home-page .home-hero-headline-copy{
  display:block;
  transition:opacity .24s ease,transform .24s ease,filter .24s ease;
}

body.home-page .home-hero-headline-copy.is-changing{
  opacity:0;
  filter:blur(4px);
  transform:translateY(.08em);
}

body.home-page .home-hero-actions{
  margin-top:1.5rem;
  gap:.7rem!important;
}

body.home-page .home-hero-actions .btn{
  width:100%;
  min-height:52px;
  padding:.78rem 1rem;
  border-radius:15px;
  font-size:.92rem;
  font-weight:850;
}

body.home-page .home-hero-actions .btn-primary{
  border:0;
  background:linear-gradient(135deg,#4b82f4,#54c8ed);
  color:#07182c;
  box-shadow:0 16px 38px rgba(55,126,232,.28),inset 0 1px rgba(255,255,255,.45);
}

body.home-page .home-hero-actions .btn-outline-light{
  border-color:rgba(183,223,241,.22)!important;
  background:rgba(255,255,255,.055)!important;
  color:#f6fbff!important;
  box-shadow:inset 0 1px rgba(255,255,255,.08);
}

body.home-page .home-hero .xl-strip{
  margin-top:1.5rem!important;
}

body.home-page .home-hero .xl-strip > .row{
  margin-inline:-14px;
  padding:0 14px .65rem;
  flex-wrap:nowrap;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}

body.home-page .home-hero .xl-strip > .row::-webkit-scrollbar{
  display:none;
}

body.home-page .home-hero .xl-strip .col-xl-4{
  width:auto;
  flex:0 0 min(82vw,285px);
  scroll-snap-align:start;
}

body.home-page .home-hero .xl-strip .item{
  min-height:108px;
  padding:1rem;
  border:1px solid rgba(175,219,240,.12);
  border-radius:18px;
  background:rgba(255,255,255,.055);
  color:#f5faff;
  box-shadow:inset 0 1px rgba(255,255,255,.075);
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
}

body.home-page .home-hero .xl-strip .fw-bold{
  display:flex;
  align-items:center;
  gap:.4rem;
  color:#eef8ff;
  font-size:.86rem;
}

body.home-page .home-hero .xl-strip p{
  margin-top:.4rem;
  color:#aebfd2!important;
  font-size:.76rem;
  line-height:1.55;
  opacity:1!important;
}
body.home-page .home-hero-workflow{
  margin-top:1.8rem;
  padding-top:0;
}

body.home-page .home-hero-workflow > .section-heading{
  margin:0;
  color:#f6fbff!important;
  font-size:1.25rem!important;
  letter-spacing:-.025em;
  line-height:1.15;
}

body.home-page .home-hero-workflow > .section-sub{
  margin:.55rem 0 1rem;
  color:#adc0d3!important;
  font-size:.84rem!important;
  line-height:1.55!important;
}

body.home-page .home-hero .home-ai-console{
  padding:1rem;
  border:1px solid rgba(157,219,239,.16);
  border-radius:24px;
  background:
    radial-gradient(circle at 100% 0,rgba(156,135,255,.13),transparent 14rem),
    rgba(4,18,34,.8);
  box-shadow:0 28px 70px rgba(0,0,0,.28),inset 0 1px rgba(255,255,255,.08);
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
}

body.home-page .home-ai-workflow-grid{
  --bs-gutter-x:.55rem;
  --bs-gutter-y:.55rem;
}

body.home-page .home-ai-workflow-grid .app-widget{
  min-height:120px;
  padding:.82rem;
  border:1px solid rgba(166,218,238,.11);
  border-radius:16px;
  background:rgba(255,255,255,.045)!important;
  box-shadow:none;
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
}

body.home-page .home-ai-workflow-grid .app-widget.is-active{
  border-color:rgba(100,232,237,.55);
  background:linear-gradient(145deg,rgba(100,232,237,.13),rgba(156,135,255,.075))!important;
  box-shadow:0 14px 34px rgba(0,0,0,.2),0 0 24px rgba(100,232,237,.06);
}

body.home-page .home-ai-workflow-grid .aw-title{
  color:#f4f9ff;
  font-size:.72rem;
  line-height:1.3;
}

body.home-page .home-ai-workflow-grid .aw-sub{
  margin-top:.35rem;
  color:#9fb3c8;
  font-size:.63rem;
  line-height:1.45;
}

body.home-page .home-ai-console-footer{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.45rem;
  color:#a9bbce;
}

body.home-page .home-ai-console-footer > span{
  justify-content:center;
  padding:.55rem .35rem;
  border-radius:11px;
  background:rgba(255,255,255,.035);
  font-size:.58rem;
  line-height:1.35;
  text-align:center;
}

/* Clear service pathways. */
body.home-page .home-solutions__intro{
  display:grid;
  gap:1rem;
}

body.home-page .home-solutions__intro .section-sub{
  margin-bottom:0;
}

body.home-page .home-service-routes{
  margin-top:clamp(2rem,6vw,4rem);
  display:grid;
  gap:.85rem;
}

body.home-page .home-route-card{
  --route-accent:57,120,238;
  position:relative;
  min-width:0;
  min-height:100%;
  padding:1.25rem;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid var(--hp-line);
  border-radius:24px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--hp-shadow);
}

body.home-page .home-route-card::after{
  position:absolute;
  right:-4rem;
  bottom:-5rem;
  width:12rem;
  height:12rem;
  border-radius:50%;
  content:"";
  background:rgba(var(--route-accent),.085);
  filter:blur(2px);
  pointer-events:none;
}

body.home-page .home-route-card--website{--route-accent:24,174,181}
body.home-page .home-route-card--research{--route-accent:132,102,225}

body.home-page .home-route-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

body.home-page .home-route-card__icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(145deg,#e4f8fb,#eeeaff);
  color:rgb(var(--route-accent));
}

body.home-page .home-route-card__icon .icon{
  width:1.45rem;
  height:1.45rem;
}

body.home-page .home-route-card__number{
  color:rgba(var(--route-accent),.42);
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.12em;
}

body.home-page .home-route-card__eyebrow{
  margin:1.3rem 0 .45rem;
  color:rgb(var(--route-accent))!important;
  font-size:.63rem;
  font-weight:900;
  letter-spacing:.105em;
  line-height:1.4;
  text-transform:uppercase;
}

body.home-page .home-route-card h3{
  margin:0;
  color:var(--hp-ink)!important;
  font-size:clamp(1.28rem,5vw,1.65rem);
  font-weight:920;
  letter-spacing:-.035em;
  line-height:1.12;
}

body.home-page .home-route-card > p:not(.home-route-card__eyebrow){
  margin:.8rem 0 1.25rem;
  color:var(--hp-copy)!important;
  font-size:.86rem;
  line-height:1.65;
}

body.home-page .home-route-card > a{
  position:relative;
  z-index:1;
  min-height:46px;
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.65rem;
  border-top:1px solid var(--hp-line);
  color:var(--hp-blue-deep);
  font-size:.75rem;
  font-weight:900;
  text-decoration:none;
  padding-top:.9rem;
}

body.home-page .home-route-card > a .icon{
  width:1rem;
  height:1rem;
}

body.home-page .home-outcome-flow{
  margin:1rem 0 0;
  padding:0;
  display:grid;
  gap:.65rem;
  list-style:none;
}

body.home-page .home-outcome-flow li{
  padding:1rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.8rem;
  border:1px solid rgba(32,78,126,.11);
  border-radius:18px;
  background:rgba(255,255,255,.58);
}

body.home-page .home-outcome-flow span{
  min-width:64px;
  color:var(--hp-blue-deep);
  font-size:.63rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body.home-page .home-outcome-flow strong{
  color:var(--hp-ink-soft)!important;
  font-size:.76rem;
  line-height:1.45;
}

/* A consistent, fully opaque content system for every light section. */
body.home-page .home-main > .home-section.home-section--light :is(.card.yb,.app-widget,.kpi-card),
body.home-page .home-main > .home-section.home-section--light :is(.border.rounded,.border.rounded-3,.border.rounded-4):not(.btn){
  border:1px solid var(--hp-line)!important;
  background:#fff!important;
  color:var(--hp-ink-soft)!important;
  box-shadow:var(--hp-shadow)!important;
  -webkit-backdrop-filter:none!important;
  backdrop-filter:none!important;
}

body.home-page .home-main > .home-section.home-section--light .card.yb{
  padding:clamp(1.2rem,4vw,1.75rem)!important;
  border-radius:23px!important;
}

body.home-page .home-main > .home-section.home-section--light :is(.border.rounded,.border.rounded-3,.border.rounded-4):not(.btn){
  padding:1rem!important;
  border-radius:18px!important;
}

body.home-page .home-main > .home-section.home-section--light .card.yb::before{
  display:none!important;
}

body.home-page .home-main > .home-section.home-section--light :is(.card.yb,.app-widget,.kpi-card,.border.rounded,.border.rounded-3,.border.rounded-4) :is(h2,h3,h4,h5,h6,.fw-bold,strong){
  color:var(--hp-ink)!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-main > .home-section.home-section--light :is(.card.yb,.app-widget,.kpi-card,.border.rounded,.border.rounded-3,.border.rounded-4) :is(p,li,small,.text-secondary,.text-muted,.aw-sub,.kpi-note){
  color:var(--hp-copy)!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-main > .home-section.home-section--light .icon-pill{
  width:48px!important;
  height:48px!important;
  flex:0 0 48px;
  border:0!important;
  border-radius:15px!important;
  background:linear-gradient(145deg,#e4f8fb,#eeeaff)!important;
  color:#2863bd!important;
  box-shadow:inset 0 1px rgba(255,255,255,.94)!important;
}

body.home-page .home-main > .home-section.home-section--light .icon-pill::after{
  display:none!important;
}

body.home-page .home-main > .home-section.home-section--light .icon-pill :is(.icon,svg){
  color:#2863bd!important;
  stroke-width:2.2;
}

body.home-page .home-main > .home-section.home-section--light .list-check .icon,
body.home-page .home-main > .home-section.home-section--light li > .icon{
  color:#087d69!important;
  opacity:1!important;
}

body.home-page .home-main > .home-section.home-section--light .chip,
body.home-page .home-main > .home-section.home-section--light .badge-block{
  border-color:var(--hp-line)!important;
  background:#fff!important;
  color:var(--hp-ink-soft)!important;
  box-shadow:0 10px 28px rgba(21,62,105,.06)!important;
}

body.home-page .home-main > .home-section.home-section--light .mission-note{
  max-width:880px;
  margin:1rem 0 2rem;
  padding:1rem;
  border:1px solid var(--hp-line);
  border-left:0;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  color:var(--hp-copy)!important;
  box-shadow:0 12px 32px rgba(21,62,105,.055);
}

/* Deliberately dark product previews inside light editorial sections. */
body.home-page .home-main .research-intelligence-home-preview :is(h2,h3,h4,h5,h6,strong),
body.home-page .home-main .talking-websites-experience :is(h2,h3,h4,h5,h6,strong){
  color:#f6fbff!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-main .research-intelligence-home-preview :is(p,li,small,.text-secondary,.text-muted),
body.home-page .home-main .talking-websites-experience :is(p,li,small,.text-secondary,.text-muted){
  color:#b7c9dc!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-main .research-intelligence-home-preview small,
body.home-page .home-main .talking-websites-experience small{
  font-size:clamp(.75rem,2.6vw,.82rem)!important;
  line-height:1.5!important;
}

body.home-page .home-main .talking-websites-listening small,
body.home-page .home-main .talking-websites-experience__top span{
  color:#86e6eb!important;
}

body.home-page .home-main .talking-websites-control strong{
  color:#ddf8ec!important;
}

/* FAQ progressive disclosure. */
body.home-page #faq .home-faq-grid > *{
  width:100%;
}

body.home-page #faq .faq-card{
  cursor:pointer;
  border-color:var(--hp-line)!important;
  background:#fff!important;
  box-shadow:0 14px 38px rgba(21,62,105,.065)!important;
}

body.home-page #faq .faq-card[aria-expanded="true"]{
  border-color:rgba(43,105,185,.28)!important;
  box-shadow:0 22px 52px rgba(21,62,105,.115)!important;
}

body.home-page #faq .faq-card > .d-flex > .fw-bold{
  color:var(--hp-ink)!important;
  font-size:.88rem;
  line-height:1.45;
}

body.home-page #faq .faq-card .collapse{
  padding-top:.55rem;
  border-top:1px solid transparent;
}

body.home-page #faq .faq-card[aria-expanded="true"] .collapse{
  border-top-color:var(--hp-line);
}

body.home-page #faq .faq-card [data-lucide="chevron-down"]{
  flex:0 0 1rem;
  color:var(--hp-blue-deep)!important;
  transition:transform .2s ease;
}

body.home-page #faq .faq-card[aria-expanded="true"] [data-lucide="chevron-down"]{
  transform:rotate(180deg);
}

body.home-page .home-collection-action{
  margin-top:1.1rem;
  display:flex;
  justify-content:center;
}

body.home-page .home-collection-toggle{
  min-height:48px;
  padding:.72rem 1rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  border:1px solid rgba(38,96,166,.18);
  border-radius:14px;
  background:#fff;
  color:var(--hp-blue-deep);
  font-size:.76rem;
  font-weight:900;
  box-shadow:0 12px 30px rgba(21,62,105,.07);
}

body.home-page .home-collection-toggle .icon{
  width:1rem;
  height:1rem;
  transition:transform .2s ease;
}

body.home-page .home-collection-toggle[aria-expanded="true"] .icon{
  transform:rotate(180deg);
}

body.home-page.home-enhanced #faq .home-faq-grid:not(.is-expanded) > :nth-child(n+7){
  display:none;
}

/* Dark cards and forms retain depth without transparent text. */
body.home-page .home-main > .home-section:not(.home-section--light) .card.yb,
body.home-page .home-main > .home-section:not(.home-section--light) .app-widget{
  border:1px solid rgba(160,215,238,.14)!important;
  border-radius:23px;
  background:rgba(255,255,255,.055)!important;
  color:#f3f8ff;
  box-shadow:0 20px 52px rgba(0,0,0,.2)!important;
  -webkit-backdrop-filter:none!important;
  backdrop-filter:none!important;
}

body.home-page .home-main > .home-section:not(.home-section--light) :is(p,li,small,.text-secondary,.text-muted){
  color:#b7c8d9!important;
  opacity:1!important;
}

body.home-page .home-main > .home-section:not(.home-section--light) :is(h2,h3,h4,h5,h6,.fw-bold,strong){
  color:#f5f9ff!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-section--contact{
  background:
    radial-gradient(circle at 50% 0,rgba(100,232,237,.12),transparent 38rem),
    linear-gradient(145deg,#061424,#0a243d 62%,#101c3a)!important;
}

body.home-page .home-main .btn{
  min-height:48px;
  border-radius:14px;
  font-weight:850;
}

body.home-page .home-main a:focus-visible,
body.home-page .home-main button:focus-visible,
body.home-page .home-main [role="button"]:focus-visible{
  outline:3px solid #2c75d7;
  outline-offset:3px;
}

body.home-page .bsb-premium-footer{
  margin-top:0;
}

/* Reveal only after JavaScript opts in. */
@media (prefers-reduced-motion:no-preference){
  body.home-page.home-enhanced.home-motion-ready .home-reveal{
    opacity:0;
    transform:translate3d(0,18px,0);
    transition:opacity .55s ease,transform .55s cubic-bezier(.2,.75,.25,1);
  }

  body.home-page.home-enhanced.home-motion-ready .home-reveal.is-home-visible{
    opacity:1;
    transform:translate3d(0,0,0);
  }

  body.home-page.home-enhanced.home-motion-ready .home-route-card:nth-child(2){transition-delay:.07s}
  body.home-page.home-enhanced.home-motion-ready .home-route-card:nth-child(3){transition-delay:.14s}
}

@media (hover:hover) and (pointer:fine){
  body.home-page .home-route-card,
  body.home-page .home-main > .home-section.home-section--light .card.yb{
    transition:border-color .22s ease,box-shadow .22s ease,transform .22s ease;
  }

  body.home-page .home-route-card:hover,
  body.home-page .home-route-card:focus-within,
  body.home-page .home-main > .home-section.home-section--light .card.yb:hover{
    border-color:rgba(43,105,185,.25)!important;
    box-shadow:var(--hp-shadow-hover)!important;
    transform:translateY(-4px);
  }

  body.home-page .home-route-card > a:hover{
    color:#0b4d98;
  }
}

@media (min-width:520px){
  body.home-page .home-main .container,
  body.home-page .home-main .container-fluid > .container{
    width:min(calc(100% - 42px),var(--hp-shell));
  }

  body.home-page .home-hero-actions .btn{
    width:auto;
    min-width:190px;
  }

  body.home-page .home-service-routes{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.home-page .home-route-card--research{
    grid-column:1/-1;
  }

  body.home-page #faq .home-faq-grid > *{
    width:50%;
  }
}

@media (min-width:760px){
  body.home-page .home-main .container,
  body.home-page .home-main .container-fluid > .container{
    width:min(calc(100% - 64px),var(--hp-shell));
  }

  body.home-page .home-hero .xl-strip > .row{
    margin-inline:0;
    padding:0;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    overflow:visible;
  }

  body.home-page .home-hero .xl-strip .col-xl-4{
    width:auto;
  }

  body.home-page .home-hero .xl-strip .item{
    min-height:100%;
  }

  body.home-page .home-solutions__intro{
    grid-template-columns:minmax(0,1.12fr) minmax(280px,.88fr);
    align-items:end;
    gap:clamp(2rem,6vw,5rem);
  }

  body.home-page .home-service-routes{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page .home-route-card--research{
    grid-column:auto;
  }

  body.home-page .home-outcome-flow{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page .home-collection-action{
    display:none;
  }

  body.home-page.home-enhanced #faq .home-faq-grid:not(.is-expanded) > :nth-child(n+7){
    display:block;
  }
}

@media (min-width:992px){
  body.home-page .home-hero-layout{
    --bs-gutter-x:clamp(3rem,6vw,6rem);
  }

  body.home-page .home-hero-workflow{
    margin-top:0;
    padding-top:1rem;
    align-self:center;
  }

  body.home-page .home-hero .home-ai-console{
    position:relative;
    top:auto;
  }

  body.home-page .home-route-card{
    padding:1.55rem;
  }

  body.home-page #faq .home-faq-grid > *{
    width:33.333333%;
  }
}

@media (min-width:1400px){
  body.home-page .home-hero #homeHeroTitle{
    font-size:5.3rem!important;
  }

  body.home-page .home-ai-workflow-grid .app-widget{
    min-height:132px;
  }
}

@media (min-width:2200px){
  body.home-page{
    --hp-shell:1680px;
  }

  body.home-page .home-main .container,
  body.home-page .home-main .container-fluid > .container{
    width:min(calc(100% - 96px),var(--hp-shell));
  }
}

@media (max-width:419.98px){
  body.home-page .home-main > .home-section.home-section--light .row > .col-6{
    width:100%;
  }

  body.home-page .home-ai-console-footer{
    grid-template-columns:1fr;
  }

  body.home-page .home-ai-console-footer > span{
    justify-content:flex-start;
    text-align:left;
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page *,
  body.home-page *::before,
  body.home-page *::after{
    scroll-behavior:auto!important;
  }

  body.home-page .home-live-dot,
  body.home-page .home-hero::after,
  body.home-page .home-route-card,
  body.home-page .home-collection-toggle .icon,
  body.home-page #faq .faq-card [data-lucide="chevron-down"]{
    animation:none!important;
    transition:none!important;
  }
}

@media (prefers-contrast:more){
  body.home-page .home-main > .home-section.home-section--light :is(p,li,small,.section-sub,.text-secondary,.text-muted,.aw-sub,.kpi-note){
    color:#294760!important;
  }

  body.home-page .home-main > .home-section.home-section--light :is(.card.yb,.app-widget,.kpi-card,.border.rounded,.border.rounded-3,.border.rounded-4),
  body.home-page .home-route-card{
    border-color:rgba(16,41,68,.42)!important;
  }

  body.home-page .home-main > .home-section:not(.home-section--light) :is(p,li,small,.text-secondary,.text-muted){
    color:#d5e1ec!important;
  }
}

@media (forced-colors:active){
  body.home-page .home-route-card,
  body.home-page .home-main .card.yb,
  body.home-page .home-main .app-widget,
  body.home-page .home-collection-toggle{
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
  }
}

/* Refined original homepage AI workflow, aligned with the premium home design. */
body.home-page .home-hero-workflow{
  margin-top:clamp(2.75rem,7vw,5.75rem);
  padding-top:0;
}

body.home-page .home-hero-workflow > .section-heading{
  max-width:920px;
  margin:0;
  color:#f7fbff!important;
  font-size:clamp(1.55rem,5vw,2.25rem)!important;
  letter-spacing:-.035em;
  line-height:1.04;
  text-wrap:balance;
}

body.home-page .home-hero-workflow > .section-sub{
  max-width:780px;
  margin:.85rem 0 clamp(1.5rem,4vw,2.4rem);
  color:#b9cada!important;
  font-size:clamp(.92rem,2.6vw,1.08rem)!important;
  line-height:1.62!important;
}

body.home-page .home-hero .home-ai-console{
  position:relative;
  isolation:isolate;
  padding:clamp(.9rem,3vw,1.7rem);
  overflow:hidden;
  border:1px solid rgba(143,214,239,.22);
  border-radius:clamp(24px,4vw,36px);
  background:
    radial-gradient(circle at 92% 4%,rgba(130,111,255,.18),transparent 24rem),
    radial-gradient(circle at 3% 54%,rgba(50,210,221,.08),transparent 22rem),
    linear-gradient(150deg,#06182b 0%,#09182c 55%,#101c39 100%);
  box-shadow:0 30px 82px rgba(0,0,0,.32),inset 0 1px rgba(255,255,255,.09);
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
}

body.home-page .home-hero .home-ai-console::before{
  position:absolute;
  z-index:-1;
  inset:0;
  content:"";
  background-image:
    linear-gradient(rgba(126,204,232,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(126,204,232,.03) 1px,transparent 1px);
  background-size:34px 34px;
  -webkit-mask-image:linear-gradient(to bottom,rgba(0,0,0,.72),transparent 82%);
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.72),transparent 82%);
  pointer-events:none;
}

body.home-page .home-ai-console-bar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:.7rem;
  margin-bottom:.58rem;
  padding-bottom:.58rem;
  border-bottom:1px solid rgba(180,222,239,.12);
}

body.home-page .home-ai-console-title{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.08rem .58rem;
  min-width:0;
  color:#f6fbff;
  font-size:clamp(.95rem,2.5vw,1.08rem);
  font-weight:850;
  letter-spacing:-.01em;
}

body.home-page .home-ai-console-title .home-live-dot{
  grid-row:1/3;
}

body.home-page .home-ai-console-title small{
  grid-column:2;
  color:#87a7bd;
  font-size:.68rem;
  font-weight:780;
  letter-spacing:.075em;
  line-height:1.35;
  text-transform:uppercase;
}

body.home-page .home-ai-stage__card:focus-visible{
  outline:3px solid #85e6ff;
  outline-offset:3px;
}

body.home-page .home-ai-compact-status{
  margin-bottom:.58rem;
  padding:.62rem .72rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.65rem;
  border:1px solid rgba(132,217,241,.22);
  border-radius:18px;
  background:
    radial-gradient(circle at 94% 0,rgba(143,118,255,.13),transparent 11rem),
    linear-gradient(115deg,rgba(67,213,217,.11),rgba(255,255,255,.035));
  box-shadow:inset 0 1px rgba(255,255,255,.07),0 14px 30px rgba(0,0,0,.12);
}

body.home-page .home-ai-compact-status > .home-live-dot{
  width:.55rem;
  height:.55rem;
  flex:0 0 .55rem;
}

body.home-page .home-ai-live-copy{
  display:flex;
  min-width:0;
  flex-direction:column;
  gap:.14rem;
}

body.home-page .home-ai-live-copy > span{
  color:#7fe4cf;
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.075em;
  text-transform:uppercase;
}

body.home-page .home-ai-live-copy > strong{
  display:block;
  color:#f5faff;
  font-size:clamp(.82rem,2.4vw,1rem);
  font-weight:880;
  line-height:1.3;
  white-space:normal;
}

body.home-page .home-ai-live-copy > small{
  color:#b8cada;
  font-size:clamp(.74rem,2vw,.8rem);
  line-height:1.4;
}

body.home-page .home-ai-workflow-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  grid-auto-rows:auto;
  gap:.46rem;
  margin:0;
  counter-reset:none;
}

body.home-page .home-ai-stage{
  min-width:0;
  display:flex;
}

body.home-page .home-ai-stage__card,
body.home-page .home-ai-workflow-grid .home-ai-stage__card{
  position:relative;
  width:100%;
  min-width:0;
  min-height:64px;
  height:auto;
  padding:.52rem .62rem;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:.18rem;
  overflow:hidden;
  border:1px solid rgba(161,210,231,.14);
  border-radius:18px;
  appearance:none;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.025))!important;
  color:#eaf4fc;
  box-shadow:inset 0 1px rgba(255,255,255,.035);
  font:inherit;
  text-align:left;
  cursor:pointer;
  touch-action:manipulation;
  transition:border-color .22s ease,background .22s ease,box-shadow .22s ease,transform .22s ease;
}

body.home-page .home-ai-workflow-grid .home-ai-stage__card::before{
  display:none!important;
  content:none!important;
}

body.home-page .home-ai-stage__card::after{
  inset:auto 14% 0;
}

body.home-page .home-ai-stage__card.is-active{
  border-color:rgba(102,230,223,.62)!important;
  background:linear-gradient(145deg,rgba(75,218,209,.15),rgba(112,124,255,.1))!important;
  box-shadow:0 17px 36px rgba(0,0,0,.22),inset 0 1px rgba(255,255,255,.08),0 0 25px rgba(95,223,224,.075)!important;
}

body.home-page .home-ai-stage__heading{
  display:flex;
  align-items:center;
  gap:.42rem;
  padding-right:0;
}

body.home-page .home-ai-stage__heading .icon{
  width:1.16rem;
  height:1.16rem;
  flex:0 0 auto;
  color:#93dfff;
  stroke-width:1.8;
}

body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-title{
  color:#f7fbff;
  font-size:.86rem;
  font-weight:850;
  line-height:1.25;
}

body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-sub{
  margin:.08rem 0 0;
  display:block;
  overflow:visible;
  -webkit-box-orient:initial;
  -webkit-line-clamp:unset;
  color:#afc3d5;
  font-size:.75rem;
  line-height:1.35;
}

body.home-page .home-ai-console-footer{
  margin-top:.52rem;
  padding-top:.52rem;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.34rem;
  border-top:1px solid rgba(180,222,239,.11);
  color:#adc0d1;
}

body.home-page .home-ai-console-footer > span{
  min-width:0;
  min-height:40px;
  padding:.38rem .24rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.22rem;
  border-radius:11px;
  background:rgba(255,255,255,.032);
  color:#adc0d1;
  font-size:clamp(.75rem,2.2vw,.8rem);
  font-weight:780;
  line-height:1.25;
  text-align:center;
}

body.home-page .home-ai-console-footer .icon{
  width:.9rem;
  height:.9rem;
  color:#86dcff;
}

@media (max-width:359.98px){
  body.home-page .home-ai-workflow-grid{
    grid-template-columns:minmax(0,1fr);
  }

  body.home-page .home-ai-console-bar{
    flex-direction:column;
  }

}

@media (min-width:360px){
  body.home-page .home-ai-workflow-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (min-width:520px){
  body.home-page .home-hero .home-ai-console{
    padding:1rem;
  }

  body.home-page .home-ai-stage__card,
  body.home-page .home-ai-workflow-grid .home-ai-stage__card{
    min-height:68px;
    padding:.56rem .64rem;
  }

  body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-title{
    font-size:.86rem;
  }

  body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-sub{
    font-size:.78rem;
  }

  body.home-page .home-ai-console-footer > span{
    min-height:42px;
    flex-direction:row;
    gap:.38rem;
  }

  body.home-page .home-ai-console-footer{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (min-width:760px){
  body.home-page .home-hero #homeHeroTitle{
    min-height:2.94em;
  }

  body.home-page .home-hero .home-ai-console{
    padding:1.05rem;
  }

  body.home-page .home-ai-workflow-grid{
    gap:.5rem;
  }

  body.home-page .home-ai-stage__card,
  body.home-page .home-ai-workflow-grid .home-ai-stage__card{
    min-height:68px;
    padding:.58rem .68rem;
    border-radius:16px;
  }

  body.home-page .home-ai-stage__heading .icon{
    width:1.2rem;
    height:1.2rem;
  }

  body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-title{
    font-size:.86rem;
  }

  body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-sub{
    font-size:.78rem;
  }

}

@media (min-width:992px){
  body.home-page .home-hero-workflow{
    margin-top:0;
    padding-top:.35rem;
    align-self:flex-start;
  }

  body.home-page .home-hero-layout{
    align-items:flex-start!important;
  }

  body.home-page .home-hero-layout > .col-lg-7{
    padding-top:.35rem;
    align-self:flex-start;
  }

  body.home-page .home-hero #homeHeroTitle{
    min-height:2.94em;
  }

  body.home-page .home-hero-workflow > .section-heading{
    font-size:clamp(1.35rem,2.1vw,1.72rem)!important;
  }

  body.home-page .home-hero-workflow > .section-sub{
    margin:.55rem 0 1rem;
    font-size:.9rem!important;
    line-height:1.55!important;
  }

  body.home-page .home-hero .home-ai-console{
    padding:.82rem;
    border-radius:24px;
  }

  body.home-page .home-ai-workflow-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.4rem;
  }

  body.home-page .home-ai-stage__card,
  body.home-page .home-ai-workflow-grid .home-ai-stage__card{
    min-height:66px;
    padding:.5rem .58rem;
    border-radius:15px;
  }

  body.home-page .home-ai-stage__heading .icon{
    width:1.14rem;
    height:1.14rem;
  }

  body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-title{
    font-size:.86rem;
  }

  body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-sub{
    font-size:.75rem;
  }

}

@media (min-width:1200px){
  body.home-page .home-ai-stage__card,
  body.home-page .home-ai-workflow-grid .home-ai-stage__card{
    min-height:60px;
    padding:.46rem .56rem;
  }

  body.home-page .home-ai-stage__heading .icon{
    width:1.14rem;
    height:1.14rem;
  }

  body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-title{
    font-size:.86rem;
  }

  body.home-page .home-ai-workflow-grid .home-ai-stage__card .aw-sub{
    font-size:.75rem;
  }

  body.home-page .home-ai-console-footer{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page .home-ai-console-footer > span{
    min-height:44px;
    padding:.3rem .18rem;
    flex-direction:row;
    gap:.25rem;
    font-size:.75rem;
  }
}

@media (hover:hover) and (pointer:fine){
  body.home-page .home-ai-stage__card:hover{
    border-color:rgba(137,218,245,.34);
    transform:translateY(-3px);
  }

  body.home-page .home-ai-stage__card.is-active:hover{
    transform:translateY(-4px);
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page .home-hero-headline-copy,
  body.home-page .home-ai-stage__card{
    animation:none!important;
    transition:none!important;
  }
}

@media (prefers-contrast:more){
  body.home-page .home-ai-stage__card,
  body.home-page .home-ai-compact-status{
    border-color:rgba(210,239,250,.5)!important;
  }

  body.home-page .home-ai-stage__card .aw-sub{
    color:#d7e6f0!important;
  }
}

@media (forced-colors:active){
  body.home-page .home-ai-stage__card,
  body.home-page .home-ai-compact-status,
  body.home-page .home-ai-console-footer > span{
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
  }

  body.home-page .home-ai-stage__card[aria-pressed="true"]{
    outline:3px solid Highlight;
  }
}

/* Homepage always-visible service showcase and product snapshot. */
body.home-page #why-voice,
body.home-page #dashboard-overview{
  padding-block:clamp(3.75rem,7vw,5.75rem);
}

body.home-page .home-pressure-intro,
body.home-page .home-dashboard-intro{
  display:grid;
  gap:1rem;
}

body.home-page .home-pressure-intro .section-heading,
body.home-page .home-dashboard-intro .section-heading{
  max-width:820px;
  font-size:clamp(2rem,6.4vw,3.55rem);
}

body.home-page .home-pressure-intro .section-sub,
body.home-page .home-dashboard-intro .section-sub{
  max-width:680px;
  margin:0;
}

body.home-page .home-pressure-showcase{
  margin-top:clamp(2rem,5vw,3.25rem);
  display:grid;
  gap:clamp(1.15rem,3vw,2rem);
}

body.home-page .home-pressure-route:focus-visible{
  outline:3px solid #136fd5;
  outline-offset:3px;
}

body.home-page .home-pressure-panel{
  --pressure-accent:68,126,236;
  overflow:hidden;
  padding:clamp(1.25rem,4vw,2.35rem);
  display:grid;
  gap:clamp(1.4rem,4vw,2.5rem);
  align-items:center;
  border:1px solid rgba(34,81,128,.14);
  border-radius:clamp(22px,4vw,32px);
  background:rgba(255,255,255,.96);
  box-shadow:0 24px 60px rgba(24,64,107,.12);
}

body.home-page .home-pressure-panel--website{
  --pressure-accent:27,168,180;
}

body.home-page .home-pressure-panel--research{
  --pressure-accent:132,102,225;
}

body.home-page .home-pressure-panel__copy{
  min-width:0;
}

body.home-page .home-pressure-panel__eyebrow{
  margin:0 0 .75rem;
  display:flex;
  align-items:center;
  gap:.45rem;
  color:rgb(var(--pressure-accent))!important;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}

body.home-page .home-pressure-panel__eyebrow .icon{
  width:1rem;
  height:1rem;
}

body.home-page .home-pressure-panel h3{
  max-width:590px;
  margin:0;
  color:var(--hp-ink)!important;
  font-size:clamp(1.65rem,5vw,2.55rem);
  font-weight:920;
  letter-spacing:-.045em;
  line-height:1.06;
  text-wrap:balance;
}

body.home-page .home-pressure-panel__copy > p:not(.home-pressure-panel__eyebrow){
  max-width:600px;
  margin:.85rem 0 0;
  color:var(--hp-copy)!important;
  font-size:.94rem;
  line-height:1.65;
}

body.home-page .home-pressure-results{
  margin:1.05rem 0 0;
  padding:0;
  display:grid;
  gap:.48rem;
  list-style:none;
}

body.home-page .home-pressure-results li{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
  color:var(--hp-ink-soft)!important;
  font-size:.78rem;
  font-weight:750;
  line-height:1.45;
}

body.home-page .home-pressure-results .icon{
  width:1rem;
  height:1rem;
  flex:0 0 1rem;
  margin-top:.12rem;
  color:#08866f!important;
  stroke-width:2.6;
}

body.home-page .home-pressure-route{
  width:max-content;
  max-width:100%;
  min-height:46px;
  margin-top:1.25rem;
  padding:.72rem .95rem;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  border:1px solid rgba(var(--pressure-accent),.18);
  border-radius:13px;
  background:rgba(var(--pressure-accent),.08);
  color:rgb(var(--pressure-accent));
  font-size:.76rem;
  font-weight:900;
  line-height:1.25;
  text-decoration:none;
  transition:background-color .2s ease,transform .2s ease;
}

body.home-page .home-pressure-route .icon{
  width:1rem;
  height:1rem;
  flex:0 0 1rem;
}

body.home-page .home-service-artifact{
  min-width:0;
  overflow:hidden;
  padding:clamp(1rem,3.4vw,1.45rem);
  border:1px solid rgba(166,217,239,.16);
  border-radius:22px;
  background:
    radial-gradient(circle at 90% 8%,rgba(var(--pressure-accent),.24),transparent 14rem),
    linear-gradient(145deg,#091a2c,#102d48);
  color:#f7fbff;
  box-shadow:0 22px 52px rgba(6,25,43,.24);
}

body.home-page .home-service-artifact__bar,
body.home-page .home-service-artifact__browser{
  min-height:30px;
  padding-bottom:.75rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  border-bottom:1px solid rgba(176,219,238,.14);
  color:#d9e9f5;
  font-size:.65rem;
  font-weight:850;
  letter-spacing:.04em;
}

body.home-page .home-service-artifact__bar > span{
  display:flex;
  align-items:center;
  gap:.45rem;
}

body.home-page .home-service-artifact__bar i{
  width:.55rem;
  height:.55rem;
  border-radius:50%;
  background:#57ddb3;
  box-shadow:0 0 0 5px rgba(87,221,179,.1);
}

body.home-page .home-service-artifact__bar small{
  color:#92aabd!important;
  font-size:.58rem;
}

body.home-page .home-service-artifact__bar .icon{
  width:.95rem;
  height:.95rem;
  color:rgb(var(--pressure-accent));
}

body.home-page .home-service-conversation{
  padding:1rem 0;
  display:grid;
  gap:.65rem;
}

body.home-page .home-service-conversation p{
  width:90%;
  margin:0;
  padding:.7rem .8rem;
  display:grid;
  gap:.18rem;
  border:1px solid rgba(166,217,239,.12);
  border-radius:13px 13px 13px 4px;
  background:rgba(255,255,255,.055);
  color:#eaf5fb!important;
  font-size:.72rem;
  line-height:1.45;
}

body.home-page .home-service-conversation p:last-child{
  margin-left:auto;
  border-color:rgba(var(--pressure-accent),.24);
  border-radius:13px 13px 4px 13px;
  background:rgba(var(--pressure-accent),.12);
}

body.home-page .home-service-conversation p span{
  color:#8fa9bd;
  font-size:.57rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-service-artifact__result{
  padding:.78rem;
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  align-items:center;
  gap:.7rem;
  border:1px solid rgba(108,230,190,.22);
  border-radius:15px;
  background:rgba(61,205,160,.09);
}

body.home-page .home-service-artifact__result-icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(96,225,186,.14);
  color:#6ce6ba;
}

body.home-page .home-service-artifact__result-icon .icon{
  width:1.1rem;
  height:1.1rem;
}

body.home-page .home-service-artifact__result > span:nth-child(2){
  min-width:0;
  display:grid;
  gap:.12rem;
}

body.home-page .home-service-artifact__result small{
  color:#88b7a8!important;
  font-size:.57rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body.home-page .home-service-artifact__result strong{
  color:#f2fbf8!important;
  font-size:.7rem;
  line-height:1.35;
}

body.home-page .home-service-artifact__result em{
  grid-column:2;
  width:max-content;
  padding:.2rem .42rem;
  border-radius:999px;
  background:rgba(98,226,188,.14);
  color:#79e1bf;
  font-size:.55rem;
  font-style:normal;
  font-weight:900;
}

body.home-page .home-service-artifact__browser{
  justify-content:flex-start;
}

body.home-page .home-service-artifact__browser i{
  width:.45rem;
  height:.45rem;
  border-radius:50%;
  background:#658197;
}

body.home-page .home-service-artifact__browser i:first-child{
  background:#ff8f8f;
}

body.home-page .home-service-artifact__browser i:nth-child(2){
  background:#ffd279;
}

body.home-page .home-service-artifact__browser i:nth-child(3){
  background:#6de0b7;
}

body.home-page .home-service-artifact__browser span{
  margin-left:.25rem;
}

body.home-page .home-service-website-message{
  width:90%;
  margin:1rem 0 .7rem auto;
  padding:.75rem .85rem;
  display:grid;
  gap:.22rem;
  border:1px solid rgba(var(--pressure-accent),.24);
  border-radius:14px 14px 4px 14px;
  background:rgba(var(--pressure-accent),.12);
}

body.home-page .home-service-website-message small,
body.home-page .home-service-website-prompt small{
  color:#8faabd!important;
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body.home-page .home-service-website-message strong{
  color:#f1f8fc!important;
  font-size:.7rem;
  line-height:1.4;
}

body.home-page .home-service-website-prompt{
  margin-bottom:1rem;
  padding:.72rem .8rem;
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  align-items:center;
  gap:.65rem;
  border:1px solid rgba(166,217,239,.12);
  border-radius:14px;
  background:rgba(255,255,255,.055);
}

body.home-page .home-service-website-prompt > .icon{
  width:34px;
  height:34px;
  padding:.5rem;
  border-radius:11px;
  background:rgba(var(--pressure-accent),.14);
  color:rgb(var(--pressure-accent));
}

body.home-page .home-service-website-prompt p{
  margin:0;
  display:grid;
  gap:.16rem;
  color:#e7f2f8!important;
  font-size:.68rem;
  line-height:1.4;
}

body.home-page .home-service-brief{
  margin:1rem 0;
  display:grid;
  gap:.55rem;
}

body.home-page .home-service-brief div{
  min-width:0;
  padding:.62rem .7rem;
  display:grid;
  grid-template-columns:68px minmax(0,1fr);
  align-items:center;
  gap:.65rem;
  border:1px solid rgba(166,217,239,.11);
  border-radius:12px;
  background:rgba(255,255,255,.045);
}

body.home-page .home-service-brief dt{
  color:#8faabd;
  font-size:.57rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body.home-page .home-service-brief dd{
  min-width:0;
  margin:0;
  color:#eef7fb;
  font-size:.7rem;
  font-weight:800;
  line-height:1.35;
}

body.home-page .home-dashboard-intro{
  margin-bottom:clamp(2rem,5vw,3.25rem);
}

body.home-page .home-dashboard-product{
  margin:0;
}

body.home-page .home-dashboard-window{
  overflow:hidden;
  border:1px solid rgba(166,217,239,.2);
  border-radius:clamp(20px,4vw,30px);
  background:#0b1c2e;
  box-shadow:0 35px 90px rgba(0,0,0,.3);
}

body.home-page .home-dashboard-window__bar{
  min-height:68px;
  padding:.85rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  border-bottom:1px solid rgba(166,217,239,.13);
  background:rgba(255,255,255,.035);
}

body.home-page .home-dashboard-window__brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap:.7rem;
}

body.home-page .home-dashboard-window__mark{
  width:40px;
  height:40px;
  flex:0 0 40px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:linear-gradient(145deg,#3185eb,#6a63dd);
  color:#fff;
}

body.home-page .home-dashboard-window__mark .icon{
  width:1.15rem;
  height:1.15rem;
}

body.home-page .home-dashboard-window__brand > span:last-child{
  min-width:0;
  display:grid;
  gap:.06rem;
}

body.home-page .home-dashboard-window__brand small{
  color:#8fa7ba!important;
  font-size:.55rem;
  font-weight:850;
}

body.home-page .home-dashboard-window__brand strong{
  color:#f4f9fc!important;
  font-size:.78rem;
}

body.home-page .home-dashboard-window__live{
  flex:0 0 auto;
  padding:.38rem .55rem;
  display:flex;
  align-items:center;
  gap:.42rem;
  border:1px solid rgba(101,225,188,.18);
  border-radius:999px;
  background:rgba(101,225,188,.08);
  color:#78e4c1;
  font-size:.58rem;
  font-weight:900;
}

body.home-page .home-dashboard-window__live i{
  width:.43rem;
  height:.43rem;
  border-radius:50%;
  background:#68e0b9;
  box-shadow:0 0 0 4px rgba(104,224,185,.1);
}

body.home-page .home-dashboard-toolbar{
  padding:.75rem;
  display:grid;
  gap:.5rem;
  border-bottom:1px solid rgba(166,217,239,.11);
  background:#0d2237;
}

body.home-page .home-dashboard-toolbar > span{
  min-height:38px;
  padding:.55rem .65rem;
  display:flex;
  align-items:center;
  gap:.45rem;
  border:1px solid rgba(166,217,239,.12);
  border-radius:10px;
  background:rgba(255,255,255,.035);
  color:#9db2c4;
  font-size:.62rem;
  font-weight:750;
}

body.home-page .home-dashboard-toolbar .icon{
  width:.9rem;
  height:.9rem;
  flex:0 0 .9rem;
  color:#67cadc;
}

body.home-page .home-dashboard-workspace{
  display:grid;
}

body.home-page .home-dashboard-call-feed,
body.home-page .home-dashboard-call-detail{
  min-width:0;
  padding:clamp(.8rem,2.5vw,1.2rem);
}

body.home-page .home-dashboard-call-feed{
  border-bottom:1px solid rgba(166,217,239,.11);
  background:rgba(255,255,255,.018);
}

body.home-page .home-dashboard-pane-heading,
body.home-page .home-dashboard-detail-heading{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
}

body.home-page .home-dashboard-pane-heading > div{
  min-width:0;
  display:flex;
  align-items:center;
  gap:.55rem;
}

body.home-page .home-dashboard-pane-heading > div > span:last-child,
body.home-page .home-dashboard-detail-heading > span{
  min-width:0;
  display:grid;
  gap:.08rem;
}

body.home-page .home-dashboard-pane-heading small,
body.home-page .home-dashboard-detail-heading small{
  color:#7893aa!important;
  font-size:.52rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-dashboard-pane-heading strong,
body.home-page .home-dashboard-detail-heading strong{
  color:#f1f7fb!important;
  font-size:.7rem;
  line-height:1.25;
}

body.home-page .home-dashboard-pane-heading > em,
body.home-page .home-dashboard-detail-heading > em{
  flex:0 0 auto;
  color:#7893aa;
  font-size:.55rem;
  font-style:normal;
  font-weight:800;
}

body.home-page .home-dashboard-pane-heading > em{
  display:flex;
  align-items:center;
  gap:.32rem;
}

body.home-page .home-dashboard-pane-heading > em .icon{
  width:.72rem;
  height:.72rem;
}

body.home-page .home-dashboard-marker{
  width:25px;
  height:25px;
  flex:0 0 25px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(145deg,#64dfe3,#7e75ed);
  color:#071829;
  font-size:.62rem;
  font-weight:950;
  box-shadow:0 0 0 5px rgba(100,223,227,.08);
}

body.home-page .home-dashboard-call-list{
  margin-top:.85rem;
  display:grid;
  gap:.48rem;
}

body.home-page .home-dashboard-call{
  min-width:0;
  padding:.65rem;
  display:grid;
  grid-template-columns:34px minmax(0,1fr) auto;
  align-items:center;
  gap:.55rem;
  border:1px solid rgba(166,217,239,.09);
  border-radius:12px;
  background:rgba(255,255,255,.025);
}

body.home-page .home-dashboard-call.is-current{
  border-color:rgba(96,220,226,.25);
  background:linear-gradient(135deg,rgba(54,153,206,.13),rgba(108,94,222,.08));
}

body.home-page .home-dashboard-call__icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(92,207,224,.1);
  color:#6cdae0;
}

body.home-page .home-dashboard-call__icon .icon{
  width:.95rem;
  height:.95rem;
}

body.home-page .home-dashboard-call > span:nth-child(2){
  min-width:0;
  display:grid;
  gap:.1rem;
}

body.home-page .home-dashboard-call strong{
  overflow:hidden;
  color:#eaf4fa!important;
  font-size:.62rem;
  line-height:1.25;
  text-overflow:ellipsis;
  white-space:nowrap;
}

body.home-page .home-dashboard-call small{
  overflow:hidden;
  color:#7690a5!important;
  font-size:.52rem;
  text-overflow:ellipsis;
  white-space:nowrap;
}

body.home-page .home-dashboard-call > em{
  padding:.2rem .38rem;
  border-radius:999px;
  background:rgba(106,224,187,.1);
  color:#6eddbb;
  font-size:.49rem;
  font-style:normal;
  font-weight:900;
}

body.home-page .home-dashboard-call-detail{
  display:grid;
  gap:.85rem;
}

body.home-page .home-dashboard-detail-heading{
  padding-bottom:.75rem;
  border-bottom:1px solid rgba(166,217,239,.1);
}

body.home-page .home-dashboard-transcript,
body.home-page .home-dashboard-actions{
  padding:.75rem;
  border:1px solid rgba(166,217,239,.1);
  border-radius:14px;
  background:rgba(255,255,255,.025);
}

body.home-page .home-dashboard-transcript__line{
  width:90%;
  margin-top:.65rem;
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:.48rem;
  align-items:start;
}

body.home-page .home-dashboard-transcript__line.is-caller{
  margin-left:auto;
}

body.home-page .home-dashboard-transcript__line b{
  padding-top:.5rem;
  color:#7694aa;
  font-size:.52rem;
}

body.home-page .home-dashboard-transcript__line p{
  margin:0;
  padding:.48rem .58rem;
  border:1px solid rgba(166,217,239,.1);
  border-radius:10px 10px 10px 3px;
  background:rgba(255,255,255,.04);
  color:#dceaf2!important;
  font-size:.59rem;
  line-height:1.4;
}

body.home-page .home-dashboard-transcript__line.is-caller p{
  border-color:rgba(110,120,232,.2);
  border-radius:10px 10px 3px 10px;
  background:rgba(110,120,232,.08);
}

body.home-page .home-dashboard-summary{
  margin:.75rem 0 0;
  display:grid;
  gap:.45rem;
}

body.home-page .home-dashboard-summary div{
  min-width:0;
  padding:.5rem .58rem;
  border:1px solid rgba(166,217,239,.08);
  border-radius:9px;
  background:rgba(255,255,255,.025);
}

body.home-page .home-dashboard-summary dt{
  color:#718ca1;
  font-size:.48rem;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}

body.home-page .home-dashboard-summary dd{
  overflow:hidden;
  margin:.12rem 0 0;
  color:#e4f0f5;
  font-size:.58rem;
  font-weight:800;
  text-overflow:ellipsis;
  white-space:nowrap;
}

body.home-page .home-dashboard-action-list{
  margin-top:.7rem;
  display:grid;
  gap:.48rem;
}

body.home-page .home-dashboard-action-list p{
  margin:0;
  padding:.58rem;
  display:grid;
  grid-template-columns:30px minmax(0,1fr) auto;
  align-items:center;
  gap:.55rem;
  border:1px solid rgba(105,224,188,.12);
  border-radius:10px;
  background:rgba(105,224,188,.045);
}

body.home-page .home-dashboard-action-list > p > .icon{
  width:30px;
  height:30px;
  padding:.42rem;
  border-radius:9px;
  background:rgba(105,224,188,.1);
  color:#6addb9;
}

body.home-page .home-dashboard-action-list p > span:nth-child(2){
  min-width:0;
  display:grid;
  gap:.08rem;
}

body.home-page .home-dashboard-action-list strong{
  color:#eaf7f2!important;
  font-size:.58rem;
  line-height:1.25;
}

body.home-page .home-dashboard-action-list small{
  color:#779c90!important;
  font-size:.49rem;
}

body.home-page .home-dashboard-action-list em{
  color:#6ce0bb;
  font-size:.48rem;
  font-style:normal;
  font-weight:900;
}

body.home-page .home-dashboard-utilities{
  padding:.75rem;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.45rem;
  border-top:1px solid rgba(166,217,239,.1);
  background:rgba(255,255,255,.02);
}

body.home-page .home-dashboard-utilities span{
  min-width:0;
  display:flex;
  align-items:center;
  gap:.38rem;
  color:#839caf;
  font-size:.52rem;
  font-weight:700;
  line-height:1.3;
}

body.home-page .home-dashboard-utilities .icon{
  width:.82rem;
  height:.82rem;
  flex:0 0 .82rem;
  color:#65cadb;
}

body.home-page .home-dashboard-annotations{
  margin:1rem 0 0;
  padding:0;
  display:grid;
  gap:.65rem;
  list-style:none;
}

body.home-page .home-dashboard-annotation{
  min-width:0;
  padding:.85rem;
  display:grid;
  grid-template-columns:30px minmax(0,1fr);
  align-items:start;
  gap:.65rem;
  border:1px solid rgba(166,217,239,.13);
  border-radius:15px;
  background:rgba(255,255,255,.045);
}

body.home-page .home-dashboard-annotation > span{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(145deg,#64dfe3,#7e75ed);
  color:#071829;
  font-size:.65rem;
  font-weight:950;
}

body.home-page .home-dashboard-annotation p{
  margin:0;
  color:#9eb3c5!important;
  font-size:.67rem;
  line-height:1.5;
}

body.home-page .home-dashboard-annotation strong{
  margin-bottom:.12rem;
  display:block;
  color:#f0f7fb!important;
  font-size:.72rem;
}

body.home-page .home-dashboard-product__note{
  margin:.75rem 0 0;
  color:#7690a6!important;
  font-size:.58rem;
  line-height:1.45;
  text-align:center;
}

@media (min-width:620px){
  body.home-page .home-service-artifact__result{
    grid-template-columns:38px minmax(0,1fr) auto;
  }

  body.home-page .home-service-artifact__result em{
    grid-column:auto;
  }

  body.home-page .home-dashboard-toolbar{
    grid-template-columns:minmax(0,1fr) auto auto;
  }

  body.home-page .home-dashboard-summary{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page .home-dashboard-annotations{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (min-width:820px){
  body.home-page .home-pressure-intro,
  body.home-page .home-dashboard-intro{
    grid-template-columns:minmax(0,1.08fr) minmax(280px,.72fr);
    align-items:end;
    gap:clamp(2rem,6vw,5rem);
  }

  body.home-page .home-pressure-panel{
    grid-template-columns:minmax(0,.92fr) minmax(360px,1.08fr);
  }

  body.home-page .home-dashboard-workspace{
    grid-template-columns:minmax(230px,.72fr) minmax(0,1.58fr);
  }

  body.home-page .home-dashboard-call-feed{
    border-right:1px solid rgba(166,217,239,.11);
    border-bottom:0;
  }

  body.home-page .home-dashboard-call-detail{
    grid-template-columns:minmax(0,1.18fr) minmax(220px,.82fr);
    align-items:start;
  }

  body.home-page .home-dashboard-detail-heading{
    grid-column:1 / -1;
  }
}

@media (min-width:1080px){
  body.home-page .home-pressure-panel{
    min-height:400px;
  }

  body.home-page .home-dashboard-window__bar{
    padding-inline:1.3rem;
  }

  body.home-page .home-dashboard-toolbar,
  body.home-page .home-dashboard-utilities{
    padding-inline:1.2rem;
  }

  body.home-page .home-dashboard-utilities{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media (hover:hover) and (pointer:fine){
  body.home-page .home-pressure-route:hover{
    background:rgba(var(--pressure-accent),.14);
    transform:translateY(-2px);
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page .home-pressure-route{
    transition:none!important;
  }
}

@media (prefers-contrast:more){
  body.home-page .home-pressure-panel,
  body.home-page .home-service-artifact,
  body.home-page .home-dashboard-window,
  body.home-page .home-dashboard-annotation{
    border-color:currentColor!important;
  }
}

@media (forced-colors:active){
  body.home-page .home-pressure-panel,
  body.home-page .home-service-artifact,
  body.home-page .home-service-artifact__result,
  body.home-page .home-dashboard-window,
  body.home-page .home-dashboard-window__bar,
  body.home-page .home-dashboard-toolbar,
  body.home-page .home-dashboard-toolbar > span,
  body.home-page .home-dashboard-call-feed,
  body.home-page .home-dashboard-call,
  body.home-page .home-dashboard-transcript,
  body.home-page .home-dashboard-actions,
  body.home-page .home-dashboard-annotation{
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
    box-shadow:none!important;
  }

  body.home-page .home-dashboard-marker,
  body.home-page .home-dashboard-annotation > span{
    border:2px solid Highlight;
    background:Canvas!important;
    color:CanvasText!important;
  }
}

/* Premium outbound scenario studio. */
body.home-page #outbound-calls.home-outbound{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 8%,rgba(54,211,218,.09),transparent 25rem),
    radial-gradient(circle at 92% 20%,rgba(118,103,255,.1),transparent 30rem),
    linear-gradient(180deg,#071528 0%,#09192c 100%);
}

body.home-page #outbound-calls.home-outbound::before{
  position:absolute;
  z-index:-1;
  inset:0;
  content:"";
  opacity:.45;
  background-image:
    linear-gradient(rgba(143,216,239,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(143,216,239,.025) 1px,transparent 1px);
  background-size:40px 40px;
  -webkit-mask-image:linear-gradient(to bottom,#000,transparent 88%);
  mask-image:linear-gradient(to bottom,#000,transparent 88%);
  pointer-events:none;
}

body.home-page .home-outbound__intro{
  display:grid;
  gap:1rem;
  align-items:end;
}

body.home-page .home-outbound__intro > div,
body.home-page .home-outbound__intro > .section-sub{
  min-width:0;
}

body.home-page .home-outbound__intro .section-heading{
  max-width:980px;
  margin:0;
  color:#f7fbff;
  font-size:clamp(2rem,9vw,4.5rem)!important;
  letter-spacing:-.055em;
  line-height:1.02!important;
  text-wrap:balance;
}

body.home-page .home-outbound__intro .section-sub{
  max-width:760px;
  margin:0;
  color:#b8c9da!important;
  font-size:clamp(.96rem,2.6vw,1.1rem)!important;
  line-height:1.68!important;
}

body.home-page .home-outbound-studio{
  position:relative;
  isolation:isolate;
  margin-top:clamp(1.6rem,5vw,3.2rem);
  padding:clamp(.8rem,3vw,1.5rem);
  overflow:hidden;
  border:1px solid rgba(143,215,239,.2);
  border-radius:clamp(24px,5vw,38px);
  background:
    radial-gradient(circle at 95% 0,rgba(136,108,255,.15),transparent 28rem),
    linear-gradient(145deg,rgba(5,22,39,.98),rgba(13,27,53,.97));
  box-shadow:0 34px 90px rgba(0,0,0,.34),inset 0 1px rgba(255,255,255,.08);
}

body.home-page .home-outbound-studio::before{
  position:absolute;
  z-index:-1;
  inset:0;
  content:"";
  background:linear-gradient(118deg,rgba(69,217,216,.04),transparent 42%,rgba(134,112,255,.04));
  pointer-events:none;
}

body.home-page .home-outbound-studio__bar{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.72rem;
  padding:.18rem .12rem .9rem;
  border-bottom:1px solid rgba(162,213,232,.12);
}

body.home-page .home-outbound-studio__mark{
  width:2.65rem;
  height:2.65rem;
  display:grid;
  place-items:center;
  border:1px solid rgba(132,224,238,.24);
  border-radius:14px;
  background:linear-gradient(145deg,rgba(74,213,216,.16),rgba(122,111,255,.14));
  color:#91e9ef;
  box-shadow:inset 0 1px rgba(255,255,255,.1);
}

body.home-page .home-outbound-studio__mark .icon{
  width:1.25rem;
  height:1.25rem;
}

body.home-page .home-outbound-studio__bar > span:nth-child(2){
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.08rem;
}

body.home-page .home-outbound-studio__bar small,
body.home-page .home-outbound-panel__eyebrow,
body.home-page .home-outbound-flow figcaption small,
body.home-page .home-outbound-outputs > header p,
body.home-page .home-outbound-cta small{
  color:#79dfd2;
  font-size:.62rem;
  font-weight:880;
  letter-spacing:.09em;
  line-height:1.35;
  text-transform:uppercase;
}

body.home-page .home-outbound-studio__bar strong{
  color:#f5faff;
  font-size:clamp(.82rem,2.4vw,1rem);
  line-height:1.35;
}

body.home-page .home-outbound-studio__bar > em{
  grid-column:2;
  justify-self:start;
  padding:.28rem .52rem;
  border:1px solid rgba(136,211,235,.16);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:#98b5c8;
  font-size:.57rem;
  font-style:normal;
  font-weight:780;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body.home-page .home-outbound-tabs{
  margin:.85rem 0;
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:.48rem;
}

body.home-page .home-outbound-tabs[hidden],
body.home-page .home-outbound-panel[hidden]{
  display:none!important;
}

body.home-page .home-outbound-tab{
  min-width:0;
  min-height:68px;
  padding:.66rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.6rem;
  border:1px solid rgba(158,207,228,.13);
  border-radius:16px;
  appearance:none;
  background:rgba(255,255,255,.035);
  color:#dce9f4;
  font:inherit;
  text-align:left;
  cursor:pointer;
  touch-action:manipulation;
  transition:border-color .2s ease,background .2s ease,box-shadow .2s ease,transform .2s ease;
}

body.home-page .home-outbound-tab > .icon{
  width:1.2rem;
  height:1.2rem;
  color:#86dfff;
}

body.home-page .home-outbound-tab > span{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.08rem;
}

body.home-page .home-outbound-tab small{
  color:#819fb3;
  font-size:.54rem;
  font-weight:780;
  letter-spacing:.06em;
  line-height:1.3;
  text-transform:uppercase;
}

body.home-page .home-outbound-tab strong{
  color:#eaf4fb;
  font-size:.72rem;
  line-height:1.25;
}

body.home-page .home-outbound-tab.is-active,
body.home-page .home-outbound-tab[aria-selected="true"]{
  border-color:rgba(103,226,218,.55);
  background:linear-gradient(145deg,rgba(69,213,206,.15),rgba(111,115,255,.1));
  box-shadow:0 12px 28px rgba(0,0,0,.16),inset 0 1px rgba(255,255,255,.07);
}

body.home-page .home-outbound-tab:focus-visible{
  outline:3px solid #86e5ff;
  outline-offset:3px;
}

body.home-page .home-outbound-workspace{
  display:grid;
  gap:.75rem;
  align-items:stretch;
}

body.home-page .home-outbound-panels,
body.home-page .home-outbound-flow{
  min-width:0;
}

body.home-page .home-outbound-panel{
  height:100%;
  margin:0 0 .72rem;
  padding:clamp(.9rem,3.5vw,1.4rem);
  border:1px solid rgba(148,208,230,.15);
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  box-shadow:inset 0 1px rgba(255,255,255,.045);
}

body.home-page .is-outbound-enhanced .home-outbound-panel{
  margin-bottom:0;
}

body.home-page .home-outbound-panel__eyebrow{
  margin:0 0 .55rem;
  display:flex;
  align-items:center;
  gap:.35rem;
}

body.home-page .home-outbound-panel__eyebrow .icon{
  width:.88rem;
  height:.88rem;
}

body.home-page .home-outbound-panel h3{
  max-width:620px;
  margin:0;
  color:#f8fbff;
  font-size:clamp(1.45rem,5vw,2.35rem);
  letter-spacing:-.035em;
  line-height:1.08;
  text-wrap:balance;
}

body.home-page .home-outbound-panel > p:not(.home-outbound-panel__eyebrow){
  max-width:680px;
  margin:.75rem 0 0;
  color:#b8cada;
  font-size:clamp(.88rem,2.5vw,1rem);
  line-height:1.65;
}

body.home-page .home-outbound-panel__signals{
  margin:.9rem 0 0;
  padding:0;
  display:grid;
  gap:.48rem;
  list-style:none;
}

body.home-page .home-outbound-panel__signals li{
  min-width:0;
  padding:.62rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.55rem;
  align-items:start;
  border:1px solid rgba(155,207,228,.11);
  border-radius:14px;
  background:rgba(3,15,29,.28);
  color:#d9e6f1;
  font-size:.72rem;
  line-height:1.45;
}

body.home-page .home-outbound-panel__signals .icon{
  width:1rem;
  height:1rem;
  color:#81dfef;
}

body.home-page .home-outbound-panel__signals small{
  display:block;
  margin-bottom:.12rem;
  color:#7899af;
  font-size:.54rem;
  font-weight:820;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-outbound-panel__fallback{
  margin:.8rem 0 0;
  display:grid;
  gap:.42rem;
}

body.home-page .home-outbound-panel__fallback > div{
  padding:.55rem .62rem;
  border-left:2px solid #6fded5;
  background:rgba(255,255,255,.025);
}

body.home-page .home-outbound-panel__fallback dt{
  color:#7d9fb4;
  font-size:.54rem;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body.home-page .home-outbound-panel__fallback dd{
  margin:.12rem 0 0;
  color:#d9e7f2;
  font-size:.72rem;
}

body.home-page .is-outbound-enhanced .home-outbound-panel__fallback{
  display:none;
}

body.home-page .home-outbound-flow{
  margin:0;
  padding:clamp(.85rem,3vw,1.25rem);
  border:1px solid rgba(147,209,232,.16);
  border-radius:22px;
  background:
    radial-gradient(circle at 90% 0,rgba(142,112,255,.12),transparent 18rem),
    linear-gradient(145deg,rgba(5,21,38,.9),rgba(15,27,51,.92));
  box-shadow:inset 0 1px rgba(255,255,255,.055);
}

body.home-page .home-outbound-flow figcaption{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:.7rem;
}

body.home-page .home-outbound-flow figcaption > span{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.16rem;
}

body.home-page .home-outbound-flow figcaption strong{
  color:#f2f8fd;
  font-size:clamp(.85rem,2.5vw,1.02rem);
  line-height:1.35;
}

body.home-page .home-outbound-flow figcaption em{
  flex:0 0 auto;
  padding:.3rem .52rem;
  border:1px solid rgba(128,225,222,.2);
  border-radius:999px;
  background:rgba(71,214,205,.08);
  color:#83dfd5;
  font-size:.56rem;
  font-style:normal;
  font-weight:800;
  text-align:center;
}

body.home-page .home-outbound-flow ol{
  margin:.85rem 0 0;
  padding:0;
  display:grid;
  gap:.46rem;
  list-style:none;
  counter-reset:none;
}

body.home-page .home-outbound-flow li{
  position:relative;
  min-width:0;
  min-height:74px;
  padding:.68rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.58rem;
  border:1px solid rgba(153,207,229,.12);
  border-radius:15px;
  background:rgba(255,255,255,.035);
}

body.home-page .home-outbound-flow__icon{
  width:2rem;
  height:2rem;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:linear-gradient(145deg,rgba(77,217,213,.15),rgba(120,111,255,.12));
  color:#8be3f1;
}

body.home-page .home-outbound-flow__icon .icon{
  width:1rem;
  height:1rem;
}

body.home-page .home-outbound-flow li > span:last-child{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.12rem;
}

body.home-page .home-outbound-flow li small{
  color:#7697ac;
  font-size:.54rem;
  font-weight:820;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-outbound-flow li strong{
  color:#e8f2f9;
  font-size:.7rem;
  line-height:1.4;
}

body.home-page .home-outbound-flow > p{
  margin:.72rem 0 0;
  color:#829eb1;
  font-size:.63rem;
  line-height:1.5;
}

body.home-page .home-outbound-guardrails{
  margin-top:.75rem;
  padding:.72rem;
  display:grid;
  gap:.46rem;
  border:1px solid rgba(142,209,231,.14);
  border-radius:18px;
  background:rgba(255,255,255,.03);
}

body.home-page .home-outbound-guardrails > span{
  min-width:0;
  padding:.52rem .58rem;
  border-radius:12px;
  background:rgba(2,14,27,.28);
  color:#d3e1ec;
  font-size:.66rem;
  line-height:1.4;
}

body.home-page .home-outbound-guardrails__title{
  display:flex;
  align-items:center;
  gap:.42rem;
  color:#f2f8fd!important;
}

body.home-page .home-outbound-guardrails__title .icon{
  width:1rem;
  height:1rem;
  color:#7fe1d6;
}

body.home-page .home-outbound-guardrails small{
  display:block;
  margin-bottom:.08rem;
  color:#75a4b9;
  font-size:.52rem;
  font-weight:820;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body.home-page .home-outbound-outputs{
  margin-top:clamp(1.35rem,4vw,2.1rem);
}

body.home-page .home-outbound-outputs > header{
  max-width:780px;
}

body.home-page .home-outbound-outputs > header p{
  margin:0 0 .35rem;
}

body.home-page .home-outbound-outputs > header h3{
  margin:0;
  color:#f5faff;
  font-size:clamp(1.35rem,4.8vw,2.25rem);
  letter-spacing:-.035em;
  line-height:1.1;
  text-wrap:balance;
}

body.home-page .home-outbound-outputs > div{
  margin-top:.85rem;
  display:grid;
  gap:.58rem;
}

body.home-page .home-outbound-outputs article{
  min-width:0;
  padding:.8rem;
  border:1px solid rgba(148,204,228,.13);
  border-radius:16px;
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.024));
}

body.home-page .home-outbound-outputs article > .icon{
  width:1.25rem;
  height:1.25rem;
  color:#83dff2;
}

body.home-page .home-outbound-outputs h4{
  margin:.48rem 0 0;
  color:#f1f7fc;
  font-size:.85rem;
}

body.home-page .home-outbound-outputs article p{
  margin:.3rem 0 0;
  color:#9fb5c7;
  font-size:.7rem;
  line-height:1.5;
}

body.home-page .home-outbound-cta{
  margin-top:clamp(1rem,3.5vw,1.6rem);
  padding:clamp(.82rem,3vw,1.15rem);
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.7rem;
  border:1px solid rgba(122,221,224,.22);
  border-radius:20px;
  background:
    radial-gradient(circle at 90% 0,rgba(139,112,255,.14),transparent 16rem),
    linear-gradient(120deg,rgba(59,211,207,.1),rgba(255,255,255,.035));
}

body.home-page .home-outbound-cta__icon{
  width:2.55rem;
  height:2.55rem;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(145deg,#5edccf,#6d89ff);
  color:#061425;
  box-shadow:0 12px 28px rgba(45,188,206,.18);
}

body.home-page .home-outbound-cta__icon .icon{
  width:1.25rem;
  height:1.25rem;
}

body.home-page .home-outbound-cta > span:nth-child(2){
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.16rem;
}

body.home-page .home-outbound-cta > span:nth-child(2) > strong{
  color:#f6fbff;
  font-size:clamp(.88rem,2.6vw,1.08rem);
  line-height:1.35;
}

body.home-page .home-outbound-cta > span:nth-child(2) > p{
  margin:0;
  color:#9fb7c8;
  font-size:.68rem;
  line-height:1.48;
}

body.home-page .home-outbound-cta__actions{
  grid-column:1/-1;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:.55rem;
}

body.home-page .home-outbound-cta__actions .btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.42rem;
  border-radius:14px;
  font-size:.72rem;
  font-weight:850;
  white-space:normal;
  text-align:center;
}

body.home-page .home-outbound-cta__actions .icon{
  width:1rem;
  height:1rem;
}

body.home-page .home-outbound-cta__link{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.32rem;
  color:#9ddff3;
  font-size:.68rem;
  font-weight:800;
  text-decoration:none;
}

@media (min-width:360px){
  body.home-page .home-outbound-tabs{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (min-width:600px){
  body.home-page .home-outbound-studio__bar{
    grid-template-columns:auto minmax(0,1fr) auto;
  }

  body.home-page .home-outbound-studio__bar > em{
    grid-column:auto;
    justify-self:end;
  }

  body.home-page .home-outbound-panel__signals,
  body.home-page .home-outbound-outputs > div{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.home-page .home-outbound-guardrails{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.home-page .home-outbound-guardrails__title{
    grid-column:1/-1;
  }

  body.home-page .home-outbound-cta__actions{
    flex-direction:row;
    align-items:center;
  }

  body.home-page .home-outbound-cta__actions .btn{
    width:auto;
  }
}

@media (min-width:760px){
  body.home-page .home-outbound-tabs{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  body.home-page .home-outbound-tab{
    min-height:76px;
  }

  body.home-page .home-outbound-outputs > div{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (min-width:992px){
  body.home-page .home-outbound__intro{
    grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);
    gap:clamp(2rem,5vw,5rem);
  }

  body.home-page .home-outbound-workspace{
    grid-template-columns:minmax(0,.84fr) minmax(0,1.16fr);
    gap:.85rem;
  }

  body.home-page .home-outbound-flow ol{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:.48rem;
  }

  body.home-page .home-outbound-flow li{
    min-height:124px;
    align-content:start;
    grid-template-columns:minmax(0,1fr);
  }

  body.home-page .home-outbound-flow li:not(:last-child)::after{
    position:absolute;
    z-index:2;
    top:50%;
    right:-.63rem;
    width:.8rem;
    height:1px;
    content:"";
    background:linear-gradient(90deg,#68dcd2,#7e92ff);
  }

  body.home-page .home-outbound-guardrails{
    grid-template-columns:auto repeat(3,minmax(0,1fr));
    align-items:stretch;
  }

  body.home-page .home-outbound-guardrails__title{
    grid-column:auto;
  }

  body.home-page .home-outbound-cta{
    grid-template-columns:auto minmax(0,1fr) auto;
  }

  body.home-page .home-outbound-cta__actions{
    grid-column:auto;
    justify-self:end;
  }
}

@media (min-width:1400px){
  body.home-page .home-outbound-studio{
    padding:1.65rem;
  }

  body.home-page .home-outbound-tab strong{
    font-size:.78rem;
  }

  body.home-page .home-outbound-flow li strong{
    font-size:.74rem;
  }
}

@media (hover:hover) and (pointer:fine){
  body.home-page .home-outbound-tab:not(.is-active):hover{
    border-color:rgba(125,213,238,.3);
    background:rgba(255,255,255,.06);
    transform:translateY(-2px);
  }

  body.home-page .home-outbound-cta__link:hover{
    color:#c7f1ff;
    text-decoration:underline;
    text-underline-offset:.2em;
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page .home-outbound-tab,
  body.home-page .home-outbound-cta__link{
    transition:none!important;
  }
}

@media (prefers-contrast:more){
  body.home-page .home-outbound-studio,
  body.home-page .home-outbound-tab,
  body.home-page .home-outbound-panel,
  body.home-page .home-outbound-flow,
  body.home-page .home-outbound-guardrails,
  body.home-page .home-outbound-outputs article,
  body.home-page .home-outbound-cta{
    border-color:currentColor!important;
  }
}

@media (forced-colors:active){
  body.home-page .home-outbound-studio,
  body.home-page .home-outbound-studio__bar,
  body.home-page .home-outbound-studio__mark,
  body.home-page .home-outbound-tab,
  body.home-page .home-outbound-panel,
  body.home-page .home-outbound-panel__signals li,
  body.home-page .home-outbound-panel__fallback > div,
  body.home-page .home-outbound-flow,
  body.home-page .home-outbound-flow li,
  body.home-page .home-outbound-flow__icon,
  body.home-page .home-outbound-guardrails,
  body.home-page .home-outbound-guardrails > span,
  body.home-page .home-outbound-outputs article,
  body.home-page .home-outbound-cta,
  body.home-page .home-outbound-cta__icon{
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
    box-shadow:none!important;
  }

  body.home-page .home-outbound-tab[aria-selected="true"]{
    outline:3px solid Highlight;
    outline-offset:-3px;
  }

  body.home-page .home-outbound-flow li:not(:last-child)::after{
    background:CanvasText!important;
  }
}

/* Truthful impact story and core workflow contrast. */
body.home-page #impact,
body.home-page #core-benefits{
  padding-block:clamp(3.75rem,7vw,5.75rem);
}

body.home-page .home-impact-intro,
body.home-page .home-core-intro{
  display:grid;
  gap:1rem;
}

body.home-page .home-impact-intro .section-heading,
body.home-page .home-core-intro .section-heading{
  max-width:840px;
  font-size:clamp(2rem,6.4vw,3.55rem);
}

body.home-page .home-impact-intro .section-sub,
body.home-page .home-core-intro .section-sub{
  max-width:680px;
  margin:0;
}

body.home-page .home-impact-story{
  margin:clamp(2rem,5vw,3.25rem) 0 0;
  overflow:hidden;
  border:1px solid rgba(160,215,238,.18);
  border-radius:clamp(22px,4vw,30px);
  background:rgba(255,255,255,.035);
  box-shadow:0 32px 80px rgba(0,0,0,.25);
}

body.home-page .home-impact-story__label,
body.home-page .home-core-contrast > figcaption{
  min-height:52px;
  padding:.75rem clamp(.85rem,3vw,1.2rem);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:.45rem 1rem;
  border-bottom:1px solid rgba(160,215,238,.13);
  background:rgba(255,255,255,.025);
}

body.home-page .home-impact-story__label > span,
body.home-page .home-core-contrast > figcaption > span{
  display:flex;
  align-items:center;
  gap:.45rem;
  color:#dfeef6;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.055em;
  text-transform:uppercase;
}

body.home-page .home-impact-story__label .icon,
body.home-page .home-core-contrast > figcaption .icon{
  width:1rem;
  height:1rem;
  color:#69dce0;
}

body.home-page .home-impact-story__label small,
body.home-page .home-core-contrast > figcaption small{
  color:#819caf!important;
  font-size:.58rem;
  font-weight:750;
}

body.home-page .home-impact-flow{
  margin:0;
  padding:clamp(.8rem,3vw,1.15rem);
  display:grid;
  gap:.65rem;
  list-style:none;
  counter-reset:none;
}

body.home-page .home-impact-flow__stage{
  --impact-accent:104,218,224;
  min-width:0;
  padding:clamp(.9rem,3vw,1.2rem);
  border:1px solid rgba(var(--impact-accent),.16);
  border-radius:17px;
  background:
    radial-gradient(circle at 95% 5%,rgba(var(--impact-accent),.1),transparent 10rem),
    rgba(255,255,255,.025);
}

body.home-page .home-impact-flow__stage--buddy{
  --impact-accent:122,115,235;
}

body.home-page .home-impact-flow__stage--team{
  --impact-accent:104,224,185;
}

body.home-page .home-impact-flow__heading{
  display:flex;
  align-items:center;
  gap:.68rem;
}

body.home-page .home-impact-flow__icon{
  width:40px;
  height:40px;
  flex:0 0 40px;
  display:grid;
  place-items:center;
  border:1px solid rgba(var(--impact-accent),.18);
  border-radius:13px;
  background:rgba(var(--impact-accent),.1);
  color:rgb(var(--impact-accent));
}

body.home-page .home-impact-flow__icon .icon{
  width:1.12rem;
  height:1.12rem;
}

body.home-page .home-impact-flow__heading > span:last-child{
  min-width:0;
  display:grid;
  gap:.12rem;
}

body.home-page .home-impact-flow__heading small{
  color:rgb(var(--impact-accent))!important;
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body.home-page .home-impact-flow__heading strong{
  color:#f2f8fc!important;
  font-size:.78rem;
  line-height:1.3;
}

body.home-page .home-impact-flow__stage > p{
  margin:.7rem 0 0;
  color:#91aabd!important;
  font-size:.67rem;
  line-height:1.55;
}

body.home-page .home-impact-flow blockquote{
  margin:.8rem 0 0;
  padding:.72rem .78rem;
  border:1px solid rgba(var(--impact-accent),.14);
  border-radius:12px 12px 12px 3px;
  background:rgba(var(--impact-accent),.07);
  color:#e7f2f8;
  font-size:.72rem;
  font-weight:750;
  line-height:1.45;
}

body.home-page .home-impact-capture{
  margin:.8rem 0 0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.38rem;
}

body.home-page .home-impact-capture div{
  min-width:0;
  padding:.52rem;
  border:1px solid rgba(var(--impact-accent),.12);
  border-radius:10px;
  background:rgba(255,255,255,.025);
}

body.home-page .home-impact-capture dt{
  color:#7f96ac;
  font-size:.48rem;
  font-weight:900;
  letter-spacing:.055em;
  text-transform:uppercase;
}

body.home-page .home-impact-capture dd{
  overflow:hidden;
  margin:.13rem 0 0;
  color:#e9f1f6;
  font-size:.58rem;
  font-weight:800;
  text-overflow:ellipsis;
  white-space:nowrap;
}

body.home-page .home-impact-handover{
  margin-top:.8rem;
  display:grid;
  gap:.42rem;
}

body.home-page .home-impact-handover p{
  margin:0;
  padding:.52rem .58rem;
  display:grid;
  grid-template-columns:28px minmax(0,1fr);
  align-items:center;
  gap:.52rem;
  border:1px solid rgba(var(--impact-accent),.12);
  border-radius:10px;
  background:rgba(var(--impact-accent),.045);
}

body.home-page .home-impact-handover > p > .icon{
  width:28px;
  height:28px;
  padding:.38rem;
  border-radius:8px;
  background:rgba(var(--impact-accent),.1);
  color:rgb(var(--impact-accent));
}

body.home-page .home-impact-handover p > span:last-child{
  min-width:0;
  display:grid;
  gap:.07rem;
}

body.home-page .home-impact-handover small{
  color:#75998c!important;
  font-size:.47rem;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}

body.home-page .home-impact-handover strong{
  color:#eaf7f2!important;
  font-size:.56rem;
  line-height:1.3;
}

body.home-page .home-impact-outcomes{
  border-top:1px solid rgba(160,215,238,.13);
  background:rgba(4,19,32,.32);
}

body.home-page .home-impact-outcomes article{
  min-width:0;
  padding:clamp(.85rem,3vw,1.15rem);
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  align-items:start;
  gap:.65rem;
}

body.home-page .home-impact-outcomes article + article{
  border-top:1px solid rgba(160,215,238,.1);
}

body.home-page .home-impact-outcomes__icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:linear-gradient(145deg,rgba(99,218,224,.15),rgba(126,116,235,.15));
  color:#6edce1;
}

body.home-page .home-impact-outcomes__icon .icon{
  width:1.05rem;
  height:1.05rem;
}

body.home-page .home-impact-outcomes p{
  margin:0;
  display:grid;
  gap:.08rem;
}

body.home-page .home-impact-outcomes small{
  color:#68d8dd!important;
  font-size:.5rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-impact-outcomes strong{
  color:#f1f8fb!important;
  font-size:.69rem;
}

body.home-page .home-impact-outcomes p > span{
  margin-top:.1rem;
  color:#8fa8ba;
  font-size:.6rem;
  line-height:1.45;
}

body.home-page .home-impact-actions,
body.home-page .home-core-actions{
  margin-top:1.25rem;
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}

body.home-page .home-core-contrast{
  margin:clamp(2rem,5vw,3.25rem) 0 0;
  overflow:hidden;
  border:1px solid rgba(32,78,126,.14);
  border-radius:clamp(22px,4vw,30px);
  background:#fff;
  box-shadow:0 28px 70px rgba(21,62,105,.11);
}

body.home-page .home-core-contrast > figcaption{
  border-bottom-color:rgba(32,78,126,.12);
  background:#f2f6fa;
}

body.home-page .home-core-contrast > figcaption > span{
  color:var(--hp-ink-soft);
}

body.home-page .home-core-contrast > figcaption .icon{
  color:#286fc8;
}

body.home-page .home-core-contrast > figcaption small{
  color:#687f96!important;
}

body.home-page .home-core-contrast__grid{
  display:grid;
}

body.home-page .home-core-path{
  --core-accent:137,116,105;
  min-width:0;
  padding:clamp(1rem,4vw,1.6rem);
  background:
    radial-gradient(circle at 92% 8%,rgba(var(--core-accent),.08),transparent 12rem),
    #fbfaf9;
}

body.home-page .home-core-path--after{
  --core-accent:36,137,151;
  background:
    radial-gradient(circle at 92% 8%,rgba(var(--core-accent),.1),transparent 13rem),
    #f5fbfc;
}

body.home-page .home-core-path__heading{
  display:flex;
  align-items:center;
  gap:.72rem;
}

body.home-page .home-core-path__mark{
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:grid;
  place-items:center;
  border:1px solid rgba(var(--core-accent),.15);
  border-radius:14px;
  background:rgba(var(--core-accent),.08);
  color:rgb(var(--core-accent));
}

body.home-page .home-core-path__mark .icon{
  width:1.2rem;
  height:1.2rem;
}

body.home-page .home-core-path__heading > span:last-child{
  min-width:0;
  display:grid;
  gap:.15rem;
}

body.home-page .home-core-path__heading small{
  color:rgb(var(--core-accent))!important;
  font-size:.55rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-core-path h3{
  margin:0;
  color:var(--hp-ink)!important;
  font-size:clamp(1.1rem,4vw,1.45rem);
  font-weight:900;
  letter-spacing:-.035em;
  line-height:1.16;
}

body.home-page .home-core-path ol{
  margin:1rem 0 0;
  padding:0;
  display:grid;
  gap:.5rem;
  list-style:none;
}

body.home-page .home-core-path li{
  min-width:0;
  padding:.72rem;
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  align-items:start;
  gap:.65rem;
  border:1px solid rgba(var(--core-accent),.11);
  border-radius:12px;
  background:rgba(255,255,255,.7);
}

body.home-page .home-core-path li > .icon{
  width:32px!important;
  height:32px!important;
  padding:.42rem;
  border-radius:10px;
  background:rgba(var(--core-accent),.08);
  color:rgb(var(--core-accent))!important;
}

body.home-page .home-core-path li p{
  margin:0;
  display:grid;
  gap:.12rem;
}

body.home-page .home-core-path li strong{
  color:var(--hp-ink)!important;
  font-size:.68rem;
  line-height:1.3;
}

body.home-page .home-core-path li p > span{
  color:var(--hp-copy);
  font-size:.61rem;
  line-height:1.45;
}

body.home-page .home-core-bridge{
  min-height:116px;
  padding:.8rem;
  display:grid;
  place-items:center;
  align-content:center;
  gap:.16rem;
  border-block:1px solid rgba(32,78,126,.11);
  background:linear-gradient(145deg,#e9f5f7,#efedfb);
  color:#285d97;
  text-align:center;
}

body.home-page .home-core-bridge .icon{
  width:1.2rem;
  height:1.2rem;
  margin-bottom:.2rem;
  transform:rotate(90deg);
}

body.home-page .home-core-bridge strong{
  color:#1b4d84!important;
  font-size:.67rem;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}

body.home-page .home-core-bridge small{
  max-width:190px;
  color:#5e7894!important;
  font-size:.56rem;
  line-height:1.4;
}

body.home-page .home-core-control{
  margin-top:1rem;
  overflow:hidden;
  border:1px solid rgba(32,78,126,.14);
  border-radius:20px;
  background:#fff;
  box-shadow:0 18px 46px rgba(21,62,105,.075);
}

body.home-page .home-core-control > header{
  padding:clamp(.9rem,3vw,1.15rem);
  display:flex;
  align-items:center;
  gap:.72rem;
  border-bottom:1px solid rgba(32,78,126,.1);
  background:#f5f8fb;
}

body.home-page .home-core-control__icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:linear-gradient(145deg,#266fc9,#5a68df);
  color:#fff;
}

body.home-page .home-core-control__icon .icon{
  width:1.15rem;
  height:1.15rem;
}

body.home-page .home-core-control > header p{
  margin:0 0 .1rem;
  color:#3971ad!important;
  font-size:.54rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-core-control > header h3{
  margin:0;
  color:var(--hp-ink)!important;
  font-size:clamp(.92rem,3vw,1.2rem);
  font-weight:900;
  letter-spacing:-.025em;
  line-height:1.25;
}

body.home-page .home-core-control__grid{
  margin:0;
}

body.home-page .home-core-control__grid > div{
  min-width:0;
  padding:.9rem;
}

body.home-page .home-core-control__grid > div + div{
  border-top:1px solid rgba(32,78,126,.09);
}

body.home-page .home-core-control dt{
  display:flex;
  align-items:center;
  gap:.4rem;
  color:#2564a6;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body.home-page .home-core-control dt .icon{
  width:.9rem;
  height:.9rem;
}

body.home-page .home-core-control dd{
  margin:.35rem 0 0;
  color:var(--hp-copy);
  font-size:.64rem;
  line-height:1.5;
}

body.home-page .home-core-control__note{
  margin:0;
  padding:.7rem .9rem;
  display:flex;
  align-items:flex-start;
  gap:.48rem;
  border-top:1px solid rgba(32,78,126,.1);
  background:#f7fafc;
  color:#60788f!important;
  font-size:.58rem;
  line-height:1.5;
}

body.home-page .home-core-control__note .icon{
  width:.92rem;
  height:.92rem;
  flex:0 0 .92rem;
  margin-top:.08rem;
  color:#218472;
}

@media (min-width:700px){
  body.home-page .home-impact-outcomes{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page .home-impact-outcomes article + article{
    border-top:0;
    border-left:1px solid rgba(160,215,238,.1);
  }

  body.home-page .home-core-control__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.home-page .home-core-control__grid > div + div{
    border-top:0;
  }

  body.home-page .home-core-control__grid > div:nth-child(even){
    border-left:1px solid rgba(32,78,126,.09);
  }

  body.home-page .home-core-control__grid > div:nth-child(n+3){
    border-top:1px solid rgba(32,78,126,.09);
  }
}

@media (min-width:840px){
  body.home-page .home-impact-intro,
  body.home-page .home-core-intro{
    grid-template-columns:minmax(0,1.08fr) minmax(280px,.72fr);
    align-items:end;
    gap:clamp(2rem,6vw,5rem);
  }

  body.home-page .home-impact-flow{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page .home-impact-flow__stage{
    position:relative;
  }

  body.home-page .home-impact-flow__stage:not(:last-child)::after{
    position:absolute;
    z-index:2;
    top:50%;
    right:-.78rem;
    width:1.1rem;
    height:1.1rem;
    display:grid;
    place-items:center;
    border:1px solid rgba(126,188,216,.22);
    border-radius:50%;
    content:"›";
    background:#10283e;
    color:#6dd9df;
    font-size:1rem;
    font-weight:900;
    line-height:1;
    transform:translateY(-50%);
  }

  body.home-page .home-core-contrast__grid{
    grid-template-columns:minmax(0,1fr) minmax(118px,.22fr) minmax(0,1fr);
  }

  body.home-page .home-core-bridge{
    min-height:100%;
    border-block:0;
    border-inline:1px solid rgba(32,78,126,.11);
  }

  body.home-page .home-core-bridge .icon{
    transform:none;
  }
}

@media (min-width:1060px){
  body.home-page .home-core-control__grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  body.home-page .home-core-control__grid > div + div,
  body.home-page .home-core-control__grid > div:nth-child(n+3){
    border-top:0;
    border-left:1px solid rgba(32,78,126,.09);
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page .home-impact-story *,
  body.home-page .home-core-contrast *,
  body.home-page .home-core-control *{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

@media (prefers-contrast:more){
  body.home-page .home-impact-story,
  body.home-page .home-impact-flow__stage,
  body.home-page .home-impact-outcomes article,
  body.home-page .home-core-contrast,
  body.home-page .home-core-path li,
  body.home-page .home-core-control{
    border-color:currentColor!important;
  }
}

@media (forced-colors:active){
  body.home-page .home-impact-story,
  body.home-page .home-impact-story__label,
  body.home-page .home-impact-flow__stage,
  body.home-page .home-impact-flow blockquote,
  body.home-page .home-impact-capture div,
  body.home-page .home-impact-handover p,
  body.home-page .home-impact-outcomes,
  body.home-page .home-impact-outcomes article,
  body.home-page .home-core-contrast,
  body.home-page .home-core-contrast > figcaption,
  body.home-page .home-core-path,
  body.home-page .home-core-path li,
  body.home-page .home-core-bridge,
  body.home-page .home-core-control,
  body.home-page .home-core-control > header,
  body.home-page .home-core-control__grid > div,
  body.home-page .home-core-control__note{
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
    box-shadow:none!important;
  }

  body.home-page .home-impact-flow__icon,
  body.home-page .home-impact-outcomes__icon,
  body.home-page .home-core-path__mark,
  body.home-page .home-core-control__icon{
    border:2px solid Highlight;
    background:Canvas!important;
    color:CanvasText!important;
  }
}

/* Managed ownership map and compact launch path. */
body.home-page #managed,
body.home-page #how{
  padding-block:clamp(3.75rem,7vw,5.75rem);
}

body.home-page .home-managed-intro,
body.home-page .home-how-intro{
  display:grid;
  gap:1rem;
}

body.home-page .home-managed-intro .section-heading,
body.home-page .home-how-intro .section-heading{
  max-width:860px;
  font-size:clamp(2rem,6.4vw,3.55rem);
}

body.home-page .home-managed-intro .section-sub,
body.home-page .home-how-intro .section-sub{
  max-width:680px;
  margin:0;
}

body.home-page .home-managed-map{
  margin:clamp(2rem,5vw,3.25rem) 0 0;
  overflow:hidden;
  border:1px solid rgba(32,78,126,.14);
  border-radius:clamp(22px,4vw,30px);
  background:#fff;
  box-shadow:0 30px 76px rgba(21,62,105,.12);
}

body.home-page .home-managed-map > figcaption,
body.home-page .home-how-handover > figcaption{
  min-height:52px;
  padding:.75rem clamp(.85rem,3vw,1.2rem);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:.45rem 1rem;
  border-bottom:1px solid rgba(32,78,126,.11);
  background:#f2f6fa;
}

body.home-page .home-managed-map > figcaption > span,
body.home-page .home-how-handover > figcaption > span{
  display:flex;
  align-items:center;
  gap:.45rem;
  color:var(--hp-ink-soft);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.055em;
  text-transform:uppercase;
}

body.home-page .home-managed-map > figcaption .icon,
body.home-page .home-how-handover > figcaption .icon{
  width:1rem;
  height:1rem;
  color:#286fc8;
}

body.home-page .home-managed-map > figcaption small,
body.home-page .home-how-handover > figcaption small{
  color:#687f96!important;
  font-size:.58rem;
  font-weight:750;
}

body.home-page .home-managed-lanes{
  display:grid;
}

body.home-page .home-managed-lane{
  --managed-accent:42,113,199;
  min-width:0;
  padding:clamp(1rem,3.5vw,1.35rem);
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(circle at 96% 5%,rgba(var(--managed-accent),.08),transparent 11rem),
    #fff;
}

body.home-page .home-managed-lane--configure{
  --managed-accent:28,146,158;
}

body.home-page .home-managed-lane--approve{
  --managed-accent:116,91,207;
}

body.home-page .home-managed-lane--improve{
  --managed-accent:36,139,109;
}

body.home-page .home-managed-lane + .home-managed-lane{
  border-top:1px solid rgba(32,78,126,.1);
}

body.home-page .home-managed-lane header{
  display:flex;
  align-items:center;
  gap:.68rem;
}

body.home-page .home-managed-lane__icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(var(--managed-accent),.15);
  border-radius:13px;
  background:rgba(var(--managed-accent),.08);
  color:rgb(var(--managed-accent));
}

body.home-page .home-managed-lane__icon .icon{
  width:1.15rem;
  height:1.15rem;
}

body.home-page .home-managed-lane header p{
  min-width:0;
  margin:0;
  display:grid;
  gap:.1rem;
}

body.home-page .home-managed-lane header small{
  color:rgb(var(--managed-accent))!important;
  font-size:.55rem;
  font-weight:900;
  letter-spacing:.075em;
  text-transform:uppercase;
}

body.home-page .home-managed-lane header strong{
  color:var(--hp-ink)!important;
  font-size:.77rem;
  line-height:1.28;
}

body.home-page .home-managed-lane ul{
  margin:.9rem 0 0;
  padding:0;
  display:grid;
  gap:.52rem;
  list-style:none;
}

body.home-page .home-managed-lane li{
  position:relative;
  padding-left:1.1rem;
  color:var(--hp-copy)!important;
  font-size:.65rem;
  line-height:1.48;
}

body.home-page .home-managed-lane li::before{
  position:absolute;
  top:.49em;
  left:.08rem;
  width:.42rem;
  height:.42rem;
  border:2px solid rgb(var(--managed-accent));
  border-radius:50%;
  content:"";
}

body.home-page .home-managed-lane footer{
  width:max-content;
  max-width:100%;
  margin-top:auto;
  padding-top:1rem;
  color:rgb(var(--managed-accent));
  font-size:.54rem;
  font-weight:900;
  letter-spacing:.055em;
  text-transform:uppercase;
}

body.home-page .home-managed-guardrail{
  padding:clamp(1rem,3.5vw,1.35rem);
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  align-items:start;
  gap:.78rem;
  border-top:1px solid rgba(32,78,126,.12);
  background:
    radial-gradient(circle at 90% 12%,rgba(101,221,189,.12),transparent 17rem),
    linear-gradient(145deg,#0b2138,#102f48);
}

body.home-page .home-managed-guardrail__icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid rgba(105,224,188,.18);
  border-radius:14px;
  background:rgba(105,224,188,.09);
  color:#72dfbd;
}

body.home-page .home-managed-guardrail__icon .icon{
  width:1.2rem;
  height:1.2rem;
}

body.home-page .home-managed-guardrail > div > p{
  margin:0 0 .12rem;
  color:#6eddbb!important;
  font-size:.54rem;
  font-weight:900;
  letter-spacing:.075em;
  text-transform:uppercase;
}

body.home-page .home-managed-guardrail h3{
  margin:0;
  color:#f1f8fb!important;
  font-size:clamp(.95rem,3vw,1.2rem);
  font-weight:900;
  letter-spacing:-.025em;
  line-height:1.25;
}

body.home-page .home-managed-guardrail ul{
  margin:.8rem 0 0;
  padding:0;
  display:grid;
  gap:.42rem;
  list-style:none;
}

body.home-page .home-managed-guardrail li{
  position:relative;
  padding-left:1rem;
  color:#b8cbd8!important;
  font-size:.63rem;
  line-height:1.46;
}

body.home-page .home-managed-guardrail li::before{
  position:absolute;
  top:.48em;
  left:.08rem;
  width:.38rem;
  height:.38rem;
  border-radius:50%;
  content:"";
  background:#6fdfbd;
}

body.home-page .home-managed-guardrail small{
  margin-top:.72rem;
  display:block;
  color:#7896aa!important;
  font-size:.54rem;
  line-height:1.5;
}

body.home-page .home-managed-actions,
body.home-page .home-how-actions{
  margin-top:1.25rem;
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}

body.home-page .home-how-launch{
  margin-top:clamp(2rem,5vw,3.25rem);
  display:grid;
  gap:1rem;
}

body.home-page .home-how-timeline{
  margin:0;
  padding:clamp(.85rem,3vw,1.15rem);
  overflow:hidden;
  display:grid;
  border:1px solid rgba(160,215,238,.16);
  border-radius:clamp(20px,4vw,28px);
  background:rgba(255,255,255,.035);
  box-shadow:0 28px 68px rgba(0,0,0,.2);
  list-style:none;
}

body.home-page .home-how-milestone{
  position:relative;
  min-width:0;
  padding:.35rem 0 1.15rem 3.25rem;
}

body.home-page .home-how-milestone:last-child{
  padding-bottom:.35rem;
}

body.home-page .home-how-milestone:not(:last-child)::before{
  position:absolute;
  top:2.8rem;
  bottom:.1rem;
  left:1.28rem;
  width:1px;
  content:"";
  background:linear-gradient(180deg,rgba(102,220,225,.42),rgba(125,113,234,.18));
}

body.home-page .home-how-milestone__marker{
  position:absolute;
  top:.2rem;
  left:0;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(103,220,225,.2);
  border-radius:14px;
  background:linear-gradient(145deg,rgba(62,163,205,.18),rgba(112,94,219,.2));
  color:#70dce2;
  box-shadow:0 0 0 5px rgba(93,203,216,.055);
}

body.home-page .home-how-milestone__marker .icon{
  width:1.12rem;
  height:1.12rem;
}

body.home-page .home-how-milestone header{
  display:grid;
  gap:.16rem;
}

body.home-page .home-how-milestone header small{
  color:#6bdce1!important;
  font-size:.57rem;
  font-weight:900;
  letter-spacing:.075em;
  text-transform:uppercase;
}

body.home-page .home-how-milestone header strong{
  color:#f2f8fb!important;
  font-size:clamp(.92rem,3vw,1.12rem);
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.26;
}

body.home-page .home-how-milestone > div > p{
  margin:.48rem 0 0;
  color:#9db2c3!important;
  font-size:.67rem;
  line-height:1.55;
}

body.home-page .home-how-milestone ul{
  margin:.65rem 0 0;
  padding:0;
  display:grid;
  gap:.36rem;
  list-style:none;
}

body.home-page .home-how-milestone li{
  position:relative;
  padding-left:1rem;
  color:#b8c9d6!important;
  font-size:.61rem;
  line-height:1.42;
}

body.home-page .home-how-milestone li::before{
  position:absolute;
  top:.48em;
  left:.08rem;
  width:.38rem;
  height:.38rem;
  border-radius:50%;
  content:"";
  background:#69dadd;
}

body.home-page .home-how-handover{
  margin:0;
  overflow:hidden;
  border:1px solid rgba(160,215,238,.18);
  border-radius:clamp(20px,4vw,28px);
  background:
    radial-gradient(circle at 92% 6%,rgba(116,104,230,.18),transparent 14rem),
    linear-gradient(145deg,#0b2136,#102e47);
  box-shadow:0 30px 74px rgba(0,0,0,.24);
}

body.home-page .home-how-handover > figcaption{
  border-bottom-color:rgba(160,215,238,.13);
  background:rgba(255,255,255,.025);
}

body.home-page .home-how-handover > figcaption > span{
  color:#deedf5;
}

body.home-page .home-how-handover > figcaption .icon{
  color:#6bdce1;
}

body.home-page .home-how-handover > figcaption small{
  color:#819caf!important;
}

body.home-page .home-how-handover__call{
  margin:clamp(.85rem,3vw,1.15rem);
  padding:.8rem;
  display:grid;
  grid-template-columns:40px minmax(0,1fr);
  align-items:center;
  gap:.68rem;
  border:1px solid rgba(104,218,224,.16);
  border-radius:15px 15px 15px 4px;
  background:rgba(104,218,224,.065);
}

body.home-page .home-how-handover__call-icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(104,218,224,.12);
  color:#6bdce1;
}

body.home-page .home-how-handover__call-icon .icon{
  width:1.1rem;
  height:1.1rem;
}

body.home-page .home-how-handover__call p{
  min-width:0;
  margin:0;
  display:grid;
  gap:.12rem;
}

body.home-page .home-how-handover__call small{
  color:#6bdce1!important;
  font-size:.51rem;
  font-weight:900;
  letter-spacing:.065em;
  text-transform:uppercase;
}

body.home-page .home-how-handover__call strong{
  color:#eef7fb!important;
  font-size:.68rem;
  line-height:1.45;
}

body.home-page .home-how-handover__capture{
  margin:0 clamp(.85rem,3vw,1.15rem);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.42rem;
}

body.home-page .home-how-handover__capture div{
  min-width:0;
  padding:.58rem;
  border:1px solid rgba(160,215,238,.1);
  border-radius:10px;
  background:rgba(255,255,255,.03);
}

body.home-page .home-how-handover__capture dt{
  color:#738da3;
  font-size:.47rem;
  font-weight:900;
  letter-spacing:.055em;
  text-transform:uppercase;
}

body.home-page .home-how-handover__capture dd{
  overflow:hidden;
  margin:.13rem 0 0;
  color:#e5eff5;
  font-size:.56rem;
  font-weight:800;
  line-height:1.3;
  text-overflow:ellipsis;
}

body.home-page .home-how-handover__result{
  margin:clamp(.85rem,3vw,1.15rem);
  padding:.85rem;
  border:1px solid rgba(105,224,188,.15);
  border-radius:15px;
  background:rgba(105,224,188,.055);
}

body.home-page .home-how-handover__result header{
  display:grid;
  grid-template-columns:36px minmax(0,1fr);
  align-items:center;
  gap:.62rem;
}

body.home-page .home-how-handover__result header > .icon{
  width:36px;
  height:36px;
  padding:.55rem;
  border-radius:11px;
  background:rgba(105,224,188,.11);
  color:#70dfbc;
}

body.home-page .home-how-handover__result header p{
  margin:0;
  display:grid;
  gap:.1rem;
}

body.home-page .home-how-handover__result header small{
  color:#70d5b5!important;
  font-size:.49rem;
  font-weight:900;
  letter-spacing:.065em;
  text-transform:uppercase;
}

body.home-page .home-how-handover__result header strong{
  color:#edf8f4!important;
  font-size:.65rem;
  line-height:1.35;
}

body.home-page .home-how-handover__result ul{
  margin:.72rem 0 0;
  padding:.68rem 0 0;
  display:grid;
  gap:.46rem;
  border-top:1px solid rgba(105,224,188,.1);
  list-style:none;
}

body.home-page .home-how-handover__result li{
  display:flex;
  align-items:flex-start;
  gap:.48rem;
  color:#a8c7bc!important;
  font-size:.58rem;
  line-height:1.4;
}

body.home-page .home-how-handover__result li > .icon{
  width:.85rem;
  height:.85rem;
  flex:0 0 .85rem;
  margin-top:.08rem;
  color:#70dfbc;
}

body.home-page .home-how-handover__note{
  margin:0;
  padding:.72rem clamp(.85rem,3vw,1.15rem);
  display:flex;
  align-items:flex-start;
  gap:.45rem;
  border-top:1px solid rgba(160,215,238,.1);
  background:rgba(255,255,255,.02);
  color:#7892a7!important;
  font-size:.54rem;
  line-height:1.45;
}

body.home-page .home-how-handover__note .icon{
  width:.85rem;
  height:.85rem;
  flex:0 0 .85rem;
  margin-top:.08rem;
}

@media (min-width:720px){
  body.home-page .home-managed-lanes{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.home-page .home-managed-lane + .home-managed-lane{
    border-top:0;
  }

  body.home-page .home-managed-lane:nth-child(even){
    border-left:1px solid rgba(32,78,126,.1);
  }

  body.home-page .home-managed-lane:nth-child(n+3){
    border-top:1px solid rgba(32,78,126,.1);
  }

  body.home-page .home-managed-guardrail{
    grid-template-columns:48px minmax(0,1fr);
  }

  body.home-page .home-managed-guardrail ul{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1rem;
  }
}

@media (min-width:840px){
  body.home-page .home-managed-intro,
  body.home-page .home-how-intro{
    grid-template-columns:minmax(0,1.08fr) minmax(280px,.72fr);
    align-items:end;
    gap:clamp(2rem,6vw,5rem);
  }
}

@media (min-width:980px){
  body.home-page .home-how-launch{
    grid-template-columns:minmax(0,.92fr) minmax(390px,1.08fr);
    align-items:stretch;
  }

  body.home-page .home-how-timeline,
  body.home-page .home-how-handover{
    min-height:100%;
  }
}

@media (min-width:1120px){
  body.home-page .home-managed-lanes{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  body.home-page .home-managed-lane:nth-child(n+3){
    border-top:0;
  }

  body.home-page .home-managed-lane + .home-managed-lane{
    border-left:1px solid rgba(32,78,126,.1);
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page .home-managed-map *,
  body.home-page .home-how-timeline *,
  body.home-page .home-how-handover *{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

@media (prefers-contrast:more){
  body.home-page .home-managed-map,
  body.home-page .home-managed-lane,
  body.home-page .home-managed-guardrail,
  body.home-page .home-how-timeline,
  body.home-page .home-how-handover,
  body.home-page .home-how-handover__call,
  body.home-page .home-how-handover__result{
    border-color:currentColor!important;
  }
}

@media (forced-colors:active){
  body.home-page .home-managed-map,
  body.home-page .home-managed-map > figcaption,
  body.home-page .home-managed-lane,
  body.home-page .home-managed-guardrail,
  body.home-page .home-how-timeline,
  body.home-page .home-how-milestone,
  body.home-page .home-how-handover,
  body.home-page .home-how-handover > figcaption,
  body.home-page .home-how-handover__call,
  body.home-page .home-how-handover__capture div,
  body.home-page .home-how-handover__result,
  body.home-page .home-how-handover__note{
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
    box-shadow:none!important;
  }

  body.home-page .home-managed-lane__icon,
  body.home-page .home-managed-guardrail__icon,
  body.home-page .home-how-milestone__marker,
  body.home-page .home-how-handover__call-icon{
    border:2px solid Highlight;
    background:Canvas!important;
    color:CanvasText!important;
  }
}

/* Premium homepage pricing estimator. */
body.home-page #pricing{
  padding-block:clamp(3.75rem,7vw,5.75rem);
}

body.home-page .home-pricing-intro{
  display:grid;
  gap:1.25rem;
}

body.home-page .home-pricing-intro .section-heading{
  max-width:850px;
  font-size:clamp(2rem,6.4vw,3.55rem);
}

body.home-page .home-pricing-intro .section-sub{
  max-width:680px;
  margin:.85rem 0 0;
}

body.home-page .home-pricing-rate{
  width:100%;
  max-width:390px;
  padding:.9rem;
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  align-items:center;
  gap:.72rem;
  border:1px solid rgba(108,224,190,.18);
  border-radius:18px;
  background:
    radial-gradient(circle at 92% 8%,rgba(109,224,190,.12),transparent 10rem),
    rgba(255,255,255,.045);
  box-shadow:0 18px 46px rgba(0,0,0,.16);
}

body.home-page .home-pricing-rate__icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(145deg,rgba(82,207,210,.2),rgba(111,91,218,.22));
  color:#6fe0c0;
}

body.home-page .home-pricing-rate__icon .icon{
  width:1.22rem;
  height:1.22rem;
}

body.home-page .home-pricing-rate p{
  margin:0;
  display:grid;
  gap:.08rem;
}

body.home-page .home-pricing-rate small{
  color:#6fdcbc!important;
  font-size:.52rem;
  font-weight:900;
  letter-spacing:.075em;
  text-transform:uppercase;
}

body.home-page .home-pricing-rate strong{
  color:#f3f9fc!important;
  font-size:1rem;
  line-height:1.25;
}

body.home-page .home-pricing-rate p > span{
  color:#829db0;
  font-size:.58rem;
  font-weight:750;
}

body.home-page .home-pricing-estimator{
  margin-top:clamp(2rem,5vw,3.25rem);
  overflow:hidden;
  border:1px solid rgba(160,215,238,.19);
  border-radius:clamp(22px,4vw,30px);
  background:
    radial-gradient(circle at 95% 4%,rgba(112,96,224,.14),transparent 26rem),
    linear-gradient(145deg,#0a1c2f,#102b45);
  box-shadow:0 36px 92px rgba(0,0,0,.3);
}

body.home-page .home-pricing-estimator__header{
  padding:clamp(.9rem,3.5vw,1.25rem);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:.75rem 1.25rem;
  border-bottom:1px solid rgba(160,215,238,.13);
  background:rgba(255,255,255,.025);
}

body.home-page .home-pricing-estimator__header > div{
  min-width:0;
}

body.home-page .home-pricing-estimator__header p{
  margin:0 0 .16rem;
  display:flex;
  align-items:center;
  gap:.42rem;
  color:#6fdce1!important;
  font-size:.55rem;
  font-weight:900;
  letter-spacing:.075em;
  text-transform:uppercase;
}

body.home-page .home-pricing-estimator__header p .icon{
  width:.95rem;
  height:.95rem;
}

body.home-page .home-pricing-estimator__header h3{
  margin:0;
  color:#f2f8fb!important;
  font-size:clamp(1.05rem,3.5vw,1.42rem);
  font-weight:900;
  letter-spacing:-.03em;
  line-height:1.2;
}

body.home-page .home-pricing-estimator__header > span{
  padding:.42rem .62rem;
  border:1px solid rgba(109,224,190,.17);
  border-radius:999px;
  background:rgba(109,224,190,.07);
  color:#71dfbf;
  font-size:.56rem;
  font-weight:900;
}

body.home-page .home-pricing-form,
body.home-page .home-pricing-form fieldset{
  min-width:0;
  margin:0;
  padding:0;
  border:0;
}

body.home-page .home-pricing-workspace{
  display:grid;
}

body.home-page .home-pricing-controls{
  min-width:0;
  padding:clamp(.85rem,3vw,1.2rem);
  display:grid;
  gap:1rem;
}

body.home-page .home-pricing-controls legend{
  width:100%;
  margin:0;
  padding:0;
  color:#edf6fa;
  font-size:.72rem;
  font-weight:900;
  line-height:1.3;
}

body.home-page .home-pricing-presets > p{
  margin:.25rem 0 .7rem;
  color:#839daf!important;
  font-size:.58rem;
  line-height:1.45;
}

body.home-page .home-pricing-presets__grid{
  display:grid;
  gap:.48rem;
}

body.home-page .home-pricing-preset{
  width:100%;
  min-height:72px;
  padding:.65rem .72rem;
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  align-items:center;
  gap:.62rem;
  border:1px solid rgba(160,215,238,.12);
  border-radius:14px;
  background:rgba(255,255,255,.035);
  color:#e7f2f8;
  text-align:left;
  transition:border-color .2s ease,background-color .2s ease,box-shadow .2s ease,transform .2s ease;
}

body.home-page .home-pricing-preset > .icon{
  width:38px;
  height:38px;
  padding:.62rem;
  border-radius:12px;
  background:rgba(97,212,220,.1);
  color:#6bdce1;
}

body.home-page .home-pricing-preset > span{
  min-width:0;
  display:grid;
  gap:.07rem;
}

body.home-page .home-pricing-preset small{
  color:#6bdce1!important;
  font-size:.49rem;
  font-weight:900;
  letter-spacing:.075em;
  text-transform:uppercase;
}

body.home-page .home-pricing-preset strong{
  color:#eef7fb!important;
  font-size:.68rem;
  line-height:1.25;
}

body.home-page .home-pricing-preset em{
  color:#7f99ac;
  font-size:.52rem;
  font-style:normal;
  font-weight:700;
}

body.home-page .home-pricing-preset[aria-pressed="true"]{
  border-color:rgba(108,224,190,.38);
  background:linear-gradient(145deg,rgba(48,170,171,.13),rgba(106,92,217,.1));
  box-shadow:0 12px 30px rgba(0,0,0,.13),inset 0 0 0 1px rgba(108,224,190,.08);
}

body.home-page .home-pricing-preset[aria-pressed="true"] > .icon{
  background:rgba(108,224,190,.15);
  color:#74e1c1;
}

body.home-page .home-pricing-preset:focus-visible,
body.home-page .home-pricing-form input:focus-visible,
body.home-page .home-pricing-summary__cta:focus-visible{
  outline:3px solid #74dfe3;
  outline-offset:3px;
}

body.home-page .home-pricing-custom,
body.home-page .home-pricing-addons{
  padding-top:1rem!important;
  border-top:1px solid rgba(160,215,238,.1)!important;
}

body.home-page .home-pricing-custom__grid{
  margin-top:.7rem;
  display:grid;
  gap:.65rem;
}

body.home-page .home-pricing-field{
  min-width:0;
}

body.home-page .home-pricing-field > label,
body.home-page .home-pricing-recipient label{
  margin-bottom:.32rem;
  display:block;
  color:#dceaf2;
  font-size:.58rem;
  font-weight:850;
  line-height:1.35;
}

body.home-page .home-pricing-input{
  min-height:48px;
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  align-items:center;
  overflow:hidden;
  border:1px solid rgba(160,215,238,.14);
  border-radius:12px;
  background:rgba(255,255,255,.045);
}

body.home-page .home-pricing-input > .icon{
  width:42px;
  height:1rem;
  padding-inline:13px;
  color:#68d7df;
}

body.home-page .home-pricing-input input,
body.home-page .home-pricing-recipient input{
  width:100%;
  min-width:0;
  min-height:46px;
  border:0;
  border-left:1px solid rgba(160,215,238,.1);
  border-radius:0;
  background:transparent;
  color:#f2f8fb;
  font-size:.78rem;
  font-weight:750;
  box-shadow:none;
}

body.home-page .home-pricing-input input{
  padding:.65rem .72rem;
}

body.home-page .home-pricing-input input::placeholder{
  color:#708a9f;
  opacity:1;
}

body.home-page .home-pricing-field > small{
  margin-top:.3rem;
  display:block;
  color:#718b9f!important;
  font-size:.51rem;
  line-height:1.4;
}

body.home-page .home-pricing-addons{
  display:grid;
  gap:.55rem;
}

body.home-page .home-pricing-addons legend{
  margin-bottom:.68rem;
}

body.home-page .home-pricing-addon{
  min-width:0;
  padding:.72rem;
  border:1px solid rgba(160,215,238,.1);
  border-radius:13px;
  background:rgba(255,255,255,.025);
}

body.home-page .home-pricing-addon__check{
  display:grid;
  grid-template-columns:20px minmax(0,1fr);
  align-items:start;
  gap:.55rem;
}

body.home-page .home-pricing-addon__check input{
  width:18px;
  height:18px;
  margin:.05rem 0 0;
  accent-color:#65d7d9;
}

body.home-page .home-pricing-addon__check label{
  min-width:0;
  display:grid;
  gap:.08rem;
  cursor:pointer;
}

body.home-page .home-pricing-addon__check strong{
  color:#edf6fa!important;
  font-size:.66rem;
  line-height:1.3;
}

body.home-page .home-pricing-addon__check label > span{
  color:#819caf;
  font-size:.53rem;
  line-height:1.35;
}

body.home-page .home-pricing-addon > p{
  margin:.52rem 0 0 1.55rem;
  color:#7892a6!important;
  font-size:.52rem;
  line-height:1.45;
}

body.home-page .home-pricing-recipient{
  margin:.62rem 0 0 1.55rem;
  display:grid;
  grid-template-columns:minmax(0,1fr) 72px;
  align-items:center;
  gap:.55rem;
}

body.home-page .home-pricing-recipient label{
  margin:0;
}

body.home-page .home-pricing-recipient input{
  min-height:38px;
  padding:.4rem .55rem;
  border:1px solid rgba(160,215,238,.14);
  border-radius:9px;
  background:rgba(255,255,255,.045);
  text-align:center;
}

body.home-page .home-pricing-recipient input:disabled{
  opacity:.48;
  cursor:not-allowed;
}

body.home-page .home-pricing-summary{
  min-width:0;
  padding:clamp(.85rem,3vw,1.2rem);
  border-top:1px solid rgba(160,215,238,.13);
  background:
    radial-gradient(circle at 90% 8%,rgba(107,224,190,.13),transparent 16rem),
    rgba(4,18,31,.4);
}

body.home-page .home-pricing-summary > header{
  padding-bottom:.9rem;
  display:grid;
  gap:.1rem;
  border-bottom:1px solid rgba(160,215,238,.11);
}

body.home-page .home-pricing-summary > header p{
  margin:0;
  color:#70dfbf!important;
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.075em;
  text-transform:uppercase;
}

body.home-page .home-pricing-summary > header > strong{
  color:#f4fbf8!important;
  font-size:clamp(2.2rem,10vw,3.65rem);
  font-weight:950;
  letter-spacing:-.055em;
  line-height:1;
}

body.home-page .home-pricing-summary > header small{
  color:#829e92!important;
  font-size:.55rem;
}

body.home-page .home-pricing-summary__primary{
  margin:.8rem 0 0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.42rem;
}

body.home-page .home-pricing-summary__primary div{
  min-width:0;
  padding:.58rem;
  border:1px solid rgba(160,215,238,.1);
  border-radius:10px;
  background:rgba(255,255,255,.028);
}

body.home-page .home-pricing-summary dt{
  color:#738fa3;
  font-size:.47rem;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}

body.home-page .home-pricing-summary dd{
  overflow:hidden;
  margin:.16rem 0 0;
  color:#edf6fa;
  font-size:.72rem;
  font-weight:900;
  line-height:1.25;
  text-overflow:ellipsis;
}

body.home-page .home-pricing-summary__primary small{
  margin-top:.1rem;
  display:block;
  color:#718b9f!important;
  font-size:.45rem;
  line-height:1.3;
}

body.home-page .home-pricing-summary__optional{
  margin-top:.48rem;
  padding:.58rem;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.65rem;
  border:1px solid rgba(160,215,238,.09);
  border-radius:10px;
  background:rgba(255,255,255,.02);
}

body.home-page .home-pricing-summary__optional p{
  min-width:0;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;
  color:#7893a6!important;
  font-size:.52rem;
}

body.home-page .home-pricing-summary__optional p + p{
  padding-left:.65rem;
  border-left:1px solid rgba(160,215,238,.09);
}

body.home-page .home-pricing-summary__optional strong{
  color:#dcebf2!important;
  font-size:.61rem;
}

body.home-page .home-pricing-included{
  margin-top:.75rem;
  padding:.72rem;
  border:1px solid rgba(105,224,188,.11);
  border-radius:12px;
  background:rgba(105,224,188,.04);
}

body.home-page .home-pricing-included h4{
  margin:0;
  display:flex;
  align-items:center;
  gap:.42rem;
  color:#e9f7f2!important;
  font-size:.62rem;
  font-weight:900;
}

body.home-page .home-pricing-included h4 .icon{
  width:.95rem;
  height:.95rem;
  color:#70dfbd;
}

body.home-page .home-pricing-included ul{
  margin:.58rem 0 0;
  padding:0;
  display:grid;
  gap:.32rem;
  list-style:none;
}

body.home-page .home-pricing-included li{
  position:relative;
  padding-left:.9rem;
  color:#9dbbad!important;
  font-size:.52rem;
  line-height:1.4;
}

body.home-page .home-pricing-included li::before{
  position:absolute;
  top:.45em;
  left:.08rem;
  width:.36rem;
  height:.36rem;
  border-radius:50%;
  content:"";
  background:#70dfbd;
}

body.home-page .home-pricing-credit{
  margin:.68rem 0 0;
  padding:.65rem .72rem;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.65rem;
  border:1px solid rgba(160,215,238,.09);
  border-radius:11px;
}

body.home-page .home-pricing-credit div + div{
  padding-left:.65rem;
  border-left:1px solid rgba(160,215,238,.09);
}

body.home-page .home-pricing-credit dd{
  font-size:.65rem;
}

body.home-page .home-pricing-notes{
  margin:.68rem 0 0;
  padding:0;
  display:grid;
  gap:.36rem;
  list-style:none;
}

body.home-page .home-pricing-notes li{
  position:relative;
  padding-left:.88rem;
  color:#718b9f!important;
  font-size:.5rem;
  line-height:1.45;
}

body.home-page .home-pricing-notes li::before{
  position:absolute;
  top:.55em;
  left:.12rem;
  width:.25rem;
  height:.25rem;
  border-radius:50%;
  content:"";
  background:#627e93;
}

body.home-page .home-pricing-summary__cta{
  width:100%;
  min-height:46px;
  margin-top:.8rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

@media (min-width:650px){
  body.home-page .home-pricing-presets__grid,
  body.home-page .home-pricing-custom__grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page .home-pricing-addons{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.home-page .home-pricing-addons legend{
    grid-column:1 / -1;
  }
}

@media (min-width:840px){
  body.home-page .home-pricing-intro{
    grid-template-columns:minmax(0,1.08fr) minmax(290px,.52fr);
    align-items:end;
    gap:clamp(2rem,6vw,5rem);
  }

  body.home-page .home-pricing-rate{
    justify-self:end;
  }
}

@media (min-width:1040px){
  body.home-page .home-pricing-workspace{
    grid-template-columns:minmax(0,1.18fr) minmax(330px,.82fr);
    align-items:start;
  }

  body.home-page .home-pricing-summary{
    position:sticky;
    top:5.5rem;
    border-top:0;
    border-left:1px solid rgba(160,215,238,.13);
  }
}

@media (hover:hover) and (pointer:fine){
  body.home-page .home-pricing-preset:not([aria-pressed="true"]):hover{
    border-color:rgba(107,220,226,.25);
    background:rgba(255,255,255,.055);
    transform:translateY(-2px);
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page .home-pricing-estimator *,
  body.home-page .home-pricing-preset{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

@media (prefers-contrast:more){
  body.home-page .home-pricing-rate,
  body.home-page .home-pricing-estimator,
  body.home-page .home-pricing-preset,
  body.home-page .home-pricing-input,
  body.home-page .home-pricing-addon,
  body.home-page .home-pricing-summary,
  body.home-page .home-pricing-included{
    border-color:currentColor!important;
  }
}

@media (forced-colors:active){
  body.home-page .home-pricing-rate,
  body.home-page .home-pricing-estimator,
  body.home-page .home-pricing-estimator__header,
  body.home-page .home-pricing-preset,
  body.home-page .home-pricing-input,
  body.home-page .home-pricing-addon,
  body.home-page .home-pricing-recipient input,
  body.home-page .home-pricing-summary,
  body.home-page .home-pricing-summary__primary div,
  body.home-page .home-pricing-summary__optional,
  body.home-page .home-pricing-included,
  body.home-page .home-pricing-credit{
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
    box-shadow:none!important;
  }

  body.home-page .home-pricing-preset[aria-pressed="true"]{
    outline:3px solid Highlight;
    outline-offset:-3px;
  }

  body.home-page .home-pricing-rate__icon,
  body.home-page .home-pricing-preset > .icon{
    border:2px solid Highlight;
    background:Canvas!important;
    color:CanvasText!important;
  }
}

/* Representative business call-answering scenario. */
body.home-page #business-answering{
  padding-block:clamp(3.75rem,7vw,5.75rem);
}

body.home-page .home-answering-intro{
  display:grid;
  gap:1rem;
}

body.home-page .home-answering-intro .section-heading{
  max-width:860px;
  font-size:clamp(2rem,6.4vw,3.55rem);
}

body.home-page .home-answering-intro .section-sub{
  max-width:680px;
  margin:0;
}

body.home-page .home-answering-scenario{
  margin:clamp(2rem,5vw,3.25rem) 0 0;
  overflow:hidden;
  border:1px solid rgba(32,78,126,.14);
  border-radius:clamp(22px,4vw,30px);
  background:#fff;
  box-shadow:0 30px 78px rgba(21,62,105,.12);
}

body.home-page .home-answering-scenario > figcaption{
  min-height:52px;
  padding:.75rem clamp(.85rem,3vw,1.2rem);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:.45rem 1rem;
  border-bottom:1px solid rgba(32,78,126,.1);
  background:#f2f6fa;
}

body.home-page .home-answering-scenario > figcaption > span{
  display:flex;
  align-items:center;
  gap:.45rem;
  color:var(--hp-ink-soft);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.055em;
  text-transform:uppercase;
}

body.home-page .home-answering-scenario > figcaption .icon{
  width:1rem;
  height:1rem;
  color:#286fc8;
}

body.home-page .home-answering-scenario > figcaption small{
  color:#687f96!important;
  font-size:.58rem;
  font-weight:750;
}

body.home-page .home-answering-scenario__case{
  padding:clamp(.9rem,3vw,1.15rem);
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  align-items:center;
  gap:.72rem;
  border-bottom:1px solid rgba(32,78,126,.1);
  background:
    radial-gradient(circle at 90% 10%,rgba(43,139,151,.09),transparent 15rem),
    #fff;
}

body.home-page .home-answering-scenario__case-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(145deg,#e1f5f5,#ebe9fb);
  color:#287a98;
}

body.home-page .home-answering-scenario__case-icon .icon{
  width:1.2rem;
  height:1.2rem;
}

body.home-page .home-answering-scenario__case > div{
  min-width:0;
}

body.home-page .home-answering-scenario__case p{
  margin:0 0 .12rem;
  color:#2e8090!important;
  font-size:.53rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-answering-scenario__case h3{
  margin:0;
  color:var(--hp-ink)!important;
  font-size:clamp(.92rem,3vw,1.2rem);
  font-weight:900;
  letter-spacing:-.025em;
  line-height:1.28;
}

body.home-page .home-answering-scenario__case > span:last-child{
  grid-column:2;
  width:max-content;
  padding:.28rem .48rem;
  border:1px solid rgba(36,139,109,.14);
  border-radius:999px;
  background:rgba(36,139,109,.07);
  color:#21806a;
  font-size:.5rem;
  font-weight:900;
}

body.home-page .home-answering-path{
  margin:0;
  padding:0;
  display:grid;
  border-bottom:1px solid rgba(32,78,126,.1);
  background:#f8fafc;
  list-style:none;
}

body.home-page .home-answering-path li{
  min-width:0;
  padding:.82rem;
  display:grid;
  grid-template-columns:36px minmax(0,1fr);
  align-items:center;
  gap:.58rem;
}

body.home-page .home-answering-path li + li{
  border-top:1px solid rgba(32,78,126,.09);
}

body.home-page .home-answering-path__icon{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:linear-gradient(145deg,rgba(40,122,152,.1),rgba(109,92,205,.1));
  color:#3177af;
}

body.home-page .home-answering-path__icon .icon{
  width:1rem;
  height:1rem;
}

body.home-page .home-answering-path p{
  margin:0;
  display:grid;
  gap:.07rem;
}

body.home-page .home-answering-path small{
  color:#347b9c!important;
  font-size:.49rem;
  font-weight:900;
  letter-spacing:.065em;
  text-transform:uppercase;
}

body.home-page .home-answering-path strong{
  color:var(--hp-ink-soft)!important;
  font-size:.61rem;
  line-height:1.35;
}

body.home-page .home-answering-views{
  display:grid;
}

body.home-page .home-answering-caller,
body.home-page .home-answering-team{
  min-width:0;
  padding:clamp(.9rem,3vw,1.25rem);
}

body.home-page .home-answering-caller{
  background:
    radial-gradient(circle at 94% 6%,rgba(45,153,177,.09),transparent 15rem),
    #f6fbfc;
}

body.home-page .home-answering-team{
  border-top:1px solid rgba(32,78,126,.1);
  background:
    radial-gradient(circle at 92% 7%,rgba(112,96,224,.17),transparent 17rem),
    linear-gradient(145deg,#0c2136,#102f49);
}

body.home-page .home-answering-caller > header,
body.home-page .home-answering-team > header{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  align-items:center;
  gap:.68rem;
}

body.home-page .home-answering-view__icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:rgba(40,128,153,.09);
  color:#2d8098;
}

body.home-page .home-answering-team .home-answering-view__icon{
  background:rgba(104,217,223,.1);
  color:#6bd9df;
}

body.home-page .home-answering-view__icon .icon{
  width:1.12rem;
  height:1.12rem;
}

body.home-page .home-answering-caller > header > div,
body.home-page .home-answering-team > header > div{
  min-width:0;
}

body.home-page .home-answering-caller > header p,
body.home-page .home-answering-team > header p{
  margin:0 0 .1rem;
  color:#2e8090!important;
  font-size:.51rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-answering-team > header p{
  color:#6bd9df!important;
}

body.home-page .home-answering-caller > header h3,
body.home-page .home-answering-team > header h3{
  margin:0;
  color:var(--hp-ink)!important;
  font-size:clamp(.9rem,3vw,1.1rem);
  font-weight:900;
  letter-spacing:-.025em;
  line-height:1.25;
}

body.home-page .home-answering-team > header h3{
  color:#f1f8fb!important;
}

body.home-page .home-answering-team > header > span:last-child{
  grid-column:2;
  width:max-content;
  padding:.25rem .42rem;
  border-radius:999px;
  background:rgba(106,224,188,.09);
  color:#71dfbd;
  font-size:.48rem;
  font-weight:900;
}

body.home-page .home-answering-dialogue{
  margin-top:.9rem;
  display:grid;
  gap:.55rem;
}

body.home-page .home-answering-dialogue blockquote{
  width:92%;
  margin:0;
  padding:.68rem .74rem;
  display:grid;
  gap:.18rem;
  border:1px solid rgba(40,122,152,.11);
  border-radius:13px 13px 13px 4px;
  background:#fff;
  color:var(--hp-ink-soft);
  font-size:.64rem;
  font-weight:700;
  line-height:1.48;
}

body.home-page .home-answering-dialogue blockquote:nth-child(2){
  margin-left:auto;
  border-color:rgba(77,102,199,.14);
  border-radius:13px 13px 4px 13px;
  background:#eef2fb;
}

body.home-page .home-answering-dialogue small{
  color:#347c98!important;
  font-size:.47rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body.home-page .home-answering-caller__confirmation{
  margin-top:.75rem;
  padding:.7rem;
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  align-items:start;
  gap:.58rem;
  border:1px solid rgba(37,139,109,.12);
  border-radius:13px;
  background:rgba(37,139,109,.045);
}

body.home-page .home-answering-caller__confirmation > .icon{
  width:34px;
  height:34px;
  padding:.48rem;
  border-radius:10px;
  background:rgba(37,139,109,.09);
  color:#24876d;
}

body.home-page .home-answering-caller__confirmation p,
body.home-page .home-answering-team__action p{
  margin:0;
  display:grid;
  gap:.08rem;
}

body.home-page .home-answering-caller__confirmation small,
body.home-page .home-answering-team__action small{
  color:#24806a!important;
  font-size:.47rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body.home-page .home-answering-caller__confirmation strong{
  color:var(--hp-ink)!important;
  font-size:.61rem;
  line-height:1.35;
}

body.home-page .home-answering-caller__confirmation p > span{
  color:var(--hp-copy);
  font-size:.54rem;
  line-height:1.42;
}

body.home-page .home-answering-team__summary{
  margin:.9rem 0 0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.42rem;
}

body.home-page .home-answering-team__summary div{
  min-width:0;
  padding:.58rem;
  border:1px solid rgba(160,215,238,.1);
  border-radius:10px;
  background:rgba(255,255,255,.03);
}

body.home-page .home-answering-team__summary dt{
  color:#7893a7;
  font-size:.46rem;
  font-weight:900;
  letter-spacing:.055em;
  text-transform:uppercase;
}

body.home-page .home-answering-team__summary dd{
  overflow:hidden;
  margin:.12rem 0 0;
  color:#e8f2f7;
  font-size:.57rem;
  font-weight:800;
  line-height:1.35;
  text-overflow:ellipsis;
}

body.home-page .home-answering-team__action{
  margin-top:.65rem;
  padding:.7rem;
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  align-items:start;
  gap:.58rem;
  border:1px solid rgba(106,224,188,.13);
  border-radius:12px;
  background:rgba(106,224,188,.05);
}

body.home-page .home-answering-team__action > .icon{
  width:34px;
  height:34px;
  padding:.48rem;
  border-radius:10px;
  background:rgba(106,224,188,.1);
  color:#71dfbd;
}

body.home-page .home-answering-team__action small{
  color:#70d7b7!important;
}

body.home-page .home-answering-team__action strong{
  color:#edf8f4!important;
  font-size:.61rem;
  line-height:1.35;
}

body.home-page .home-answering-team__action p > span{
  color:#8faea3;
  font-size:.53rem;
  line-height:1.42;
}

body.home-page .home-answering-team__outputs{
  margin:.65rem 0 0;
  padding:0;
  display:grid;
  gap:.42rem;
  list-style:none;
}

body.home-page .home-answering-team__outputs li{
  min-width:0;
  padding:.55rem;
  display:grid;
  grid-template-columns:30px minmax(0,1fr);
  align-items:center;
  gap:.5rem;
  border:1px solid rgba(160,215,238,.09);
  border-radius:10px;
  background:rgba(255,255,255,.025);
}

body.home-page .home-answering-team__outputs li > .icon{
  width:30px!important;
  height:30px!important;
  padding:.43rem;
  border-radius:9px;
  background:rgba(104,217,223,.08);
  color:#6bd9df!important;
}

body.home-page .home-answering-team__outputs li > span{
  min-width:0;
  display:grid;
  gap:.06rem;
}

body.home-page .home-answering-team__outputs strong{
  color:#eaf4f8!important;
  font-size:.56rem;
  line-height:1.25;
}

body.home-page .home-answering-team__outputs small{
  color:#7893a7!important;
  font-size:.47rem;
  line-height:1.3;
}

body.home-page .home-answering-config{
  padding:clamp(.9rem,3vw,1.15rem);
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  align-items:start;
  gap:.72rem;
  border-top:1px solid rgba(32,78,126,.11);
  background:#f3f7f9;
}

body.home-page .home-answering-config__icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(145deg,#dff4ed,#e8edf9);
  color:#23836d;
}

body.home-page .home-answering-config__icon .icon{
  width:1.18rem;
  height:1.18rem;
}

body.home-page .home-answering-config > div > p:first-child{
  margin:0 0 .1rem;
  color:#287b70!important;
  font-size:.51rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

body.home-page .home-answering-config h3{
  margin:0;
  color:var(--hp-ink)!important;
  font-size:clamp(.9rem,3vw,1.12rem);
  font-weight:900;
  letter-spacing:-.025em;
  line-height:1.28;
}

body.home-page .home-answering-config > div > p:not(:first-child){
  margin:.52rem 0 0;
  color:var(--hp-copy)!important;
  font-size:.62rem;
  line-height:1.52;
}

body.home-page .home-answering-config ul{
  margin:.65rem 0 0;
  padding:0;
  display:grid;
  gap:.38rem;
  list-style:none;
}

body.home-page .home-answering-config li{
  position:relative;
  padding-left:1rem;
  color:var(--hp-ink-soft)!important;
  font-size:.58rem;
  line-height:1.45;
}

body.home-page .home-answering-config li::before{
  position:absolute;
  top:.48em;
  left:.08rem;
  width:.38rem;
  height:.38rem;
  border-radius:50%;
  content:"";
  background:#27856f;
}

body.home-page .home-answering-config small{
  margin-top:.65rem;
  display:block;
  color:#687f94!important;
  font-size:.53rem;
  line-height:1.5;
}

body.home-page .home-answering-actions{
  margin-top:1.25rem;
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}

@media (min-width:640px){
  body.home-page .home-answering-scenario__case{
    grid-template-columns:44px minmax(0,1fr) auto;
  }

  body.home-page .home-answering-scenario__case > span:last-child{
    grid-column:auto;
  }

  body.home-page .home-answering-path{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body.home-page .home-answering-path li + li{
    border-top:0;
  }

  body.home-page .home-answering-path li:nth-child(even){
    border-left:1px solid rgba(32,78,126,.09);
  }

  body.home-page .home-answering-path li:nth-child(n+3){
    border-top:1px solid rgba(32,78,126,.09);
  }

  body.home-page .home-answering-team__outputs{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (min-width:840px){
  body.home-page .home-answering-intro{
    grid-template-columns:minmax(0,1.08fr) minmax(280px,.72fr);
    align-items:end;
    gap:clamp(2rem,6vw,5rem);
  }

  body.home-page .home-answering-path{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  body.home-page .home-answering-path li:nth-child(n+3){
    border-top:0;
  }

  body.home-page .home-answering-path li + li{
    border-left:1px solid rgba(32,78,126,.09);
  }

  body.home-page .home-answering-views{
    grid-template-columns:minmax(0,.94fr) minmax(0,1.06fr);
  }

  body.home-page .home-answering-team{
    border-top:0;
    border-left:1px solid rgba(32,78,126,.1);
  }

  body.home-page .home-answering-config ul{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1rem;
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page .home-answering-scenario *{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

@media (prefers-contrast:more){
  body.home-page .home-answering-scenario,
  body.home-page .home-answering-path li,
  body.home-page .home-answering-caller,
  body.home-page .home-answering-team,
  body.home-page .home-answering-config{
    border-color:currentColor!important;
  }
}

@media (forced-colors:active){
  body.home-page .home-answering-scenario,
  body.home-page .home-answering-scenario > figcaption,
  body.home-page .home-answering-scenario__case,
  body.home-page .home-answering-path,
  body.home-page .home-answering-path li,
  body.home-page .home-answering-caller,
  body.home-page .home-answering-dialogue blockquote,
  body.home-page .home-answering-caller__confirmation,
  body.home-page .home-answering-team,
  body.home-page .home-answering-team__summary div,
  body.home-page .home-answering-team__action,
  body.home-page .home-answering-team__outputs li,
  body.home-page .home-answering-config{
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
    box-shadow:none!important;
  }

  body.home-page .home-answering-scenario__case-icon,
  body.home-page .home-answering-path__icon,
  body.home-page .home-answering-view__icon,
  body.home-page .home-answering-config__icon{
    border:2px solid Highlight;
    background:Canvas!important;
    color:CanvasText!important;
  }
}

/* Human and AI handoff map.
   Three always-visible lanes keep approved automation and human judgment distinct. */
body.home-page #comparison{
  --handoff-blue:#64dbe5;
  --handoff-human:#ffbf69;
  --handoff-context:#7ee2b8;
  position:relative;
  isolation:isolate;
  overflow:hidden;
}

body.home-page #comparison::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:4% -18% auto auto;
  width:min(58rem,95vw);
  aspect-ratio:1;
  border-radius:50%;
  background:radial-gradient(circle,rgba(70,143,224,.1),transparent 67%);
  pointer-events:none;
}

body.home-page #comparison .home-handoff-intro{
  display:grid;
  gap:1.2rem;
  margin-bottom:clamp(1.35rem,4vw,2.2rem);
}

body.home-page #comparison .home-handoff-intro .section-sub{
  max-width:850px;
  font-size:clamp(.98rem,2.4vw,1.08rem);
  line-height:1.72;
}

body.home-page #comparison .home-handoff-key{
  display:grid;
  grid-template-columns:1fr;
  gap:.55rem;
  padding:.8rem;
  border:1px solid rgba(160,215,238,.15);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  box-shadow:0 18px 42px rgba(0,0,0,.16);
}

body.home-page #comparison .home-handoff-key__item{
  min-width:0;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.7rem;
  padding:.72rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(5,20,36,.56);
}

body.home-page #comparison .home-handoff-key__icon{
  width:2.35rem;
  height:2.35rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
}

body.home-page #comparison .home-handoff-key__item--buddy .home-handoff-key__icon{
  background:rgba(100,219,229,.11);
  color:var(--handoff-blue);
}

body.home-page #comparison .home-handoff-key__item--team .home-handoff-key__icon{
  background:rgba(255,191,105,.11);
  color:var(--handoff-human);
}

body.home-page #comparison .home-handoff-key__icon .icon{
  width:1.15rem;
  height:1.15rem;
}

body.home-page #comparison .home-handoff-key__item strong,
body.home-page #comparison .home-handoff-key__item span{
  display:block;
}

body.home-page #comparison .home-handoff-key__item strong{
  margin-bottom:.12rem;
  color:#f7fbff!important;
  font-size:.78rem;
  line-height:1.25;
}

body.home-page #comparison .home-handoff-key__item div > span{
  color:#aebfd0;
  font-size:.69rem;
  line-height:1.42;
}

body.home-page #comparison .home-handoff-key__connector{
  width:1.8rem;
  height:1.8rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  justify-self:center;
  border:1px solid rgba(126,226,184,.2);
  border-radius:50%;
  background:rgba(126,226,184,.08);
  color:var(--handoff-context);
  transform:rotate(90deg);
}

body.home-page #comparison .home-handoff-key__connector .icon{
  width:.9rem;
  height:.9rem;
}

body.home-page #comparison .home-handoff-map{
  display:grid;
  gap:clamp(.9rem,2.5vw,1.25rem);
}

body.home-page #comparison .home-handoff-lane{
  --lane-accent:#64dbe5;
  --lane-tint:rgba(100,219,229,.075);
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:clamp(1rem,3.2vw,1.45rem);
  border:1px solid rgba(160,215,238,.14);
  border-radius:clamp(22px,3vw,28px);
  background:
    linear-gradient(120deg,var(--lane-tint),transparent 38%),
    rgba(7,24,42,.84);
  box-shadow:0 22px 52px rgba(0,0,0,.2);
}

body.home-page #comparison .home-handoff-lane::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:3px;
  background:linear-gradient(180deg,var(--lane-accent),transparent 88%);
}

body.home-page #comparison .home-handoff-lane--urgent{
  --lane-accent:#ffbf69;
  --lane-tint:rgba(255,191,105,.075);
}

body.home-page #comparison .home-handoff-lane--complex{
  --lane-accent:#a993ff;
  --lane-tint:rgba(169,147,255,.075);
}

body.home-page #comparison .home-handoff-lane__header{
  display:grid;
  grid-template-columns:auto auto minmax(0,1fr);
  align-items:center;
  gap:.65rem;
  margin-bottom:1rem;
}

body.home-page #comparison .home-handoff-lane__number{
  color:var(--lane-accent);
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.08em;
}

body.home-page #comparison .home-handoff-lane__icon{
  width:2.55rem;
  height:2.55rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid color-mix(in srgb,var(--lane-accent) 18%,transparent);
  border-radius:13px;
  background:var(--lane-tint);
  color:var(--lane-accent);
}

body.home-page #comparison .home-handoff-lane__icon .icon{
  width:1.2rem;
  height:1.2rem;
}

body.home-page #comparison .home-handoff-lane__header p{
  color:var(--lane-accent)!important;
  font-size:.65rem;
  font-weight:850;
  letter-spacing:.05em;
  line-height:1.3;
  text-transform:uppercase;
}

body.home-page #comparison .home-handoff-lane__header h3{
  margin:0;
  color:#f8fbff!important;
  font-size:clamp(1.05rem,2.8vw,1.3rem);
  line-height:1.2;
}

body.home-page #comparison .home-handoff-lane__example{
  grid-column:1 / -1;
  padding:.56rem .7rem;
  border-radius:11px;
  background:rgba(255,255,255,.04);
  color:#b7c8d9;
  font-size:.7rem;
  line-height:1.45;
}

body.home-page #comparison .home-handoff-flow{
  display:grid;
  gap:1.1rem;
  margin:0;
  padding:0;
  list-style:none;
}

body.home-page #comparison .home-handoff-step{
  --step-accent:var(--handoff-blue);
  --step-tint:rgba(100,219,229,.08);
  position:relative;
  min-width:0;
  padding:.9rem;
  border:1px solid rgba(255,255,255,.085);
  border-radius:17px;
  background:linear-gradient(145deg,var(--step-tint),rgba(255,255,255,.025));
}

body.home-page #comparison .home-handoff-step--person{
  --step-accent:var(--handoff-human);
  --step-tint:rgba(255,191,105,.075);
}

body.home-page #comparison .home-handoff-step--context{
  --step-accent:var(--handoff-context);
  --step-tint:rgba(126,226,184,.075);
}

body.home-page #comparison .home-handoff-step:not(:last-child)::after{
  content:"↓";
  position:absolute;
  left:50%;
  bottom:-1.05rem;
  width:1.5rem;
  height:1.5rem;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.11);
  border-radius:50%;
  background:#0b2137;
  color:var(--step-accent);
  font-size:.8rem;
  font-weight:900;
  line-height:1;
  transform:translateX(-50%);
}

body.home-page #comparison .home-handoff-step__label{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  margin-bottom:.58rem;
  padding:.34rem .52rem;
  border-radius:999px;
  background:var(--step-tint);
  color:var(--step-accent);
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.055em;
  line-height:1.2;
  text-transform:uppercase;
}

body.home-page #comparison .home-handoff-step__label .icon{
  width:.85rem;
  height:.85rem;
}

body.home-page #comparison .home-handoff-step h4{
  margin:0 0 .62rem;
  color:#f5f9ff!important;
  font-size:.88rem;
  line-height:1.35;
}

body.home-page #comparison .home-handoff-step ul{
  display:grid;
  gap:.46rem;
  margin:0;
  padding:0;
  list-style:none;
}

body.home-page #comparison .home-handoff-step ul li{
  position:relative;
  padding-left:.88rem;
  color:#b7c8d9!important;
  font-size:.75rem;
  line-height:1.5;
}

body.home-page #comparison .home-handoff-step ul li::before{
  content:"";
  position:absolute;
  top:.58em;
  left:0;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--step-accent);
}

body.home-page #comparison .home-handoff-step__boundary{
  margin:.72rem 0 0;
  padding:.62rem .68rem;
  border-left:2px solid var(--handoff-human);
  border-radius:0 10px 10px 0;
  background:rgba(255,191,105,.07);
  color:#f2d6ae!important;
  font-size:.7rem;
  font-weight:750;
  line-height:1.45;
}

body.home-page #comparison .home-handoff-footer{
  display:grid;
  gap:1rem;
  margin-top:clamp(1rem,3vw,1.5rem);
  padding:clamp(1rem,3vw,1.3rem);
  border:1px solid rgba(160,215,238,.14);
  border-radius:20px;
  background:rgba(255,255,255,.045);
}

body.home-page #comparison .home-handoff-fit{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:start;
  gap:.7rem;
}

body.home-page #comparison .home-handoff-fit__icon{
  width:2rem;
  height:2rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(126,226,184,.09);
  color:var(--handoff-context);
}

body.home-page #comparison .home-handoff-fit__icon .icon{
  width:1rem;
  height:1rem;
}

body.home-page #comparison .home-handoff-fit p{
  color:#c3d1de!important;
  font-size:.78rem;
  line-height:1.55;
}

body.home-page #comparison .home-handoff-fit strong{
  color:#f5f9ff!important;
}

body.home-page #comparison .home-handoff-actions{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:.65rem;
}

body.home-page #comparison .home-handoff-actions .btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  font-weight:850;
}

body.home-page #comparison .home-handoff-context-link{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  color:#9fdfe4;
  font-size:.76rem;
  font-weight:800;
  text-decoration:none;
}

body.home-page #comparison .home-handoff-context-link .icon{
  width:.92rem;
  height:.92rem;
}

body.home-page #comparison .home-handoff-context-link:hover,
body.home-page #comparison .home-handoff-context-link:focus-visible{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:.25em;
}

@media (min-width:680px){
  body.home-page #comparison .home-handoff-key{
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
    align-items:center;
  }

  body.home-page #comparison .home-handoff-key__connector{
    transform:none;
  }

  body.home-page #comparison .home-handoff-lane__header{
    grid-template-columns:auto auto minmax(0,1fr) minmax(220px,.7fr);
  }

  body.home-page #comparison .home-handoff-lane__example{
    grid-column:auto;
    justify-self:end;
  }

  body.home-page #comparison .home-handoff-footer{
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
  }

  body.home-page #comparison .home-handoff-actions{
    min-width:210px;
  }
}

@media (min-width:860px){
  body.home-page #comparison .home-handoff-intro{
    grid-template-columns:minmax(0,1.35fr) minmax(330px,.65fr);
    align-items:end;
    gap:clamp(1.5rem,4vw,3rem);
  }

  body.home-page #comparison .home-handoff-flow{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1.6rem;
  }

  body.home-page #comparison .home-handoff-step:not(:last-child)::after{
    content:"→";
    top:50%;
    right:-1.55rem;
    bottom:auto;
    left:auto;
    transform:translateY(-50%);
  }
}

@media (min-width:1120px){
  body.home-page #comparison .home-handoff-step{
    padding:1rem;
  }

  body.home-page #comparison .home-handoff-actions{
    flex-direction:row;
    align-items:center;
  }

  body.home-page #comparison .home-handoff-actions .btn{
    min-width:210px;
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page #comparison *,
  body.home-page #comparison *::before,
  body.home-page #comparison *::after{
    scroll-behavior:auto!important;
    transition:none!important;
  }
}

@media (prefers-contrast:more){
  body.home-page #comparison :is(.home-handoff-key,.home-handoff-key__item,.home-handoff-lane,.home-handoff-step,.home-handoff-footer){
    border-color:currentColor!important;
  }

  body.home-page #comparison :is(.home-handoff-step ul li,.home-handoff-fit p,.home-handoff-lane__example){
    color:#eef6ff!important;
  }
}

@media (forced-colors:active){
  body.home-page #comparison :is(.home-handoff-key,.home-handoff-key__item,.home-handoff-lane,.home-handoff-step,.home-handoff-footer,.home-handoff-step__boundary){
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
    box-shadow:none!important;
  }

  body.home-page #comparison :is(.home-handoff-key__icon,.home-handoff-key__connector,.home-handoff-lane__icon,.home-handoff-step__label,.home-handoff-fit__icon){
    border:1px solid Highlight!important;
    background:Canvas!important;
    color:CanvasText!important;
  }
}

/* Illustrative personal call-screen story.
   A static mobile workflow keeps purpose checks distinct from identity verification. */
body.home-page #personal-agent{
  --personal-blue:#3978ee;
  --personal-cyan:#54d5dc;
  --personal-mint:#72ddb0;
  --personal-violet:#927cf1;
  position:relative;
  isolation:isolate;
  overflow:hidden;
}

body.home-page #personal-agent::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:3% auto auto -22%;
  width:min(60rem,105vw);
  aspect-ratio:1;
  border-radius:50%;
  background:radial-gradient(circle,rgba(84,213,220,.1),transparent 66%);
  pointer-events:none;
}

body.home-page #personal-agent .home-personal-intro{
  display:grid;
  gap:.9rem;
  margin-bottom:clamp(1.35rem,4vw,2.2rem);
}

body.home-page #personal-agent .home-personal-intro .section-sub{
  max-width:760px;
  font-size:clamp(.98rem,2.4vw,1.08rem);
  line-height:1.72;
}

body.home-page #personal-agent .home-personal-story{
  overflow:hidden;
  margin:0;
  border:1px solid rgba(151,211,231,.16);
  border-radius:clamp(24px,4vw,32px);
  background:
    radial-gradient(circle at 12% 15%,rgba(84,213,220,.1),transparent 30%),
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  box-shadow:0 28px 68px rgba(0,0,0,.23);
}

body.home-page #personal-agent .home-personal-story__caption{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.7rem;
  padding:clamp(1rem,3vw,1.35rem);
  border-bottom:1px solid rgba(151,211,231,.13);
  background:rgba(4,18,33,.42);
}

body.home-page #personal-agent .home-personal-story__caption-icon{
  width:2.65rem;
  height:2.65rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(84,213,220,.18);
  border-radius:14px;
  background:rgba(84,213,220,.09);
  color:var(--personal-cyan);
}

body.home-page #personal-agent .home-personal-story__caption-icon .icon{
  width:1.3rem;
  height:1.3rem;
}

body.home-page #personal-agent .home-personal-story__caption p{
  color:var(--personal-cyan)!important;
  font-size:.65rem;
  font-weight:850;
  letter-spacing:.055em;
  line-height:1.3;
  text-transform:uppercase;
}

body.home-page #personal-agent .home-personal-story__caption h3{
  margin:0;
  color:#f7fbff!important;
  font-size:clamp(1.02rem,2.8vw,1.28rem);
  line-height:1.28;
}

body.home-page #personal-agent .home-personal-story__status{
  grid-column:1 / -1;
  width:max-content;
  padding:.38rem .58rem;
  border:1px solid rgba(114,221,176,.18);
  border-radius:999px;
  background:rgba(114,221,176,.08);
  color:var(--personal-mint);
  font-size:.63rem;
  font-weight:850;
  letter-spacing:.045em;
  line-height:1.2;
  text-transform:uppercase;
}

body.home-page #personal-agent .home-personal-story__layout{
  display:grid;
  gap:clamp(1.2rem,4vw,2.25rem);
  padding:clamp(.85rem,3.5vw,1.75rem);
}

body.home-page #personal-agent .home-personal-phone{
  width:min(100%,360px);
  justify-self:center;
  overflow:hidden;
  padding:.58rem;
  border:5px solid #10273d;
  border-radius:38px;
  background:linear-gradient(180deg,#f8fbff,#edf5fb);
  color:#102944;
  box-shadow:
    0 28px 60px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.7);
}

body.home-page #personal-agent .home-personal-phone__hardware{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  min-height:1.65rem;
  padding:0 .4rem .2rem;
  color:#36546e;
  font-size:.58rem;
  font-weight:850;
}

body.home-page #personal-agent .home-personal-phone__hardware > .icon{
  width:.85rem;
  height:.85rem;
  justify-self:end;
}

body.home-page #personal-agent .home-personal-phone__notch{
  width:4.2rem;
  height:.95rem;
  border-radius:999px;
  background:#10273d;
}

body.home-page #personal-agent .home-personal-phone__caller{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.68rem;
  padding:.85rem .72rem;
  border:1px solid rgba(32,78,126,.1);
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 28px rgba(21,62,105,.08);
}

body.home-page #personal-agent .home-personal-phone__avatar{
  width:2.8rem;
  height:2.8rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(145deg,#e5f8fa,#e9efff);
  color:var(--personal-blue);
}

body.home-page #personal-agent .home-personal-phone__avatar .icon{
  width:1.28rem;
  height:1.28rem;
}

body.home-page #personal-agent .home-personal-phone__caller p{
  color:#3978a0!important;
  font-size:.58rem;
  font-weight:850;
  letter-spacing:.055em;
  line-height:1.2;
  text-transform:uppercase;
}

body.home-page #personal-agent .home-personal-phone__caller h4{
  margin:0 0 .08rem;
  color:#102944!important;
  font-size:.98rem;
  line-height:1.2;
}

body.home-page #personal-agent .home-personal-phone__caller div > span{
  display:block;
  color:#647b90;
  font-size:.66rem;
}

body.home-page #personal-agent .home-personal-phone__live{
  grid-column:1 / -1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.36rem;
  width:100%;
  padding:.38rem .52rem;
  border-radius:999px;
  background:#e9f8f2;
  color:#08775d;
  font-size:.62rem;
  font-weight:850;
  line-height:1.2;
}

body.home-page #personal-agent .home-personal-phone__live > span{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#0b9c75;
}

body.home-page #personal-agent .home-personal-phone__check{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.58rem;
  margin-top:.55rem;
  padding:.64rem .7rem;
  border:1px solid rgba(57,120,238,.11);
  border-radius:14px;
  background:#edf3ff;
  color:var(--personal-blue);
}

body.home-page #personal-agent .home-personal-phone__check > .icon{
  width:1.05rem;
  height:1.05rem;
}

body.home-page #personal-agent .home-personal-phone__check strong,
body.home-page #personal-agent .home-personal-phone__check span{
  display:block;
}

body.home-page #personal-agent .home-personal-phone__check strong{
  color:#174f9e!important;
  font-size:.68rem;
  line-height:1.3;
}

body.home-page #personal-agent .home-personal-phone__check div > span{
  margin-top:.08rem;
  color:#607795;
  font-size:.6rem;
}

body.home-page #personal-agent .home-personal-phone__conversation{
  display:grid;
  gap:.46rem;
  margin-top:.55rem;
}

body.home-page #personal-agent .home-personal-phone__bubble{
  max-width:88%;
  margin:0;
  padding:.62rem .7rem;
  border-radius:15px;
  color:#294760!important;
  font-size:.66rem;
  line-height:1.45;
}

body.home-page #personal-agent .home-personal-phone__bubble > span{
  display:block;
  margin-bottom:.18rem;
  font-size:.55rem;
  font-weight:900;
  letter-spacing:.04em;
  line-height:1.2;
  text-transform:uppercase;
}

body.home-page #personal-agent .home-personal-phone__bubble--buddy{
  justify-self:start;
  border-bottom-left-radius:5px;
  background:#e7f6f7;
}

body.home-page #personal-agent .home-personal-phone__bubble--buddy > span{
  color:#087d82;
}

body.home-page #personal-agent .home-personal-phone__bubble--caller{
  justify-self:end;
  border-bottom-right-radius:5px;
  background:#e9efff;
}

body.home-page #personal-agent .home-personal-phone__bubble--caller > span{
  color:#4b63bd;
}

body.home-page #personal-agent .home-personal-summary{
  margin-top:.55rem;
  padding:.72rem;
  border:1px solid rgba(32,78,126,.11);
  border-radius:17px;
  background:#fff;
  box-shadow:0 12px 28px rgba(21,62,105,.07);
}

body.home-page #personal-agent .home-personal-summary__heading{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.55rem;
  padding-bottom:.58rem;
  border-bottom:1px solid rgba(32,78,126,.1);
}

body.home-page #personal-agent .home-personal-summary__heading > .icon{
  width:1.12rem;
  height:1.12rem;
  color:#187a63;
}

body.home-page #personal-agent .home-personal-summary__heading p{
  color:#4a7188!important;
  font-size:.55rem;
  font-weight:850;
  letter-spacing:.05em;
  line-height:1.2;
  text-transform:uppercase;
}

body.home-page #personal-agent .home-personal-summary__heading h4{
  margin:.08rem 0 0;
  color:#102944!important;
  font-size:.8rem;
  line-height:1.25;
}

body.home-page #personal-agent .home-personal-summary__heading > span{
  grid-column:1 / -1;
  width:max-content;
  padding:.3rem .48rem;
  border-radius:999px;
  background:#fff1df;
  color:#995b00;
  font-size:.56rem;
  font-weight:850;
}

body.home-page #personal-agent .home-personal-summary dl{
  display:grid;
  gap:.42rem;
  margin:.58rem 0 0;
}

body.home-page #personal-agent .home-personal-summary dl > div{
  display:grid;
  grid-template-columns:minmax(76px,.62fr) minmax(0,1.38fr);
  gap:.5rem;
}

body.home-page #personal-agent .home-personal-summary dt{
  color:#60768a;
  font-size:.58rem;
  font-weight:750;
}

body.home-page #personal-agent .home-personal-summary dd{
  margin:0;
  color:#17314b;
  font-size:.61rem;
  font-weight:750;
  line-height:1.38;
}

body.home-page #personal-agent .home-personal-phone__decision{
  margin-top:.55rem;
}

body.home-page #personal-agent .home-personal-phone__decision > p{
  margin:0 0 .4rem;
  color:#526b80!important;
  font-size:.57rem;
  font-weight:850;
  letter-spacing:.045em;
  line-height:1.2;
  text-transform:uppercase;
}

body.home-page #personal-agent .home-personal-phone__decision > div{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.42rem;
}

body.home-page #personal-agent .home-personal-phone__decision > div > span{
  min-height:2.6rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.34rem;
  padding:.46rem;
  border:1px solid rgba(57,120,238,.13);
  border-radius:12px;
  background:#eef3ff;
  color:#2454a2;
  font-size:.59rem;
  font-weight:850;
  line-height:1.25;
  text-align:center;
}

body.home-page #personal-agent .home-personal-phone__decision .icon{
  width:.82rem;
  height:.82rem;
  flex:0 0 auto;
}

body.home-page #personal-agent .home-personal-route{
  align-self:center;
}

body.home-page #personal-agent .home-personal-route ol{
  position:relative;
  display:grid;
  gap:.65rem;
  margin:0;
  padding:0;
  list-style:none;
}

body.home-page #personal-agent .home-personal-route ol::before{
  content:"";
  position:absolute;
  top:1.5rem;
  bottom:1.5rem;
  left:1.45rem;
  width:1px;
  background:linear-gradient(180deg,var(--personal-cyan),var(--personal-violet));
  opacity:.48;
}

body.home-page #personal-agent .home-personal-route ol > li{
  position:relative;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:start;
  gap:.75rem;
  min-width:0;
  padding:.8rem;
  border:1px solid rgba(151,211,231,.12);
  border-radius:16px;
  background:rgba(5,20,36,.55);
}

body.home-page #personal-agent .home-personal-route__marker{
  z-index:1;
  width:2.9rem;
  height:2.9rem;
  display:grid;
  place-items:center;
  border:1px solid rgba(84,213,220,.17);
  border-radius:14px;
  background:#0b2940;
  color:var(--personal-cyan);
}

body.home-page #personal-agent .home-personal-route__marker > span:first-child{
  font-size:.5rem;
  font-weight:900;
  letter-spacing:.06em;
  line-height:1;
}

body.home-page #personal-agent .home-personal-route__marker .icon{
  width:1rem;
  height:1rem;
}

body.home-page #personal-agent .home-personal-route li:nth-child(3) .home-personal-route__marker,
body.home-page #personal-agent .home-personal-route li:nth-child(4) .home-personal-route__marker{
  border-color:rgba(146,124,241,.19);
  background:#20274a;
  color:#b2a5f3;
}

body.home-page #personal-agent .home-personal-route li p{
  color:var(--personal-cyan)!important;
  font-size:.61rem;
  font-weight:850;
  letter-spacing:.05em;
  line-height:1.25;
  text-transform:uppercase;
}

body.home-page #personal-agent .home-personal-route li:nth-child(3) p,
body.home-page #personal-agent .home-personal-route li:nth-child(4) p{
  color:#b7aaf4!important;
}

body.home-page #personal-agent .home-personal-route h4{
  margin:0 0 .25rem;
  color:#f4f9ff!important;
  font-size:.82rem;
  line-height:1.38;
}

body.home-page #personal-agent .home-personal-route li div > span{
  display:block;
  color:#aebfd0;
  font-size:.7rem;
  line-height:1.5;
}

body.home-page #personal-agent .home-personal-boundary{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:start;
  gap:.62rem;
  margin-top:.75rem;
  padding:.76rem;
  border:1px solid rgba(255,191,105,.15);
  border-radius:15px;
  background:rgba(255,191,105,.07);
}

body.home-page #personal-agent .home-personal-boundary > .icon{
  width:1rem;
  height:1rem;
  margin-top:.1rem;
  color:#ffc372;
}

body.home-page #personal-agent .home-personal-boundary p{
  color:#d9c6aa!important;
  font-size:.7rem;
  line-height:1.5;
}

body.home-page #personal-agent .home-personal-outcome{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:.68rem;
  padding:clamp(.85rem,2.5vw,1rem) clamp(1rem,3vw,1.4rem);
  border-top:1px solid rgba(151,211,231,.13);
  background:linear-gradient(90deg,rgba(114,221,176,.09),rgba(84,213,220,.045));
}

body.home-page #personal-agent .home-personal-outcome__icon{
  width:2.1rem;
  height:2.1rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:11px;
  background:rgba(114,221,176,.1);
  color:var(--personal-mint);
}

body.home-page #personal-agent .home-personal-outcome__icon .icon{
  width:1.05rem;
  height:1.05rem;
}

body.home-page #personal-agent .home-personal-outcome p{
  color:#c5d5e2!important;
  font-size:.76rem;
  line-height:1.55;
}

body.home-page #personal-agent .home-personal-outcome strong{
  color:#effbf6!important;
}

body.home-page #personal-agent .home-personal-actions{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:.65rem;
  margin-top:1rem;
}

body.home-page #personal-agent .home-personal-actions .btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  font-weight:850;
}

body.home-page #personal-agent .home-personal-context-link{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  color:#9fdfe4;
  font-size:.76rem;
  font-weight:800;
  text-decoration:none;
}

body.home-page #personal-agent .home-personal-context-link .icon{
  width:.92rem;
  height:.92rem;
}

body.home-page #personal-agent .home-personal-context-link:hover,
body.home-page #personal-agent .home-personal-context-link:focus-visible{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:.25em;
}

@media (min-width:620px){
  body.home-page #personal-agent .home-personal-story__caption{
    grid-template-columns:auto minmax(0,1fr) auto;
  }

  body.home-page #personal-agent .home-personal-story__status{
    grid-column:auto;
  }

  body.home-page #personal-agent .home-personal-phone__caller{
    grid-template-columns:auto minmax(0,1fr) auto;
  }

  body.home-page #personal-agent .home-personal-phone__live{
    grid-column:auto;
    width:auto;
  }

  body.home-page #personal-agent .home-personal-summary__heading{
    grid-template-columns:auto minmax(0,1fr) auto;
  }

  body.home-page #personal-agent .home-personal-summary__heading > span{
    grid-column:auto;
  }

  body.home-page #personal-agent .home-personal-actions{
    flex-direction:row;
    align-items:center;
    justify-content:center;
  }

  body.home-page #personal-agent .home-personal-actions .btn{
    min-width:220px;
  }
}

@media (min-width:780px){
  body.home-page #personal-agent .home-personal-intro{
    grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
    align-items:end;
    gap:clamp(1.5rem,4vw,3rem);
  }
}

@media (min-width:900px){
  body.home-page #personal-agent .home-personal-story__layout{
    grid-template-columns:minmax(300px,.72fr) minmax(0,1.28fr);
    align-items:center;
  }
}

@media (min-width:1120px){
  body.home-page #personal-agent .home-personal-story__layout{
    grid-template-columns:minmax(340px,.68fr) minmax(0,1.32fr);
    gap:clamp(2rem,5vw,4rem);
    padding-inline:clamp(1.5rem,4vw,3rem);
  }

  body.home-page #personal-agent .home-personal-route ol > li{
    padding:.9rem;
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page #personal-agent *,
  body.home-page #personal-agent *::before,
  body.home-page #personal-agent *::after{
    scroll-behavior:auto!important;
    transition:none!important;
  }
}

@media (prefers-contrast:more){
  body.home-page #personal-agent :is(.home-personal-story,.home-personal-phone,.home-personal-route ol > li,.home-personal-boundary){
    border-color:currentColor!important;
  }

  body.home-page #personal-agent :is(.home-personal-route li div > span,.home-personal-boundary p,.home-personal-outcome p){
    color:#eef6ff!important;
  }
}

@media (forced-colors:active){
  body.home-page #personal-agent :is(.home-personal-story,.home-personal-story__caption,.home-personal-phone,.home-personal-phone__caller,.home-personal-phone__check,.home-personal-phone__bubble,.home-personal-summary,.home-personal-phone__decision > div > span,.home-personal-route ol > li,.home-personal-boundary,.home-personal-outcome){
    border:1px solid CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
    box-shadow:none!important;
  }

  body.home-page #personal-agent :is(.home-personal-story__caption-icon,.home-personal-phone__avatar,.home-personal-route__marker,.home-personal-outcome__icon){
    border:1px solid Highlight!important;
    background:Canvas!important;
    color:CanvasText!important;
  }
}

/* Premium grouped homepage FAQ. */
body.home-page #faq.home-faq-section{
  position:relative;
  overflow:hidden;
  color:#102a45;
  background:
    radial-gradient(circle at 8% 8%,rgba(78,215,201,.13),transparent 27rem),
    radial-gradient(circle at 92% 12%,rgba(102,122,255,.12),transparent 30rem),
    linear-gradient(180deg,#f6fbff 0%,#edf5ff 54%,#f8fbff 100%);
}

body.home-page #faq.home-faq-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.24;
  background-image:
    linear-gradient(rgba(32,96,148,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(32,96,148,.08) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,black,transparent 58%);
}

body.home-page #faq.home-faq-section > .container{
  position:relative;
  z-index:1;
}

body.home-page #faq .home-faq-intro{
  display:grid;
  gap:1rem;
  margin-bottom:1rem;
}

body.home-page #faq .home-faq-kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  margin:0 0 .65rem;
  color:#087f79;
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

body.home-page #faq .home-faq-kicker .icon{
  width:1.05rem;
  height:1.05rem;
}

body.home-page #faq #faqHeading{
  max-width:19ch;
  margin:0 0 .75rem;
  color:#0c2946;
  text-wrap:balance;
}

body.home-page #faq .section-sub{
  max-width:67ch;
  margin:0;
  color:#526b83;
}

body.home-page #faq .home-faq-intro__note{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  margin:0;
  padding:.9rem;
  border:1px solid rgba(35,104,153,.17);
  border-radius:1rem;
  color:#536b82;
  background:rgba(255,255,255,.74);
  box-shadow:0 14px 34px rgba(28,74,116,.08);
  font-size:.8rem;
  line-height:1.5;
}

body.home-page #faq .home-faq-intro__note > .icon{
  flex:0 0 1.2rem;
  width:1.2rem;
  height:1.2rem;
  margin-top:.12rem;
  color:#168c83;
}

body.home-page #faq .home-faq-intro__note span{
  display:grid;
  gap:.15rem;
}

body.home-page #faq .home-faq-intro__note strong{
  color:#123451;
  font-size:.86rem;
}

body.home-page #faq .home-faq-topics{
  display:flex;
  gap:.5rem;
  overflow-x:auto;
  padding:.7rem;
  margin:0 0 1rem;
  border:1px solid rgba(35,104,153,.15);
  border-radius:1rem;
  background:rgba(255,255,255,.68);
  scrollbar-width:thin;
  -webkit-overflow-scrolling:touch;
}

body.home-page #faq .home-faq-topics > span,
body.home-page #faq .home-faq-topics a{
  display:inline-flex;
  flex:0 0 auto;
  min-height:2.35rem;
  align-items:center;
  justify-content:center;
  border-radius:.75rem;
  white-space:nowrap;
}

body.home-page #faq .home-faq-topics > span{
  padding:0 .35rem;
  color:#6b8297;
  font-size:.67rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}

body.home-page #faq .home-faq-topics a{
  padding:0 .75rem;
  border:1px solid rgba(37,108,157,.14);
  color:#244a68;
  background:#fff;
  font-size:.75rem;
  font-weight:800;
  text-decoration:none;
}

body.home-page #faq .home-faq-topics a:hover{
  border-color:rgba(8,127,121,.4);
  color:#087f79;
}

body.home-page #faq .home-faq-topics a:focus-visible{
  outline:3px solid #147fbe;
  outline-offset:2px;
}

body.home-page #faq .home-faq-library{
  border-top:1px solid rgba(34,98,145,.2);
}

body.home-page #faq .home-faq-group{
  display:grid;
  gap:1rem;
  padding:1.25rem 0;
  scroll-margin-top:calc(var(--scroll-offset,80px) + 1rem);
}

body.home-page #faq .home-faq-group + .home-faq-group{
  border-top:1px solid rgba(34,98,145,.2);
}

body.home-page #faq .home-faq-group__header{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.75rem;
  align-items:start;
}

body.home-page #faq .home-faq-group__icon{
  display:grid;
  width:2.75rem;
  height:2.75rem;
  place-items:center;
  border:1px solid rgba(17,129,122,.2);
  border-radius:.9rem;
  color:#087f79;
  background:linear-gradient(135deg,rgba(83,222,205,.14),rgba(103,154,255,.12));
}

body.home-page #faq .home-faq-group__icon .icon{
  width:1.2rem;
  height:1.2rem;
}

body.home-page #faq .home-faq-group__header > span:last-child{
  min-width:0;
}

body.home-page #faq .home-faq-group__header small{
  display:block;
  margin-bottom:.08rem;
  color:#0c8d83;
  font-size:.65rem;
  font-weight:900;
  letter-spacing:.12em;
}

body.home-page #faq .home-faq-group__header h3{
  margin:0;
  color:#102f4c;
  font-size:clamp(1.12rem,4vw,1.45rem);
}

body.home-page #faq .home-faq-group__header p{
  margin:.3rem 0 0;
  color:#60778d;
  font-size:.78rem;
  line-height:1.5;
}

body.home-page #faq .home-faq-disclosures{
  overflow:hidden;
  border:1px solid rgba(33,99,146,.18);
  border-radius:1.15rem;
  background:rgba(255,255,255,.76);
  box-shadow:0 18px 46px rgba(25,68,108,.08);
}

body.home-page #faq .home-faq-item{
  margin:0;
  background:transparent;
}

body.home-page #faq .home-faq-item + .home-faq-item{
  border-top:1px solid rgba(37,101,146,.14);
}

body.home-page #faq .home-faq-item[open]{
  background:linear-gradient(115deg,rgba(230,249,246,.72),rgba(239,244,255,.78));
}

body.home-page #faq .home-faq-item summary{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:.75rem;
  align-items:center;
  min-height:3.75rem;
  padding:.9rem;
  color:#153652;
  cursor:pointer;
  font-size:.9rem;
  font-weight:850;
  line-height:1.38;
  list-style:none;
}

body.home-page #faq .home-faq-item summary::-webkit-details-marker{
  display:none;
}

body.home-page #faq .home-faq-item summary::marker{
  content:"";
}

body.home-page #faq .home-faq-item summary:hover{
  color:#087f79;
}

body.home-page #faq .home-faq-item summary:focus-visible{
  position:relative;
  z-index:1;
  outline:3px solid #147fbe;
  outline-offset:-3px;
}

body.home-page #faq .home-faq-item summary > .icon{
  width:1.05rem;
  height:1.05rem;
  color:#168c83;
  transition:transform .2s ease;
}

body.home-page #faq .home-faq-item[open] summary > .icon{
  transform:rotate(180deg);
}

body.home-page #faq .home-faq-answer{
  padding:0 .9rem 1rem;
}

body.home-page #faq .home-faq-answer p{
  max-width:76ch;
  margin:0;
  color:#4e667d;
  font-size:.84rem;
  line-height:1.65;
}

@media (min-width:48rem){
  body.home-page #faq .home-faq-intro{
    grid-template-columns:minmax(0,1.35fr) minmax(17rem,.65fr);
    gap:clamp(1.5rem,4vw,3rem);
    align-items:end;
  }

  body.home-page #faq .home-faq-intro__note{
    margin-bottom:.15rem;
  }

  body.home-page #faq .home-faq-topics{
    flex-wrap:wrap;
    overflow:visible;
  }

  body.home-page #faq .home-faq-group{
    grid-template-columns:minmax(13rem,.36fr) minmax(0,.64fr);
    gap:clamp(1.5rem,4vw,3.25rem);
    padding:clamp(1.5rem,4vw,2.4rem) 0;
  }

  body.home-page #faq .home-faq-group__header{
    align-self:start;
  }

  body.home-page #faq .home-faq-item summary{
    min-height:4rem;
    padding:1rem 1.15rem;
    font-size:.96rem;
  }

  body.home-page #faq .home-faq-answer{
    padding:0 1.15rem 1.1rem;
  }

  body.home-page #faq .home-faq-answer p{
    font-size:.88rem;
  }
}

@media (min-width:62rem){
  body.home-page #faq .home-faq-group__header{
    position:sticky;
    top:calc(var(--scroll-offset,80px) + 1rem);
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page #faq .home-faq-item summary > .icon,
  body.home-page #faq .home-faq-topics a{
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

@media (prefers-contrast:more){
  body.home-page #faq .home-faq-intro__note,
  body.home-page #faq .home-faq-topics,
  body.home-page #faq .home-faq-topics a,
  body.home-page #faq .home-faq-disclosures,
  body.home-page #faq .home-faq-item + .home-faq-item{
    border-color:currentColor!important;
  }
}

@media (forced-colors:active){
  body.home-page #faq.home-faq-section,
  body.home-page #faq .home-faq-intro__note,
  body.home-page #faq .home-faq-topics,
  body.home-page #faq .home-faq-topics a,
  body.home-page #faq .home-faq-disclosures,
  body.home-page #faq .home-faq-item,
  body.home-page #faq .home-faq-answer{
    color:CanvasText!important;
    background:Canvas!important;
    box-shadow:none!important;
  }

  body.home-page #faq .home-faq-intro__note,
  body.home-page #faq .home-faq-topics,
  body.home-page #faq .home-faq-topics a,
  body.home-page #faq .home-faq-disclosures,
  body.home-page #faq .home-faq-group__icon{
    border:1px solid CanvasText!important;
  }

  body.home-page #faq .home-faq-item summary:focus-visible{
    outline:3px solid Highlight!important;
    outline-offset:-3px;
  }

  body.home-page #faq .home-faq-group__icon{
    color:CanvasText!important;
    background:Canvas!important;
  }
}

/* Homepage readability floor.
   The visual previews stay compact, but no essential copy is rendered at
   dashboard-thumbnail sizes. Type scales from a 320px mobile baseline. */
body.home-page .home-main{
  --home-copy-size:.9375rem;
  --home-support-size:.875rem;
  --home-ui-size:.8125rem;
  --home-meta-size:.75rem;
}

body.home-page .home-main > .home-section:not(.home-hero) :where(.section-sub,.lead){
  font-size:var(--home-copy-size)!important;
  line-height:1.62!important;
}

body.home-page .home-main > .home-section:not(.home-hero) :where(p:not(.section-sub),li,dd,blockquote){
  font-size:var(--home-support-size)!important;
  line-height:1.55!important;
}

body.home-page .home-main > .home-section:not(.home-hero) :where(.btn,.chip,button[role="tab"]){
  font-size:var(--home-ui-size)!important;
  line-height:1.32;
}

body.home-page .home-main > .home-section:not(.home-hero) :where(small,dt){
  font-size:var(--home-meta-size)!important;
  line-height:1.42;
}

body.home-page .home-main > .home-section:not(.home-hero) :where(.btn,.chip,small,dt,dd){
  overflow-wrap:break-word;
}

/* Tabs, chips and decision labels need to remain legible before interaction. */
body.home-page .home-outbound-tab strong,
body.home-page :where(.home-pressure-results,.home-outbound-panel__signals) li,
body.home-page :where(.home-pressure-route,.home-outbound-guardrails > span){
  font-size:var(--home-ui-size)!important;
  line-height:1.42!important;
}

body.home-page .home-outbound-tab small,
body.home-page :where(.home-pressure-panel__eyebrow,.home-outbound-panel__eyebrow),
body.home-page :where(.home-outbound-panel__signals,.home-outbound-panel__fallback,.home-outbound-flow,.home-outbound-guardrails) small{
  font-size:var(--home-meta-size)!important;
  line-height:1.38!important;
}

/* Product evidence uses a smaller UI scale than narrative copy, never tiny text. */
body.home-page .home-main :where(
  .home-service-artifact,
  .home-dashboard-product,
  .home-outbound-studio,
  .home-impact-story,
  .home-core-contrast,
  .home-managed-map,
  .home-how-timeline,
  .home-how-handover,
  .home-pricing-estimator,
  .home-answering-scenario,
  .home-handoff-map,
  .home-personal-story,
  .home-demo-dossier,
  .talking-websites-experience,
  .research-intelligence-home-preview
) :where(p,li,dd,blockquote){
  font-size:var(--home-ui-size)!important;
  line-height:1.48!important;
}

body.home-page .home-main :where(
  .home-service-artifact,
  .home-dashboard-product,
  .home-outbound-studio,
  .home-impact-story,
  .home-core-contrast,
  .home-managed-map,
  .home-how-timeline,
  .home-how-handover,
  .home-pricing-estimator,
  .home-answering-scenario,
  .home-handoff-map,
  .home-personal-story,
  .home-demo-dossier,
  .talking-websites-experience,
  .research-intelligence-home-preview
) :where(small,dt,em){
  font-size:var(--home-meta-size)!important;
  line-height:1.4!important;
}

/* Deliberately dark product surfaces sit inside light editorial sections.
   This semantic boundary must outrank the global light-section typography
   rules so light ink is never painted over a dark product preview. */
body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"]{
  color:#f7fbff;
  color-scheme:dark;
}

body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"] :is(h1,h2,h3,h4,h5,h6){
  color:#f7fbff!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"] :is(p,li,blockquote,dd){
  color:#d9e8f0!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"] :is(small,dt){
  color:#b7cedb!important;
  opacity:1!important;
  text-shadow:none!important;
}

body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"] :is(p,li,blockquote,dd) strong{
  color:#f7fbff!important;
}

body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"].home-managed-guardrail > div > p{
  color:#8ff0d2!important;
  font-size:var(--home-meta-size)!important;
}

body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"].home-managed-guardrail h3{
  color:#f7fbff!important;
  font-size:clamp(1.0625rem,3.6vw,1.3rem)!important;
}

body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"].home-managed-guardrail li{
  color:#d9e8f0!important;
  font-size:var(--home-support-size)!important;
  line-height:1.55!important;
}

body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"].home-managed-guardrail small{
  color:#b7cedb!important;
  font-size:var(--home-meta-size)!important;
}

body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"].home-answering-team > header p,
body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"].home-answering-team .home-answering-team__action small{
  color:#85e8cd!important;
}

/* Longer narrative and FAQ content should read like web copy, not UI labels. */
body.home-page #voices :where(.home-testimonial-card__quote p,.home-testimonial-card__outcomes li),
body.home-page #comparison :where(.home-handoff-step ul li,.home-handoff-fit p,.home-handoff-lane__example),
body.home-page #personal-agent :where(.home-personal-boundary p,.home-personal-outcome p),
body.home-page #faq :where(.home-faq-group__header p,.home-faq-answer p){
  font-size:var(--home-support-size)!important;
  line-height:1.58!important;
}

body.home-page #voices .home-testimonial-card__quote p{
  font-size:clamp(1rem,4.4vw,1.1rem)!important;
  line-height:1.56!important;
}

/* Fine print remains subordinate, but stays readable. */
body.home-page :where(.home-pricing-notes li,.home-pricing-field > small,.home-pricing-estimator__disclaimer),
body.home-page .home-section--contact :where(.form-text,small){
  font-size:var(--home-meta-size)!important;
  line-height:1.5!important;
}

@media (min-width:32.5rem){
  body.home-page .home-main{
    --home-copy-size:.96875rem;
    --home-support-size:.9rem;
    --home-ui-size:.8375rem;
    --home-meta-size:.765625rem;
  }
}

@media (min-width:47.5rem){
  body.home-page .home-main{
    --home-copy-size:1rem;
    --home-support-size:.9375rem;
    --home-ui-size:.875rem;
    --home-meta-size:.78125rem;
  }
}

@media (min-width:62rem){
  body.home-page .home-main{
    --home-copy-size:clamp(1rem,.96rem + .12vw,1.075rem);
    --home-support-size:clamp(.9375rem,.91rem + .08vw,1rem);
    --home-ui-size:clamp(.875rem,.85rem + .06vw,.925rem);
    --home-meta-size:clamp(.78125rem,.76rem + .05vw,.825rem);
  }
}

@media (forced-colors:active){
  body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"],
  body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"] :is(p,h1,h2,h3,h4,h5,h6,li,small,blockquote,dt,dd,strong){
    border-color:CanvasText!important;
    background:Canvas!important;
    color:CanvasText!important;
    text-shadow:none!important;
  }
}

@media (prefers-contrast:more){
  body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"]{
    border-color:#fff!important;
    box-shadow:none!important;
  }

  body.home-page .home-main > .home-section.home-section--light [data-bs-theme="dark"] :is(p,h1,h2,h3,h4,h5,h6,li,small,blockquote,dt,dd,strong){
    color:#fff!important;
  }
}

/* Homepage first-viewport contract.
   The sticky menu remains in normal flow, so the hero adds only a deliberate
   breathing space. The headline is measured by main.js against every rotating
   phrase, preventing reflow when the copy changes. */
body.home-page .home-hero{
  padding-top:clamp(1.15rem,4.5vw,1.75rem)!important;
  padding-bottom:clamp(3.25rem,10vw,5rem)!important;
}

body.home-page .home-hero-layout{
  row-gap:clamp(2.75rem,8vw,4.5rem);
}

body.home-page .home-hero #homeHeroTitle{
  position:relative;
  width:100%;
  max-width:46rem;
  min-height:var(--home-hero-headline-height,4em);
  margin-top:clamp(.85rem,3vw,1.15rem)!important;
  font-size:clamp(2.05rem,10vw,3rem)!important;
  letter-spacing:-.052em;
  line-height:1.01!important;
  text-wrap:balance;
}

body.home-page .home-hero-headline-copy{
  transform:translate3d(0,0,0);
  transition:opacity .24s ease,transform .24s ease;
}

body.home-page .home-hero-headline-copy.is-changing{
  filter:none;
  transform:translate3d(0,.09em,0);
}

body.home-page .home-hero-headline-sizer{
  position:absolute!important;
  inset:0 auto auto 0;
  z-index:-1;
  height:auto!important;
  min-height:0!important;
  overflow:visible!important;
  visibility:hidden!important;
  opacity:0!important;
  transform:none!important;
  transition:none!important;
  pointer-events:none!important;
}

body.home-page .home-hero .lead{
  max-width:42rem;
  margin-top:clamp(1rem,3.5vw,1.35rem);
  font-size:clamp(1rem,4.1vw,1.125rem)!important;
  line-height:1.64!important;
}

body.home-page .home-hero-actions{
  display:grid!important;
  grid-template-columns:minmax(0,1fr)!important;
  width:100%;
  max-width:30rem;
  gap:.65rem!important;
}

body.home-page .home-hero-actions .btn{
  width:100%!important;
  min-width:0!important;
  min-height:52px;
  padding:.76rem .9rem;
  line-height:1.25;
  white-space:normal;
}

/* The mobile launcher keeps a 60px orb while its rotating copy sits above it.
   This lane keeps both primary actions clear of the fixed touch target. */
@media (max-width:639.98px){
  body.home-page .home-hero .lead{
    width:100%;
    max-width:none;
    text-align:justify;
    text-align-last:left;
    text-wrap:wrap;
  }

  body.home-page .home-hero-actions{
    padding-right:clamp(4.65rem,21vw,5.15rem);
  }
}

@media (min-width:520px) and (max-width:767.98px){
  body.home-page .home-hero #homeHeroTitle{
    font-size:clamp(2.75rem,8.5vw,3.55rem)!important;
  }
}

/* From 640px the launcher includes its compact text label. Keep the hero
   actions in a clear left-hand lane until the desktop two-column hero begins. */
@media (min-width:640px) and (max-width:767.98px){
  body.home-page .home-hero-actions{
    max-width:36rem;
    padding-right:13.75rem;
  }
}

@media (min-width:768px){
  body.home-page .home-hero #homeHeroTitle{
    min-height:var(--home-hero-headline-height,3em);
    font-size:clamp(3.4rem,7vw,4.55rem)!important;
  }

  body.home-page .home-hero-actions{
    max-width:none;
    padding-right:0;
    display:flex!important;
    flex-wrap:wrap;
  }

  body.home-page .home-hero-actions .btn{
    width:auto!important;
    min-width:12rem!important;
  }
}

@media (min-width:992px){
  body.home-page .home-hero{
    padding-top:clamp(1.5rem,2.2vw,2.25rem)!important;
  }

  body.home-page .home-hero-layout{
    --bs-gutter-x:clamp(2.5rem,5vw,5.5rem);
    row-gap:0;
  }

  body.home-page .home-hero #homeHeroTitle{
    max-width:48rem;
    min-height:var(--home-hero-headline-height,2.95em);
    font-size:clamp(3.7rem,5vw,5.15rem)!important;
    line-height:.99!important;
  }

  body.home-page .home-hero-workflow,
  body.home-page .home-hero-layout > .col-lg-7{
    padding-top:.25rem;
    align-self:flex-start;
  }
}

@media (min-width:1600px){
  body.home-page .home-hero #homeHeroTitle{
    font-size:clamp(4.65rem,4.35vw,5.35rem)!important;
  }
}

@media (prefers-reduced-motion:reduce){
  body.home-page .home-hero-headline-copy{
    transform:none!important;
  }
}

/* Mobile motion contract.
   Touch devices do not receive the desktop hover choreography, so the
   homepage runtime marks only visible scenes as active. These finite effects
   use compositor-safe opacity and transforms, then release naturally. */
@keyframes home-mobile-copy-arrive{
  0%{opacity:.68;transform:translate3d(0,.18em,0)}
  100%{opacity:1;transform:translate3d(0,0,0)}
}

@keyframes home-mobile-scene-arrive{
  0%{opacity:.76;transform:translate3d(0,12px,0) scale(.992)}
  100%{opacity:1;transform:translate3d(0,0,0) scale(1)}
}

@keyframes home-mobile-signal{
  0%,100%{opacity:1;transform:translate3d(0,0,0) scale(1)}
  46%{opacity:.94;transform:translate3d(0,-2px,0) scale(1.012)}
}

@keyframes home-mobile-orbit-settle{
  0%{opacity:.16;transform:translate3d(0,9px,0) scale(.96)}
  100%{opacity:.32;transform:translate3d(0,0,0) scale(1)}
}

@keyframes home-mobile-live-pulse{
  0%,100%{opacity:.72;transform:scale(.92)}
  50%{opacity:1;transform:scale(1.08)}
}

@media (prefers-reduced-motion:no-preference) and (max-width:991.98px),
       (prefers-reduced-motion:no-preference) and (hover:none),
       (prefers-reduced-motion:no-preference) and (pointer:coarse){
  body.home-page .home-hero::after,
  body.home-page .home-live-dot,
  body.home-page .talking-websites-experience__top i,
  body.home-page .talking-websites-orb i{
    animation:none;
  }

  body.home-page.home-motion-ready .home-hero.is-home-motion-active #homeHeroTitle,
  body.home-page.home-motion-ready #homeHeroTitle.is-home-motion-active{
    animation:home-mobile-copy-arrive .58s cubic-bezier(.2,.72,.25,1) 1 both;
  }

  body.home-page.home-motion-ready .home-hero.is-home-motion-active::after{
    animation:home-mobile-orbit-settle .9s cubic-bezier(.2,.72,.25,1) 1 both;
  }

  body.home-page.home-motion-ready .home-hero.is-home-motion-active .home-live-dot,
  body.home-page.home-motion-ready .home-live-dot.is-home-motion-active{
    animation:home-mobile-live-pulse 1.35s ease-in-out 3;
  }

  body.home-page.home-motion-ready .home-section.is-home-motion-active :is(.section-heading,.section-sub),
  body.home-page.home-motion-ready :is(.section-heading,.section-sub).is-home-motion-active{
    animation:home-mobile-copy-arrive .52s cubic-bezier(.2,.72,.25,1) 1 both;
  }

  body.home-page.home-motion-ready .is-home-motion-active:is(
    .home-ai-console,
    .home-service-artifact,
    .home-dashboard-product,
    .home-outbound-studio,
    .home-impact-story,
    .home-personal-story,
    .home-demo-dossier,
    .talking-websites-experience,
    .research-intelligence-home-preview
  ),
  body.home-page.home-motion-ready .home-section.is-home-motion-active :is(
    .home-ai-console,
    .home-service-artifact,
    .home-dashboard-product,
    .home-outbound-studio,
    .home-impact-story,
    .home-personal-story,
    .home-demo-dossier,
    .talking-websites-experience,
    .research-intelligence-home-preview
  ){
    animation:home-mobile-scene-arrive .64s cubic-bezier(.2,.72,.25,1) 1 both;
  }

  body.home-page.home-motion-ready .home-hero.is-home-motion-active .xl-strip .item{
    animation:home-mobile-scene-arrive .52s cubic-bezier(.2,.72,.25,1) 1 both;
  }

  body.home-page.home-motion-ready .home-hero.is-home-motion-active .xl-strip .col-xl-4:nth-child(2) .item{
    animation-delay:.06s;
  }

  body.home-page.home-motion-ready .home-hero.is-home-motion-active .xl-strip .col-xl-4:nth-child(3) .item{
    animation-delay:.12s;
  }

  body.home-page.home-motion-ready .home-hero.is-home-motion-active .home-ai-workflow-grid .app-widget.is-active{
    animation:home-mobile-signal 1.15s ease-in-out 2;
  }

  body.home-page.home-motion-ready .home-section.is-home-motion-active .talking-websites-experience__top i{
    animation:talking-website-presence 1.35s ease-in-out 3;
  }

  body.home-page.home-motion-ready .home-section.is-home-motion-active .talking-websites-orb i{
    animation:talking-website-wave 1.05s cubic-bezier(.45,.05,.55,.95) 4;
  }

  body.home-page.home-motion-ready .home-section.is-home-motion-active .home-pressure-panel .home-service-artifact{
    animation:home-mobile-scene-arrive .48s cubic-bezier(.2,.72,.25,1) 1 both;
  }

  body.home-page .home-main :is(
    .btn,
    .home-outbound-tab,
    .home-collection-toggle,
    .home-faq-item summary,
    .faq-card,
    .home-ai-workflow-grid [data-ai-workflow-card],
    [data-demo-artifact-tab]
  ).is-home-touching{
    opacity:.88;
    transform:scale(.975)!important;
    transition:opacity .12s ease,transform .12s ease!important;
  }
}

/* If enhancement cannot initialise, content must remain readable rather than
   waiting invisibly for an observer callback that will never arrive. */
body.home-page.home-motion-fallback .home-reveal{
  opacity:1!important;
  transform:none!important;
  transition:none!important;
}

@media (prefers-reduced-motion:reduce){
  body.home-page.home-motion-ready .is-home-motion-active,
  body.home-page.home-motion-ready .is-home-motion-active::before,
  body.home-page.home-motion-ready .is-home-motion-active::after,
  body.home-page .is-home-touching{
    animation:none!important;
    transform:none!important;
    transition:none!important;
  }

  body.home-page.home-enhanced .home-reveal{
    opacity:1!important;
    transform:none!important;
    transition:none!important;
  }
}

/* Essential live previews keep a low-motion signal even when a mobile OS
   requests reduced motion. Text crossfades without spatial movement, and the
   capability change uses opacity only; all decorative scene motion stays off. */
@keyframes home-reduced-signal{
  0%{opacity:.72}
  100%{opacity:1}
}

@media (prefers-reduced-motion:reduce){
  body.home-page .home-hero-headline-copy{
    transform:none!important;
    transition:opacity .18s ease!important;
  }

  body.home-page .home-hero-headline-copy.is-changing{
    opacity:.32!important;
    filter:none!important;
    transform:none!important;
  }

  body.home-page .home-ai-workflow-grid .app-widget{
    transition:opacity .18s ease,border-color .18s ease,background-color .18s ease!important;
  }

  body.home-page .home-ai-workflow-grid .app-widget.is-active{
    animation:home-reduced-signal .72s ease-out 1 both!important;
  }
}

@media (forced-colors:active){
  body.home-page.home-motion-ready .is-home-motion-active,
  body.home-page.home-motion-ready .is-home-motion-active::before,
  body.home-page.home-motion-ready .is-home-motion-active::after,
  body.home-page .is-home-touching{
    animation:none!important;
    transform:none!important;
  }
}

/* Mobile form controls: prevent focus zoom and keep focus treatment contained. */
@media (max-width:899.98px), (hover:none) and (pointer:coarse){
  :where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]),textarea,select,.form-control,.form-select){
    min-width:0;
    max-width:100%;
    font-size:16px!important;
  }
  :where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]),textarea,select,.form-control,.form-select):focus,
  :where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]),textarea,select,.form-control,.form-select):focus-visible{
    outline:0!important;
    border-color:#56b791!important;
    box-shadow:inset 0 0 0 1px rgba(47,155,116,.34)!important;
  }
}


/*
 * AI-Powered Business-to-Business Lead Generation public landing page
 * Code-designed product visuals, responsive from small mobile to wide desktop.
 */

:root{
  --lead-ink:#071426;
  --lead-ink-soft:#33435b;
  --lead-night:#071321;
  --lead-night-2:#0b1b2f;
  --lead-blue:#2877f5;
  --lead-blue-2:#5ea8ff;
  --lead-cyan:#44d5e8;
  --lead-mint:#43d8a2;
  --lead-lilac:#8d84ff;
  --lead-paper:#f7fbff;
  --lead-paper-blue:#eaf5ff;
  --lead-line:rgba(32,72,118,.14);
  --lead-shadow:0 26px 70px rgba(7,30,61,.14);
  --lead-radius:28px;
}

.lead-landing-root{
  background:var(--lead-night);
}

.lead-landing-page{
  background:var(--lead-night);
  color:#eef6ff;
}

.lead-landing-page *{
  box-sizing:border-box;
}

.lead-landing-main{
  min-width:0;
  overflow:hidden;
}

.lead-container{
  width:min(100% - 2rem, 1240px);
  margin-inline:auto;
}

.lead-skip-link{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
}

.lead-skip-link:focus-visible{
  position:fixed;
  top:calc(var(--bsb-menu-offset, 64px) + .75rem);
  left:1rem;
  z-index:5000;
  width:auto;
  height:auto;
  padding:.75rem 1rem;
  margin:0;
  overflow:visible;
  clip:auto;
  clip-path:none;
  border-radius:12px;
  background:#fff;
  color:#071426;
  font-weight:850;
  text-decoration:none;
  white-space:normal;
}

.lead-hero{
  position:relative;
  isolation:isolate;
  padding:clamp(3rem, 7vw, 6.75rem) 0 clamp(3.25rem, 7vw, 6.5rem);
  overflow:hidden;
  background:
    linear-gradient(120deg, rgba(65,127,255,.10), transparent 42%),
    radial-gradient(circle at 82% 22%, rgba(68,213,232,.12), transparent 32%),
    linear-gradient(180deg, #071321 0%, #0a1a2e 100%);
}

.lead-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  opacity:.25;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:54px 54px;
  -webkit-mask-image:linear-gradient(to bottom, #000, transparent 88%);
  mask-image:linear-gradient(to bottom, #000, transparent 88%);
}

.lead-orb{
  position:absolute;
  z-index:-1;
  border-radius:999px;
  filter:blur(2px);
  pointer-events:none;
}

.lead-orb--one{
  width:320px;
  height:320px;
  top:-190px;
  left:4%;
  background:radial-gradient(circle, rgba(78,137,255,.22), transparent 68%);
}

.lead-orb--two{
  width:500px;
  height:500px;
  right:-250px;
  bottom:-220px;
  background:radial-gradient(circle, rgba(58,220,215,.16), transparent 68%);
}

.lead-hero__grid{
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items:center;
  gap:clamp(2.5rem, 5vw, 5rem);
}

.lead-hero__copy{
  min-width:0;
}

.lead-kicker{
  display:flex;
  align-items:center;
  gap:.65rem;
  margin:0 0 1rem;
  color:#aeeaff;
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.12em;
  line-height:1.35;
  text-transform:uppercase;
}

.lead-kicker > span{
  width:31px;
  height:31px;
  display:inline-grid;
  place-items:center;
  flex:0 0 auto;
  border:1px solid rgba(174,234,255,.23);
  border-radius:10px;
  background:rgba(94,168,255,.12);
  box-shadow:inset 0 0 18px rgba(68,213,232,.05);
}

.lead-kicker--blue{
  color:#1768d9;
}

.lead-kicker--blue > span{
  color:#1768d9;
  border-color:rgba(23,104,217,.16);
  background:#e7f3ff;
}

.lead-hero h1{
  max-width:15.2ch;
  margin:0;
  color:#fff;
  font-size:clamp(2.55rem, 4.25vw, 4rem);
  font-weight:950;
  letter-spacing:-.055em;
  line-height:.98;
  text-wrap:balance;
}

.lead-hero__intro{
  max-width:64ch;
  margin:1.5rem 0 0;
  color:rgba(226,237,251,.76) !important;
  font-size:clamp(1rem, 1.5vw, 1.16rem);
  line-height:1.75;
}

.lead-hero__actions,
.lead-final-cta__actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.8rem;
}

.lead-hero__actions{
  margin-top:1.8rem;
}

.lead-hero__actions .lead-button{
  padding-inline:.85rem;
  font-size:.84rem;
}

.lead-button{
  min-height:52px;
  padding:.8rem 1rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.65rem;
  border:1px solid transparent;
  border-radius:15px;
  font:inherit;
  font-size:.91rem;
  font-weight:850;
  line-height:1.2;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.lead-button:hover{
  transform:translateY(-2px);
}

.lead-button:focus-visible,
.lead-workflow__tabs button:focus-visible,
.lead-faq-list summary:focus-visible,
.lead-text-link:focus-visible{
  outline:3px solid #83d9ff;
  outline-offset:4px;
}

.lead-button--primary{
  color:#061323;
  background:linear-gradient(135deg, #fff, #aeeaff);
  box-shadow:0 14px 34px rgba(68,213,232,.18);
}

.lead-button--primary:hover{
  color:#061323;
  box-shadow:0 18px 42px rgba(68,213,232,.25);
}

.lead-button--secondary{
  color:#eff8ff;
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.055);
}

.lead-button--secondary:hover{
  color:#fff;
  border-color:rgba(142,216,255,.34);
  background:rgba(255,255,255,.09);
}

.lead-button--dark{
  color:#fff;
  background:#0b1b2f;
  box-shadow:0 12px 30px rgba(7,20,38,.13);
}

.lead-button--dark:hover{
  color:#fff;
  background:#123052;
}

.lead-button--white{
  color:#071426;
  background:#fff;
  box-shadow:0 16px 36px rgba(0,0,0,.18);
}

.lead-button--white:hover{
  color:#071426;
  box-shadow:0 20px 42px rgba(0,0,0,.25);
}

.lead-button--ghost{
  color:#fff;
  border-color:rgba(255,255,255,.19);
  background:rgba(255,255,255,.06);
}

.lead-button--ghost:hover{
  color:#fff;
  border-color:rgba(255,255,255,.38);
  background:rgba(255,255,255,.1);
}

.lead-hero__proof{
  margin:2rem 0 0;
  padding:1.25rem 0 0;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1rem;
  border-top:1px solid rgba(255,255,255,.10);
  list-style:none;
}

.lead-hero__proof li{
  min-width:0;
  display:flex;
  align-items:flex-start;
  gap:.6rem;
  color:#a8bdd7;
}

.lead-hero__proof li > i{
  margin-top:.1rem;
  color:#63ddca;
}

.lead-hero__proof span{
  display:flex;
  flex-direction:column;
  gap:.2rem;
  font-size:.72rem;
  line-height:1.35;
}

.lead-hero__proof strong{
  color:#f8fbff;
  font-size:.78rem;
}

.lead-hero__visual{
  min-width:0;
  perspective:1400px;
}

.lead-console{
  position:relative;
  width:100%;
  overflow:hidden;
  border:1px solid rgba(166,219,255,.22);
  border-radius:26px;
  background:rgba(4,15,27,.88);
  box-shadow:0 40px 100px rgba(0,0,0,.42), 0 0 0 8px rgba(255,255,255,.022);
  transform:rotateY(-3deg) rotateX(1deg);
  transform-origin:center;
}

.lead-console::after{
  content:"";
  position:absolute;
  inset:-40% auto auto -20%;
  width:55%;
  height:180%;
  pointer-events:none;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.045), transparent);
  transform:rotate(18deg);
  animation:lead-console-glint 8s ease-in-out infinite;
}

@keyframes lead-console-glint{
  0%, 68%{ transform:translateX(-120%) rotate(18deg); }
  100%{ transform:translateX(360%) rotate(18deg); }
}

.lead-console__topbar{
  min-height:65px;
  padding:.9rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:linear-gradient(90deg, rgba(64,129,234,.12), rgba(255,255,255,.025));
}

.lead-console__identity{
  min-width:0;
  display:flex;
  align-items:center;
  gap:.7rem;
}

.lead-console__identity > span:last-child{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.lead-console__identity small,
.lead-console__section-head small,
.lead-console__results-heading small{
  color:#8ca7c4;
  font-size:.61rem;
  font-weight:780;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.lead-console__identity strong{
  margin-top:.15rem;
  color:#fff;
  font-size:.9rem;
}

.lead-console__mark{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border:1px solid rgba(142,216,255,.22);
  border-radius:12px;
  color:#dff7ff;
  background:linear-gradient(135deg, rgba(79,140,255,.45), rgba(68,213,232,.16));
}

.lead-console__status{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  flex:0 0 auto;
  color:#bfeede;
  font-size:.66rem;
  font-weight:800;
}

.lead-console__status i,
.lead-console__scanning i{
  width:7px;
  height:7px;
  display:inline-block;
  border-radius:999px;
  background:#43d8a2;
  box-shadow:0 0 0 5px rgba(67,216,162,.10);
}

.lead-console__progress{
  padding:.78rem 1rem;
  display:grid;
  grid-template-columns:auto 1fr auto 1fr auto 1fr auto;
  align-items:center;
  gap:.55rem;
  border-bottom:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.025);
}

.lead-console__progress span{
  display:flex;
  align-items:center;
  gap:.38rem;
  color:#718ca9;
  font-size:.59rem;
  font-weight:780;
}

.lead-console__progress span b{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.10);
  border-radius:8px;
  color:#91a8c1;
  font-size:.56rem;
}

.lead-console__progress span.is-active{
  color:#eaf9ff;
}

.lead-console__progress span.is-active b{
  border-color:rgba(92,202,239,.4);
  color:#08182a;
  background:#8de1f1;
}

.lead-console__progress > i{
  height:1px;
  background:linear-gradient(90deg, rgba(94,168,255,.42), rgba(255,255,255,.08));
}

.lead-console__body{
  padding:1rem;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:.85rem;
}

.lead-console__brief,
.lead-console__results{
  min-width:0;
  padding:.9rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:17px;
  background:rgba(255,255,255,.035);
}

.lead-console__section-head{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:.6rem;
}

.lead-console__section-head > span{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:#9adfff;
  background:rgba(79,140,255,.13);
}

.lead-console__section-head div{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.lead-console__section-head h2,
.lead-console__results-heading h2{
  margin:.15rem 0 0;
  color:#f5faff;
  font-size:.78rem;
  font-weight:850;
}

.lead-console__section-head em{
  padding:.28rem .42rem;
  border-radius:7px;
  color:#8ce9c8;
  background:rgba(67,216,162,.09);
  font-size:.55rem;
  font-style:normal;
  font-weight:850;
}

.lead-console__fields{
  margin:.8rem 0 0;
  display:grid;
  gap:.48rem;
}

.lead-console__fields div{
  padding:.58rem .62rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:10px;
  background:rgba(4,15,27,.45);
}

.lead-console__fields dt{
  margin:0 0 .22rem;
  color:#7892af;
  font-size:.54rem;
  font-weight:760;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.lead-console__fields dd{
  margin:0;
  color:#e7f2ff;
  font-size:.65rem;
  font-weight:750;
  line-height:1.35;
}

.lead-console__fields dd i{
  margin-right:.25rem;
  color:#5fcbeb;
}

.lead-console__filter-row{
  margin-top:.65rem;
  display:flex;
  flex-wrap:wrap;
  gap:.35rem;
}

.lead-console__filter-row span{
  padding:.31rem .42rem;
  border-radius:999px;
  color:#9fc2df;
  background:rgba(94,168,255,.09);
  font-size:.52rem;
  font-weight:750;
}

.lead-console__results-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;
}

.lead-console__results-heading > div{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.lead-console__scanning{
  display:flex;
  align-items:center;
  gap:.35rem;
  flex:0 0 auto;
  color:#8ce9c8;
  font-size:.52rem;
  font-weight:750;
}

.lead-console__scanning i{
  width:6px;
  height:6px;
  animation:lead-pulse 1.8s ease-in-out infinite;
}

@keyframes lead-pulse{
  50%{ opacity:.4; transform:scale(.78); }
}

.lead-result-card{
  margin-top:.58rem;
  padding:.58rem;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:.55rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:11px;
  background:rgba(4,15,27,.52);
}

.lead-result-card.is-featured{
  border-color:rgba(83,206,208,.25);
  background:linear-gradient(90deg, rgba(67,216,162,.075), rgba(4,15,27,.52));
}

.lead-result-card__score{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border:1px solid rgba(84,214,194,.22);
  border-radius:9px;
  color:#9af0d3;
  background:rgba(67,216,162,.08);
  font-size:.61rem;
  font-weight:900;
}

.lead-result-card__copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.14rem;
}

.lead-result-card__copy strong{
  overflow:hidden;
  color:#f2f8ff;
  font-size:.63rem;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lead-result-card__copy small{
  overflow:hidden;
  color:#7f9ab7;
  font-size:.51rem;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lead-result-card__tag{
  padding:.28rem .36rem;
  border-radius:7px;
  color:#9fc6e5;
  background:rgba(94,168,255,.09);
  font-size:.48rem;
  font-weight:780;
  white-space:nowrap;
}

.lead-console__footer{
  padding:.78rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  border-top:1px solid rgba(255,255,255,.07);
  color:#7f9ab7;
  background:rgba(0,0,0,.13);
  font-size:.54rem;
}

.lead-console__footer span,
.lead-console__footer strong{
  display:flex;
  align-items:center;
  gap:.4rem;
}

.lead-console__footer span i{
  color:#6bdab8;
}

.lead-console__footer strong{
  color:#baddf7;
  font-size:.56rem;
}

.lead-signal-strip{
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:#081626;
}

.lead-signal-strip__grid{
  min-height:86px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items:center;
  gap:1rem;
}

.lead-signal-strip__grid > span{
  display:flex;
  align-items:center;
  gap:.7rem;
  color:#dfeeff;
  font-size:.79rem;
}

.lead-signal-strip__grid b{
  color:#55cee9;
  font-size:.66rem;
}

.lead-signal-strip__grid > i{
  color:rgba(154,195,228,.3);
}

.lead-section{
  position:relative;
  padding:clamp(4.2rem, 8vw, 7.2rem) 0;
}

.lead-section--light{
  color:var(--lead-ink);
  background:var(--lead-paper);
}

.lead-section--studio{
  background:
    radial-gradient(circle at 70% 10%, rgba(68,213,232,.08), transparent 27%),
    linear-gradient(180deg, #071321, #0a1a2d);
}

.lead-section--principles{
  background:
    linear-gradient(120deg, rgba(69,133,255,.08), transparent 44%),
    #09192b;
}

.lead-section-heading{
  margin-bottom:clamp(2.2rem, 5vw, 3.6rem);
}

.lead-section-heading h2,
.lead-fit-copy h2,
.lead-faq-intro h2,
.lead-final-cta h2{
  margin:0;
  font-size:clamp(2rem, 4.2vw, 3.75rem);
  font-weight:940;
  letter-spacing:-.045em;
  line-height:1.04;
  text-wrap:balance;
}

.lead-section-heading--split{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(300px, .7fr);
  align-items:end;
  gap:clamp(2rem, 7vw, 6rem);
}

.lead-section-heading--split > p{
  margin:0;
  color:#53647a !important;
  font-size:1rem;
  line-height:1.75;
}

.lead-section--principles .lead-section-heading--split > p{
  color:#a9bed6 !important;
}

.lead-section-heading--centred{
  max-width:840px;
  margin-inline:auto;
  text-align:center;
}

.lead-section-heading--centred .lead-kicker{
  justify-content:center;
}

.lead-section-heading--centred > p:last-child{
  max-width:68ch;
  margin:1.1rem auto 0;
  color:#a9bed6 !important;
  line-height:1.75;
}

.lead-outcome-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:1rem;
}

.lead-outcome-grid article{
  position:relative;
  min-height:285px;
  padding:1.5rem;
  overflow:hidden;
  border:1px solid var(--lead-line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 34px rgba(12,43,78,.07);
  transition:transform .2s ease, box-shadow .2s ease;
}

.lead-outcome-grid article::after{
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  right:-90px;
  bottom:-90px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(78,142,255,.14), transparent 66%);
}

.lead-outcome-grid article:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 48px rgba(12,43,78,.11);
}

.lead-outcome-grid article > span{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:2rem;
  border-radius:15px;
  color:#1768d9;
  background:#e9f4ff;
  font-size:1.15rem;
}

.lead-outcome-grid article small{
  color:#2376df;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.lead-outcome-grid article h3{
  margin:.6rem 0 .75rem;
  color:#0a1a2d;
  font-size:1.13rem;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.25;
}

.lead-outcome-grid article p{
  margin:0;
  color:#5a6b7f !important;
  font-size:.9rem;
  line-height:1.65;
}

.lead-workflow{
  display:grid;
  grid-template-columns:310px minmax(0, 1fr);
  gap:1.1rem;
}

.lead-workflow__tabs{
  padding:.65rem;
  display:flex;
  flex-direction:column;
  gap:.5rem;
  align-self:stretch;
  border:1px solid rgba(255,255,255,.09);
  border-radius:23px;
  background:rgba(255,255,255,.035);
  box-shadow:0 24px 60px rgba(0,0,0,.16);
}

.lead-workflow__tabs button{
  min-height:91px;
  padding:.85rem;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:.75rem;
  border:1px solid transparent;
  border-radius:17px;
  color:#87a0bc;
  background:transparent;
  font:inherit;
  text-align:left;
  cursor:pointer;
  transition:border-color .18s ease, background-color .18s ease, color .18s ease, transform .18s ease;
}

.lead-workflow__tabs button:hover{
  color:#dff3ff;
  background:rgba(255,255,255,.04);
  transform:translateX(2px);
}

.lead-workflow__tabs button.is-active{
  border-color:rgba(105,214,239,.28);
  color:#fff;
  background:linear-gradient(135deg, rgba(65,126,242,.2), rgba(68,213,232,.08));
  box-shadow:inset 0 0 30px rgba(88,178,255,.045);
}

.lead-workflow__tabs button > b{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.1);
  border-radius:11px;
  color:#8fa8c3;
  font-size:.65rem;
}

.lead-workflow__tabs button.is-active > b{
  border-color:rgba(134,225,244,.36);
  color:#061524;
  background:#a5eaf5;
}

.lead-workflow__tabs button > span{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.2rem;
}

.lead-workflow__tabs button small{
  color:inherit;
  font-size:.59rem;
  font-weight:800;
  letter-spacing:.08em;
  opacity:.72;
  text-transform:uppercase;
}

.lead-workflow__tabs button strong{
  color:inherit;
  font-size:.86rem;
  font-weight:850;
}

.lead-workflow__tabs button > i{
  font-size:.78rem;
  opacity:.45;
}

.lead-workflow__screen{
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(167,220,255,.17);
  border-radius:25px;
  background:rgba(4,14,25,.74);
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.lead-workflow__screen-top{
  min-height:54px;
  padding:.8rem 1rem;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:1rem;
  border-bottom:1px solid rgba(255,255,255,.07);
  color:#9cb3cc;
  background:rgba(255,255,255,.025);
  font-size:.66rem;
}

.lead-workflow__screen-top > span{
  display:flex;
  gap:.35rem;
}

.lead-workflow__screen-top > span i{
  width:8px;
  height:8px;
  display:block;
  border-radius:999px;
  background:#31506c;
}

.lead-workflow__screen-top > span i:first-child{
  background:#ff7d7d;
}

.lead-workflow__screen-top > span i:nth-child(2){
  background:#f0c75e;
}

.lead-workflow__screen-top > span i:nth-child(3){
  background:#56d7a5;
}

.lead-workflow__screen-top > strong{
  color:#dcecff;
  font-size:.7rem;
  text-align:center;
}

.lead-workflow__screen-top > em{
  justify-self:end;
  color:#82ddc2;
  font-size:.61rem;
  font-style:normal;
  font-weight:750;
}

.lead-workflow__panel{
  min-height:515px;
  padding:clamp(1.25rem, 3vw, 2.2rem);
  display:grid;
  grid-template-columns:minmax(0, .82fr) minmax(360px, 1.18fr);
  align-items:center;
  gap:clamp(1.5rem, 4vw, 3.5rem);
}

.lead-workflow__panel[hidden]{
  display:none;
}

.lead-workflow__panel.is-entering{
  animation:lead-panel-in .35s ease both;
}

@keyframes lead-panel-in{
  from{ opacity:0; transform:translateY(8px); }
  to{ opacity:1; transform:translateY(0); }
}

.lead-workflow__eyebrow{
  display:flex;
  align-items:center;
  gap:.5rem;
  margin:0 0 .85rem;
  color:#73d9ee !important;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.lead-workflow__panel-copy h3{
  margin:0;
  color:#f5faff;
  font-size:clamp(1.65rem, 3vw, 2.55rem);
  font-weight:930;
  letter-spacing:-.04em;
  line-height:1.05;
  text-wrap:balance;
}

.lead-workflow__panel-copy > p:not(.lead-workflow__eyebrow){
  margin:1rem 0 0;
  color:#9fb5cd !important;
  font-size:.94rem;
  line-height:1.75;
}

.lead-workflow__panel-copy ul{
  margin:1.3rem 0 0;
  padding:0;
  display:grid;
  gap:.6rem;
  list-style:none;
}

.lead-workflow__panel-copy li{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
  color:#d4e3f2;
  font-size:.82rem;
  line-height:1.4;
}

.lead-workflow__panel-copy li i{
  width:21px;
  height:21px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:7px;
  color:#08192a;
  background:#73dcc2;
  font-size:.7rem;
}

.lead-workflow__mock{
  min-width:0;
  padding:1rem;
  border:1px solid rgba(161,220,255,.14);
  border-radius:20px;
  background:linear-gradient(150deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow:0 20px 50px rgba(0,0,0,.18), inset 0 0 40px rgba(74,145,255,.035);
}

.lead-mock-field{
  margin-bottom:.65rem;
  padding:.75rem;
  display:flex;
  flex-direction:column;
  gap:.3rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  background:rgba(2,12,22,.48);
}

.lead-mock-field small,
.lead-mock-summary small,
.lead-mock-ready small,
.lead-target-mock small,
.lead-mock-provider small,
.lead-mock-map-summary small,
.lead-qualify-mock small,
.lead-email-mock__head small,
.lead-review-mock small{
  color:#718da9;
  font-size:.57rem;
  font-weight:780;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.lead-mock-field strong{
  color:#e9f5ff;
  font-size:.72rem;
}

.lead-mock-field i{
  margin-right:.35rem;
  color:#67d3ea;
}

.lead-mock-summary{
  min-height:135px;
  padding:.85rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(2,12,22,.48);
}

.lead-mock-summary p{
  margin:.55rem 0;
  color:#c8d9e9 !important;
  font-size:.74rem;
  line-height:1.55;
}

.lead-mock-summary span{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color:#74d7eb;
  font-size:.6rem;
  font-weight:780;
}

.lead-mock-ready{
  margin-top:.7rem;
  padding:.7rem .8rem;
  display:flex;
  align-items:center;
  gap:.65rem;
  border:1px solid rgba(78,219,169,.18);
  border-radius:13px;
  color:#75e4bd;
  background:rgba(67,216,162,.07);
}

.lead-mock-ready > i{
  font-size:1.15rem;
}

.lead-mock-ready span{
  display:flex;
  flex-direction:column;
}

.lead-mock-ready strong{
  color:#dffcef;
  font-size:.68rem;
}

.lead-target-mock__head,
.lead-qualify-mock__head,
.lead-mock-provider{
  margin-bottom:.65rem;
  padding-bottom:.7rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.65rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.lead-target-mock__head > span{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:11px;
  color:#88e2f0;
  background:rgba(68,213,232,.11);
}

.lead-target-mock__head > div{
  min-width:0;
  display:flex;
  flex:1;
  flex-direction:column;
}

.lead-target-mock__head strong,
.lead-qualify-mock__head strong,
.lead-mock-provider strong{
  color:#eff8ff;
  font-size:.7rem;
}

.lead-target-mock__head em{
  padding:.3rem .48rem;
  border-radius:8px;
  color:#75dfbe;
  background:rgba(67,216,162,.08);
  font-size:.55rem;
  font-style:normal;
  font-weight:850;
}

.lead-target-mock__location{
  display:grid;
  grid-template-columns:minmax(0, 1.4fr) minmax(0, .6fr);
  gap:.55rem;
}

.lead-target-mock__chips{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
}

.lead-target-mock__chips span{
  padding:.38rem .52rem;
  border:1px solid rgba(111,212,236,.15);
  border-radius:999px;
  color:#8fb2d0;
  background:rgba(68,213,232,.045);
  font-size:.54rem;
  font-weight:750;
}

.lead-mock-provider span,
.lead-qualify-mock__head span{
  display:flex;
  align-items:center;
  gap:.45rem;
}

.lead-mock-provider i{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:#87e1f1;
  background:rgba(68,213,232,.1);
}

.lead-mock-search{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:.45rem;
}

.lead-mock-search span{
  min-width:0;
  padding:.65rem;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  color:#cfe1f2;
  background:rgba(2,12,22,.48);
  font:inherit;
  font-size:.58rem;
  font-weight:760;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lead-mock-search span i{
  margin-right:.3rem;
  color:#68d4ec;
}

.lead-mock-search .lead-mock-action{
  display:flex;
  align-items:center;
  justify-content:center;
  border-color:rgba(111,216,236,.25);
  color:#071524;
  background:#9fe7f2;
}

.lead-mock-map{
  position:relative;
  height:124px;
  margin:.65rem 0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  border-radius:13px;
  background:
    linear-gradient(32deg, transparent 47%, rgba(107,151,193,.13) 48%, rgba(107,151,193,.13) 51%, transparent 52%),
    linear-gradient(-25deg, transparent 46%, rgba(107,151,193,.10) 47%, rgba(107,151,193,.10) 50%, transparent 51%),
    radial-gradient(circle at 62% 42%, rgba(69,151,255,.14), transparent 30%),
    #071828;
}

.lead-mock-map > span{
  position:absolute;
  width:70px;
  height:70px;
  top:25px;
  left:47%;
  border:1px solid rgba(93,208,234,.18);
  border-radius:999px;
  box-shadow:0 0 0 19px rgba(93,208,234,.03), 0 0 0 38px rgba(93,208,234,.02);
}

.lead-mock-map .pin{
  position:absolute;
  width:14px;
  height:14px;
  border:3px solid #092037;
  border-radius:50% 50% 50% 0;
  background:#61d8eb;
  box-shadow:0 6px 16px rgba(61,216,235,.25);
  transform:rotate(-45deg);
}

.lead-mock-map .pin--one{ top:29%; left:30%; }
.lead-mock-map .pin--two{ top:58%; left:53%; background:#6de0b9; }
.lead-mock-map .pin--three{ top:28%; right:22%; background:#8e8fff; }
.lead-mock-map .pin--four{ bottom:15%; right:33%; background:#5ca8ff; }

.lead-mock-map-summary{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:.45rem;
}

.lead-mock-map-summary span{
  padding:.55rem;
  display:flex;
  min-width:0;
  flex-direction:column;
  border:1px solid rgba(255,255,255,.07);
  border-radius:10px;
  background:rgba(2,12,22,.45);
}

.lead-mock-map-summary strong{
  color:#eef8ff;
  font-size:.8rem;
}

.lead-mock-prospect{
  margin-top:.5rem;
  padding:.62rem;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:.55rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:11px;
  background:rgba(2,12,22,.45);
}

.lead-mock-prospect > span{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:#79e2c1;
  background:rgba(67,216,162,.1);
  font-size:.62rem;
  font-weight:900;
}

.lead-mock-prospect div{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.lead-mock-prospect strong{
  overflow:hidden;
  color:#f0f7ff;
  font-size:.66rem;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lead-mock-prospect small{
  overflow:hidden;
  color:#718da9;
  font-size:.52rem;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lead-mock-prospect > i{
  color:#61dfb5;
}

.lead-mock-prospect.is-selected{
  border-color:rgba(97,223,181,.22);
  background:rgba(67,216,162,.055);
}

.lead-mock-prospect em{
  margin-top:.2rem;
  color:#7794af;
  font-size:.51rem;
  font-style:normal;
}

.lead-mock-prospect em i{
  margin-right:.2rem;
  color:#63cfe7;
}

.lead-qualify-mock__head > small{
  padding:.3rem .45rem;
  border-radius:7px;
  color:#72ddbc;
  background:rgba(67,216,162,.08);
}

.lead-qualify-mock__footer{
  margin-top:.7rem;
  padding:.65rem .7rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.7rem;
  border-top:1px solid rgba(255,255,255,.08);
  color:#7e9ab5;
  font-size:.54rem;
}

.lead-qualify-mock__footer strong{
  color:#8ce3f1;
  font-size:.57rem;
}

.lead-email-mock__head{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:.65rem;
  padding-bottom:.75rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.lead-email-mock__head > span{
  width:35px;
  height:35px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:#93e4f3;
  background:rgba(68,213,232,.11);
}

.lead-email-mock__head div{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.lead-email-mock__head strong{
  overflow:hidden;
  color:#f1f8ff;
  font-size:.7rem;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lead-email-mock__head em{
  padding:.3rem .45rem;
  border-radius:7px;
  color:#f0d688;
  background:rgba(240,198,83,.09);
  font-size:.55rem;
  font-style:normal;
  font-weight:800;
}

.lead-email-mock dl{
  margin:.65rem 0;
  display:grid;
  gap:.45rem;
}

.lead-email-mock dl div{
  padding:.6rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:10px;
  background:rgba(2,12,22,.45);
}

.lead-email-mock dt{
  color:#718da9;
  font-size:.53rem;
  text-transform:uppercase;
}

.lead-email-mock dd{
  margin:.2rem 0 0;
  color:#dceaf8;
  font-size:.63rem;
  font-weight:720;
}

.lead-email-mock__body{
  min-height:143px;
  padding:.8rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:11px;
  background:rgba(2,12,22,.45);
}

.lead-email-mock__body p{
  margin:0 0 .5rem;
  color:#b7c9da !important;
  font-size:.62rem;
  line-height:1.55;
}

.lead-email-mock__body span{
  width:84%;
  height:5px;
  display:block;
  margin-top:.45rem;
  border-radius:999px;
  background:rgba(157,184,210,.1);
}

.lead-email-mock__body span:last-child{
  width:58%;
}

.lead-email-mock__timeline{
  margin-top:.75rem;
  display:grid;
  grid-template-columns:auto 1fr auto 1fr auto 1fr auto;
  align-items:center;
  gap:.35rem;
}

.lead-email-mock__timeline span{
  color:#7290ad;
  font-size:.52rem;
  font-weight:800;
}

.lead-email-mock__timeline span.is-active{
  color:#79dfc0;
}

.lead-email-mock__timeline i{
  height:1px;
  background:rgba(119,163,202,.17);
}

.lead-review-mock__mode{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.55rem;
}

.lead-review-mock__mode > span{
  padding:.7rem;
  display:grid;
  grid-template-columns:auto 1fr;
  grid-template-areas:"icon small" "icon strong";
  column-gap:.55rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  background:rgba(2,12,22,.45);
}

.lead-review-mock__mode > span.is-active{
  border-color:rgba(89,216,188,.25);
  background:rgba(67,216,162,.07);
}

.lead-review-mock__mode i{
  grid-area:icon;
  align-self:center;
  color:#79dcca;
}

.lead-review-mock__mode small{ grid-area:small; }
.lead-review-mock__mode strong{ grid-area:strong; color:#eef8ff; font-size:.67rem; }

.lead-review-mock__grid{
  margin-top:.65rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.5rem;
}

.lead-review-mock__grid span{
  padding:.65rem;
  display:flex;
  flex-direction:column;
  gap:.18rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:10px;
  background:rgba(2,12,22,.45);
}

.lead-review-mock__grid strong{
  color:#dfedf9;
  font-size:.65rem;
}

.lead-review-mock__rules{
  margin:.65rem 0;
  padding:.75rem;
  display:grid;
  gap:.45rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:11px;
  background:rgba(2,12,22,.45);
}

.lead-review-mock__rules span{
  display:flex;
  align-items:center;
  gap:.45rem;
  color:#b8cadb;
  font-size:.6rem;
}

.lead-review-mock__rules i{
  color:#6fdfbb;
}

.lead-review-mock__save{
  width:100%;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  border-radius:11px;
  color:#061525;
  background:linear-gradient(135deg, #baf1f7, #73dcc1);
  font-size:.68rem;
  font-weight:850;
}

.lead-workflow__note{
  max-width:900px;
  margin:1rem auto 0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:.5rem;
  color:#829bb6 !important;
  font-size:.72rem;
  line-height:1.5;
  text-align:center;
}

.lead-workflow__note i{
  margin-top:.1rem;
  color:#60cfe7;
}

.lead-fit-grid{
  display:grid;
  grid-template-columns:minmax(0, .78fr) minmax(0, 1.22fr);
  align-items:center;
  gap:clamp(2.5rem, 8vw, 7rem);
}

.lead-fit-copy > p:not(.lead-kicker){
  margin:1.25rem 0;
  color:#53647a !important;
  line-height:1.75;
}

.lead-text-link{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:#1768d9;
  font-size:.85rem;
  font-weight:850;
  text-decoration:none;
}

.lead-text-link:hover{
  color:#0b4da8;
  text-decoration:underline;
  text-underline-offset:4px;
}

.lead-fit-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.9rem;
}

.lead-fit-cards article{
  min-height:176px;
  padding:1.25rem;
  display:flex;
  align-items:flex-start;
  gap:1rem;
  border:1px solid var(--lead-line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 13px 30px rgba(13,46,83,.06);
}

.lead-fit-cards article > span{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:12px;
  color:#1768d9;
  background:#eaf4ff;
  font-size:.65rem;
  font-weight:900;
}

.lead-fit-cards h3{
  margin:0;
  color:#0b1b2e;
  font-size:1rem;
  font-weight:900;
}

.lead-fit-cards p{
  margin:.55rem 0 0;
  color:#5b6b7e !important;
  font-size:.84rem;
  line-height:1.6;
}

.lead-principle-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:1rem;
}

.lead-principle-grid article{
  min-height:244px;
  padding:1.4rem;
  border:1px solid rgba(255,255,255,.09);
  border-radius:21px;
  background:rgba(255,255,255,.035);
}

.lead-principle-grid article > i{
  width:45px;
  height:45px;
  display:grid;
  place-items:center;
  border:1px solid rgba(136,220,238,.17);
  border-radius:14px;
  color:#7bdded;
  background:rgba(68,213,232,.07);
  font-size:1.05rem;
}

.lead-principle-grid h3{
  margin:1.5rem 0 .65rem;
  color:#f3f9ff;
  font-size:1rem;
  font-weight:900;
}

.lead-principle-grid p{
  margin:0;
  color:#9db2ca !important;
  font-size:.84rem;
  line-height:1.65;
}

.lead-faq-grid{
  display:grid;
  grid-template-columns:minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items:start;
  gap:clamp(2.5rem, 8vw, 7rem);
}

.lead-faq-intro{
  position:sticky;
  top:calc(var(--bsb-menu-offset, 64px) + 1.5rem);
}

.lead-faq-intro > p:not(.lead-kicker){
  margin:1.15rem 0 1.5rem;
  color:#596a7d !important;
  line-height:1.75;
}

.lead-faq-list{
  border-top:1px solid var(--lead-line);
}

.lead-faq-list details{
  border-bottom:1px solid var(--lead-line);
}

.lead-faq-list summary{
  min-height:82px;
  padding:1.2rem 0;
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:center;
  gap:1rem;
  color:#0b1b2e;
  font-size:1rem;
  font-weight:850;
  line-height:1.4;
  list-style:none;
  cursor:pointer;
}

.lead-faq-list summary::-webkit-details-marker{
  display:none;
}

.lead-faq-list summary i{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:10px;
  color:#1768d9;
  background:#e8f3ff;
  transition:transform .18s ease;
}

.lead-faq-list details[open] summary i{
  transform:rotate(45deg);
}

.lead-faq-list details p{
  max-width:72ch;
  margin:-.35rem 0 1.4rem;
  color:#5a6b7f !important;
  font-size:.92rem;
  line-height:1.75;
}

.lead-final-cta{
  position:relative;
  isolation:isolate;
  padding:clamp(4.5rem, 9vw, 8rem) 0;
  overflow:hidden;
  background:
    linear-gradient(110deg, rgba(75,137,255,.24), transparent 54%),
    radial-gradient(circle at 84% 40%, rgba(67,216,162,.15), transparent 30%),
    #071321;
}

.lead-final-cta::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:.2;
  background-image:radial-gradient(rgba(255,255,255,.24) 1px, transparent 1px);
  background-size:24px 24px;
  -webkit-mask-image:linear-gradient(90deg, #000, transparent 75%);
  mask-image:linear-gradient(90deg, #000, transparent 75%);
}

.lead-orb--three{
  width:500px;
  height:500px;
  right:-200px;
  top:-220px;
  background:radial-gradient(circle, rgba(68,213,232,.13), transparent 68%);
}

.lead-final-cta__inner{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(330px, .65fr);
  align-items:center;
  gap:clamp(2.5rem, 7vw, 6rem);
}

.lead-final-cta h2{
  max-width:14ch;
  color:#fff;
}

.lead-final-cta > .lead-container > div:first-child > p:last-child{
  max-width:65ch;
  margin:1.25rem 0 0;
  color:#aec1d6 !important;
  line-height:1.75;
}

.lead-final-cta__actions{
  flex-direction:column;
  align-items:stretch;
}

.lead-final-cta__actions .lead-button{
  width:100%;
}

.lead-final-cta__actions small{
  margin-top:.45rem;
  display:flex;
  align-items:flex-start;
  gap:.5rem;
  color:#89a1ba;
  font-size:.69rem;
  line-height:1.5;
}

.lead-final-cta__actions small i{
  margin-top:.08rem;
  color:#6dddb9;
}

@media (max-width:1100px){
  .lead-hero__grid{
    grid-template-columns:1fr;
  }

  .lead-hero__copy{
    max-width:820px;
  }

  .lead-hero h1{
    max-width:14ch;
  }

  .lead-hero__visual{
    width:min(100%, 780px);
    margin-inline:auto;
  }

  .lead-console{
    transform:none;
  }

  .lead-outcome-grid,
  .lead-principle-grid{
    grid-template-columns:1fr 1fr;
  }

  .lead-workflow{
    grid-template-columns:1fr;
  }

  .lead-workflow__tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .lead-workflow__tabs button{
    min-height:76px;
  }
}

@media (max-width:820px){
  .lead-container{
    width:min(100% - 1.35rem, 1240px);
  }

  .lead-hero{
    padding-top:2.35rem;
  }

  .lead-hero__proof{
    grid-template-columns:1fr;
  }

  .lead-console__body,
  .lead-workflow__panel,
  .lead-section-heading--split,
  .lead-fit-grid,
  .lead-faq-grid,
  .lead-final-cta__inner{
    grid-template-columns:1fr;
  }

  .lead-console__brief{
    display:none;
  }

  .lead-signal-strip__grid{
    padding:1rem 0;
    grid-template-columns:1fr 1fr;
    gap:.75rem;
  }

  .lead-signal-strip__grid > i{
    display:none;
  }

  .lead-signal-strip__grid > span{
    min-height:54px;
    padding:.65rem;
    border:1px solid rgba(255,255,255,.07);
    border-radius:12px;
    background:rgba(255,255,255,.025);
  }

  .lead-section-heading--split{
    align-items:start;
    gap:1.25rem;
  }

  .lead-workflow__panel{
    min-height:0;
  }

  .lead-workflow__mock{
    width:min(100%, 580px);
  }

  .lead-faq-intro{
    position:static;
  }

  .lead-final-cta h2{
    max-width:18ch;
  }
}

@media (max-width:620px){
  .lead-hero h1{
    font-size:clamp(2.4rem, 12vw, 3.4rem);
  }

  .lead-hero__actions,
  .lead-hero__actions .lead-button{
    width:100%;
  }

  .lead-hero__actions{
    align-items:stretch;
    flex-direction:column;
  }

  .lead-console__topbar{
    align-items:flex-start;
  }

  .lead-console__status{
    padding-top:.15rem;
    font-size:.56rem;
  }

  .lead-console__progress{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:.35rem;
  }

  .lead-console__progress > i{
    display:none;
  }

  .lead-console__progress span{
    justify-content:center;
  }

  .lead-console__progress span b{
    width:27px;
    height:27px;
  }

  .lead-console__progress span{
    font-size:0;
  }

  .lead-console__body{
    padding:.65rem;
  }

  .lead-console__results{
    padding:.7rem;
  }

  .lead-result-card{
    grid-template-columns:auto minmax(0, 1fr);
  }

  .lead-result-card__tag{
    display:none;
  }

  .lead-console__footer{
    align-items:flex-start;
    flex-direction:column;
  }

  .lead-signal-strip__grid,
  .lead-outcome-grid,
  .lead-principle-grid,
  .lead-fit-cards,
  .lead-workflow__tabs{
    grid-template-columns:1fr;
  }

  .lead-outcome-grid article,
  .lead-principle-grid article,
  .lead-fit-cards article{
    min-height:0;
  }

  .lead-outcome-grid article > span{
    margin-bottom:1.2rem;
  }

  .lead-workflow__tabs button{
    min-height:66px;
  }

  .lead-workflow__screen-top{
    grid-template-columns:auto 1fr;
  }

  .lead-workflow__screen-top > strong{
    text-align:right;
  }

  .lead-workflow__screen-top > em{
    display:none;
  }

  .lead-workflow__panel{
    padding:1rem;
  }

  .lead-workflow__mock{
    padding:.75rem;
  }

  .lead-mock-search{
    grid-template-columns:1fr;
  }

  .lead-mock-search .lead-mock-action{
    display:none;
  }

  .lead-review-mock__mode,
  .lead-review-mock__grid{
    grid-template-columns:1fr;
  }

  .lead-email-mock__timeline{
    grid-template-columns:repeat(4, 1fr);
    gap:.35rem;
  }

  .lead-email-mock__timeline i{
    display:none;
  }

  .lead-email-mock__timeline span{
    padding:.35rem;
    border-radius:7px;
    text-align:center;
    background:rgba(255,255,255,.04);
  }

  .lead-section-heading h2,
  .lead-fit-copy h2,
  .lead-faq-intro h2,
  .lead-final-cta h2{
    font-size:clamp(2rem, 10vw, 2.8rem);
  }
}

/* Mobile-first interaction layer: compact controls first, progressively enhanced. */
.lead-hero{
  padding:2.25rem 0 3.5rem;
}

.lead-hero__grid,
.lead-workflow,
.lead-workflow__panel{
  grid-template-columns:minmax(0, 1fr);
}

.lead-workflow__tabs{
  display:flex;
  flex-direction:row;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  scrollbar-width:thin;
  scroll-snap-type:x proximity;
}

.lead-workflow__tabs button{
  min-width:min(82vw, 235px);
  min-height:70px;
  scroll-snap-align:start;
}

.lead-workflow__panel{
  min-height:0;
}

.lead-target-mock__location{
  grid-template-columns:1fr;
}

.lead-qualify-mock__footer{
  align-items:flex-start;
  flex-direction:column;
}

.lead-reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease, transform .55s cubic-bezier(.2,.75,.25,1);
}

.lead-reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (min-width:480px){
  .lead-target-mock__location{
    grid-template-columns:minmax(0, 1.4fr) minmax(0, .6fr);
  }

  .lead-qualify-mock__footer{
    align-items:center;
    flex-direction:row;
  }
}

@media (min-width:700px){
  .lead-hero{
    padding:3.5rem 0 5rem;
  }

  .lead-workflow__tabs{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    overflow:visible;
    scroll-snap-type:none;
  }

  .lead-workflow__tabs button{
    min-width:0;
    min-height:76px;
  }

  .lead-workflow__panel{
    padding:clamp(1.4rem, 3vw, 2.2rem);
  }
}

@media (min-width:1081px){
  .lead-hero{
    padding:clamp(4rem, 6vw, 6.25rem) 0 clamp(4rem, 6vw, 6rem);
  }

  .lead-hero__grid{
    grid-template-columns:minmax(0, .92fr) minmax(520px, 1.08fr);
  }

  .lead-workflow{
    grid-template-columns:310px minmax(0, 1fr);
  }

  .lead-workflow__tabs{
    display:flex;
    flex-direction:column;
  }

  .lead-workflow__tabs button{
    min-height:82px;
  }

  .lead-workflow__panel{
    min-height:570px;
    grid-template-columns:minmax(0, .82fr) minmax(360px, 1.18fr);
  }
}

@media (prefers-reduced-motion:reduce){
  .lead-landing-page *,
  .lead-landing-page *::before,
  .lead-landing-page *::after{
    scroll-behavior:auto !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }

  .lead-reveal{
    opacity:1;
    transform:none;
  }
}

/* 2026 B2B landing alignment, evidence route and accessible automatic tour. */
.lead-container{
  width:min(calc(100% - 28px), 1380px);
}

.lead-hero{
  padding-block:clamp(1.15rem, 4.5vw, 1.75rem) clamp(3.5rem, 6vw, 6rem);
}

.lead-section--handoffs{
  color:#eef7ff;
  background:
    radial-gradient(circle at 12% 10%, rgba(78,137,255,.13), transparent 28rem),
    linear-gradient(180deg, #081729, #071321);
}

.lead-section--handoffs .lead-section-heading--split > p{
  color:#aec2d8 !important;
}

.lead-handoff-route{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  overflow:hidden;
  border:1px solid rgba(158,219,255,.17);
  border-radius:24px;
  background:rgba(255,255,255,.035);
  box-shadow:0 30px 80px rgba(0,0,0,.2);
}

.lead-handoff-route article{
  position:relative;
  min-height:150px;
  padding:1.25rem;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:.8rem;
  border-right:1px solid rgba(255,255,255,.08);
}

.lead-handoff-route article:last-child{border-right:0}
.lead-handoff-route article > b{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:1px solid rgba(126,220,255,.25);
  border-radius:13px;
  color:#9de9f4;
  background:rgba(78,137,255,.11);
  font-size:.68rem;
}
.lead-handoff-route article > span{min-width:0;display:flex;flex-direction:column;gap:.3rem}
.lead-handoff-route article small{color:#78dcec;font-size:.63rem;font-weight:850;letter-spacing:.09em;text-transform:uppercase}
.lead-handoff-route article strong{color:#eef7ff;font-size:.88rem;line-height:1.4}
.lead-handoff-route article > i{color:rgba(143,205,239,.42)}
.lead-handoff-route article:last-child > i{color:#6fe0bb;font-size:1.1rem}

.lead-workflow__screen-top > .lead-workflow__screen-lights{
  display:flex;
  gap:.35rem;
}
.lead-workflow__screen-top > .lead-workflow__screen-lights i{
  width:8px;
  height:8px;
  display:block;
  border-radius:999px;
  background:#31506c;
}
.lead-workflow__screen-top > .lead-workflow__screen-lights i:first-child{background:#ff7d7d}
.lead-workflow__screen-top > .lead-workflow__screen-lights i:nth-child(2){background:#f0c75e}
.lead-workflow__screen-top > .lead-workflow__screen-lights i:nth-child(3){background:#56d7a5}

.lead-workflow__screen-top > .lead-workflow__tour-tools{
  justify-self:end;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:.55rem;
}
.lead-workflow__tour-tools em{
  color:#82ddc2;
  font-size:.61rem;
  font-style:normal;
  font-weight:750;
  white-space:nowrap;
}
.lead-workflow__screen-top > .lead-workflow__tour-tools em i{
  width:auto;
  height:auto;
  display:inline;
  margin-right:.2rem;
  border-radius:0;
  color:inherit;
  background:none;
}
.lead-workflow__tour-tools button{
  min-height:36px;
  padding:.42rem .62rem;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  border:1px solid rgba(142,216,255,.22);
  border-radius:10px;
  color:#dcecff;
  background:rgba(255,255,255,.055);
  font:inherit;
  font-size:.61rem;
  font-weight:800;
  cursor:pointer;
}
.lead-workflow__tour-tools button:hover{border-color:rgba(142,216,255,.5);background:rgba(255,255,255,.1)}
.lead-workflow__tour-tools button:focus-visible{outline:3px solid #8ed8ff;outline-offset:2px}
.lead-workflow__screen-top > .lead-workflow__tour-tools button i{
  width:auto;
  height:auto;
  display:inline;
  border-radius:0;
  color:#8fe3ff;
  background:none;
  font-size:.75rem;
}

.lead-workflow__autoplay{
  height:3px;
  overflow:hidden;
  background:rgba(255,255,255,.06);
}
.lead-workflow__autoplay i{
  width:100%;
  height:100%;
  display:block;
  opacity:0;
  background:linear-gradient(90deg,#6b8cff,#68e2d0);
  transform:scaleX(0);
  transform-origin:left;
}
.lead-workflow.is-auto-playing .lead-workflow__autoplay i{
  opacity:1;
  animation:lead-workflow-progress var(--lead-workflow-duration,7500ms) linear forwards;
}
@keyframes lead-workflow-progress{to{transform:scaleX(1)}}

@media (min-width:2200px){
  .lead-container{width:min(calc(100% - 28px),1660px)}
  .lead-landing-main{font-size:18px}
}

@media (max-width:1000px){
  .lead-handoff-route{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lead-handoff-route article:nth-child(2){border-right:0}
  .lead-handoff-route article:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.08)}
}

@media (max-width:700px){
  .lead-container{width:min(calc(100% - 28px),1380px)}
  .lead-handoff-route{grid-template-columns:1fr}
  .lead-handoff-route article{min-height:112px;border-right:0;border-bottom:1px solid rgba(255,255,255,.08)}
  .lead-handoff-route article:nth-child(2){border-bottom:1px solid rgba(255,255,255,.08)}
  .lead-handoff-route article:last-child{border-bottom:0}
  .lead-workflow__screen-top{grid-template-columns:auto minmax(0,1fr);gap:.65rem}
  .lead-workflow__screen-top > strong{text-align:right}
  .lead-workflow__screen-top > .lead-workflow__tour-tools{grid-column:1 / -1;width:100%;justify-content:space-between}
  .lead-workflow__tour-tools button{min-height:44px}
}

@media (prefers-reduced-motion:reduce){
  .lead-workflow__autoplay{display:none}
}
