/* Shared chrome for coaches, icons, Watch, Day, Week, weekly report. */

.related-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.related-strip a {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #19191a;
  color: #9e9a95;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.related-strip a:hover {
  color: #eeece9;
  border-color: rgba(23, 242, 140, 0.35);
}

.related-strip a.is-here {
  color: #0e0e10;
  background: #17F28C;
  border-color: #17F28C;
}

.phone-shot {
  margin: 0;
  width: min(100%, 22rem);
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #19191a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.phone-shot figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #807b76;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 12px;
}

@media (min-width: 640px) {
  .icon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.icon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.icon-cell img {
  width: 72px;
  height: 72px;
  border-radius: 16.2px;
  background: #19191a;
}

.icon-cell span {
  font-size: 12px;
  font-weight: 600;
  color: #9e9a95;
}

.coach-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 720px) {
  .coach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.coach-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #19191a;
  padding: 22px 22px 20px;
}

.coach-card .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #17F28C;
}

.coach-card h2 {
  margin-top: 8px;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.coach-card .desc {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #9e9a95;
}

.coach-card blockquote {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #0e0e10;
  color: #eeece9;
  font-size: 15px;
  line-height: 1.5;
  font-style: normal;
}

.watch-stage {
  display: flex;
  justify-content: center;
}

.watch-face {
  width: 196px;
  height: 240px;
  padding: 22px 18px 18px;
  border-radius: 48px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(23, 242, 140, 0.10), transparent 50%),
    #0e0e10;
  border: 8px solid #2a2a2c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #eeece9;
}

.watch-face .kcal {
  font-family: ui-rounded, "Nunito", "Plus Jakarta Sans", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.watch-face .cap {
  margin-top: 4px;
  font-size: 12px;
  color: #807b76;
}

.watch-face .bar {
  width: 100%;
  height: 6px;
  margin: 12px 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.watch-face .bar i {
  display: block;
  width: 68%;
  height: 100%;
  background: #17F28C;
}

.watch-face .mic {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #17F28C;
  display: grid;
  place-items: center;
}

.watch-face .hint {
  margin-top: 8px;
  font-size: 12px;
  color: #807b76;
}

.fact-list {
  display: grid;
  gap: 12px;
}

@media (min-width: 720px) {
  .fact-list.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.fact {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #19191a;
  padding: 18px 18px 16px;
}

.fact h3 {
  font-size: 15px;
  font-weight: 700;
}

.fact p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: #9e9a95;
}

.step-row {
  display: flex;
  gap: 14px;
}

.step-num {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(23, 242, 140, 0.12);
  color: #17F28C;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.split-hero {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 880px) {
  .split-hero {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    gap: 48px;
  }
}
