/* Shared styles for BlueBee Sites sub-pages */
:root{
  --bg:#1A2029; --bg-deep:#12161D; --bg-elev:#1F2733;
  --line:rgba(255,255,255,.08); --line-2:rgba(255,255,255,.14);
  --ink:#EAF1FA; --ink-soft:#A6B3C4; --ink-mute:#6B7787;
  --brand:#25A4F2; --brand-2:#57BCFF; --brand-deep:#0E6FAE;
  --good:#58D9A3; --warn:#F26A6A;
  --r-sm:10px; --r-md:14px; --r-lg:20px; --r-xl:28px;
  --maxw:1100px; --pad-x:clamp(20px,4vw,56px);
  --t:cubic-bezier(.2,.7,.2,1);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;overflow-x:hidden}
body{
  font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
  background:var(--bg); color:var(--ink); line-height:1.6;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
:focus-visible{outline:2px solid var(--brand);outline-offset:3px;border-radius:6px}

h1,h2,h3,h4{font-family:"Plus Jakarta Sans",sans-serif;line-height:1.1;letter-spacing:-.02em;margin:0;font-weight:700}
h1{font-size:clamp(36px,5.4vw,64px);font-weight:800;letter-spacing:-.03em;max-width:18ch}
h2{font-size:clamp(28px,3.4vw,40px);font-weight:700}
h3{font-size:clamp(18px,1.4vw,21px);font-weight:600}
p{text-wrap:pretty}
.accent{color:var(--brand);background:linear-gradient(180deg,#57BCFF,#1488D6);-webkit-background-clip:text;background-clip:text;color:transparent}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--brand);font-weight:600;
  padding:7px 12px;border:1px solid rgba(37,164,242,.28);
  border-radius:999px;background:rgba(37,164,242,.07);
}
.eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--brand);box-shadow:0 0 12px var(--brand)}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 var(--pad-x); }
section{position:relative;padding:clamp(64px,8vw,112px) 0}
section+section{border-top:1px solid var(--line)}

/* ---------- header ---------- */
.header{
  position:sticky;top:0;z-index:50;
  transition:backdrop-filter .3s,background .3s,border-color .3s;
  border-bottom:1px solid transparent;
}
.header.is-scrolled{
  background:rgba(18,22,29,.78);
  backdrop-filter:blur(14px) saturate(1.2);
  border-bottom-color:var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:72px;gap:12px}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:20px;letter-spacing:-.01em;flex-shrink:0}
.logo-mark{
  width:auto;height:34px;
  display:grid;place-items:center;
}
.logo-mark img{height: 30px;width:auto;object-fit:contain}
.nav-links{display:flex;gap:28px;font-size:14px;color:var(--ink-soft);font-weight:500}
.nav-links a{transition:color .2s} .nav-links a:hover{color:var(--ink)}
.nav-links a.active{color:var(--ink)}

/* hamburger */
.menu-btn{
  display:none;width:42px;height:42px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line-2);
  border-radius:10px;
  align-items:center;justify-content:center;flex-shrink:0;
}
.menu-btn svg{width:20px;height:20px;color:var(--ink)}

/* mobile drawer */
.mobile-drawer{
  position:fixed;inset:0;z-index:100;
  background:rgba(8,12,18,.6);
  backdrop-filter:blur(8px);
  display:none;opacity:0;
  transition:opacity .25s ease;
  align-items:stretch;justify-content:flex-end;
}
.mobile-drawer.open{display:flex;opacity:1}
.mobile-drawer-panel{
  width:min(360px,92vw);height:100vh;height:100dvh;
  background:linear-gradient(180deg,#1E2632,#14202D);
  border-left:1px solid var(--line-2);
  padding:22px 22px 28px;
  display:flex;flex-direction:column;gap:22px;
  transform:translateX(40px);transition:transform .3s var(--t);
  box-shadow:-20px 0 60px -10px rgba(0,0,0,.6);
}
.mobile-drawer.open .mobile-drawer-panel{transform:translateX(0)}
.mobile-drawer-head{display:flex;justify-content:space-between;align-items:center}
.mobile-drawer-close{
  width:38px;height:38px;border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line-2);
  display:flex;align-items:center;justify-content:center;
}
.mobile-drawer-close svg{width:18px;height:18px}
.mobile-drawer-links{display:flex;flex-direction:column;gap:2px;overflow-y:auto}
.mobile-drawer-links a{
  padding:13px 14px;border-radius:10px;
  font-size:15.5px;font-weight:600;
  color:var(--ink-soft);
  transition:background .2s,color .2s;
  display:flex;align-items:center;justify-content:space-between;
}
.mobile-drawer-links a:hover{background:rgba(37,164,242,.08);color:var(--ink)}
.mobile-drawer-links a svg{width:14px;height:14px;opacity:.5}
.mobile-drawer-group-label{
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--ink-mute);font-weight:700;padding:12px 14px 4px;
}
.mobile-drawer-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}
.mobile-drawer-cta .btn{justify-content:center}

@media (max-width:820px){
  .nav-links{display:none}
  .menu-btn{display:flex}
  .nav-cta{display:none}
}
body.no-scroll{overflow:hidden}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 22px;border-radius:12px;font-weight:600;font-size:15px;
  transition:transform .2s,box-shadow .3s,background .2s,border-color .2s;
}
.btn-primary{
  background:linear-gradient(180deg,#2EB4FF,#1E94DB);color:#06121C;
  box-shadow:0 10px 28px -8px rgba(37,164,242,.55),inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 16px 36px -10px rgba(37,164,242,.7)}
.btn-ghost{background:rgba(255,255,255,.03);border:1px solid var(--line-2);color:var(--ink)}
.btn-ghost:hover{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.22)}
.btn-sm{padding:9px 14px;font-size:13.5px;border-radius:10px}

