:root{
  --bg:            #0A1120;
  --bg-soft:       #0D1526;
  --surface:       #101B30;
  --surface-2:     #142140;
  --line:          rgba(234,240,246,0.09);
  --line-strong:   rgba(234,240,246,0.16);
  --text:          #EAF0F6;
  --text-dim:      #93A3B8;
  --text-faint:    #5B6B82;

  --signal:        #12E0C4;   /* live / up */
  --signal-dim:    rgba(18,224,196,0.14);
  --amber:         #FFB020;   /* degraded */
  --amber-dim:     rgba(255,176,32,0.14);
  --red:           #FF5A5F;   /* down */
  --red-dim:       rgba(255,90,95,0.14);
  --violet:        #7C8CFF;   /* secondary accent */

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-soft: 0 20px 60px rgba(0,0,0,0.35);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(ellipse 800px 500px at 15% -5%, rgba(18,224,196,0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(124,140,255,0.07), transparent 60%);
  pointer-events:none;
  z-index:0;
}
h1,h2,h3,h4,h5,.font-display{font-family:var(--font-display); letter-spacing:-0.02em;}
.font-mono{font-family:var(--font-mono);}
a{text-decoration:none; color:inherit;}
::selection{background:var(--signal); color:#03110E;}

.container-xl{max-width:1240px; margin:0 auto; padding:0 24px;}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--signal);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* =========================================================
   Eyebrow / labels
   ========================================================= */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--signal);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px; border-radius:50%;
  background:var(--signal);
  box-shadow:0 0 0 0 rgba(18,224,196,0.6);
  animation:pulse-dot 2s infinite;
}
@keyframes pulse-dot{
  0%{box-shadow:0 0 0 0 rgba(18,224,196,0.55);}
  70%{box-shadow:0 0 0 8px rgba(18,224,196,0);}
  100%{box-shadow:0 0 0 0 rgba(18,224,196,0);}
}

/* =========================================================
   Navbar
   ========================================================= */
