/* =========================================================
   THEDESKHELP — REAL PRODUCT WEBSITE
   ========================================================= */

#publicLanding{
  --blue:#0047AB;
  --indigo:#480082;
  --violet:#734E96;
  --navy:#121B35;
  --text:#344054;
  --muted:#667085;
  --bg:#ffffff;
  --soft:#F6F8FC;
  --line:#E5EAF1;
  --green:#17A36B;
  --red:#E25567;
  width:100%;
  min-height:100vh;
  position:fixed;
  inset:0;
  overflow:auto;
  z-index:8000;
  background:#fff;
  color:var(--text);
  font-family:'DM Sans',Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

#publicLanding *,
#publicLanding *::before,
#publicLanding *::after{
  box-sizing:border-box;
}

#publicLanding button,
#publicLanding a{
  font:inherit;
}

.wsite-wrap{
  width:min(1220px,calc(100% - 48px));
  margin:auto;
}

/* ---------- NAV ---------- */

.wsite-nav{
  position:sticky;
  top:0;
  z-index:50;
  height:76px;
  display:flex;
  align-items:center;
  gap:28px;
  background:rgba(255,255,255,.90);
  border-bottom:1px solid rgba(229,234,241,.86);
  backdrop-filter:blur(16px);
}

.wsite-nav .wsite-wrap{
  display:flex;
  align-items:center;
  width:min(1220px,calc(100% - 48px));
  height:100%;
}

.wsite-logo{
  width:205px;
  height:46px;
  object-fit:contain;
  object-position:left center;
  flex:0 0 auto;
}

.wsite-links{
  display:flex;
  align-items:center;
  gap:27px;
  margin-left:auto;
}

.wsite-links a{
  position:relative;
  color:#536178;
  text-decoration:none;
  font-size:11px;
  font-weight:700;
}

.wsite-links a:hover{
  color:var(--blue);
}

.wsite-actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:28px;
}

.wsite-signin,
.wsite-start{
  height:39px;
  padding:0 15px;
  border-radius:9px;
  cursor:pointer;
  font-size:10px;
  font-weight:800;
}

.wsite-signin{
  border:1px solid #D6DFEC;
  background:#fff;
  color:var(--navy);
}

.wsite-start{
  border:0;
  background:var(--blue);
  color:#fff;
  box-shadow:0 7px 18px rgba(0,71,171,.19);
}

/* ---------- HERO ---------- */

.wsite-hero{
  padding:82px 0 78px;
  background:
    radial-gradient(circle at 8% 15%,rgba(0,71,171,.055),transparent 28%),
    radial-gradient(circle at 92% 26%,rgba(115,78,150,.075),transparent 27%);
}

.wsite-hero-grid{
  display:grid;
  grid-template-columns:.84fr 1.16fr;
  gap:62px;
  align-items:center;
}

.wsite-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 10px;
  border:1px solid #D8E5F8;
  border-radius:999px;
  background:#F5F9FF;
  color:var(--blue);
  font-size:8px;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.wsite-eyebrow i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--blue);
}

.wsite-hero h1{
  margin:20px 0 17px;
  max-width:610px;
  color:var(--navy);
  font-size:clamp(48px,5vw,72px);
  line-height:.98;
  letter-spacing:-.065em;
  font-weight:850;
}

.wsite-hero h1 span{
  color:var(--indigo);
}

.wsite-hero-copy{
  max-width:575px;
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}

.wsite-hero-buttons{
  display:flex;
  gap:10px;
  margin-top:26px;
}

.wsite-btn-primary,
.wsite-btn-secondary{
  height:45px;
  padding:0 18px;
  border-radius:9px;
  cursor:pointer;
  font-size:10px;
  font-weight:800;
}

.wsite-btn-primary{
  border:0;
  background:var(--blue);
  color:#fff;
  box-shadow:0 10px 24px rgba(0,71,171,.20);
}

.wsite-btn-secondary{
  border:1px solid #D9E2EE;
  background:#fff;
  color:#344054;
}

.wsite-trustline{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:21px;
}

.wsite-trustline span{
  color:#5C6A80;
  font-size:8px;
  font-weight:700;
}

.wsite-trustline span::before{
  content:"✓";
  display:inline-grid;
  place-items:center;
  width:15px;
  height:15px;
  margin-right:5px;
  border-radius:50%;
  background:#EAF8F2;
  color:var(--green);
}

/* ---------- REAL PRODUCT PREVIEW ---------- */

.wsite-product{
  border:1px solid #DCE4EE;
  border-radius:18px;
  background:#F7F9FC;
  box-shadow:0 30px 75px rgba(18,27,53,.11);
  overflow:hidden;
}

