/* Profile screen */
.profile { min-height: 100%; }

.profile__header {
  padding: 24px 20px 16px;
  position: relative;
  overflow: hidden;
}

.profile__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.profile__name {
  font-family: var(--font-kr-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.profile__subtitle {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 4px;
}

.profile__settings-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.profile__stats {
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.profile__stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px;
}

.profile__stat-num {
  font-variant-numeric: tabular-nums;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.profile__stat-label {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 600;
}

.profile__week {
  padding: 24px 20px 0;
}

.profile__week-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-bottom: 12px;
}

.profile__week-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.profile__week-bar {
  width: 100%;
  background: var(--accent-soft);
  border-radius: 4px 4px 0 0;
  transition: height 0.4s ease;
}

.profile__week-bar--met { background: var(--accent); }

.profile__week-day {
  font-size: 10px;
  color: var(--ink-3);
  font-weight: 600;
}

.profile__memory {
  padding: 24px 20px 32px;
}

.profile__memory-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile__memory-label {
  width: 70px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 600;
}

.profile__memory-bar {
  flex: 1;
  height: 6px;
  background: var(--hairline-2);
  border-radius: 3px;
  overflow: hidden;
}

.profile__memory-bar-fill { height: 100%; }

.profile__memory-num {
  width: 30px;
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