.pg-nav{
  position:sticky; top:0; z-index:1000;
  background:rgba(10,17,32,0.72);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.pg-nav .container-xl{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.pg-brand{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-display);
  font-weight:700; font-size:20px;
  color:var(--text);
}
.pg-brand-mark{
  width:34px; height:34px; border-radius:9px;
  background:linear-gradient(135deg, var(--signal), var(--violet));
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.pg-brand-mark svg{width:18px; height:18px;}
.pg-links{
  display:flex; align-items:center; gap:34px;
  list-style:none; margin:0; padding:0;
}
.pg-links a{
  font-size:14.5px; color:var(--text-dim); font-weight:500;
  transition:color .2s;
  position:relative;
}
.pg-links a:hover{color:var(--text);}
.pg-nav-actions{display:flex; align-items:center; gap:12px;}

.btn-pg{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-body); font-weight:600; font-size:14.5px;
  padding:11px 22px; border-radius:10px;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
}
.btn-pg-primary{
  background:var(--signal); color:#03110E;
}
.btn-pg-primary:hover{transform:translateY(-2px); box-shadow:0 10px 26px rgba(18,224,196,0.28); color:#03110E;}
.btn-pg-ghost{
  background:transparent; color:var(--text); border-color:var(--line-strong);
}
.btn-pg-ghost:hover{border-color:var(--signal); color:var(--signal);}
.btn-pg-outline-lg{
  background:transparent; color:var(--text); border-color:var(--line-strong);
  padding:13px 26px;
}
.btn-pg-outline-lg:hover{border-color:var(--signal); color:var(--signal);}

/* Hamburger */
.pg-burger{
  width:42px; height:42px; border-radius:10px;
  border:1px solid var(--line-strong);
  background:transparent;
  display:none;
  align-items:center; justify-content:center;
  flex-direction:column; gap:4px;
}
.pg-burger span{width:18px; height:2px; background:var(--text); display:block; border-radius:2px;}

/* =========================================================
   Sidebar mobile menu (slides left -> right)
   ========================================================= */
.pg-sidebar{
  position:fixed; top:0; left:0; height:100%; width:82%; max-width:340px;
  background:var(--bg-soft);
  border-right:1px solid var(--line);
  z-index:1200;
  transform:translateX(-105%);
  transition:transform .38s cubic-bezier(.2,.9,.25,1);
  display:flex; flex-direction:column;
  padding:22px 22px 30px;
  overflow-y:auto;
}
.pg-sidebar.open{transform:translateX(0);}
.pg-sidebar-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:30px;}
.pg-sidebar-close{
  width:38px; height:38px; border-radius:9px; border:1px solid var(--line-strong);
  background:transparent; color:var(--text); font-size:18px;
  display:flex; align-items:center; justify-content:center;
}
.pg-sidebar-links{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:4px;}
.pg-sidebar-links a{
  display:block; padding:14px 8px; font-size:16px; font-weight:500; color:var(--text-dim);
  border-bottom:1px solid var(--line);
}
.pg-sidebar-links a:hover{color:var(--signal);}
.pg-sidebar-actions{margin-top:auto; display:flex; flex-direction:column; gap:10px; padding-top:20px;}
.pg-overlay{
  position:fixed; inset:0; background:rgba(3,7,15,0.6); backdrop-filter:blur(2px);
  z-index:1100; opacity:0; pointer-events:none; transition:opacity .3s;
}
.pg-overlay.show{opacity:1; pointer-events:auto;}

/* =========================================================
   Hero
   ========================================================= */
.pg-hero{
  position:relative; padding:96px 0 80px;
  z-index:1;
}
.pg-hero .row{align-items:center;}
.pg-hero h1{
  font-size:clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight:700; line-height:1.08;
  margin-bottom:22px;
}
.pg-hero h1 .accent{color:var(--signal);}
.pg-hero p.lead{
  color:var(--text-dim); font-size:17.5px; max-width:520px; margin-bottom:32px;
}
.pg-hero-cta{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:42px;}
.pg-hero-stats{display:flex; gap:36px; flex-wrap:wrap;}
.pg-hero-stats div strong{
  display:block; font-family:var(--font-display); font-size:26px; color:var(--text);
}
.pg-hero-stats div span{font-size:13px; color:var(--text-faint);}

/* Signature: live pulse monitor card */
.pg-monitor-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow-soft);
  position:relative;
}
.pg-monitor-card-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:16px;
}
.pg-monitor-card-head .dot-row{display:flex; gap:6px;}
.pg-monitor-card-head .dot-row span{width:9px; height:9px; border-radius:50%; background:var(--line-strong); display:block;}
.pg-monitor-domain{font-family:var(--font-mono); font-size:13px; color:var(--text-dim);}

.pg-pulse-wrap{
  background:var(--bg-soft);
  border-radius:var(--radius-md);
  border:1px solid var(--line);
  padding:16px 12px 6px;
  margin-bottom:16px;
  overflow:hidden;
}
.pg-pulse-wrap svg{width:100%; height:90px; display:block;}
.pg-pulse-line{
  fill:none; stroke:var(--signal); stroke-width:2;
  stroke-dasharray:1400; stroke-dashoffset:1400;
  animation:pg-draw 3.4s ease-in-out infinite;
  filter:drop-shadow(0 0 6px rgba(18,224,196,0.5));
}
@keyframes pg-draw{
  0%{stroke-dashoffset:1400;}
  60%{stroke-dashoffset:0;}
  100%{stroke-dashoffset:-1400;}
}

.pg-status-grid{display:grid; grid-template-columns:1fr 1fr; gap:10px;}
.pg-status-item{
  display:flex; align-items:center; justify-content:space-between;
  background:var(--bg-soft); border:1px solid var(--line);
  border-radius:10px; padding:10px 12px;
  font-family:var(--font-mono); font-size:12.5px;
}
.pg-status-item .name{color:var(--text-dim);}
.badge-up{color:var(--signal); display:flex; align-items:center; gap:6px;}
.badge-up::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--signal); box-shadow:0 0 0 0 rgba(18,224,196,.6); animation:pulse-dot 2s infinite;}
.badge-down{color:var(--red); display:flex; align-items:center; gap:6px;}
.badge-down::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--red);}