.wsite-product-top{
  height:48px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 14px;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.wsite-product-brand{
  display:flex;
  align-items:center;
  gap:8px;
}

.wsite-product-brand img{
  width:118px;
  height:31px;
  object-fit:contain;
  object-position:left center;
}

.wsite-product-search{
  height:28px;
  flex:1;
  max-width:310px;
  margin-left:12px;
  padding:0 9px;
  display:flex;
  align-items:center;
  color:#99A4B5;
  font-size:7px;
  border:1px solid #E4E9F0;
  border-radius:7px;
  background:#F8FAFC;
}

.wsite-product-actions{
  margin-left:auto;
  display:flex;
  gap:5px;
}

.wsite-product-dot{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border:1px solid #E5EAF1;
  border-radius:6px;
  background:#fff;
  color:#8290A4;
  font-size:8px;
}

.wsite-product-body{
  display:grid;
  grid-template-columns:140px 1fr;
  min-height:390px;
}

.wsite-product-side{
  padding:13px 9px;
  background:#fff;
  border-right:1px solid var(--line);
}

.wsite-product-side nav{
  display:grid;
  gap:4px;
  margin-top:12px;
}

.wsite-product-side button{
  height:31px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 9px;
  border:0;
  border-radius:7px;
  background:transparent;
  color:#667085;
  text-align:left;
  cursor:pointer;
  font-size:7.5px;
  font-weight:700;
}

.wsite-product-side button.active{
  background:#EDF3FF;
  color:var(--blue);
}

.wsite-product-content{
  padding:15px;
  background:#F7F9FC;
}

.wsite-preview-panel{
  display:none;
}

.wsite-preview-panel.active{
  display:block;
}

.wsite-preview-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:11px;
}

.wsite-preview-heading strong{
  color:var(--navy);
  font-size:12px;
}

.wsite-preview-heading span{
  color:#98A2B3;
  font-size:7px;
}

.wsite-preview-kpis{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:7px;
}

.wsite-kpi{
  padding:10px;
  min-height:68px;
  border:1px solid #E4E9F0;
  border-radius:9px;
  background:#fff;
}

.wsite-kpi small{
  display:block;
  color:#8895A9;
  font-size:5.5px;
  font-weight:750;
  text-transform:uppercase;
}

.wsite-kpi strong{
  display:block;
  margin-top:8px;
  color:var(--navy);
  font-size:17px;
}

.wsite-kpi em{
  display:block;
  margin-top:5px;
  color:var(--green);
  font-size:6px;
  font-style:normal;
  font-weight:800;
}

.wsite-dashboard-grid{
  display:grid;
  grid-template-columns:1.45fr .8fr;
  gap:7px;
  margin-top:8px;
}

.wsite-panel{
  min-height:180px;
  padding:11px;
  border:1px solid #E4E9F0;
  border-radius:9px;
  background:#fff;
}

.wsite-panel-title{
  color:var(--navy);
  font-size:7.5px;
  font-weight:800;
}

.wsite-panel-sub{
  margin-top:2px;
  color:#98A2B3;
  font-size:5.5px;
}

