/* UseLocalGuide Premium UI System
   Works on shared hosting + /public rewrites (no build tools required)
*/

:root{
  --bg:#ffffff;
  --bg-soft:#f6f8fc;
  --bg-alt:#f2f5fb;
  --text:#0b1220;
  --muted:#5b6476;
  --line:#e7ecf4;
  --brand:#DA662F;
  --brand-700:#C75A29;
  --brand-50:rgba(218,102,47,.08);
  --brand-rgb:218,102,47;
  --brand-a:#DA662F;
  --brand-b:#DA662F;
  --brand-c:#DA662F;
  --brand-grad:linear-gradient(135deg, rgba(var(--brand-rgb),.10) 0%, rgba(var(--brand-rgb),.04) 55%, rgba(var(--brand-rgb),0) 100%);

  --gold:#f59e0b;
  --gold-50:#fff7ed;

  --shadow:0 10px 30px rgba(15,23,42,.08);
  --shadow-sm:0 6px 18px rgba(15,23,42,.08);
  /* Brand-tinted elevation (premium + branded without colored backgrounds) */
  /* Softer + tighter shadows so elevation doesn't "bleed" between stacked sections */
  --shadow-brand:0 12px 28px rgba(15,23,42,.11), 0 12px 26px rgba(var(--brand-rgb),.16);
  --shadow-brand-sm:0 8px 18px rgba(15,23,42,.08), 0 8px 18px rgba(var(--brand-rgb),.12);

  --r12:12px;
  --r16:16px;
  --r20:20px;

  --container:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
}

/* Sticky footer (desktop): keep footer at bottom when pages are short */
.site-shell{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-main{flex: 1 0 auto;}

a{color:inherit; text-decoration:none}
img{max-width:100%;height:auto;display:block}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

/* Generic card grid used by Blog / Help Center / Enterprise pages */
.cards{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 920px){
  .cards{ grid-template-columns: 1fr; gap:16px; }
}

/* ---------- Typography ---------- */
.h1,.h2,.h3, h1, h2, h3{letter-spacing:-.02em}
.h1{font-size: clamp(28px, 3.6vw, 44px); line-height:1.08; font-weight:900; margin:0; text-wrap:balance}
.h2{font-size: clamp(22px, 2.4vw, 32px); line-height:1.18; font-weight:900; margin:0; text-wrap:balance}
.h3{font-size: 18px; line-height:1.2; font-weight:800; margin:0}
h1{font-size: clamp(28px, 3.6vw, 44px); line-height:1.08; font-weight:900; margin:0; text-wrap:balance}
h2{font-size: clamp(22px, 2.4vw, 32px); line-height:1.18; font-weight:900; margin:0; text-wrap:balance}
h3{font-size: 18px; line-height:1.2; font-weight:800; margin:0}

/* Ensure bare heading tags render consistently (some sections use raw h1/h2) */
h1{font-size: clamp(28px, 3.6vw, 44px); line-height:1.08; font-weight:900; margin:0; text-wrap:balance}
h2{font-size: clamp(22px, 2.4vw, 32px); line-height:1.18; font-weight:900; margin:0; text-wrap:balance}
h3{font-size: 18px; line-height:1.2; font-weight:800; margin:0}
.small{font-size:13px}
.muted,.text-muted{color:var(--muted)}
p{line-height:1.55}

/* ---------- Buttons / Inputs ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid transparent;
  background:#fff;
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  box-shadow:0 14px 30px rgba(var(--brand-rgb),.22);
}
.btn-primary:hover{background:var(--brand-700);border-color:var(--brand-700)}
.btn-secondary{
  background:#fff;
  border-color:var(--line);
  color:var(--text);
}
.btn-secondary:hover{border-color:#d7def0; box-shadow: var(--shadow-sm)}
.btn-ghost{
  background:transparent;
  border-color:transparent;
  color:var(--text);
}
.btn-ghost:hover{background:rgba(2,6,23,.04); border-color:rgba(2,6,23,.06)}

.input, input[type="text"], input[type="email"], input[type="password"], textarea, select{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
  font-size:14px;
}
.input:focus, input:focus, textarea:focus, select:focus{
  border-color: rgba(var(--brand-rgb),.55);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb),.12);
}
.field{margin-top:12px}
label{display:block; margin-bottom:6px; color:var(--text)}

/* ---------- Cards / Surfaces ---------- */
.card, .hero-card, .panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: var(--shadow-brand-sm);
}
.card{padding:18px}
.hero-card{padding:22px}
.panel{padding:20px}

