/* ================================================================
   BLONSK WORLD CLOCK — Landing page hero clock
   ================================================================ */

/* ── Clock section wrapper ────────────────────────────────────── */
.blonsk-clock-section {
  width: 100%;
  padding: 4rem 0 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* subtle radial glow behind the clock */
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    rgba(245,166,35,0.07) 0%,
    transparent 70%);
}

/* ── Live pill ────────────────────────────────────────────────── */
.bck-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
}

.bck-live-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: bckPulse 1.4s ease-in-out infinite;
}

@keyframes bckPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── Era label ────────────────────────────────────────────────── */
.bck-era {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 0.6rem;
  opacity: 0.8;
}

/* ── Main date display ────────────────────────────────────────── */
.bck-date {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  margin-bottom: 0.6rem;
}

.bck-date .bck-sep {
  color: var(--text-3);
  font-weight: 300;
  margin: 0 0.15em;
}

.bck-date .bck-highlight {
  color: var(--amber);
}

/* ── Time (HH:MM:SS) ─────────────────────────────────────────── */
.bck-time {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  margin-bottom: 1.2rem;
}

/* colon blink */
.bck-time .bck-colon {
  animation: bckColon 1s step-end infinite;
}
@keyframes bckColon {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

/* ── Season label ─────────────────────────────────────────────── */
.bck-season {
  font-size: 0.88rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Bear age hints (mini strip) ─────────────────────────────── */
.bck-bears-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bck-bear-age {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.bck-bear-age-name {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

.bck-bear-age-val {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--amber);
  font-weight: 600;
}

.bck-bear-age-stage {
  font-size: 0.66rem;
  color: var(--text-3);
}

/* ── Divider line under clock ─────────────────────────────────── */
.bck-divider {
  width: 100%;
  max-width: 520px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-md), transparent);
  margin: 0 auto 0;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .bck-bears-strip {
    gap: 1rem;
  }
  .bck-date {
    font-size: clamp(1.6rem, 10vw, 3rem);
  }
}