/* =========================================================
   Section shell
   ========================================================= */
.pg-section{position:relative; padding:88px 0; z-index:1;}
.pg-section-alt{background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.pg-section-head{max-width:640px; margin-bottom:52px;}
.pg-section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.pg-section-head h2{font-size:clamp(1.7rem,3vw,2.3rem); margin-bottom:14px;}
.pg-section-head p{color:var(--text-dim); font-size:16px;}

/* divider - pulse line between sections */
.pg-divider{position:relative; height:2px; background:var(--line); margin:0;}
.pg-divider::after{
  content:""; position:absolute; top:-1px; left:0; height:4px; width:120px;
  background:var(--signal); filter:blur(1px);
  animation:pg-slide 5s linear infinite;
}
@keyframes pg-slide{0%{left:-10%;} 100%{left:110%;}}

/* =========================================================
   About
   ========================================================= */
.pg-about-figure{
  position:relative; border-radius:var(--radius-lg); border:1px solid var(--line);
  background:var(--surface); padding:26px; overflow:hidden;
}
.pg-about-figure .ring{
  position:absolute; border-radius:50%; border:1px solid rgba(18,224,196,0.25);
}
.pg-metric-row{display:flex; gap:20px; margin-top:24px; flex-wrap:wrap;}
.pg-metric{
  flex:1; min-width:130px; background:var(--surface); border:1px solid var(--line);
  border-radius:14px; padding:18px;
}
.pg-metric strong{display:block; font-family:var(--font-display); font-size:24px;}
.pg-metric span{font-size:12.5px; color:var(--text-faint);}

/* =========================================================
   Services / Offer cards
   ========================================================= */
.pg-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:28px; height:100%; transition:transform .25s ease, border-color .25s ease;
}
.pg-card:hover{transform:translateY(-6px); border-color:rgba(18,224,196,0.35);}
.pg-card-icon{
  width:46px; height:46px; border-radius:12px;
  background:var(--signal-dim); color:var(--signal);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.pg-card h3{font-size:19px; margin-bottom:10px;}
.pg-card p{color:var(--text-dim); font-size:14.5px; margin-bottom:0;}

.pg-offer-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:26px; height:100%; position:relative;
}
.pg-offer-num{
  font-family:var(--font-mono); color:var(--text-faint); font-size:13px; margin-bottom:14px; display:block;
}
.pg-offer-card h4{font-size:17px; margin-bottom:8px;}
.pg-offer-card p{color:var(--text-dim); font-size:14px; margin-bottom:14px;}
.pg-offer-card a{font-size:13.5px; color:var(--signal); font-weight:600;}

/* =========================================================
   Why choose
   ========================================================= */
.pg-why-item{display:flex; gap:16px; margin-bottom:26px;}
.pg-why-icon{
  flex:0 0 42px; height:42px; width:42px; border-radius:11px;
  background:var(--signal-dim); color:var(--signal);
  display:flex; align-items:center; justify-content:center;
}
.pg-why-item h5{font-size:16px; margin-bottom:6px;}
.pg-why-item p{color:var(--text-dim); font-size:14px; margin-bottom:0;}

/* =========================================================
   Pricing
   ========================================================= */
.pg-price-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:34px 28px; height:100%; position:relative;
}
.pg-price-card.featured{border-color:var(--signal); box-shadow:0 20px 60px rgba(18,224,196,0.1);}
.pg-price-badge{
  position:absolute; top:-13px; right:28px; background:var(--signal); color:#03110E;
  font-size:12px; font-weight:700; padding:5px 14px; border-radius:20px;
}
.pg-price-card h4{font-size:18px; color:var(--text-dim); font-weight:600; margin-bottom:16px;}
.pg-price-amount{font-family:var(--font-display); font-size:42px; margin-bottom:4px;}
.pg-price-amount span{font-size:15px; color:var(--text-faint); font-family:var(--font-body);}
.pg-price-sub{color:var(--text-faint); font-size:13px; margin-bottom:26px;}
.pg-price-feats{list-style:none; padding:0; margin:0 0 28px; display:flex; flex-direction:column; gap:12px;}
.pg-price-feats li{display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--text-dim);}
.pg-price-feats li svg{flex:0 0 16px; margin-top:3px; color:var(--signal);}