.wsite-line-chart{
  height:118px;
  margin-top:7px;
  position:relative;
  background:
    linear-gradient(#EFF2F6 1px,transparent 1px) 0 0/100% 25px;
}

.wsite-line-chart svg{
  width:100%;
  height:100%;
}

.wsite-channel{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  height:145px;
}

.wsite-donut{
  width:92px;
  height:92px;
  border-radius:50%;
  background:conic-gradient(
    #0047AB 0 42%,
    #734E96 42% 60%,
    #A18FD1 60% 74%,
    #D8B9E8 74% 88%,
    #E6EBF2 88% 100%
  );
  display:grid;
  place-items:center;
}

.wsite-donut::after{
  content:"";
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff;
}

.wsite-legend{
  display:grid;
  gap:7px;
}

.wsite-legend div{
  display:flex;
  gap:5px;
  align-items:center;
  color:#718096;
  font-size:6px;
}

.wsite-legend i{
  width:5px;
  height:5px;
  border-radius:50%;
}

.wsite-mini-lists{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
  margin-top:7px;
}

.wsite-mini-list{
  min-height:92px;
  padding:9px;
  border:1px solid #E4E9F0;
  border-radius:9px;
  background:#fff;
}

.wsite-mini-row{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 0;
  border-bottom:1px solid #F0F2F5;
}

.wsite-mini-row:last-child{
  border-bottom:0;
}

.wsite-mini-avatar{
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#EDF3FF;
  color:var(--blue);
  font-size:5.5px;
  font-weight:800;
}

.wsite-mini-row strong{
  display:block;
  color:var(--navy);
  font-size:6.5px;
}

.wsite-mini-row span{
  display:block;
  color:#98A2B3;
  font-size:5px;
}

/* ---------- METRICS ---------- */

.wsite-metrics{
  padding:17px 0;
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.wsite-metric-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}

.wsite-metric{
  display:flex;
  align-items:center;
  gap:8px;
}

.wsite-metric-icon{
  width:31px;
  height:31px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#EDF4FF;
  color:var(--blue);
  font-size:11px;
  font-weight:900;
}

.wsite-metric strong{
  display:block;
  color:var(--navy);
  font-size:13px;
}

.wsite-metric span{
  display:block;
  margin-top:2px;
  color:#8C98AA;
  font-size:7px;
}

/* ---------- SECTIONS ---------- */

.wsite-section{
  padding:84px 0;
}

.wsite-soft{
  background:#F7F9FC;
  border-top:1px solid #EFF2F6;
  border-bottom:1px solid #EFF2F6;
}

.wsite-overline{
  color:var(--blue);
  font-size:8px;
  font-weight:850;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.wsite-section-head{
  max-width:700px;
  margin-bottom:34px;
}

.wsite-section-head h2{
  margin:10px 0 10px;
  color:var(--navy);
  font-size:38px;
  line-height:1.05;
  letter-spacing:-.045em;
  font-weight:850;
}

.wsite-section-head p{
  margin:0;
  color:var(--muted);
  font-size:11px;
  line-height:1.75;
}

/* ---------- FEATURES ---------- */

.wsite-feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:11px;
}

.wsite-feature{
  min-height:180px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  box-shadow:0 4px 18px rgba(18,27,53,.028);
  transition:transform .2s,box-shadow .2s,border-color .2s;
}

.wsite-feature:hover{
  transform:translateY(-4px);
  border-color:#D3DDEB;
  box-shadow:0 15px 30px rgba(18,27,53,.07);
}

.wsite-feature-icon{
  width:35px;
  height:35px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:#EDF4FF;
  color:var(--blue);
  font-size:13px;
  font-weight:900;
}

.wsite-feature:nth-child(2) .wsite-feature-icon{
  background:#F3EDFF;
  color:var(--indigo);
}

.wsite-feature:nth-child(3) .wsite-feature-icon{
  background:#FFF0F3;
  color:#DE566D;
}

.wsite-feature:nth-child(4) .wsite-feature-icon{
  background:#EAF8F2;
  color:#13815B;
}

.wsite-feature h3{
  margin:13px 0 6px;
  color:var(--navy);
  font-size:11px;
}

.wsite-feature p{
  margin:0;
  color:#7D899B;
  font-size:8px;
  line-height:1.6;
}

/* ---------- PRODUCT TABS ---------- */

.wsite-product-tabs{
  display:flex;
  gap:5px;
  margin-bottom:15px;
}

.wsite-tab{
  height:31px;
  padding:0 10px;
  border:1px solid #DFE6EF;
  border-radius:7px;
  background:#fff;
  color:#68768A;
  cursor:pointer;
  font-size:7.5px;
  font-weight:750;
}

.wsite-tab.active{
  color:#fff;
  background:var(--blue);
  border-color:var(--blue);
}

.wsite-showcase{
  border:1px solid #DEE6F0;
  border-radius:17px;
  background:#F8FAFD;
  padding:16px;
}

.wsite-showcase-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:15px;
}

.wsite-showcase-card{
  min-height:330px;
  padding:18px;
  border:1px solid #E2E8F0;
  border-radius:13px;
  background:#fff;
}

.wsite-showcase-card h3{
  margin:0;
  color:var(--navy);
  font-size:14px;
}

.wsite-showcase-card p{
  margin:6px 0 18px;
  color:#7C889A;
  font-size:9px;
  line-height:1.6;
}

.wsite-conversation{
  padding:12px;
  border:1px solid #E9EDF2;
  border-radius:10px;
  background:#F9FBFD;
}

.wsite-conversation + .wsite-conversation{
  margin-top:8px;
}

.wsite-conversation strong{
  color:var(--navy);
  font-size:8px;
}

.wsite-conversation small{
  display:block;
  margin-top:3px;
  color:#98A2B3;
  font-size:6.5px;
}

.wsite-conversation .tag{
  float:right;
  padding:3px 5px;
  border-radius:5px;
  background:#EDF4FF;
  color:var(--blue);
  font-size:5.5px;
  font-weight:800;
}

