:root{
 --bg:#0B1220;
 --panel:#111827;
 --panel2:#182235;
 --line:#263244;
 --text:#F8FAFC;
 --muted:#94A3B8;
 --green:#22C55E;
 --red:#EF4444;
 --yellow:#F59E0B;
 --blue:#3B82F6;
 --btn-compact:44px;
 --btn-standard:48px;
 --btn-primary:52px;
}
*{box-sizing:border-box;margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif;-webkit-tap-highlight-color:transparent}
html{scroll-behavior:smooth}
body{
 min-height:100vh;
 background:#0B1220;
 color:var(--text);
 overflow-x:hidden;
}
body:before{
 content:"";
 position:fixed;
 inset:0;
 z-index:-1;
 background:
 linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
 linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
 background-size:44px 44px;
 mask-image:linear-gradient(to bottom,rgba(0,0,0,.92),transparent 82%);
}
.shell{width:min(1180px,calc(100% - 28px));margin:0 auto}
.navbar{
 position:sticky;
 top:12px;
 z-index:50;
 margin-top:12px;
 min-height:70px;
 display:flex;
 justify-content:space-between;
 align-items:center;
 gap:14px;
 padding:12px 14px;
 border:1px solid var(--line);
 background:rgba(17,24,39,.88);
 border-radius:24px;
 backdrop-filter:blur(18px);
}
.brand{display:flex;align-items:center;gap:12px;font-weight:950;font-size:20px;letter-spacing:-.04em}
.logo{width:46px;height:46px;border-radius:16px;background:var(--green);color:#06130B;display:flex;align-items:center;justify-content:center;font-size:24px}
.nav-actions{display:flex;gap:9px;align-items:center;flex-wrap:wrap}
.btn{
 min-height:var(--btn-compact);
 padding:0 15px;
 border-radius:14px;
 border:1px solid var(--line);
 background:var(--panel2);
 color:var(--text);
 text-decoration:none;
 display:inline-flex;
 align-items:center;
 justify-content:center;
 gap:8px;
 font-weight:950;
 cursor:pointer;
}
.btn.primary{background:var(--green);border-color:var(--green);color:#06130B}
.dropdown{position:relative}
.dropdown-menu{
 position:absolute;
 top:calc(100% + 8px);
 right:0;
 width:250px;
 display:none;
 padding:8px;
 background:#111827;
 border:1px solid var(--line);
 border-radius:18px;
 box-shadow:0 24px 70px rgba(0,0,0,.38);
}
.dropdown.open .dropdown-menu{display:grid;gap:7px}
.dropdown-menu a{
 min-height:42px;
 padding:0 12px;
 border-radius:12px;
 display:flex;
 align-items:center;
 text-decoration:none;
 color:var(--text);
 font-weight:850;
}
.dropdown-menu a:hover{background:#182235}
.hero{
 min-height:calc(100vh - 96px);
 display:grid;
 grid-template-columns:1.05fr .95fr;
 gap:22px;
 align-items:center;
 padding:54px 0 34px;
}
.eyebrow{
 display:inline-flex;
 align-items:center;
 gap:8px;
 min-height:34px;
 padding:0 12px;
 border-radius:999px;
 background:rgba(34,197,94,.10);
 border:1px solid rgba(34,197,94,.34);
 color:#86EFAC;
 font-weight:950;
 font-size:12px;
}
h1{
 margin-top:18px;
 font-size:clamp(44px,7vw,92px);
 line-height:.92;
 letter-spacing:-.075em;
}
h1 span{color:var(--green)}
.lead{
 max-width:720px;
 margin-top:18px;
 color:var(--muted);
 font-size:18px;
 line-height:1.65;
}
.hero-actions{
 display:grid;
 grid-template-columns:repeat(4,minmax(0,1fr));
 gap:10px;
 margin-top:24px;
}
.hero-actions .btn{
 width:100%;
 min-width:0;
 min-height:var(--btn-primary);
 padding:0 8px;
 font-size:13px;
 line-height:1.15;
 text-align:center;
}
.preview{
 border:1px solid var(--line);
 background:#111827;
 border-radius:30px;
 padding:18px;
 box-shadow:0 24px 80px rgba(0,0,0,.28);
}
.pos-card{
 background:#0B1220;
 border:1px solid var(--line);
 border-radius:24px;
 padding:18px;
}
.pos-head{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:16px}
.status{font-size:12px;font-weight:950;color:#86EFAC;background:rgba(34,197,94,.10);border:1px solid rgba(34,197,94,.34);border-radius:999px;padding:8px 10px}
.sale-row{
 display:grid;
 grid-template-columns:1fr auto;
 gap:10px;
 padding:13px 0;
 border-bottom:1px solid var(--line);
}
.sale-row small{display:block;color:var(--muted);margin-top:3px}
.total{
 margin-top:16px;
 display:flex;
 justify-content:space-between;
 align-items:center;
 padding:16px;
 border-radius:18px;
 background:#111827;
 border:1px solid var(--line);
 font-size:26px;
 font-weight:950;
}
.section{padding:34px 0}
.section h2{font-size:clamp(32px,4vw,54px);letter-spacing:-.06em;line-height:1}
.section p{color:var(--muted);line-height:1.6;margin-top:10px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:20px}
.card{
 min-height:190px;
 background:#111827;
 border:1px solid var(--line);
 border-radius:24px;
 padding:20px;
}
.card .icon{font-size:28px;margin-bottom:18px}
.card h3{font-size:22px;letter-spacing:-.04em}
.card p{font-size:15px}
.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:20px}
.price{
 background:#111827;
 border:1px solid var(--line);
 border-radius:24px;
 padding:20px;
}
.price strong{font-size:38px;letter-spacing:-.06em;display:block;margin-top:12px}
.price ul{margin:18px 0 0;padding-left:18px;color:var(--muted);line-height:1.9}
.footer{
 margin-top:34px;
 padding:24px 0;
 color:#64748B;
 text-align:center;
 border-top:1px solid var(--line);
}
@media(max-width:900px){
 .hero{grid-template-columns:1fr;min-height:auto;padding-top:36px}
 .cards,.pricing{grid-template-columns:1fr}
 .nav-actions .hide-mobile{display:none}
}
@media(max-width:620px){
 .navbar{align-items:flex-start}
 .brand{font-size:17px}
 h1{font-size:44px}
 .hero-actions{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
 .hero-actions .btn{min-height:var(--btn-standard);padding:0 7px;font-size:12px}
 .dropdown-menu{right:auto;left:0}
}

/* === PocketPOS.6 - Landing Dropdown Mobile Fix === */
.navbar{
 overflow:visible!important;
}
.dropdown-menu{
 max-width:calc(100vw - 28px)!important;
 z-index:9999!important;
}
@media(max-width:620px){
 .navbar{
 align-items:center!important;
 flex-wrap:nowrap!important;
 }
 .brand{
 min-width:0!important;
 font-size:16px!important;
 }
 .brand div:last-child{
 white-space:nowrap!important;
 overflow:hidden!important;
 text-overflow:ellipsis!important;
 }
 .nav-actions{
 flex:0 0 auto!important;
 }
 .dropdown{
 position:static!important;
 }
 .dropdown-menu{
 position:fixed!important;
 top:88px!important;
 left:14px!important;
 right:14px!important;
 width:auto!important;
 max-width:none!important;
 border-radius:20px!important;
 }
 .dropdown-menu a{
 min-height:50px!important;
 font-size:16px!important;
 }
}


/* === PocketPOS v5.9 - Premium Floating Demo CTA === */
.floating-demo-cta{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:12px;
  min-height:58px;
  padding:10px 16px 10px 10px;
  border-radius:999px;
  background:#F8FAFC;
  color:#06130B;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 22px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(34,197,94,.14);
  text-decoration:none;
  font-weight:950;
  letter-spacing:-.02em;
  transform:translateZ(0);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.floating-demo-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 28px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(34,197,94,.28);
}
.floating-demo-cta:active{
  transform:translateY(0) scale(.98);
}
.floating-demo-cta .bubble{
  width:42px;
  height:42px;
  border-radius:999px;
  background:#22C55E;
  color:#06130B;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 10px 30px rgba(34,197,94,.34);
}
.floating-demo-cta .txt{
  display:grid;
  line-height:1.05;
}
.floating-demo-cta .txt b{
  font-size:15px;
}
.floating-demo-cta .txt small{
  color:#475569;
  font-size:11px;
  margin-top:4px;
  font-weight:850;
}
.floating-demo-cta:before{
  content:"";
  position:absolute;
  inset:-5px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.25);
  opacity:.65;
  animation:demoPulse 2.4s ease-in-out infinite;
  pointer-events:none;
}
@keyframes demoPulse{
  0%,100%{transform:scale(.98);opacity:.25}
  50%{transform:scale(1.05);opacity:.7}
}
.demo-mini-tag{
  position:fixed;
  right:24px;
  bottom:92px;
  z-index:9998;
  max-width:290px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(17,24,39,.92);
  border:1px solid #263244;
  color:#CBD5E1;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  font-size:12px;
  font-weight:850;
  line-height:1.35;
  backdrop-filter:blur(18px);
}
.demo-mini-tag b{
  color:#86EFAC;
}
@media(max-width:760px){
  .floating-demo-cta{
    left:14px;
    right:14px;
    bottom:calc(14px + env(safe-area-inset-bottom,0px));
    justify-content:center;
    min-height:56px;
    padding:9px 14px 9px 9px;
  }
  .floating-demo-cta .bubble{
    width:40px;
    height:40px;
  }
  .demo-mini-tag{
    left:14px;
    right:14px;
    bottom:calc(82px + env(safe-area-inset-bottom,0px));
    max-width:none;
    text-align:center;
  }
}
@media(max-width:420px){
  .floating-demo-cta .txt small{
    display:none;
  }
}
@media print{
  .floating-demo-cta,
  .demo-mini-tag{
    display:none!important;
  }
}


/* === PocketPOS v5.12 - Index transparent symbol logo === */
.logo.logo-symbol{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  padding:0!important;
  width:58px!important;
  height:58px!important;
  border-radius:0!important;
  overflow:visible!important;
}
.logo.logo-symbol img{
  width:58px!important;
  height:58px!important;
  object-fit:contain!important;
  display:block!important;
  filter:drop-shadow(0 14px 28px rgba(34,197,94,.18));
}
@media(max-width:620px){
  .logo.logo-symbol,
  .logo.logo-symbol img{
    width:52px!important;
    height:52px!important;
  }
}