/* =========================================================
   FAQ (accordion, bootstrap w/ custom skin)
   ========================================================= */
.pg-accordion .accordion-item{
  background:var(--surface); border:1px solid var(--line); border-radius:12px !important;
  margin-bottom:12px; overflow:hidden;
}
.pg-accordion .accordion-button{
  background:var(--surface); color:var(--text); font-weight:600; font-size:15.5px;
  box-shadow:none;
}
.pg-accordion .accordion-button:not(.collapsed){color:var(--signal); background:var(--surface);}
.pg-accordion .accordion-button::after{filter:invert(1) brightness(2);}
.pg-accordion .accordion-body{color:var(--text-dim); font-size:14.5px; padding-top:0;}

/* =========================================================
   CTA band
   ========================================================= */
.pg-cta-band{
  background:linear-gradient(120deg, rgba(18,224,196,0.1), rgba(124,140,255,0.08));
  border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:56px 40px; text-align:center;
}
.pg-cta-band h2{font-size:clamp(1.6rem,3vw,2.1rem); margin-bottom:14px;}
.pg-cta-band p{color:var(--text-dim); margin-bottom:28px;}

/* =========================================================
   Footer
   ========================================================= */
.pg-footer{
  background:var(--bg-soft); border-top:1px solid var(--line);
  padding:64px 0 26px; position:relative; z-index:1;
}
.pg-footer h6{font-size:14px; color:var(--text); margin-bottom:18px; letter-spacing:.04em; text-transform:uppercase;}
.pg-footer ul{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px;}
.pg-footer ul li a{color:var(--text-dim); font-size:14px;}
.pg-footer ul li a:hover{color:var(--signal);}
.pg-footer-bottom{
  border-top:1px solid var(--line); margin-top:48px; padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:13px; color:var(--text-faint);
}
.pg-social{display:flex; gap:10px;}
.pg-social a{
  width:36px; height:36px; border-radius:9px; border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
}
.pg-social a:hover{border-color:var(--signal); color:var(--signal);}

/* =========================================================
   Login page
   ========================================================= */
.pg-auth-wrap{
  min-height:100vh; display:flex; align-items:stretch;
}
.pg-auth-side{
  flex:1; position:relative; display:flex; flex-direction:column; justify-content:space-between;
  padding:52px; background:var(--surface); border-right:1px solid var(--line);
  overflow:hidden;
}
.pg-auth-side::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 30% 20%, rgba(18,224,196,0.12), transparent 55%);
}
.pg-auth-form-col{
  flex:1; display:flex; align-items:center; justify-content:center; padding:40px 24px;
}
.pg-auth-card{width:100%; max-width:400px;}
.pg-auth-card h2{font-size:26px; margin-bottom:8px;}
.pg-auth-card p.sub{color:var(--text-dim); font-size:14.5px; margin-bottom:32px;}
.pg-field{margin-bottom:20px;}
.pg-field label{display:block; font-size:13.5px; color:var(--text-dim); margin-bottom:8px; font-weight:500;}
.pg-input-group{position:relative;}
.pg-input-group .icon{
  position:absolute; left:14px; top:50%; transform:translateY(-50%); color:var(--text-faint);
  display:flex;
}
.pg-input{
  width:100%; background:var(--bg-soft); border:1px solid var(--line-strong); border-radius:10px;
  padding:13px 14px 13px 42px; color:var(--text); font-size:14.5px; transition:border-color .2s;
}
.pg-input:focus{outline:none; border-color:var(--signal); background:var(--bg-soft);}
.pg-input::placeholder{color:var(--text-faint);}
.pg-toggle-pass{
  position:absolute; right:12px; top:50%; transform:translateY(-50%);
  background:none; border:none; color:var(--text-faint); cursor:pointer; display:flex;
}
.pg-remember-row{display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; font-size:13.5px;}
.pg-remember-row a{color:var(--signal);}
.form-check-input{background-color:var(--bg-soft); border-color:var(--line-strong);}
.form-check-input:checked{background-color:var(--signal); border-color:var(--signal);}

