.btn-header,
.btn-primary,
.btn-secondary{
  padding:13px 22px;
  border-radius:999px;
  font-weight:800;
  transition:.3s;
}

.btn-header,
.btn-primary{
  background:linear-gradient(135deg,var(--blue),var(--blue-light));
  color:#fff;
  box-shadow:0 0 35px rgba(46,124,246,.35);
}

.btn-header:hover,
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 0 55px rgba(46,124,246,.55);
}

.btn-secondary{
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  color:var(--white);
}

.glass-card{
  width:min(360px,100%);
  min-height:360px;
  background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  backdrop-filter:blur(22px);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  transform:rotate(-4deg);
  animation:float 5s ease-in-out infinite;
}

.glass-card img{
  width:150px;
  filter:drop-shadow(0 0 30px rgba(46,124,246,.55));
  margin-bottom:22px;
}

.glass-card h3{
  font-size:30px;
  margin-bottom:10px;
}

.glass-card p{
  text-align:center;
  max-width:270px;
  font-size:15px;
  color:var(--muted);
  margin:0;
  line-height:1.6;
}

.floating-card{
  position:absolute;
  padding:16px 24px;
  border-radius:20px;
  background:rgba(255,255,255,.09);
  border:1px solid var(--border);
  backdrop-filter:blur(18px);
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  font-weight:800;
}

.card-one{
  top:80px;
  left:25px;
}

.card-two{
  right:25px;
  top:180px;
}

.card-three{
  bottom:80px;
  left:90px;
}

.device-showcase{
  width:520px;
  max-width:100%;
  height:360px;
  position:relative;
  display:grid;
  place-items:center;
  transform:rotate(-3deg);
  animation:float 5s ease-in-out infinite;
}

.device-showcase::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:34px;
  background:linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.035));
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  backdrop-filter:blur(22px);
}

.laptop{
  position:relative;
  z-index:2;
  width:430px;
}

.laptop-screen{
  height:250px;
  padding:14px;
  border-radius:18px 18px 8px 8px;
  background:linear-gradient(145deg,#050816,#111827);
  border:4px solid #111827;
  box-shadow:0 25px 60px rgba(0,0,0,.45);
  overflow:hidden;
}

.laptop-base{
  width:470px;
  height:24px;
  margin-left:-20px;
  background:linear-gradient(180deg,#4b5563,#111827);
  border-radius:0 0 22px 22px;
  position:relative;
}

.laptop-base::after{
  content:"";
  position:absolute;
  left:50%;
  top:4px;
  transform:translateX(-50%);
  width:110px;
  height:6px;
  border-radius:99px;
  background:rgba(255,255,255,.35);
}

.dashboard{
  height:100%;
  display:grid;
  grid-template-columns:70px 1fr;
  gap:14px;
  background:#07101f;
  border-radius:12px;
  padding:12px;
}

.dash-sidebar{
  background:#0b1428;
  border-radius:10px;
  padding:12px 8px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
}

.dash-sidebar img{
  width:24px;
  height:24px;
  object-fit:contain;
  margin-bottom:8px;
}

.dash-sidebar span{
  width:42px;
  height:8px;
  border-radius:20px;
  background:rgba(255,255,255,.13);
}

.dash-sidebar span:nth-child(2){
  background:rgba(46,124,246,.45);
}

.dash-content{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.dash-top{
  width:100%;
  height:24px;
  border-radius:8px;
  background:rgba(255,255,255,.10);
}

.dash-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.dash-cards div{
  height:48px;
  border-radius:10px;
  background:linear-gradient(135deg,rgba(46,124,246,.75),rgba(85,164,255,.35));
}

.dash-cards div:nth-child(2){
  background:linear-gradient(135deg,rgba(34,197,94,.75),rgba(34,197,94,.30));
}

.dash-cards div:nth-child(3){
  background:linear-gradient(135deg,rgba(168,85,247,.75),rgba(168,85,247,.30));
}

.dash-chart{
  flex:1;
  border-radius:12px;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px),
    #0b1428;
  background-size:24px 24px;
  position:relative;
  overflow:hidden;
}

.dash-chart span{
  position:absolute;
  left:20px;
  right:20px;
  bottom:28px;
  height:3px;
  background:linear-gradient(90deg,var(--blue),var(--blue-light));
  transform:skewY(-10deg);
  box-shadow:0 0 18px rgba(46,124,246,.8);
}