/* Home screen mockup styles */

.hs2-phone {
  width: min(100%, 340px);
  background: #f0ebe2;
  border-radius: 36px;
  padding: 20px 18px 0;
  box-shadow: 0 28px 64px rgba(72, 49, 24, 0.16);
  overflow: hidden;
  flex-shrink: 0;
}

.hs2-toprow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.hs2-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 0.06em;
}

.hs2-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3b82f6;
  flex-shrink: 0;
}

.hs2-icons {
  display: flex;
  gap: 10px;
  color: #6b5e50;
}

.hs2-brand {
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: 2.2rem;
  color: #1a1410;
  line-height: 1;
  margin-bottom: 8px;
}

.hs2-greeting {
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: 1.6rem;
  color: #b0a090;
  margin-bottom: 18px;
}

.hs2-week-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #a09080;
  margin-bottom: 8px;
}

.hs2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 20px;
}

.hs2-stat {
  background: #e6dfd4;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hs2-stat-icon {
  width: 16px;
  height: 16px;
  color: #a09080;
  flex-shrink: 0;
}

.hs2-stat-n {
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: 1.6rem;
  color: #1a1410;
  line-height: 1;
}

.hs2-stat-l {
  font-size: 0.65rem;
  color: #a09080;
  line-height: 1.2;
}

.hs2-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hs2-section-title {
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: 1.5rem;
  color: #1a1410;
}

.hs2-run-card {
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 8px;
}

.hs2-run-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #6b5e50;
}

.hs2-run-name {
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: 1rem;
  color: #1a1410;
}

.hs2-prog {
  height: 4px;
  background: #e6dfd4;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

.hs2-prog span {
  display: block;
  height: 100%;
  background: #3b82f6;
  border-radius: 999px;
}

.hs2-dots {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.hs2-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #e6dfd4;
  flex-shrink: 0;
}

.hs2-dot.on {
  background: #3b82f6;
}

.hs2-dot.half {
  background: linear-gradient(90deg, #3b82f6 50%, #e6dfd4 50%);
}

.hs2-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hs2-tabbar {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 14px;
  padding: 12px 4px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.6);
}

.hs2-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.6rem;
  color: #a09080;
  min-width: 40px;
}

.hs2-tab.active {
  color: #3b82f6;
}

.hs2-tab.notes {
  background: rgba(59, 130, 246, 0.1);
  border-radius: 14px;
  padding: 6px 10px;
  color: #3b82f6;
}

.hs2-tab-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #3b82f6;
}