/* ---------- WORKFLOW ---------- */

.wsite-workflow{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.wsite-steps{
  display:grid;
  gap:15px;
  margin-top:25px;
}

.wsite-step{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:10px;
}

.wsite-step-num{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  font-size:8px;
  font-weight:850;
}

.wsite-step strong{
  color:var(--navy);
  font-size:10px;
}

.wsite-step span{
  display:block;
  margin-top:3px;
  color:#7F8B9D;
  font-size:8px;
}

.wsite-journey{
  padding:20px;
  border:1px solid #DFE6F0;
  border-radius:16px;
  background:#fff;
  box-shadow:0 18px 50px rgba(18,27,53,.07);
}

.wsite-journey-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--navy);
  font-size:10px;
  font-weight:800;
}

.wsite-journey-line{
  height:2px;
  margin:30px 10px;
  background:linear-gradient(90deg,#0047AB,#734E96);
}

.wsite-journey-nodes{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}

.wsite-node{
  text-align:center;
}

.wsite-node-dot{
  width:27px;
  height:27px;
  margin:auto;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#EDF4FF;
  color:var(--blue);
  border:4px solid #F8FAFD;
  font-size:8px;
  font-weight:850;
}

.wsite-node strong{
  display:block;
  margin-top:7px;
  color:var(--navy);
  font-size:7px;
}

.wsite-node span{
  display:block;
  margin-top:2px;
  color:#98A2B3;
  font-size:5.5px;
}

/* ---------- TESTIMONIALS ---------- */

.wsite-testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:11px;
}

.wsite-testimonial{
  padding:18px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}

.wsite-testimonial p{
  margin:0;
  color:#55637A;
  font-size:9px;
  line-height:1.65;
}

.wsite-person{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
}

.wsite-person-avatar{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#EAF0FF;
  color:var(--blue);
  font-size:8px;
  font-weight:850;
}

.wsite-person strong{
  display:block;
  color:var(--navy);
  font-size:8px;
}

.wsite-person span{
  display:block;
  margin-top:2px;
  color:#98A2B3;
  font-size:6px;
}

/* ---------- PRICING ---------- */

.wsite-pricing{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:11px;
}

.wsite-plan{
  padding:19px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fff;
}

.wsite-plan.featured{
  border-color:#B8CAEA;
  box-shadow:0 15px 35px rgba(0,71,171,.09);
  transform:translateY(-4px);
}

.wsite-plan-badge{
  display:inline-flex;
  padding:4px 6px;
  border-radius:5px;
  background:#EDF4FF;
  color:var(--blue);
  font-size:6px;
  font-weight:850;
}

.wsite-plan h3{
  margin:10px 0 3px;
  color:var(--navy);
  font-size:12px;
}

.wsite-plan-sub{
  color:#8A96A8;
  font-size:7px;
}

.wsite-plan-price{
  margin:15px 0;
  color:var(--navy);
  font-size:29px;
  font-weight:850;
  letter-spacing:-.05em;
}

.wsite-plan-price small{
  color:#8A96A8;
  font-size:7px;
  font-weight:650;
}

.wsite-plan ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}

.wsite-plan li{
  color:#657289;
  font-size:7px;
}

.wsite-plan li::before{
  content:"✓";
  margin-right:6px;
  color:var(--green);
  font-weight:900;
}

.wsite-plan button{
  width:100%;
  height:35px;
  margin-top:17px;
  border:1px solid #D8E0EC;
  border-radius:8px;
  background:#fff;
  color:#344054;
  font-size:8px;
  font-weight:850;
  cursor:pointer;
}

.wsite-plan.featured button{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
}

/* ---------- FAQ ---------- */

.wsite-faq{
  max-width:800px;
  margin:auto;
}

.wsite-faq-item{
  border-bottom:1px solid var(--line);
}

.wsite-faq-q{
  width:100%;
  min-height:55px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:0;
  background:transparent;
  color:var(--navy);
  cursor:pointer;
  font-size:10px;
  font-weight:800;
  text-align:left;
}

.wsite-faq-a{
  display:none;
  padding:0 20px 16px 0;
  color:#758195;
  font-size:8px;
  line-height:1.7;
}

.wsite-faq-item.open .wsite-faq-a{
  display:block;
}

/* ---------- CTA ---------- */

.wsite-cta{
  padding:35px 0 65px;
}

