.wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding-left: clamp(1.5rem, 5%, 5%);
  padding-right: clamp(1.5rem, 5%, 5%);
}

.tc {
  text-align: center;
}

.glass {
  background: rgba(13, 31, 28, .6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  white-space: nowrap;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  background: #1D7C6E;
  border: none;
  cursor: pointer;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  font-family: 'Inter Tight', sans-serif;
}

.btn:hover {
  background: #145F55;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29, 124, 110, .35);
}

.btn-lg {
  padding: 18px 40px;
  font-size: .9rem;
}

.btn-o {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: #fafafa;
}

.btn-o:hover {
  border-color: #1D7C6E;
  background: rgba(29, 124, 110, .1);
}

/* Reveal animation */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }

/* Dashboard indicators */
.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  display: inline-block;
  animation: pulse 2s ease infinite;
}

.dash-bar {
  height: 4px;
  background: rgba(255, 255, 255, .06);
  border-radius: 99px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.dash-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1D7C6E, #4ADE80);
  border-radius: 99px;
  transition: width 1.5s cubic-bezier(.16, 1, .3, 1);
}

.dash-fill.go {
  width: 72%;
}