.pg-auth-mini-stat{
  display:flex; gap:14px; align-items:center; background:var(--bg-soft); border:1px solid var(--line);
  border-radius:12px; padding:14px 16px; margin-top:14px;
}
.pg-auth-mini-stat .dot{width:9px; height:9px; border-radius:50%; background:var(--signal); box-shadow:0 0 0 0 rgba(18,224,196,.6); animation:pulse-dot 2s infinite;}
.pg-auth-mini-stat span{font-size:13px; color:var(--text-dim);}

/* =========================================================
   Dashboard
   ========================================================= */
.pg-dash{display:flex; min-height:100vh;}
.pg-dash-sidebar{
  width:260px; flex-shrink:0; background:var(--bg-soft); border-right:1px solid var(--line);
  display:flex; flex-direction:column; padding:22px 16px;
  position:sticky; top:0; height:100vh;
}
.pg-dash-brand{display:flex; align-items:center; gap:10px; padding:6px 8px 24px; font-family:var(--font-display); font-weight:700;}
.pg-dash-nav{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:3px; flex:1;}
.pg-dash-nav a{
  display:flex; align-items:center; gap:12px; padding:11px 12px; border-radius:10px;
  color:var(--text-dim); font-size:14.5px; font-weight:500; transition:all .2s;
}
.pg-dash-nav a svg{width:18px; height:18px; flex-shrink:0;}
.pg-dash-nav a:hover{background:var(--surface-2); color:var(--text);}
.pg-dash-nav a.active{background:var(--signal-dim); color:var(--signal);}
.pg-dash-user{
  display:flex; align-items:center; gap:10px; padding:14px 10px; border-top:1px solid var(--line); margin-top:10px;
}
.pg-dash-user .avatar{width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,var(--signal),var(--violet)); flex-shrink:0;}
.pg-dash-user small{display:block; color:var(--text-faint); font-size:11.5px;}

.pg-dash-main{flex:1; min-width:0;}
.pg-dash-topbar{
  height:72px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between;
  padding:0 28px; position:sticky; top:0; background:rgba(10,17,32,0.85); backdrop-filter:blur(10px); z-index:50;
}
.pg-dash-search{
  display:flex; align-items:center; gap:10px; background:var(--surface); border:1px solid var(--line);
  border-radius:10px; padding:9px 14px; width:320px; max-width:40vw;
}
.pg-dash-search input{background:none; border:none; color:var(--text); font-size:13.5px; width:100%;}
.pg-dash-search input:focus{outline:none;}
.pg-dash-topbar-actions{display:flex; align-items:center; gap:14px;}
.pg-icon-btn{
  width:40px; height:40px; border-radius:10px; border:1px solid var(--line-strong); background:transparent;
  color:var(--text-dim); display:flex; align-items:center; justify-content:center; position:relative;
}
.pg-icon-btn .ping{position:absolute; top:8px; right:9px; width:7px; height:7px; border-radius:50%; background:var(--red);}
.pg-dash-body{padding:28px;}

.pg-kpi{
  background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:20px;
}
.pg-kpi .label{font-size:12.5px; color:var(--text-faint); text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px;}
.pg-kpi .value{font-family:var(--font-display); font-size:28px;}
.pg-kpi .delta{font-size:12.5px; margin-top:6px;}
.pg-kpi .delta.up{color:var(--signal);}
.pg-kpi .delta.down{color:var(--red);}

.pg-panel{background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:22px;}
.pg-panel-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:18px;}
.pg-panel-head h5{font-size:15.5px; margin:0;}