.wsite-cta-card{
  position:relative;
  overflow:hidden;
  padding:45px;
  border-radius:20px;
  background:
    radial-gradient(circle at 90% 10%,rgba(255,255,255,.13),transparent 25%),
    linear-gradient(125deg,#0047AB,#480082 72%,#734E96);
  color:#fff;
  box-shadow:0 30px 70px rgba(0,71,171,.19);
}

.wsite-cta-card h2{
  max-width:610px;
  margin:0;
  font-size:38px;
  line-height:1.03;
  letter-spacing:-.05em;
}

.wsite-cta-card p{
  max-width:570px;
  margin:12px 0 20px;
  color:rgba(255,255,255,.74);
  font-size:10px;
  line-height:1.7;
}

.wsite-cta-actions{
  display:flex;
  gap:8px;
}

.wsite-cta-primary,
.wsite-cta-secondary{
  height:39px;
  padding:0 16px;
  border-radius:8px;
  cursor:pointer;
  font-size:9px;
  font-weight:850;
}

.wsite-cta-primary{
  border:0;
  background:#fff;
  color:var(--blue);
}

.wsite-cta-secondary{
  border:1px solid rgba(255,255,255,.32);
  background:transparent;
  color:#fff;
}

/* ---------- FOOTER ---------- */

.wsite-footer{
  border-top:1px solid var(--line);
  padding:25px 0 30px;
}

.wsite-footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.wsite-footer-logo{
  width:180px;
  height:42px;
  object-fit:contain;
  object-position:left center;
}

.wsite-footer-copy{
  color:#98A2B3;
  font-size:7px;
}

.wsite-footer-links{
  display:flex;
  gap:18px;
}

.wsite-footer-links a{
  color:#667085;
  text-decoration:none;
  font-size:7px;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:1100px){
  .wsite-links{display:none}
  .wsite-hero-grid{grid-template-columns:1fr}
  .wsite-feature-grid{grid-template-columns:repeat(2,1fr)}
  .wsite-workflow{grid-template-columns:1fr}
  .wsite-pricing{grid-template-columns:repeat(2,1fr)}
  .wsite-metric-grid{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:700px){
  .wsite-wrap,
  .wsite-nav .wsite-wrap{
    width:calc(100% - 30px);
  }

  .wsite-nav{
    height:70px;
  }

  .wsite-logo{
    width:165px;
  }

  .wsite-start{
    display:none;
  }

  .wsite-hero{
    padding:52px 0;
  }

  .wsite-hero h1{
    font-size:43px;
  }

  .wsite-product-body{
    grid-template-columns:76px 1fr;
  }

  .wsite-product-side{
    padding:9px 6px;
  }

  .wsite-product-brand img{
    display:none;
  }

  .wsite-product-side button{
    justify-content:center;
    font-size:0;
  }

  .wsite-product-side button:first-letter{
    font-size:10px;
  }

  .wsite-product-content{
    padding:8px;
  }

  .wsite-preview-kpis{
    grid-template-columns:1fr 1fr;
  }

  .wsite-dashboard-grid{
    grid-template-columns:1fr;
  }

  .wsite-mini-lists{
    grid-template-columns:1fr;
  }

  .wsite-metric-grid{
    grid-template-columns:1fr 1fr;
  }

  .wsite-feature-grid,
  .wsite-pricing,
  .wsite-testimonials{
    grid-template-columns:1fr;
  }

  .wsite-section-head h2{
    font-size:30px;
  }

  .wsite-cta-card{
    padding:31px 23px;
  }

  .wsite-cta-card h2{
    font-size:30px;
  }

  .wsite-footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* =========================================================
   THEDESKHELP — SCREEN OPTIMIZATION
   Desktop-first viewport tuning
   ========================================================= */

/* Standard laptop / desktop screens */
@media (min-width:1100px) and (max-height:900px){

  .wsite-nav{
    height:68px;
  }

  .wsite-logo{
    width:185px;
    height:42px;
  }

  .wsite-hero{
    padding:42px 0 42px;
  }

  .wsite-hero-grid{
    gap:42px;
  }

  .wsite-hero h1{
    font-size:58px;
    line-height:.98;
    margin:15px 0 13px;
  }

  .wsite-hero-copy{
    font-size:12px;
    line-height:1.62;
  }

  .wsite-hero-buttons{
    margin-top:20px;
  }

  .wsite-trustline{
    margin-top:16px;
  }

  .wsite-product-body{
    min-height:320px;
  }

  .wsite-product-content{
    padding:12px;
  }

  .wsite-product-side{
    padding:10px 8px;
  }

  .wsite-dashboard-grid{
    gap:6px;
  }

  .wsite-panel{
    min-height:145px;
    padding:9px;
  }

  .wsite-line-chart{
    height:88px;
  }

  .wsite-channel{
    height:106px;
  }

  .wsite-donut{
    width:72px;
    height:72px;
  }

  .wsite-donut::after{
    width:41px;
    height:41px;
  }

  .wsite-mini-list{
    min-height:75px;
    padding:7px;
  }

  .wsite-mini-row{
    padding:4px 0;
  }

  .wsite-section{
    padding:62px 0;
  }

  .wsite-section-head{
    margin-bottom:27px;
  }

  .wsite-section-head h2{
    font-size:33px;
  }

  .wsite-feature{
    min-height:155px;
    padding:15px;
  }

  .wsite-feature-grid{
    gap:9px;
  }

  .wsite-metrics{
    padding:13px 0;
  }

  .wsite-metric-icon{
    width:27px;
    height:27px;
  }

  .wsite-metric strong{
    font-size:12px;
  }

  .wsite-showcase-card{
    min-height:275px;
  }

  .wsite-workflow{
    gap:35px;
  }

  .wsite-pricing{
    gap:9px;
  }

  .wsite-plan{
    padding:16px;
  }

  .wsite-cta{
    padding:25px 0 48px;
  }

  .wsite-cta-card{
    padding:37px 40px;
  }

  .wsite-cta-card h2{
    font-size:32px;
  }
}

/* Short laptop screens */
@media (min-width:1100px) and (max-height:780px){

  .wsite-hero{
    padding:30px 0 28px;
  }

  .wsite-hero h1{
    font-size:51px;
  }

  .wsite-product-top{
    height:40px;
  }

  .wsite-product-body{
    min-height:285px;
  }

  .wsite-screen,
  .wsite-product{
    max-height:none;
  }

  .wsite-product-content{
    padding:10px;
  }

  .wsite-preview-heading{
    margin-bottom:7px;
  }

  .wsite-preview-kpis{
    gap:5px;
  }

  .wsite-kpi{
    min-height:53px;
    padding:7px;
  }

  .wsite-kpi strong{
    font-size:14px;
  }

  .wsite-dashboard-grid{
    margin-top:6px;
  }

  .wsite-panel{
    min-height:120px;
  }

  .wsite-line-chart{
    height:70px;
  }

  .wsite-channel{
    height:88px;
  }

  .wsite-mini-lists{
    margin-top:5px;
  }

  .wsite-mini-list{
    min-height:60px;
  }

  .wsite-mini-row{
    min-height:18px;
  }
}

/* Large screens */
@media (min-width:1600px){

  .wsite-wrap,
  .wsite-nav .wsite-wrap{
    width:min(1360px,calc(100% - 80px));
  }

  .wsite-hero{
    padding:70px 0 70px;
  }

  .wsite-hero-grid{
    gap:70px;
  }

  .wsite-hero h1{
    font-size:76px;
  }

  .wsite-product-body{
    min-height:420px;
  }
}

/* Browser zoom / narrow desktop safeguard */
@media (min-width:900px) and (max-width:1200px){

  .wsite-hero{
    grid-template-columns:.9fr 1.1fr;
    gap:25px;
  }

  .wsite-hero h1{
    font-size:48px;
  }

  .wsite-product-body{
    grid-template-columns:105px 1fr;
  }

  .wsite-product-search{
    max-width:220px;
  }

  .wsite-metric-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .wsite-feature-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Prevent accidental horizontal overflow */
#publicLanding{
  max-width:100vw;
}

#publicLanding main,
#publicLanding section,
#publicLanding footer{
  max-width:100%;
}

@media(max-width:700px){

  .wsite-hero{
    padding-top:35px;
    padding-bottom:40px;
  }

  .wsite-hero h1{
    font-size:40px;
  }

  .wsite-hero-copy{
    font-size:12px;
  }

  .wsite-product{
    margin-top:8px;
  }
}


/* =========================================================
   PUBLIC WEBSITE — REMOVE APP SHELL OFFSET
   ========================================================= */

#publicLanding{
  position:fixed !important;
  inset:0 !important;
  width:100vw !important;
  max-width:100vw !important;
  height:100vh !important;
  margin:0 !important;
  padding:0 !important;
  left:0 !important;
  top:0 !important;
}

#publicLanding > main{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
  min-height:0 !important;
  background:transparent !important;
}

