/* ── ABL Biological Age Clock — Widget Styles ── */

.abl-clock-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  min-height: 100vh;
  background-color: #0d0c08;
}

.abl-clock-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Clock ── */
.abl-clock-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}

.abl-clock-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* ── Number + title: inside clock face, below hub circle ── */
.abl-center-text {
  position: absolute;
  /* Hub centre = 50% vertically. Hub r=18 on 380px SVG ≈ 4.7% of wrap.
     Add a small 8px gap → top starts at ~57% */
  top: 57%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  width: 60%;  /* constrained so text doesn't escape ring */
}

.abl-number {
  font-size: 88px;
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1;
  letter-spacing: -3px;
  transition: opacity 0.45s ease;
}

.abl-title {
  font-size: 12px;
  color: #9b9585;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 6px;
  transition: opacity 0.45s ease;
}

/* ── Description ── */
.abl-description {
  margin-top: 40px;
  text-align: center;
  max-width: 500px;
  color: #7a7468;
  font-size: 15px;
  line-height: 1.75;
  transition: opacity 0.45s ease;
}

/* ── Step indicators ── */
.abl-step-indicators {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  align-items: center;
}

.abl-step-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s ease;
}

.abl-step-dot.active {
  background: #d4a850;
  transform: scale(1.5);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .abl-clock-wrap {
    width: 300px !important;
    height: 300px !important;
  }
  .abl-description {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .abl-clock-wrap {
    width: 260px !important;
    height: 260px !important;
  }
}
