.hero{
  width: 100%;
  margin: 0; 
  overflow: hidden;
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, #0a0b14, #1a1440);
  color: #fff;
  --bleed: calc(50vw - 50%);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: calc(-1 * 50vw);
  margin-right: calc(-1 * 50vw);
  padding-left: var(--bleed);
  padding-right: var(--bleed);
  border-radius: 0; 
}


.hero__inner{
  max-width: 1200px;
  margin: 0 auto;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 50% -100px, rgba(255,255,255,.08), transparent 70%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px, 24px 24px;
  opacity: .4;
}

.hero__title--gradient {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #fff, #c5caff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero__subtitle {
  max-width: 600px;
  margin: 15px auto 20px;
  opacity: 0.85;
}

.hero__cta .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #6c8cff;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}
.hero__cta .btn:hover {
  background: #5877ff;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  align-items: stretch;
  display: flex;
  flex-direction: column; 
}
.service-card .status{ margin-top: auto; }

.service-card h2 {
  margin-bottom: 10px;
}

.service-card ul {
  margin: 10px 0 20px;
  padding-left: 20px;
}

.status--glass {
  backdrop-filter: blur(8px);
  background: rgba(18,20,28,.55);
  border: 1px solid rgba(255,255,255,.1);
  padding: 12px;
  border-radius: 8px;
}

.status__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.status__bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.status__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6c8cff, #8e9fff);
  transition: width 1.2s ease;
}

.status__percent {
  font-weight: bold;
  background: linear-gradient(90deg, #dfe6ff, #fff);
  -webkit-background-clip: text;
  color: transparent;
}