#publicLanding .wsite-wrap{
  width:min(1220px,calc(100% - 48px)) !important;
  max-width:1220px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

#publicLanding .wsite-nav .wsite-wrap{
  width:min(1220px,calc(100% - 48px)) !important;
  max-width:1220px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

@media(max-width:700px){
  #publicLanding .wsite-wrap,
  #publicLanding .wsite-nav .wsite-wrap{
    width:calc(100% - 30px) !important;
    max-width:none !important;
  }
}


/* =========================================================
   THEDESKHELP — FLOATING LOGIN POPOVER
   ========================================================= */

#loginScreen.tdh-popover-login{
  position:fixed !important;
  inset:0 !important;
  width:100vw !important;
  height:100vh !important;
  padding:0 !important;
  margin:0 !important;
  display:block !important;
  background:transparent !important;
  pointer-events:none !important;
  z-index:999999 !important;
}

#loginScreen.tdh-popover-login .login-card{
  position:fixed !important;
  top:var(--tdh-login-top,80px) !important;
  left:var(--tdh-login-left,calc(100% - 390px)) !important;

  width:360px !important;
  max-width:calc(100vw - 24px) !important;

  margin:0 !important;
  padding:24px !important;

  border:1px solid #dfe6f0 !important;
  border-radius:16px !important;

  background:#ffffff !important;
  color:#121B35 !important;

  box-shadow:
    0 22px 60px rgba(18,27,53,.16),
    0 3px 12px rgba(18,27,53,.06) !important;

  pointer-events:auto !important;
  overflow:hidden !important;
}

