/* Herald · Breathe — app tweaks. Base in glass-core.css. */

.b-stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 4px;
}
.b-orb {
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, rgba(120, 214, 255, 0.5), rgba(70, 120, 230, 0.16) 70%);
  border: 1px solid rgba(120, 214, 255, 0.55);
  box-shadow: 0 0 38px rgba(90, 180, 255, 0.36), inset 0 0 30px rgba(120, 214, 255, 0.22);
  transition-property: transform, box-shadow;
  transition-timing-function: ease-in-out;
  transition-duration: 0.6s;
  transform: scale(0.62);
}
.b-orb.big {
  transform: scale(1);
  box-shadow: 0 0 60px rgba(120, 214, 255, 0.5), inset 0 0 36px rgba(160, 230, 255, 0.3);
}
.b-phase {
  font-size: 19px;
  font-weight: 800;
  color: #eaf6ff;
  text-shadow: 0 0 12px rgba(120, 214, 255, 0.6);
}
.b-count {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}
.b-patterns {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 6px 0 2px;
}
.b-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 86px;
  min-height: 50px;
  padding: 6px 12px;
  color: var(--text-secondary);
  background: var(--frost-1);
  border: 1px solid var(--frost-border);
  border-radius: 12px;
}
.b-chip-n { font-size: 15px; font-weight: 800; }
.b-chip-s { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }
.b-chip.on {
  color: #fff;
  background: linear-gradient(135deg, #3aa6ff, #5ad1ff);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(58, 166, 255, 0.32);
}
.b-chip.on .b-chip-s { color: rgba(255, 255, 255, 0.85); }
.b-chip:focus {
  outline: none;
  border-color: var(--focus-ring);
  color: var(--text-primary);
  box-shadow: 0 0 0 2px var(--focus-ring);
}
.b-go {
  align-self: center;
  margin: 12px auto 0;
  min-height: 54px;
  padding: 0 44px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #3aa6ff, #5ad1ff);
  border: 0;
  border-radius: 980px;
  box-shadow: 0 10px 26px rgba(58, 166, 255, 0.32);
}
.b-go:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--focus-ring), 0 12px 30px rgba(58, 166, 255, 0.46);
}
.b-foot {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