.pg-table{width:100%; border-collapse:collapse; font-size:13.5px;}
.pg-table th{
  text-align:left; color:var(--text-faint); font-weight:500; font-size:12px; text-transform:uppercase;
  letter-spacing:.04em; padding:10px 12px; border-bottom:1px solid var(--line);
}
.pg-table td{padding:13px 12px; border-bottom:1px solid var(--line); color:var(--text-dim); vertical-align:middle;}
.pg-table tr:last-child td{border-bottom:none;}
.pg-domain-name{color:var(--text); font-weight:600; font-family:var(--font-mono); font-size:13px;}
.pg-status-pill{
  display:inline-flex; align-items:center; gap:6px; padding:4px 10px; border-radius:20px; font-size:12px; font-weight:600;
}
.pg-status-pill.up{background:var(--signal-dim); color:var(--signal);}
.pg-status-pill.down{background:var(--red-dim); color:var(--red);}
.pg-status-pill.warn{background:var(--amber-dim); color:var(--amber);}
.pg-status-pill::before{content:""; width:6px; height:6px; border-radius:50%; background:currentColor;}

.pg-sparkline{width:90px; height:26px;}
.pg-sparkline path{fill:none; stroke:var(--signal); stroke-width:1.8;}

/* Chat widget */
.pg-chat-btn{
  position:fixed; bottom:24px; right:24px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:var(--signal); color:#03110E; border:none;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px rgba(18,224,196,0.35);
  cursor:pointer;
}
.pg-chat-btn .ping-dot{
  position:absolute; top:2px; right:2px; width:12px; height:12px; border-radius:50%;
  background:var(--red); border:2px solid var(--bg);
}
.pg-chat-panel{
  position:fixed; bottom:94px; right:24px; z-index:900;
  width:340px; max-width:88vw; height:440px; max-height:70vh;
  background:var(--surface); border:1px solid var(--line); border-radius:18px;
  box-shadow:var(--shadow-soft);
  display:flex; flex-direction:column; overflow:hidden;
  transform:translateY(16px) scale(.97); opacity:0; pointer-events:none;
  transition:all .25s ease;
}
.pg-chat-panel.open{transform:translateY(0) scale(1); opacity:1; pointer-events:auto;}
.pg-chat-head{
  padding:16px 18px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between;
  background:var(--surface-2);
}
.pg-chat-head strong{font-size:14.5px; display:flex; align-items:center; gap:8px;}
.pg-chat-body{flex:1; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:10px;}
.pg-msg{max-width:80%; padding:9px 13px; border-radius:12px; font-size:13.5px; line-height:1.45;}
.pg-msg.bot{background:var(--surface-2); align-self:flex-start; border-bottom-left-radius:4px;}
.pg-msg.user{background:var(--signal); color:#03110E; align-self:flex-end; border-bottom-right-radius:4px;}
.pg-chat-foot{padding:12px; border-top:1px solid var(--line); display:flex; gap:8px;}
.pg-chat-foot input{
  flex:1; background:var(--bg-soft); border:1px solid var(--line-strong); border-radius:9px;
  padding:10px 12px; color:var(--text); font-size:13.5px;
}
.pg-chat-foot input:focus{outline:none; border-color:var(--signal);}
.pg-chat-foot button{
  background:var(--signal); color:#03110E; border:none; border-radius:9px; width:40px; display:flex; align-items:center; justify-content:center;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991.98px){
  .pg-links, .pg-nav-actions .btn-pg-ghost{display:none;}
  .pg-burger{display:flex;}
  .pg-dash-sidebar{
    position:fixed; left:0; top:0; height:100%; z-index:1200;
    transform:translateX(-105%); transition:transform .35s cubic-bezier(.2,.9,.25,1);
  }
  .pg-dash-sidebar.open{transform:translateX(0);}
  .pg-dash-search{width:200px;}
  .pg-auth-side{display:none;}
}
@media (max-width: 767.98px){
  .pg-hero{padding:56px 0 50px;}
  .pg-section{padding:60px 0;}
  .pg-section-head{margin-bottom:34px;}
  .pg-status-grid{grid-template-columns:1fr;}
  .pg-dash-body{padding:16px;}
  .pg-dash-topbar{padding:0 14px;}
  .pg-cta-band{padding:40px 22px;}
}

a.pg-brand img {
    width: auto;
    height: 47px;
}

a.pg-dash-brand img {
    width: auto;
    height: 45px;
}

h2.font-display {
    font-size: 34px;
}

.pg-sidebar-head img {
    width: auto;
    height: 45px;
}