#loginScreen.tdh-popover-login .login-card:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,#0047AB,#480082,#734E96);
}

#loginScreen.tdh-popover-login .login-card h1,
#loginScreen.tdh-popover-login .login-card h2{
  margin:0 0 5px !important;
  color:#121B35 !important;
  font-size:20px !important;
  font-weight:850 !important;
  letter-spacing:-.035em !important;
}

#loginScreen.tdh-popover-login .login-card>p{
  margin:0 0 18px !important;
  color:#7b8799 !important;
  font-size:10px !important;
}

#loginScreen.tdh-popover-login .login-brand{
  margin-bottom:18px !important;
}

#loginScreen.tdh-popover-login .login-brand img{
  width:150px !important;
  height:35px !important;
  object-fit:contain !important;
  object-position:left center !important;
}

#loginScreen.tdh-popover-login .login-row{
  display:block !important;
  width:100% !important;
  margin:0 0 12px !important;
}

#loginScreen.tdh-popover-login .login-row label{
  display:block !important;
  margin:0 0 6px !important;
  color:#475467 !important;
  font-size:9px !important;
  font-weight:750 !important;
}

#loginScreen.tdh-popover-login .login-row input,
#loginScreen.tdh-popover-login input{
  display:block !important;
  width:100% !important;
  height:42px !important;
  padding:0 11px !important;

  border:1px solid #dce3ed !important;
  border-radius:9px !important;

  background:#fbfcfe !important;
  color:#121B35 !important;
  font-size:10px !important;

  outline:none !important;
  box-shadow:none !important;
}

#loginScreen.tdh-popover-login input:focus{
  border-color:#6d91d2 !important;
  box-shadow:0 0 0 3px rgba(0,71,171,.08) !important;
  background:#fff !important;
}

#loginScreen.tdh-popover-login input::placeholder{
  color:#a1abba !important;
}

#loginScreen.tdh-popover-login .login-btn{
  width:100% !important;
  height:43px !important;
  margin-top:8px !important;

  border:0 !important;
  border-radius:9px !important;

  background:#0047AB !important;
  color:#fff !important;

  font-size:10px !important;
  font-weight:850 !important;
  cursor:pointer !important;

  box-shadow:0 8px 18px rgba(0,71,171,.18) !important;
}

#loginScreen.tdh-popover-login .login-btn:hover{
  background:#003d93 !important;
  transform:translateY(-1px) !important;
}

#loginScreen.tdh-popover-login #loginError{
  margin:5px 0 8px !important;
  color:#d94f61 !important;
  font-size:8px !important;
}

#loginScreen.tdh-popover-login .login-back{
  display:none !important;
}

#loginScreen.tdh-popover-login:after{
  content:"";
  position:fixed;
  top:calc(var(--tdh-login-top,80px) - 7px);
  left:calc(var(--tdh-login-left,calc(100% - 390px)) + 330px);
  width:13px;
  height:13px;
  background:#fff;
  border-left:1px solid #dfe6f0;
  border-top:1px solid #dfe6f0;
  transform:rotate(45deg);
  pointer-events:none;
}

@media(max-width:700px){
  #loginScreen.tdh-popover-login .login-card{
    top:72px !important;
    left:12px !important;
    width:calc(100vw - 24px) !important;
    max-width:none !important;
  }

  #loginScreen.tdh-popover-login:after{
    display:none !important;
  }
}


/* =========================================================
   COMPACT LOGIN POPOVER
   ========================================================= */