/* ---------- Top Navigation ---------- */
.topnav{
  position:sticky;
  top:0;
  z-index:1000;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(231,236,244,.9);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.logo-text{font-weight:900; font-size:20px; letter-spacing:-.02em}
.logo-black{color:#0b1220}
.logo-blue{color:var(--brand)}

.nav-toggle{
  display:none;
  width:46px;height:46px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-toggle-bar{
  display:block;
  width:22px;height:3px;
  background:#0b1220;
  border-radius:2px;
  margin:3.5px 0;
}

.nav-panel{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-main{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 10px;
  border-radius:12px;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
  font-size:14px;
}
.nav-link:hover{background:rgba(2,6,23,.04)}
.nav-plain{padding-inline:12px}

.nav-cta{display:flex; align-items:center; gap:10px}

.has-dropdown{position:relative}
.nav-dd-btn{
  border:0;
  background:transparent;
  cursor:pointer;
}
.chev{font-size:12px;color:var(--muted)}

.dropdown{
  position:absolute;
  top: calc(100% + 6px);
  left:0;
  min-width: 220px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: var(--shadow);
  padding:10px;
  display:none;
}
.has-dropdown::after{
  content:"";
  position:absolute;
  left:0; right:0;
  top:100%;
  height:10px;
}
.dropdown a{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  color:var(--text);
}
.dropdown a:hover{background:rgba(var(--brand-rgb),.08); color:var(--brand-700)}

/* Desktop hover */
@media (min-width: 861px){
  .has-dropdown:hover .dropdown{display:block}
  .has-dropdown.dd-open .dropdown{display:block}
}

/* Mobile nav */
@media (max-width: 860px){
  .nav-toggle{display:flex}
  .nav-panel{
    position:fixed;
    top:70px;
    left:0; right:0;
    margin:0;
    padding:14px 16px 18px;
    background:#fff;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  body.nav-open .nav-panel{display:flex}
  .nav-main{flex-direction:column; align-items:stretch; gap:6px}
  .nav-link{justify-content:space-between; padding:12px 12px}
  .nav-cta{flex-direction:column; align-items:stretch}
  .nav-cta .btn{width:100%}

  .dropdown{
    position:static;
    display:none;
    box-shadow:none;
    border-radius:14px;
    margin-top:6px;
  }
  .nav-dd-btn[aria-expanded="true"] + .dropdown{display:block}
}

/* Admin top nav tweaks */
.admin-topnav .nav-main{gap:8px}
.admin-topnav .nav-link{font-weight:800}
.admin-topnav .nav-panel{gap:10px}

/* ---------- Sections ---------- */
.section{padding:54px 0}
.section.alt{background: linear-gradient(180deg, rgba(var(--brand-rgb),.06), rgba(var(--brand-rgb),0) 55%)}
.hr{height:1px;background:var(--line);margin:22px 0}

/* ---------- Homepage / Marketing blocks ---------- */
.hero{
  padding:48px 0 26px;
}

/* Some views set inline padding-top:64px; tighten on iPhone so there's no "empty" gap */
@media (max-width: 520px){
  .hero{ padding:34px 0 18px !important; }
}

/* ---------- Admin ---------- */
.admin-shell{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap:18px;
  padding:18px 0 36px;
}
.admin-side{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  position:sticky;
  top:86px;
  height:fit-content;
}
.admin-brand{font-weight:900;font-size:16px;letter-spacing:-.01em}
.admin-sub{color:var(--muted);font-size:13px;margin-top:4px;line-height:1.3}
.admin-menu{display:flex;flex-direction:column;gap:6px;margin-top:14px}
.admin-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  color:var(--text);
}
.admin-link:hover{background:rgba(2,6,23,.04)}
.admin-link.active{
  background:rgba(var(--brand-rgb),.10);
  color:var(--brand-700);
}
.admin-side-actions{display:grid;gap:10px;margin-top:16px}
.admin-main{
  min-width:0;
}

.admin-kpis{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.admin-kpis .kpi{font-weight:900; font-size:22px}

.admin-panels{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:12px;
}
.admin-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.admin-card-title{font-weight:900}
.admin-table-wrap{margin-top:10px; overflow:auto}

@media (max-width: 980px){
  .admin-shell{grid-template-columns: 1fr;}
  .admin-side{position:relative;top:auto}
  .admin-side-actions{grid-template-columns:1fr 1fr}
  .admin-kpis{grid-template-columns:repeat(2, minmax(0,1fr))}
  .admin-panels{grid-template-columns:1fr}
}
.hero .hero-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:start;
}
.hero .kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(var(--brand-rgb),.08);
  color:var(--brand-700);
  font-weight:800;
  font-size:12px;
}
.hero .lead{
  color:var(--muted);
  font-size:16px;
  margin-top:14px;
  max-width: 58ch;
}
.hero-actions{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}
.hero-search{
  display:flex;
  gap:10px;
  margin-top:14px;
  align-items:center;
}
.hero-search .input{max-width: 360px}
.hero-bullets{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:12px;
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  background:#fff; border:1px solid var(--line);
}

.hero-panel{
  padding:18px;
  border-radius:20px;
  background: radial-gradient(1000px 300px at 20% -10%, rgba(var(--brand-rgb),.16), transparent 45%),
              radial-gradient(700px 280px at 90% 20%, rgba(15,23,42,.10), transparent 55%),
              #fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.metric-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
  margin-top:12px;
}
.metric{
  padding:12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.metric .val{font-weight:900;font-size:18px}
.metric .lab{color:var(--muted);font-size:12px;margin-top:2px}

@media (max-width: 960px){
  .hero .hero-wrap{grid-template-columns:1fr}
}

/* Toolkit cards */
.toolkits{ padding:18px 0 44px; }
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 980px){ .grid-3{grid-template-columns:1fr} }
.tcard{
  padding:18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow: var(--shadow-brand-sm);
}
.tcard .title{font-weight:900; font-size:18px; color: var(--brand)}
.tcard .desc{color:var(--muted); margin-top:8px}
.tcard ul{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.tcard li{margin:6px 0}
.tcard li::marker{color: var(--brand)}
.tcard li::marker{ color: var(--brand); }

/* ---------- Marketing Page System ---------- */
.s-page{padding:10px 0 34px}
.s-page-hero{padding:20px 0 6px}
.s-kicker{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background:rgba(var(--brand-rgb),.08);color:var(--brand-700);
  font-weight:800;font-size:12px;
}
.s-title{margin-top:12px}
.s-sub{margin-top:12px; color:var(--muted); max-width: 70ch; font-size:16px}
.s-page-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start; margin-top:18px}
@media (max-width: 980px){ .s-page-grid{grid-template-columns:1fr} }

.s-card{padding:18px;border-radius:20px;border:1px solid rgba(var(--brand-rgb),.14);background:#fff;box-shadow:var(--shadow-brand-sm)}
.s-card h3{margin:0 0 10px}
.s-list{margin:0;padding-left:18px;color:var(--muted)}
.s-list li{margin:7px 0}
.s-list li::marker{ color: var(--brand); }

.pricing-grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; margin-top:18px}
@media (max-width: 1120px){ .pricing-grid{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 640px){ .pricing-grid{grid-template-columns:1fr} }
.price-card{padding:18px;border-radius:20px;border:1px solid rgba(var(--brand-rgb),.14);background:#fff;box-shadow:var(--shadow-brand-sm); position:relative}
.price-card.popular{border-color: rgba(var(--brand-rgb),.35); box-shadow: 0 16px 40px rgba(var(--brand-rgb),.18)}
.badge{
  position:absolute; top:14px; right:14px;
  background:rgba(var(--brand-rgb),.10);
  color:var(--brand-700);
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
}
.price{font-weight:900; font-size:38px; letter-spacing:-.03em; margin-top:8px}
.price small{font-size:14px;color:var(--muted);font-weight:700}
.checklist{margin:14px 0 0; padding:0; list-style:none; color:var(--muted)}
.checklist li{display:flex;gap:10px;margin:10px 0; align-items:flex-start}
.checkmark{width:18px;height:18px;border-radius:999px;background:rgba(34,197,94,.14);border:1px solid rgba(34,197,94,.35);display:inline-flex;align-items:center;justify-content:center;color:#16a34a;font-weight:900;font-size:12px;flex:0 0 auto}
ul.check{list-style:none; padding:0; margin:14px 0 0; color:var(--text)}
ul.check li{position:relative; padding-left:20px; margin:10px 0; line-height:1.5; color:var(--text)}
ul.check li::before{content:""; position:absolute; left:0; top:.6em; width:8px; height:8px; border-radius:99px; background: rgba(var(--brand-rgb),.30); box-shadow: inset 0 0 0 2px rgba(var(--brand-rgb),.45); transform: translateY(-50%);} 

.cross{background:rgba(148,163,184,.18);border-color:rgba(148,163,184,.35);color:#64748b}
.table-wrap{overflow:auto; border:1px solid rgba(var(--brand-rgb),.14); border-radius:16px; background:#fff; box-shadow:var(--shadow-brand-sm); margin-top:16px}
table{width:100%; border-collapse:collapse; min-width: 780px}
th,td{padding:12px 14px; border-bottom:1px solid var(--line); text-align:left}
th{background:#fff; font-size:13px; color:var(--muted); font-weight:800}
td{font-size:14px}
td.center{text-align:center}

/* ---------- CMS Prose ---------- */
.m-page{padding:14px 0 48px}
.m-hero{padding:20px 0 10px}
.m-title{font-size: clamp(28px, 3vw, 40px); font-weight:900; margin:0}
.m-subtitle{color:var(--muted); margin-top:10px; max-width: 78ch}
.m-section{padding:20px 0}
.m-prose{
  background:#fff;
  border:1px solid rgba(var(--brand-rgb),.14);
  border-radius:20px;
  padding:20px;
  box-shadow:var(--shadow-brand-sm);
}
.m-prose h2{font-size:22px; margin:18px 0 8px}
.m-prose h3{font-size:18px; margin:16px 0 8px}
.m-prose p{margin:10px 0; color:var(--text)}
.m-prose ul{margin:10px 0 10px 18px}
.m-prose li{margin:6px 0; color:var(--text)}
.m-prose a{color:var(--brand-700); font-weight:700}

/* ---------- Admin ---------- */
.aa-admin{padding:10px 0 60px}
.admin-table{width:100%; border:1px solid rgba(var(--brand-rgb),.14); border-radius:16px; overflow:hidden; background:#fff; box-shadow:var(--shadow-brand-sm)}
.admin-table table{min-width: 900px}
.pill-status{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; background:rgba(148,163,184,.18); color:#0b1220; font-weight:800; font-size:12px}

/* ---------- Footer ---------- */
.footer{
  margin-top:50px;
  background: radial-gradient(900px 260px at 15% 0%, rgba(var(--brand-rgb),.10), transparent 55%),
              radial-gradient(700px 240px at 90% 40%, rgba(15,23,42,.10), transparent 58%),
              #0b1220;
  color:#e6ebff;
  padding:46px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap:26px;
  align-items:start;
}
.footer .brand{color:#fff}
.footer .small{color:rgba(230,235,255,.8)}
.footer-links{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.footer-col-title{font-weight:900; color:#fff; margin-bottom:10px}
.footer a{display:block; color:rgba(230,235,255,.85); text-decoration:none; margin:8px 0; font-weight:600}
.footer a:hover{color:#fff}
.footer-copy{margin-top:12px; color:rgba(230,235,255,.6)}
.footer-brand-name{font-weight:900; font-size:18px}
.footer-tagline{margin-top:8px; max-width: 52ch}

@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr; text-align:center}
  .footer-brand{display:flex; flex-direction:column; align-items:center}
  .footer-links{grid-template-columns:1fr; justify-items:center}
  .footer-links a{text-align:center}
}

/* Flash messages */
.flash{margin-top:12px}
.flash .alert{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.alert-success{border-color:rgba(34,197,94,.25); background:rgba(34,197,94,.06)}
.alert-danger{border-color:rgba(239,68,68,.25); background:rgba(239,68,68,.06)}


/* =========================
   BRAND GRADIENT HERO + HEADERS
========================= */

.ulg-header{
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,236,244,.9);
}
.ulg-header::after{
  content:"";
  display:block;
  height:3px;
  background:#fff;
  opacity:.85;
}

.s-hero{
  position: relative;
  padding: 72px 0 52px;
  background:#fff;
  overflow: hidden;
}
.s-hero::before{
  content:"";
  position:absolute; inset:-40%;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.38) 0%, rgba(255,255,255,0) 45%),
    radial-gradient(circle at 80% 22%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 48%),
    radial-gradient(circle at 55% 75%, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 55%);
  transform: rotate(-8deg);
  pointer-events:none;
}
.s-hero .container{ position:relative; z-index:2; }

.s-hero .s-kicker{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
}
.s-hero .s-kicker .dot{ background: rgba(255,255,255,.9); }

.s-hero .s-h1{
  color:#fff;
  letter-spacing:-.02em;
}
.s-hero .s-h1 .accent{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
}
.s-hero .s-sub{ color: rgba(255,255,255,.92); }
.s-hero .s-icons{ color: rgba(255,255,255,.92); }

.s-hero .s-input{
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.s-hero .s-input input{
  background: transparent;
  color: #0b1220;
}
.s-hero .s-input input::placeholder{ color: rgba(91,100,118,.85); }

.s-hero .btn-primary{
  background: #0b1220;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.s-hero .btn-primary:hover{ background:#0f172a; }
.s-hero .btn-secondary{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  color:#fff;
}
.s-hero .btn-secondary:hover{ background: rgba(255,255,255,.20); }

.s-hero .s-trust{
  color: rgba(255,255,255,.92);
}
.s-hero .s-trust .mini{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
}

/* PAGE HERO (other marketing pages) */
.s-page-hero{
  position: relative;
  padding: 52px 0 36px;
  background:#fff;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
/* .s-page-hero::before{ */
.s-page-hero::before{display:none;
  content:"";
  position:absolute; inset:-40%;
  background:
    radial-gradient(circle at 18% 25%, rgba(255,255,255,.30) 0%, rgba(255,255,255,0) 45%),
    radial-gradient(circle at 82% 30%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 52%);
  transform: rotate(-8deg);
  pointer-events:none;
}
.s-page-hero .container{ position:relative; z-index:2; }
.s-page-hero .s-kicker{
  background: rgba(var(--brand-rgb),.08);
  border: 1px solid rgba(var(--brand-rgb),.18);
  color: var(--text);
}
.s-page-hero .s-kicker .dot{ background: var(--brand); }
.s-page-hero h1, .s-page-hero .s-h1, .s-page-hero .section-title{ color: var(--text) !important; }
.s-page-hero p, .s-page-hero .section-subtitle{ color: var(--muted) !important; }

/* Gradient section headers inside pages */
.s-section-title,
.section-title{
  letter-spacing:-.02em;
}
.s-section-title .accent,
.section-title .accent{
  background:none;
  color: var(--brand);
  -webkit-text-fill-color: var(--brand);
}

/* Footer slight brand lift */
.footer, .ulg-footer{
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ---------- Marketing Sections: Toolkits / Pricing / Compare ---------- */
.s-section{padding:48px 0;}
@media (max-width: 768px){ .s-section{padding:30px 0;} .container{width: calc(100% - 28px);} }
@media (max-width: 520px){ .s-section{padding:26px 0;} }

.s-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:22px;}
.s-h1,.s-h2{letter-spacing:-.03em}
.s-h1{font-size:clamp(28px,6.1vw,44px); line-height:1.10; font-weight:900; text-wrap:balance;}
.s-h2{font-size:clamp(20px,4.6vw,32px); line-height:1.18; font-weight:900; text-wrap:balance;}
.s-sub,.s-p{color:var(--muted); max-width:78ch;}
.accent{color:var(--brand);}

.s-cta-row{display:flex; flex-wrap:wrap; gap:10px; align-items:center;}
@media (max-width: 520px){ .s-cta-row .btn{width:100%;} }

/* Executive mobile rhythm (B style): tighter + even */
@media (max-width: 768px){
  .s-head{flex-direction:column; align-items:flex-start; gap:10px; margin-bottom:16px;}
  .s-sub,.s-p{max-width: 60ch;}
}

/* Toolkits grid */
.s-toolkit-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:18px;
}
@media (max-width: 980px){ .s-toolkit-grid{grid-template-columns: repeat(2, minmax(0,1fr));} }
@media (max-width: 520px){ .s-toolkit-grid{grid-template-columns: 1fr;} }

@media (max-width: 520px){
  .tool-card{min-height:auto; padding:16px;}
  .tool-title{font-size:17px;}
  .tool-list{gap:6px;}
 }

.tool-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px;
  background:#fff;
  border:1px solid rgba(var(--brand-rgb),.14);
  border-radius:16px;
  box-shadow: var(--shadow-brand-sm);
  text-decoration:none;
  min-height: 220px;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}
.tool-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-brand); border-color: rgba(var(--brand-rgb),.30); }
.tool-kicker{ font-weight:800; color: var(--brand); font-size:13px; letter-spacing:.02em; }
.tool-title{ font-weight:900; font-size:18px; line-height:1.25; color: var(--brand); }
.tool-list{ list-style:none; padding:0; margin:6px 0 0; color: var(--muted); display:flex; flex-direction:column; gap:8px; }
.tool-list li{ position:relative; padding-left:18px; line-height:1.45; }
.tool-list li::before{
  content:"";
  position:absolute; left:0; top:.55em;
  width:8px; height:8px; border-radius:99px;
  background: rgba(var(--brand-rgb),.25);
  box-shadow: inset 0 0 0 2px rgba(var(--brand-rgb),.35);
  transform: translateY(-50%);
}
.tool-cta{ margin-top:auto; font-weight:800; color: var(--brand-700); }

/* Toolkit detail sections (Features page): split + right panel */
.s-split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 980px){
  .s-split{grid-template-columns: 1fr; gap:18px;}
}

.s-panel{
  background:#fff;
  border:1px solid rgba(var(--brand-rgb),.14);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow-brand-sm);
}
.s-panel-title{font-weight:900; color: var(--brand); margin-bottom:10px; letter-spacing:-.01em;}
.s-mini-grid{display:grid; grid-template-columns: 1fr; gap:12px;}
.s-mini-card{
  background: rgba(var(--brand-rgb),.03);
  border:1px solid rgba(var(--brand-rgb),.10);
  border-radius:14px;
  padding:14px;
  box-shadow: var(--shadow-brand-xs);
}
.s-mini-card .t{font-weight:900; margin-bottom:4px;}
.s-mini-card .d{color:var(--muted); line-height:1.45;}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:18px;
}
@media (max-width: 1100px){ .pricing-grid{grid-template-columns: repeat(2, minmax(0,1fr));} }
@media (max-width: 520px){ .pricing-grid{grid-template-columns: 1fr;} }

.plan-card{
  background:#fff;
  border:1px solid rgba(var(--brand-rgb),.14);
  border-radius:16px;
  box-shadow: var(--shadow-brand-sm);
  padding:18px;
  position:relative;
}
.plan-popular{ border-color: rgba(var(--brand-rgb),.35); box-shadow: var(--shadow-brand); }
.plan-badge{
  position:absolute; top:12px; right:12px;
  background: rgba(var(--brand-rgb),.10);
  border: 1px solid rgba(var(--brand-rgb),.18);
  color: var(--text);
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
}
.plan-name{font-weight:900; font-size:16px;}
.plan-desc{color:var(--muted); margin-top:2px;}
.plan-price{display:flex; align-items:baseline; gap:8px; margin:10px 0 12px;}
.plan-price .amount{font-size:32px; font-weight:900; letter-spacing:-.03em;}
.plan-price .per{color:var(--muted); font-weight:700;}
.plan-top{display:flex; flex-direction:column;}
.plan-list{ list-style:none; padding:0; margin:14px 0 0; display:flex; flex-direction:column; gap:10px; color: var(--muted); }
.plan-list li{ position:relative; padding-left:18px; line-height:1.45; }
.plan-list li::before{ content:""; position:absolute; left:0; top:.55em; width:8px; height:8px; border-radius:99px; background: rgba(var(--brand-rgb),.18); transform: translateY(-50%); }
.plan-muted{margin-top:14px; color:var(--muted); font-size:13px;}
.pricing-note{margin-top:18px; display:flex; flex-wrap:wrap; gap:10px; align-items:center;}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--line); background:#fff; font-weight:800; font-size:13px;
}

/* Compare table */
.compare-wrap{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  background:#fff;
  box-shadow: var(--shadow-sm);
}
.compare{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}
.compare thead th{
  text-align:left;
  font-weight:900;
  font-size:13px;
  color: var(--muted);
  padding:14px 14px;
  border-bottom:1px solid var(--line);
  background:#fff;
  position:sticky;
  top:0;
  z-index:1;
}
.compare tbody td{
  padding:14px 14px;
  border-bottom:1px solid var(--line);
  color: var(--text);
}
.compare tbody tr:last-child td{ border-bottom:0; }
.compare tbody td:first-child{ font-weight:800; }

/* FAQ mini */
.faq-mini{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 980px){ .faq-mini{grid-template-columns: 1fr;} }
.faq-mini-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow: var(--shadow-sm);
}
.faq-mini-item .q{font-weight:900; margin-bottom:6px;}
.faq-mini-item .a{color:var(--muted);}

/* Prevent decorative overlaps on mobile */
@media (max-width: 768px){
  .s-illus, .illus, .decor, .hero-decor{display:none !important;}
  input, select, textarea{font-size:16px !important;}
  .s-hero{padding:56px 0 40px !important;}
  .s-page-hero{padding:44px 0 28px !important;}
}


/* Hero override: keep backgrounds white (no brand fills) */
.s-hero{
  background:#fff !important;
  padding:64px 0 44px;
  border-bottom:1px solid var(--line);
}
.s-hero::before{display:none !important;}
.s-hero .s-kicker{
  background: rgba(var(--brand-rgb),.08) !important;
  border:1px solid rgba(var(--brand-rgb),.18) !important;
  color: var(--text) !important;
}
.s-hero .s-kicker .dot{ background: var(--brand) !important; }
.s-hero .s-h1, .s-hero h1{ color: var(--text) !important; }
.s-hero .s-h1 .accent{ color: var(--brand) !important; background:none !important; -webkit-text-fill-color: var(--brand) !important; }
.s-hero .s-sub, .s-hero .s-icons, .s-hero p{ color: var(--muted) !important; }
.s-hero .s-input{ background:#fff !important; border:1px solid rgba(var(--brand-rgb),.14) !important; box-shadow: var(--shadow-brand-sm) !important; }
.s-hero .btn-primary{ background: var(--brand) !important; border-color: var(--brand) !important; color:#fff !important; }
.s-hero .btn-secondary{ background:#fff !important; border-color: var(--line) !important; color: var(--text) !important; }

/* Remove accidental blank space above/below content */
main{padding:0 !important;}
main > :first-child{margin-top:0;}
main > :last-child{margin-bottom:0;}

/* Remove accidental blank space above/below content */
main{padding:0 !important;}
main > :first-child{margin-top:0;}
main > :last-child{margin-bottom:0;}



/* ---------- Brand bullets + branded card elevation ---------- */
.s-section ul:not(.tool-list):not(.check):not(.checklist):not(.s-list){ padding-left: 18px; }
.s-section ul:not(.tool-list):not(.check):not(.checklist):not(.s-list) li::marker{ color: var(--brand); }

/* Make all cards pop with brand-tinted shadow */
.card, .panel, .hero-card, .s-card, .s-panel, .s-mini-card, .plan-card, .price-card, .tcard{
  box-shadow: var(--shadow-brand-sm);
}
.card:hover, .s-card:hover, .tool-card:hover, .plan-card:hover, .price-card:hover, .tcard:hover{
  box-shadow: var(--shadow-brand);
}

/* ===== Homepage: centered marketing layout + tighter shadows (doesn't affect other pages) ===== */
.home{
  --shadow-brand-sm: 0 6px 14px rgba(15,23,42,.07), 0 6px 14px rgba(var(--brand-rgb),.10);
}

.home .s-section{
  padding-top: 34px;
  padding-bottom: 34px;
}

.home .s-head{
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.home .hp-center{
  justify-items: center;
  text-align: center;
}

.home .s-hero-grid.hp-center{
  grid-template-columns: 1fr;
}

.home .s-domain-row{
  justify-content: center;
}

.home .s-domain{
  width: 100%;
  max-width: 560px;
}

.home .s-mock{
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.home .s-cta-row{
  justify-content: center;
}

@media (min-width: 1024px){
  .home .s-hero-grid.hp-center{ max-width: 980px; margin-left:auto; margin-right:auto; }
}


/* ===== Homepage (centered marketing) ===== */
.home .s-hero{ padding: 72px 0 44px; }
@media (max-width: 640px){
  .home .s-hero{ padding: 54px 0 28px; }
}

.home .s-title{ margin-top: 10px; }
.home h1, .home .h1{
  font-size: clamp(26px, 5.6vw, 40px);
  line-height: 1.10;
}
.home .s-subtitle{ max-width: 62ch; margin-left:auto; margin-right:auto; }

.home .hp-hero-bullets{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:16px; }
.home .chip{ border:1px solid rgba(15,23,42,.10); background:#fff; border-radius:999px; padding:8px 12px; font-weight:700; font-size:13px; }

.home .s-section{ padding: 44px 0; }
@media (max-width: 640px){
  .home .s-section{ padding: 34px 0; }
}

/* subtle non-brand separation (not a colored background) */
.home .hp-alt{
  background: #fbfbfc;
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

/* tighter brand shadow (card-specific, no haze across sections) */
.home{
  --shadow-brand-sm: 0 10px 22px rgba(15,23,42,.06), 0 10px 22px rgba(var(--brand-rgb), .08);
}

/* compact hero preview */
.home .hp-mini-grid{ display:grid; gap:12px; margin-top:14px; }
.home .hp-mini-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  padding:14px 14px 12px;
  box-shadow: var(--shadow-brand-sm);
}
.home .hp-mini-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
.home .hp-badge{ font-weight:800; font-size:12px; letter-spacing:-.01em; }
.home .hp-tag{ font-weight:800; font-size:11px; padding:6px 10px; border-radius:999px; background: rgba(var(--brand-rgb), .10); color: var(--brand); }
.home .hp-mini-title{ font-weight:900; letter-spacing:-.02em; }
.home .hp-mini-sub{ color: var(--muted); font-size:13px; margin-top:6px; }
.home .hp-mini-cta{ margin-top: 14px; display:flex; justify-content:center; }

/* feature cards */
.home .hp-feature-grid{ display:grid; gap:18px; margin-top: 18px; grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 900px){ .home .hp-feature-grid{ grid-template-columns: 1fr; } }
.home .hp-feature-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:20px 20px 18px;
  box-shadow: var(--shadow-brand-sm);
  text-align:left;
}
.home .hp-feature-card h3{ margin:10px 0 8px; font-weight:900; letter-spacing:-.02em; }
.home .hp-feature-card p{ margin:0 0 12px; color: var(--muted); }
.home .hp-feature-icon{
  width:42px; height:42px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(var(--brand-rgb), .10);
  color: var(--brand);
  font-weight:900;
}
.home .hp-list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.home .hp-list li{ position:relative; padding-left:16px; color:#0f172a; }
.home .hp-list li:before{
  content:"•";
  position:absolute; left:0; top:-1px;
  color: var(--brand);
  font-weight:900;
}

/* toolkit cards */
.home .hp-toolkit-grid{ display:grid; gap:16px; grid-template-columns: repeat(2, minmax(0,1fr)); margin-top:18px; }
@media (max-width: 900px){ .home .hp-toolkit-grid{ grid-template-columns: 1fr; } }
.home .hp-toolkit-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:18px 18px 16px;
  box-shadow: var(--shadow-brand-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  border-top: 3px solid rgba(var(--brand-rgb), .65);
}
.home .hp-toolkit-card:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--brand-rgb), .35);
}
.home .hp-toolkit-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
.home .hp-toolkit-title{ font-weight:900; letter-spacing:-.02em; color:#0f172a; }
.home .hp-toolkit-pill{
  font-weight:800; font-size:12px;
  padding:6px 10px; border-radius:999px;
  background: rgba(var(--brand-rgb), .10);
  color: var(--brand);
  white-space:nowrap;
}
.home .hp-toolkit-body{ color: var(--muted); }

/* steps */
.home .hp-steps{ display:grid; gap:14px; max-width: 880px; margin: 18px auto 0; }
.home .hp-step{
  display:flex; gap:14px; align-items:flex-start;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:16px 16px 14px;
  box-shadow: var(--shadow-brand-sm);
  text-align:left;
}
.home .hp-step-num{
  width:34px; height:34px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(var(--brand-rgb), .10);
  color: var(--brand);
  font-weight:900;
  flex: 0 0 34px;
}
.home .hp-step-title{ font-weight:900; letter-spacing:-.02em; }
.home .hp-step-sub{ color: var(--muted); font-size:14px; margin-top:4px; }
.home .hp-final-cta{ margin-top: 18px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* reduce “extra white” around heads */
.home .s-head .h2{ margin-bottom: 10px; }
.home .s-head .s-sub{ margin-top: 0; }



/* --- Homepage refinements: spacing + motion + branded corners --- */
.home .hp-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:22px;
}
.home .hp-cta + .s-small,
.home .hp-cta + .micro{
  margin-top:12px;
}
.home .s-title{ line-height:1.18; }
.home .s-title .rot-line{ display:inline-block; margin-top:6px; }
.home .rotate{
  display:inline-block;
  position:relative;
  transition: opacity .22s ease, transform .22s ease;
  will-change: opacity, transform;
}
.home .rotate.is-out{
  opacity:0;
  transform: translateY(-2px);
}
@media (max-width: 640px){
  .home .hp-cta{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .home .hp-cta .btn{ width:100%; }
  .home .s-title{ font-size: clamp(28px, 6.4vw, 34px); }
}

/* Branded corner accents for select big cards (not all) */
.hp-corner{ position:relative; overflow:hidden; }
.hp-corner:before{
  content:"";
  position:absolute;
  top:-64px;
  right:-64px;
  width:168px;
  height:168px;
  background: radial-gradient(circle at 30% 30%, rgba(var(--brand-rgb), .22), rgba(var(--brand-rgb), 0) 70%);
  pointer-events:none;
}
.hp-corner.hp-corner--bl:after{
  content:"";
  position:absolute;
  bottom:-74px;
  left:-74px;
  width:190px;
  height:190px;
  background: radial-gradient(circle at 70% 70%, rgba(var(--brand-rgb), .16), rgba(var(--brand-rgb), 0) 72%);
  pointer-events:none;
}

/* Tighten card shadow so it doesn't haze across sections */
.home .hp-feature-card,
.home .hp-toolkit-card,
.home .s-hero-card{
  box-shadow: 0 10px 26px rgba(15,23,42,.06), 0 10px 20px rgba(var(--brand-rgb), .08);
}

/* --- Footer: more branded + professional (no background color fills) --- */
.footer{
  border-top: 1px solid var(--line);
  padding: 52px 0 34px;
}
.footer .footer-grid{
  align-items:start;
  gap: 36px;
}
.footer .brand .logo-accent{ color: var(--brand); }
.footer .footer-tagline{
  margin-top: 10px;
  max-width: 360px;
  color: var(--muted);
}
.footer .footer-col-title{
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.footer a{
  color: var(--muted);
  text-decoration: none;
}
.footer a:hover{
  color: var(--text);
}
.footer a:hover{ text-decoration: underline; text-decoration-color: rgba(var(--brand-rgb), .45); }
.footer .footer-copy{
  margin-top: 14px;
  color: var(--muted);
}

/* --- Centered branded footer (matches site look) --- */
.footer.footer--center{
  padding: 42px 0;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(var(--brand-rgb),.28) 0%, rgba(var(--brand-rgb),.08) 40%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, #050b1a 0%, #060d20 100%);
  color: rgba(255,255,255,.92);
  border-top: none;
}

.footer.footer--center .footer-center-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer.footer--center .footer-links{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  max-width: 980px;
}

.footer.footer--center .footer-links a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 13px;
}

.footer.footer--center .footer-links a:hover{
  color: #fff;
}

.footer.footer--center .footer-social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.footer.footer--center .footer-social .social-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  cursor: not-allowed;
}

.footer.footer--center .footer-social .social-icon svg{
  width: 18px;
  height: 18px;
}

.footer.footer--center .footer-meta{
  margin-top: 22px;
}

.footer.footer--center .footer-meta .footer-brand-name{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
}

.footer.footer--center .footer-meta .footer-tagline{
  margin-top: 8px;
  max-width: 520px;
  color: rgba(255,255,255,0.72);
}

.footer.footer--center .footer-meta .footer-copy{
  margin-top: 18px;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 420px){
  .footer.footer--center{padding: 40px 0;}
  .footer.footer--center .footer-links a{font-size: 13px; letter-spacing: 0.08em;}
}



/* Brand star icon in logo */
.logo-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-right: 8px;
  flex: 0 0 auto;
}
.logo-icon svg{ display:block; }
.logo-accent{ color: var(--brand); }


/* Footer brand logo */
.footer--center .footer-brand{ margin: 0 0 18px; }
.footer--center .footer-logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.95);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer--center .footer-logo:hover{ color: #fff; text-decoration:none; }
.footer--center .footer-logo .logo-icon{ margin-right: 0; color: var(--brand); }
.footer--center .footer-logo .logo-accent{ color: var(--brand); }

/* Brand icon */
.brand .logo-icon i, .footer-logo .logo-icon i{ color: var(--brand); }

:root{

/* Embed mode: hide site chrome for iframe tools */
.is-embed .topnav,
.is-embed .site-footer { display:none !important; }
.is-embed .site-main { padding-top:0 !important; }
.is-embed .container { max-width:100% !important; padding:0 !important; }
.is-embed body, body.is-embed { background:#fff !important; }

/* Dashboard popup frame modal */
.dash2-frame.hidden{display:none!important;}
.dash2-frame{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: max(14px, env(safe-area-inset-top)) 14px max(14px, env(safe-area-inset-bottom));
}
.dash2-frame-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dash2-frame-panel{
  position:relative;
  width:min(980px, 92vw);
  height:min(86vh, 920px);
  margin:0;
  background:#0b0f17;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.55);
  transform: translateZ(0);
}
.dash2-frame-top{
  height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  background:linear-gradient(135deg, rgba(var(--brand-rgb, 255,120,64),.60), rgba(0,0,0,.25));
}
.dash2-frame-title{font-weight:800; color:#fff; letter-spacing:.2px; font-size:14px; opacity:.92; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.dash2-frame-close{
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:26px;
  line-height:38px;
  cursor:pointer;
}
.dash2-frame-close:hover{background:rgba(255,255,255,.12);}
#dashFrameIframe{width:100%; height:calc(100% - 56px); border:0; background:#fff;}
.dash2-noscroll{overflow:hidden;}

@media (max-width: 640px){
  .dash2-frame{
    padding: 0;
  }
  .dash2-frame-panel{
    width:100vw;
    height:100vh;
    border-radius:0;
  }
  .dash2-frame-top{height:54px;}
  #dashFrameIframe{height:calc(100% - 54px);}
}

  .dash2-frame-top{height:52px;}
  #dashFrameIframe{height:calc(100% - 52px);}
}


/* DASHBOARD V2 */
.dash-ready .dash-reveal{opacity:1;transform:none}
.dash-reveal{opacity:0;transform:translateY(10px);transition:opacity .35s ease, transform .35s ease}
.dashv2{display:flex;flex-direction:column;gap:14px}
.dashv2-hero{display:grid;grid-template-columns:1.15fr .85fr;gap:14px;padding:18px;border:1px solid var(--line)}
.dashv2-badge{display:inline-flex;align-items:center;gap:10px;padding:8px 10px;border-radius:999px;background:var(--brand-50);border:1px solid rgba(var(--brand-rgb),.18);font-weight:900;color:var(--text);width:max-content}
.dashv2-badge .dot{width:8px;height:8px;border-radius:50%;background:var(--brand)}
.dashv2-title{margin:12px 0 6px;font-size:28px;letter-spacing:-.02em}
.dashv2-sub{margin:0;max-width:720px;color:var(--muted);line-height:1.65}
.dashv2-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.btn.btn-ghost{background:#fff;border:1px solid var(--line);color:var(--text);font-weight:900}
.btn.btn-ghost:hover{border-color:rgba(var(--brand-rgb),.35);box-shadow:0 0 0 4px rgba(var(--brand-rgb),.08)}
.dashv2-trust{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.dashv2-hero-right{display:flex;flex-direction:column;gap:12px}
.dashv2-kpis{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.kpi{padding:14px;border-radius:16px;background:linear-gradient(180deg,#fff, var(--bg-soft));border:1px solid var(--line)}
.kpi-num{font-size:22px;font-weight:950;letter-spacing:-.02em}
.kpi-lbl{font-size:12px;color:var(--muted);margin-top:4px;font-weight:800}
.dashv2-mini{padding:14px;border:1px solid var(--line)}
.mini-title{font-weight:950}
.mini-sub{color:var(--muted);font-size:13px;margin-top:4px}
.mini-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}

.dashv2-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.pad-lg{padding:18px}
.dashv2-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px}
.dashv2-list{display:flex;flex-direction:column;gap:10px}
.dashv2-item{display:flex;gap:12px;align-items:flex-start;text-decoration:none;color:inherit;padding:12px;border-radius:16px;border:1px solid var(--line);background:#fff;transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease}
.dashv2-item:hover{transform:translateY(-1px);border-color:rgba(var(--brand-rgb),.35);box-shadow:0 12px 28px rgba(16,24,40,.08)}
.dashv2-item-ico{width:30px;height:30px;border-radius:10px;display:flex;align-items:center;justify-content:center;background:var(--bg-soft);border:1px solid var(--line);font-weight:950}
.dashv2-item-ico.done{background:rgba(34,197,94,.10);border-color:rgba(34,197,94,.25);color:#16a34a}
.dashv2-item-title{font-weight:950}
.dashv2-item-desc{color:var(--muted);font-size:13px;margin-top:2px;line-height:1.5}
.dashv2-item-cta{margin-left:auto;align-self:center;font-weight:950;color:var(--brand);font-size:13px}

.dashv2-bizgrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.dashv2-biz{display:block;text-decoration:none;color:inherit;padding:14px;border-radius:18px;border:1px solid var(--line);background:linear-gradient(180deg,#fff, var(--bg-soft));transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease}
.dashv2-biz:hover{transform:translateY(-1px);border-color:rgba(var(--brand-rgb),.35);box-shadow:0 12px 28px rgba(16,24,40,.08)}
.biz-top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.biz-name{font-weight:950;letter-spacing:-.01em}
.biz-pill{padding:6px 10px;border-radius:999px;border:1px solid rgba(var(--brand-rgb),.22);background:rgba(var(--brand-rgb),.08);font-weight:900;font-size:12px}
.biz-meta{color:var(--muted);font-size:12px;margin-top:6px;font-weight:800}
.biz-meta .dotsep{opacity:.6}
.biz-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.tag{padding:6px 10px;border-radius:999px;border:1px solid var(--line);background:#fff;font-size:12px;font-weight:900;color:var(--text)}

.dashv2-empty{padding:14px;border-radius:18px;border:1px dashed rgba(var(--brand-rgb),.35);background:rgba(var(--brand-rgb),.04)}

.dashv2-notes{display:flex;flex-direction:column;gap:10px}
.note{display:grid;grid-template-columns:16px 1fr auto;gap:10px;align-items:flex-start;padding:12px;border-radius:16px;border:1px solid var(--line);background:#fff}
.note.unread{border-color:rgba(var(--brand-rgb),.30);box-shadow:0 0 0 4px rgba(var(--brand-rgb),.06)}
.note-dot{width:10px;height:10px;border-radius:50%;background:var(--line);margin-top:6px}
.note.unread .note-dot{background:var(--brand)}
.note-title{font-weight:950}
.note-text{color:var(--muted);font-size:13px;margin-top:2px;line-height:1.5}
.note-time{color:var(--muted);font-size:12px;font-weight:800;white-space:nowrap}

.dashv2-activity{display:flex;flex-direction:column;gap:10px}
.act{display:grid;grid-template-columns:34px 1fr auto;gap:10px;align-items:flex-start;padding:12px;border-radius:16px;border:1px solid var(--line);background:#fff}
.act-ico{width:34px;height:34px;border-radius:12px;background:var(--bg-soft);border:1px solid var(--line);display:flex;align-items:center;justify-content:center}
.act-title{font-weight:950}
.act-sub{color:var(--muted);font-size:13px;margin-top:2px;line-height:1.5}
.act-time{color:var(--muted);font-size:12px;font-weight:800;white-space:nowrap}
.dashv2-divider{height:1px;background:var(--line);margin:4px 0}
.dashv2-quickrow{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.quick{padding:12px;border-radius:16px;background:var(--bg-soft);border:1px solid var(--line)}
.quick-num{font-weight:950;font-size:18px}
.quick-lbl{color:var(--muted);font-size:12px;font-weight:800;margin-top:2px}

@media (max-width: 1100px){
  .dashv2-hero{grid-template-columns:1fr}
  .dashv2-grid{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .dashv2-title{font-size:22px}
  .dashv2-bizgrid{grid-template-columns:1fr}
  .dashv2-kpis{grid-template-columns:1fr}
}

/* DASHBOARD PAGES V2 */
.db-page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:14px}
.db-breadcrumb{font-size:12px;font-weight:800;color:var(--muted2);display:flex;gap:8px;align-items:center}
.db-breadcrumb a{color:var(--muted2);text-decoration:none}
.db-breadcrumb a:hover{color:var(--text)}
.db-actions{display:flex;gap:10px;flex-wrap:wrap}
.db-grid{display:grid;gap:14px}
@media (min-width: 980px){.db-grid.cols-2{grid-template-columns:1fr 1fr}.db-grid.cols-3{grid-template-columns:repeat(3,1fr)}}

.biz-card{border:1px solid var(--border2);border-radius:18px;background:#fff;box-shadow:0 10px 24px rgba(15,23,42,.06);padding:14px;transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease}
.biz-card:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(15,23,42,.10);border-color:rgba(59,130,246,.35)}
.biz-meta{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-top:10px}
.biz-pill{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;border:1px solid var(--border2);background:#fff;font-weight:900;font-size:12px;color:var(--text)}
.biz-pill .dot{width:8px;height:8px;border-radius:999px;background:var(--brand)}

.list-card{border:1px solid var(--border2);border-radius:18px;background:#fff;box-shadow:0 10px 24px rgba(15,23,42,.06)}
.list-row{display:flex;gap:12px;justify-content:space-between;align-items:flex-start;padding:14px}
.list-row + .list-row{border-top:1px solid var(--border2)}
.list-left{flex:1;min-width:240px}
.list-title{font-weight:950;font-size:14px;margin:0}
.list-sub{color:var(--muted2);font-weight:700;font-size:12px;margin-top:6px}
.list-right{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}

.chat-wrap{display:flex;flex-direction:column;gap:12px}
.chat-feed{border:1px solid var(--border2);border-radius:18px;background:#fff;box-shadow:0 10px 24px rgba(15,23,42,.06);padding:14px;max-height:560px;overflow:auto}
.chat-bubble{max-width:860px;padding:12px 12px;border-radius:18px;border:1px solid var(--border2);background:#fff}
.chat-bubble.user{margin-left:auto;border-color:rgba(59,130,246,.35);box-shadow:0 0 0 4px rgba(59,130,246,.08)}
.chat-bubble.ai{margin-right:auto;background:linear-gradient(180deg, rgba(59,130,246,.10), rgba(59,130,246,.03));border-color:rgba(59,130,246,.25)}
.chat-bubble .meta{font-size:11px;font-weight:900;color:var(--muted2);display:flex;gap:8px;align-items:center;margin-bottom:6px}
.chat-bubble .meta .tag{display:inline-flex;align-items:center;gap:6px;padding:4px 8px;border-radius:999px;border:1px solid var(--border2);background:#fff}
.typing{display:inline-flex;gap:6px;align-items:center}
.typing i{width:6px;height:6px;border-radius:999px;background:var(--brand);opacity:.25;animation:ulg-dot 1.2s infinite}
.typing i:nth-child(2){animation-delay:.2s}
.typing i:nth-child(3){animation-delay:.4s}
@keyframes ulg-dot{0%,100%{transform:translateY(0);opacity:.25}50%{transform:translateY(-3px);opacity:1}}
.chat-input{border:1px solid var(--border2);border-radius:18px;background:#fff;box-shadow:0 10px 24px rgba(15,23,42,.06);padding:12px;display:flex;gap:10px;align-items:flex-end}
.chat-input textarea{flex:1;min-height:46px;max-height:140px;resize:none;border:0;outline:none;font-weight:700;line-height:1.4}
.chat-hint{font-size:11px;font-weight:800;color:var(--muted2)}


/* --- UseLocalGuide pagination (mobile-friendly, no giant SVG icons) --- */
.ul-pagination{margin-top:18px}
.ul-pagination-top{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:10px}
.ul-pagination-meta{font-size:13px;color:var(--muted2)}
.ul-pagination-links{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.ul-page{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:34px;padding:0 10px;border:1px solid var(--border2);border-radius:10px;text-decoration:none;color:var(--text);font-weight:800;font-size:13px;background:#fff}
.ul-page:hover{border-color:rgba(0,0,0,.25);transform:translateY(-1px)}
.ul-page.active{background:linear-gradient(135deg, rgba(250, 199, 49, .22), rgba(0,0,0,0));border-color:rgba(250,199,49,.6);color:var(--text)}
.ul-page.disabled{opacity:.55;cursor:not-allowed}
.ul-page.dots{border-color:transparent;background:transparent;min-width:auto;padding:0 4px}
@media (max-width: 520px){
  .ul-pagination-top{display:block}
  .ul-pagination-meta{display:block;margin-bottom:8px}
  .ul-pagination-links{gap:6px}
  .ul-page{min-width:32px;height:32px;border-radius:10px}
}


/* --- Dashboard business switcher (agency UX) --- */
.dashlite-switcher{margin-left:12px;margin-right:auto}
.dashlite-switcher select{max-width:320px;min-width:190px;padding:8px 10px;border-radius:12px;border:1px solid var(--border2);background:#fff;font-weight:800}
.dashlite-currentbiz{margin-top:10px;font-size:12px;color:var(--muted2)}
@media (max-width: 860px){
  .dashlite-switcher{margin:10px 0 0 0;order:99;width:100%}
  .dashlite-switcher select{width:100%;max-width:none}
}


/* --- Dashboard cards helpers --- */
.dashgrid{display:grid;gap:14px}
.dashgrid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.dashgrid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width: 980px){
  .dashgrid-2,.dashgrid-3{grid-template-columns:1fr}
}
.dashmini{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:14px}
@media (max-width: 680px){ .dashmini{grid-template-columns:1fr} }
.dashmini-item{border:1px solid var(--border2);border-radius:14px;padding:10px 12px;background:#fff}
.dashmini-k{font-size:12px;color:var(--muted2);font-weight:800}
.dashmini-v{margin-top:6px;font-weight:900}
.dashactions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.dashbig{font-size:40px;font-weight:1000;line-height:1;margin-top:10px}
.pill{display:inline-flex;align-items:center;gap:6px;padding:4px 10px;border-radius:999px;font-size:12px;font-weight:900;border:1px solid var(--border2);background:#fff}
.pill-ok{border-color:rgba(0,180,90,.35);background:rgba(0,180,90,.08)}
.pill-warn{border-color:rgba(250,199,49,.55);background:rgba(250,199,49,.12)}
.dashalert{border:1px solid var(--border2);border-radius:14px;padding:12px 12px;background:linear-gradient(135deg, rgba(250, 199, 49, .18), rgba(0,0,0,0));font-weight:800}


/* --- Dashlite --- */


/* Dashboard alignment + UX polish */
.dashlite-top{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid var(--border2)}
.dashlite-title{min-width:0}
.dashlite-title-main{font-weight:900;letter-spacing:-.02em}
.dashlite-title-sub{font-size:12px;color:var(--muted2);margin-top:2px}
.dashlite-switcher select{max-width:260px;min-width:160px}
@media (max-width: 720px){
  .dashlite-title{display:none}
  .dashlite-switcher{flex:1}
  .dashlite-switcher select{max-width:100%;min-width:0;width:100%}
  .dashlite-copilot{display:none}
}
.dashlite-content{padding:18px;max-width:1100px;margin:0 auto}
@media (max-width: 520px){.dashlite-content{padding:14px}}
.card{border:1px solid var(--border2);border-radius:16px;background:#fff}
.pad-md{padding:16px}
.h3{font-size:18px;font-weight:900;letter-spacing:-.02em}
.small{font-size:13px;line-height:1.45}

/* Fix any long text overflow */
.dashlite-link,.dashlite-user-email,.dashlite-user-name{min-width:0}
.dashlite-user-email{word-break:break-word}

/* Business chip */
.dashlite-currentbiz{font-size:12px;color:var(--muted2);margin-bottom:10px}

/* Tables/lists inside dashboard */
.db-table{width:100%;border-collapse:separate;border-spacing:0 10px}
.db-table th{font-size:12px;color:var(--muted2);text-align:left;padding:0 10px}
.db-table td{background:#fff;border:1px solid var(--border2);padding:12px 10px}
.db-table tr td:first-child{border-top-left-radius:14px;border-bottom-left-radius:14px}
.db-table tr td:last-child{border-top-right-radius:14px;border-bottom-right-radius:14px}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:8px;font-weight:900;border-radius:12px}
.btn-ghost{border:1px solid var(--border2)}


/* Dashboard layout: desktop sidebar (no overlay) */
@media (min-width: 980px){
  .dashlite{display:flex;min-height:100vh}
  .dashlite-top{position:fixed;left:0;right:0}
  .dashlite-drawer{
    position:sticky;
    top:0;
    height:100vh;
    width:280px;
    transform:none !important;
    left:0;
    border-right:1px solid var(--border2);
  }
  .dashlite-backdrop{display:none !important}
  .dashlite-burger,.dashlite-close{display:none !important}
  .dashlite-content{margin-top:66px; padding:22px; max-width:1200px; width:100%}
  /* keep content aligned while sidebar takes space */
  .dashlite-content{margin-left:0}
  .dashlite{padding-left:280px}
}
@media (max-width: 979px){
  .dashlite-top{position:sticky;top:0}
  .dashlite-content{padding:16px}
}


/* Dashboard page header card */
.db-head-card{display:flex;gap:14px;align-items:flex-start;justify-content:space-between}
.db-head-title{font-size:22px;font-weight:950;letter-spacing:-.02em;margin:0}
.db-head-sub{margin-top:6px;color:var(--muted2);max-width:80ch;font-size:13px;line-height:1.55}
.db-head-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
@media (max-width: 720px){
  .db-head-card{display:block}
  .db-head-actions{margin-top:12px;justify-content:flex-start}
}


/* Dashboard: less crowded + cleaner drawer */
.dashlite-drawer{background:#fff;border-right:1px solid var(--border2)}
.dashlite-drawer-head{padding:14px 14px 10px;border-bottom:1px solid var(--border2)}
.dashlite-section{padding:10px 14px 6px;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted2)}
.dashlite-nav{padding:0 10px 8px}
.dashlite-link{padding:10px 10px;border-radius:12px}
.dashlite-link.active{background:rgba(250,199,49,.16);border:1px solid rgba(250,199,49,.22)}
.dashlite-user-email{display:none !important}
.dashlite-user-name{font-weight:950}
.dashlite-avatar{background:rgba(0,0,0,.06);color:var(--text);border:1px solid var(--border2)}

.dashlite-top{padding:10px 14px}
.dashlite-brand{gap:10px}
.dashlite-switcher select{border:1px solid var(--border2);border-radius:12px;padding:10px 12px}

.db-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
@media (max-width: 900px){.db-grid{grid-template-columns:1fr}}


/* ===== Dashlite v2 (clean, light, not crowded) ===== */
:root{
  --dash-accent: var(--brand, #e07a2f);
  --dash-bg: #f6f7fb;
  --dash-card: #ffffff;
  --dash-text: #0f172a;
  --dash-muted: rgba(15,23,42,.65);
  --dash-border: rgba(15,23,42,.10);
  --dash-shadow: 0 10px 30px rgba(15,23,42,.08);
}

html.dash-noscroll, html.dash-noscroll body{overflow:hidden}

.dashlite{min-height:calc(100vh - 0px); background:var(--dash-bg); color:var(--dash-text)}
.dashlite-top{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; gap:12px;
  padding:12px 14px;
  background:#fff;
  border-bottom:1px solid var(--dash-border);
}
.dashlite-burger{
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--dash-border);
  background:#fff; font-size:18px; font-weight:900;
}
.dashlite-brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit}
.dashlite-mark{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, var(--dash-accent), rgba(224,122,47,.65));
  color:#fff; font-weight:900;
}
.dashlite-name{font-weight:900; letter-spacing:-.02em}

.dashlite-switcher{margin-left:auto}
.dashlite-switcher select{
  max-width:320px; min-width:190px;
  padding:10px 12px; border-radius:14px;
  border:1px solid var(--dash-border);
  background:#fff; font-weight:800;
}

.dashlite-copilot{
  margin-left:0;
  padding:10px 12px;border-radius:14px;
  border:1px solid var(--dash-border);
  background:#fff; font-weight:900;
}
@media (max-width: 860px){
  .dashlite-switcher{order:99; width:100%; margin-left:0}
  .dashlite-switcher select{width:100%; max-width:none}
  .dashlite-copilot{display:none}
}

.dashlite-overlay{
  position:fixed; inset:0;
  background:rgba(15,23,42,.25);
  opacity:0; pointer-events:none;
  transition:opacity .18s ease;
  z-index:60;
}
.dashlite-overlay.show{opacity:1; pointer-events:auto}

.dashlite-drawer{
  position:fixed; top:0; left:0; bottom:0;
  width:290px; max-width:86vw;
  background:#fff;
  border-right:1px solid var(--dash-border);
  box-shadow:var(--dash-shadow);
  transform:translateX(-105%);
  transition:transform .20s ease;
  z-index:70;
  display:flex; flex-direction:column;
}
.dashlite-drawer.open{transform:translateX(0)}
.dashlite-drawer-head{
  padding:14px 14px 10px 14px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid var(--dash-border);
}
.dashlite-currentbiz{font-size:12px; color:var(--dash-muted); font-weight:900}
.dashlite-close{
  width:42px;height:42px;border-radius:14px;
  border:1px solid var(--dash-border); background:#fff;
  font-size:28px; line-height:1;
}
.dashlite-section{
  padding:12px 14px 8px 14px;
  font-size:12px; color:var(--dash-muted); font-weight:900;
}
.dashlite-nav{padding:0 10px 10px 10px; display:flex; flex-direction:column; gap:6px}
.dashlite-link{
  display:flex; align-items:center; gap:10px;
  padding:12px 12px; border-radius:14px;
  text-decoration:none; color:inherit;
  border:1px solid transparent;
}
.dashlite-link:hover{background:rgba(224,122,47,.08); border-color:rgba(224,122,47,.18)}
.dashlite-link.active{background:rgba(224,122,47,.12); border-color:rgba(224,122,47,.25)}
.dashlite-ico{color:rgba(15,23,42,.75); display:grid; place-items:center}
.dashlite-text{font-weight:900}

.dashlite-main{padding:0; margin-left:0}
@media (min-width: 1100px){
  .dashlite-drawer{transform:none; position:sticky; top:0; height:100vh; z-index:10}
  .dashlite-overlay{display:none}
  .dashlite{display:grid; grid-template-columns:290px 1fr}
  .dashlite-top{grid-column:2 / 3}
  .dashlite-main{grid-column:2 / 3}
  .dashlite-burger,.dashlite-close{display:none}
}
.dashlite-titlebar{padding:18px 16px 0 16px}
.dashlite-title{font-size:18px;font-weight:950;letter-spacing:-.02em}
.dashlite-content{padding:16px}

.card{background:var(--dash-card); border:1px solid var(--dash-border); border-radius:18px; box-shadow:0 10px 25px rgba(15,23,42,.06)}
.btn{border-radius:14px}

.mini-row{display:flex;gap:10px;align-items:flex-start}
.mini-dot{width:10px;height:10px;border-radius:99px;background:rgba(224,122,47,.45);margin-top:6px}