/* ---------- breadcrumb ---------- */
.crumbs{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--ink-mute);margin-bottom:24px}
.crumbs a{transition:color .2s} .crumbs a:hover{color:var(--ink)}
.crumbs svg{width:12px;height:12px;color:var(--ink-mute)}

/* ---------- hero ---------- */
.page-hero{padding:clamp(80px,9vw,120px) 0 clamp(56px,7vw,96px);position:relative;overflow:hidden}
.page-hero::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(900px 500px at 18% -10%,rgba(37,164,242,.18),transparent 60%),
    linear-gradient(180deg,#1A2029,#12161D);
}
.page-hero h1{margin:18px 0 22px;max-width:18ch}
.page-hero .lead{font-size:clamp(17px,1.4vw,20px);color:var(--ink-soft);max-width:62ch;margin:0 0 32px}
.page-hero .lead strong{color:var(--ink);font-weight:600}
.cta-row{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.trust-row{display:flex;flex-wrap:wrap;gap:18px 28px;align-items:center;margin-top:32px;color:var(--ink-soft);font-size:14px}
.trust-row .item{display:inline-flex;align-items:center;gap:8px}
.trust-row svg{width:18px;height:18px;color:var(--brand)}

/* ---------- prose ---------- */
.prose{max-width:72ch;margin:0 auto;font-size:17px;color:var(--ink-soft)}
.prose h2{color:var(--ink);margin:48px 0 18px}
.prose h3{color:var(--ink);margin:32px 0 12px;font-size:20px}
.prose p{margin:0 0 18px;line-height:1.7}
.prose ul{padding:0 0 0 20px;margin:0 0 18px}
.prose ul li{margin-bottom:8px;line-height:1.6}
.prose strong{color:var(--ink);font-weight:600}
.prose a{color:var(--brand-2);text-decoration:underline;text-decoration-color:rgba(37,164,242,.4);text-underline-offset:3px}
.prose a:hover{text-decoration-color:var(--brand)}
.prose blockquote{border-left:3px solid var(--brand);padding:6px 0 6px 18px;margin:24px 0;font-size:18px;color:var(--ink);font-style:italic}

/* ---------- generic cards/grids ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
@media (max-width:880px){.grid-3{grid-template-columns:1fr}.grid-2{grid-template-columns:1fr}}
.card{
  padding:24px;border-radius:var(--r-lg);
  background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.01));
  border:1px solid var(--line-2);
}
.card .ic{
  width:42px;height:42px;border-radius:12px;
  background:linear-gradient(180deg,rgba(37,164,242,.18),rgba(37,164,242,.05));
  border:1px solid rgba(37,164,242,.3);color:var(--brand-2);
  display:grid;place-items:center;margin-bottom:16px;
}
.card h3{margin-bottom:8px}
.card p{margin:0;color:var(--ink-soft);font-size:14.5px;line-height:1.55}

/* ---------- cta band ---------- */
.cta-band{
  padding:48px;border-radius:var(--r-xl);text-align:center;
  background:linear-gradient(165deg,rgba(37,164,242,.18),rgba(37,164,242,.04) 50%,rgba(255,255,255,.02));
  border:1px solid rgba(37,164,242,.4);
  box-shadow:0 30px 70px -25px rgba(37,164,242,.5);
}
.cta-band h2{margin-bottom:14px}
.cta-band p{color:var(--ink-soft);max-width:48ch;margin:0 auto 28px;font-size:16.5px}

/* ---------- footer ---------- */
footer{padding:56px 0 36px;border-top:1px solid var(--line)}
.foot{display:flex;gap:32px;align-items:flex-start;justify-content:space-between;flex-wrap:wrap; margin-bottom: 80px;}
.foot .col{display:flex;flex-direction:column;gap:8px}
.foot .tag{color:var(--ink-mute);font-size:14px;max-width:32ch}
.foot a{color:var(--ink-soft);font-size:14px;transition:color .2s}
.foot a:hover{color:var(--ink)}
.foot .links{display:flex;flex-direction:column;gap:8px}
.foot .copy{
  color:var(--ink-mute);font-size:13px;margin-top:36px;
  display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;
  padding-top:22px;border-top:1px solid var(--line);
}

/* sticky CTA */
.sticky-cta{
  position:fixed;left:12px;right:12px;bottom:12px;z-index:80;
  display:none;
  padding:10px 12px 10px 16px;
  background:linear-gradient(180deg,rgba(28,34,44,.95),rgba(20,26,36,.95));
  backdrop-filter:blur(16px);
  border:1px solid var(--line-2);
  border-radius:14px;
  box-shadow:0 24px 50px -16px rgba(0,0,0,.7);
  align-items:center;justify-content:space-between;gap:12px;
}
.sticky-cta b{font-size:14px;font-weight:700;color:#fff}
.sticky-cta span{font-size:12px;color:var(--ink-mute);display:block;margin-top:1px}
.sticky-cta .btn{padding:10px 14px;font-size:13.5px;border-radius:10px}
@media (max-width:780px){.sticky-cta{display:flex}body{padding-bottom:80px}}

/*@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
}*/