#loginScreen.tdh-popover-login .login-card{
  width:310px !important;
  padding:18px !important;
  border-radius:13px !important;
}

#loginScreen.tdh-popover-login .login-brand,
#loginScreen.tdh-popover-login .login-card h1,
#loginScreen.tdh-popover-login .login-card h2,
#loginScreen.tdh-popover-login .login-card>p{
  display:none !important;
}

#loginScreen.tdh-popover-login .login-row{
  margin:0 0 9px !important;
}

#loginScreen.tdh-popover-login .login-row label{
  display:none !important;
}

#loginScreen.tdh-popover-login .login-row input,
#loginScreen.tdh-popover-login input{
  height:38px !important;
  padding:0 10px !important;
  border-radius:8px !important;
  font-size:10px !important;
}

#loginScreen.tdh-popover-login #loginPassword{
  margin-top:0 !important;
}

#loginScreen.tdh-popover-login #loginError{
  display:none;
}

#loginScreen.tdh-popover-login .remember,
#loginScreen.tdh-popover-login .login-options,
#loginScreen.tdh-popover-login .login-row + div{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:8px !important;
  width:100% !important;
  margin:4px 0 10px !important;
}

#loginScreen.tdh-popover-login input[type="checkbox"]{
  width:14px !important;
  height:14px !important;
  margin:0 5px 0 0 !important;
  accent-color:#0047AB !important;
}

#loginScreen.tdh-popover-login .remember label,
#loginScreen.tdh-popover-login .login-options label{
  display:inline-flex !important;
  align-items:center !important;
  margin:0 !important;
  color:#667085 !important;
  font-size:8px !important;
  font-weight:650 !important;
}

#loginScreen.tdh-popover-login a{
  color:#0047AB !important;
  font-size:8px !important;
  font-weight:700 !important;
}

#loginScreen.tdh-popover-login .login-btn{
  height:39px !important;
  margin-top:3px !important;
  border-radius:8px !important;
  font-size:9px !important;
}


/* FINAL COMPACT LOGIN */

#loginScreen.tdh-popover-login .login-card{
  width:270px !important;
  padding:14px !important;
  border-radius:11px !important;
}

#loginScreen.tdh-popover-login .login-card > div:first-child{
  display:none !important;
}

#loginScreen.tdh-popover-login .login-brand,
#loginScreen.tdh-popover-login .login-logo,
#loginScreen.tdh-popover-login .login-icon,
#loginScreen.tdh-popover-login .brand-mark{
  display:none !important;
}

#loginScreen.tdh-popover-login .login-row{
  margin-bottom:7px !important;
}

#loginScreen.tdh-popover-login .login-row input,
#loginScreen.tdh-popover-login input{
  height:34px !important;
  padding:0 9px !important;
  border-radius:7px !important;
  font-size:9px !important;
}

#loginScreen.tdh-popover-login .login-btn{
  height:35px !important;
  margin-top:4px !important;
  border-radius:7px !important;
  font-size:8px !important;
}

#loginScreen.tdh-popover-login .login-card{
  box-shadow:0 16px 38px rgba(18,27,53,.15) !important;
}

#loginScreen.tdh-popover-login #loginError{
  display:none !important;
}

#loginScreen.tdh-popover-login .remember,
#loginScreen.tdh-popover-login .login-options,
#loginScreen.tdh-popover-login .login-row + div{
  margin:3px 0 7px !important;
}


/* =========================================================
   THEDESKHELP — PREMIUM TYPOGRAPHY
   ========================================================= */

#publicLanding{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif !important;
}

#publicLanding h1,
#publicLanding h2,
#publicLanding h3,
#publicLanding .wsite-hero h1,
#publicLanding .wsite-section-head h2,
#publicLanding .wsite-cta-card h2,
#publicLanding .wsite-product-brand,
#publicLanding .wsite-preview-heading strong{
  font-family:'Manrope','Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif !important;
  letter-spacing:-.045em !important;
}

#publicLanding h1,
#publicLanding h2{
  font-weight:800 !important;
}

#publicLanding h3{
  font-weight:750 !important;
}

#publicLanding p,
#publicLanding a,
#publicLanding button,
#publicLanding span,
#publicLanding small,
#publicLanding li{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif !important;
}

#publicLanding .wsite-hero-copy,
#publicLanding .wsite-section-head p{
  letter-spacing:-.01em !important;
}

#publicLanding .wsite-links a{
  font-weight:650 !important;
  letter-spacing:-.01em !important;
}

#publicLanding .wsite-hero h1{
  letter-spacing:-.06em !important;
}

